.header-container {
    width: 100%;
    max-width: 1280px;
    
    background: #FFFFFF;
    
    margin: 0 auto;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
    position: relative;
}

.wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
}

.logo img {
    height: 56px;
    width: 62px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-icon {
    width: 24px;
    height: 24px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    color: #8A8D94;
    transition: color .3s
}

/* Esconder botão mobile no desktop */
.btn-contact-mobile-wrapper {
    display: none;
}

/* .nav-links li a:hover {
    color: #000
} */

.btn-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    color: #FFFFFF;
    background: #F87900;
    
    border-radius: 999px;
    padding: 0.75rem 1rem;

    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;

    white-space: nowrap;
    flex-shrink: 0;
}

.btn-contact:hover {
    background: #e36400
}

.phone-icon {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 1rem;
        z-index: 1001;
        background: #FFFFFF;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    /* Adicionar padding-top no body para compensar o header fixo */
    body {
        padding-top: 80px;
    }

    .navbar {
        position: relative;
    }

    .wrapper {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 48px;
        width: auto;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }

    /* Menu mobile fullscreen */
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        gap: 0;
        padding: 6rem 1.5rem 2rem;
        z-index: 1000;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
        margin: 0;
    }

    /* Hamburger e logo ficam acima do menu quando aberto */
    .hamburger {
        position: relative;
        z-index: 1001;
    }

    .logo {
        position: relative;
        z-index: 1001;
    }

    .nav-links li {
        width: 100%;
        padding: 0;
    }

    .nav-links li a {
        display: block;
        padding: 1.5rem 1rem;
        color: #8A8D94;
        font-size: 1.125rem;
        border-bottom: 1px solid #f0f0f0;
        transition: background-color 0.3s;
        text-align: left;
    }

    .nav-links li a:hover {
        background-color: #f9f9f9;
    }

    .nav-links li:last-child a {
        border-bottom: 1px solid #f0f0f0;
    }

    /* Botão desktop escondido no mobile */
    .btn-contact-desktop {
        display: none;
    }

    /* Garantir que o botão desktop seja escondido mesmo se about-us.css estiver carregado */
    .navbar > a.btn-contact,
    .navbar > .btn-contact-desktop {
        display: none !important;
    }
    
    /* Garantir cor branca no botão mobile */
    .btn-contact-mobile-wrapper .btn-contact-mobile {
        color: #FFFFFF !important;
    }

    /* Botão mobile dentro do menu - só aparece quando menu está ativo */
    .btn-contact-mobile-wrapper {
        display: none;
        margin-top: 1rem;
        padding: 0;
        border-bottom: none !important;
    }

    .nav-links.active .btn-contact-mobile-wrapper {
        display: block;
    }

    .btn-contact-mobile-wrapper .btn-contact-mobile {
        display: flex;
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 1rem;
        border-radius: 999px;
        border-bottom: none;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }
}