.site-header {
    background: #ffffff;
    width: 100%;
    position: relative;
    z-index: 100;
    height: 114px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    height: 116px;

}

.nav-link {
    font-family: 'Mrs Eaves OT', serif;
    text-decoration: none;
    text-align: center;
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #517DBB;
}

.nav-left {
    display: flex;
    gap: 30px;
    flex: 1;
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.logo-wrapper {
    flex: 0 0 auto;
    margin: 0 20px;
    position: relative;
    top: 15px;
}

.logo-img {
    width: 160px;
    height: auto;
    display: block;
    position: relative;
    top: 36px;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Ícones e Botão */
.header-socials {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icon {
    text-decoration: none;
    font-size: 16px;
}

.social-icon img {
    width: auto;
    height: 14px;
    display: block;
    transition: transform 0.2s ease;
    filter: brightness(0); /* deixa os ícones pretos no fundo branco */
}

.language-btn {
    background: #fff;
    border: 1px solid #000;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
}

@media (max-width: 1300px) {
    .nav-link {
        font-size: 11px;
        gap: 10px;
    }

    .header-container {
        padding: 0 15px;
    }
}

.header-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon img {
    width: auto;
    height: 14px;
    display: block;
    transition: transform 0.2s ease;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-around;
}


.gtranslate_wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gtranslate_wrapper a {
    font-family: 'Mrs Eaves OT', serif;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.gtranslate_wrapper a:hover {
    color: var(--color-primary-blue);
}

.gtranslate_wrapper a.nturl {
    color: var(--color-primary-blue);
    font-weight: bold;
}

/* ============================================
   BOTÃO HAMBÚRGUER (oculto em desktop)
   ============================================ */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle img {
    width: 28px;
    height: auto;
    display: block;
}

/* ============================================
   DROPDOWN MOBILE (oculto em desktop)
   ============================================ */
.mobile-menu-dropdown {
    display: none;
}

/* ============================================
   MOBILE — MAX-WIDTH 768px
   ============================================ */
@media (max-width: 768px) {

    /* Header layout simplificado */
    .site-header {
        height: auto;
    }

    .header-container {
        height: auto;
        padding: 10px 15px;
        gap: 10px;
        position: relative;
    }

    /* Esconde a navegação principal (5 links) */
    .nav-left {
        display: none;
    }

    /* Logo central, sem deslocamentos do desktop */
    .logo-wrapper {
        margin: 0;
        top: 0;
        flex: 0 0 auto;
    }

    .logo-img {
        width: 70px;
        top: 0;
    }

    /* Mantém apenas o "Check Available Dates" visível no canto esquerdo */
    .nav-right-group {
        flex: 0 0 auto;
        order: -1; /* joga pra esquerda do logo */
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .nav-right-group .header-socials {
        display: none;
    }

    /* gtranslate visível no mobile, ao lado do "Check Available Dates" */
    .nav-right-group .gtranslate_wrapper {
        display: flex;
        align-items: center;
    }

    .nav-right-group .gtranslate_wrapper a {
        font-size: 11px;
    }

    /* select compacto (mostra só siglas via JS mobile-gtranslate.js) */
    .nav-right-group .gtranslate_wrapper select {
        font-size: 12px;
        padding: 2px 4px;
        max-width: 66px;
    }

    .nav-link-check-dates {
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
        display: inline-block;
        width: min-content;
        /* largura = palavra mais longa ("Available"), força "Check" a quebrar; <br> separa "Dates" */
    }

    /* Mostra botão hambúrguer à direita */
    .mobile-menu-toggle {
        display: inline-flex;
    }

    /* Dropdown mobile */
    .mobile-menu-dropdown {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #ffffff;
        padding: 0;
        z-index: 200;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-dropdown.is-open {
        max-height: 600px;
        padding: 10px 0;
    }

    .mobile-nav-link {
        font-family: 'Mrs Eaves OT', serif;
        text-decoration: none;
        color: #000000;
        font-size: 1rem;
        font-weight: 500;
        padding: 14px 20px;
        border-bottom: 1px solid #f0f0f0;
        transition: background 0.2s, color 0.2s;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:focus {
        background: #f7f7f7;
        color: #517DBB;
    }

    .mobile-menu-socials {
        display: flex;
        gap: 20px;
        justify-content: center;
        padding: 16px 20px;
    }

    .mobile-menu-socials .social-icon img {
        height: 20px;
        filter: brightness(0);
    }
}