/* Header Principal */
.header-c64931de {
    background-color: #2F5945;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container-c64931de {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.header-logo-c64931de a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img-c64931de {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Navegação Desktop */
.header-nav-c64931de {
    display: flex;
    align-items: center;
}

.header-nav-list-c64931de {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.header-nav-list-c64931de li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-nav-list-c64931de li a:hover {
    color: #D4A843;
}

/* CTA Button Desktop */
.header-cta-c64931de {
    display: flex;
    align-items: center;
}

.header-cta-btn-c64931de {
    background-color: #D4A843;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.header-cta-btn-c64931de:hover {
    background-color: #c49a3a;
    transform: translateY(-1px);
}

/* Hamburger Button */
.hamburger-btn-c64931de {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
}

.hamburger-line-c64931de {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #D4A843;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger animação quando aberto */
.hamburger-btn-c64931de.active-c64931de .hamburger-line-c64931de:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn-c64931de.active-c64931de .hamburger-line-c64931de:nth-child(2) {
    opacity: 0;
}

.hamburger-btn-c64931de.active-c64931de .hamburger-line-c64931de:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu-c64931de {
    display: none;
    background-color: #2F5945;
    border-top: 1px solid rgba(212, 168, 67, 0.3);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.mobile-menu-c64931de.open-c64931de {
    max-height: 500px;
}

.mobile-nav-c64931de {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-list-c64931de {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.mobile-nav-list-c64931de li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list-c64931de li:last-child {
    border-bottom: none;
}

.mobile-nav-list-c64931de li a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.mobile-nav-list-c64931de li a:hover {
    color: #D4A843;
}

.mobile-cta-btn-c64931de {
    display: inline-block;
    background-color: #D4A843;
    color: #1a1a1a;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.mobile-cta-btn-c64931de:hover {
    background-color: #c49a3a;
}

/* Spacer */
.header-spacer-c64931de {
    height: 80px;
}

/* Tablet */
@media (max-width: 1024px) {
    .header-nav-c64931de {
        display: none;
    }

    .header-cta-c64931de {
        display: none;
    }

    .hamburger-btn-c64931de {
        display: flex;
    }

    .mobile-menu-c64931de {
        display: block;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .header-container-c64931de {
        height: 65px;
        padding: 0 15px;
    }

    .header-logo-img-c64931de {
        height: 40px;
    }

    .header-spacer-c64931de {
        height: 65px;
    }

    .mobile-nav-list-c64931de li a {
        font-size: 16px;
        padding: 12px 0;
    }

    .mobile-cta-btn-c64931de {
        font-size: 14px;
        padding: 12px 24px;
    }
}
