@font-face {
    font-family: 'Chella-Semi-Bold';
    src: url('../fonts/Chella/chella-semi-bold.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Chella-Bold';
    src: url('../fonts/Chella/chella-bold.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Chella-Bold';
    src: url('../fonts/Chella/chella-bold-italic.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}


@font-face {
    font-family: 'Muntea';
    src: url('../fonts/Muntea/Muntea.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* 1. Light (Peso 300) */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga/LufgaLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* 2. Regular (Peso 400 - Padrão) */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga/LufgaRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* 3. Medium (Peso 500) */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga/LufgaMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'LufgaMediumItalic';
    src: url('../fonts/Lufga/LufgaMediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* 4. Bold (Peso 700 - Negrito) */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga/LufgaBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* 5. Black (Peso 900 - Extra Pesado) */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga/LufgaBlack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --cor-vermelho: #8B1E22;
    --cor-dourado: #A79157;
    --cor-creme: #FAF7F2;
    --cor-azul: #06001E;
    --cor-texto: #2D2D2D;
    --fonte-titulo: 'Lufga', sans-serif;
    --fonte-corpo: 'Lato', sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.top-bar {
    background-color: #e7dccb;
    padding-top: 20px;
}


header {
    background: white;
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid #a79157;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.btn-header {
    background-color: var(--cor-vermelho, #8B1E22);
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 10px;
    font-size: 0.9rem;
    display: inline-block;
}

.btn-header:hover {
    background-color: #A79157;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(140, 29, 24, 0.2);
}

.logo img {
    height: 150px;
    margin-top: 50px;
    position: relative;
    z-index: 1001;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
    border-radius: 100%;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #8B1E22;
    font-weight: 700;
    transition: 0.3s;
    font-size: 1.0rem;
    font-family: 'Lufga', sans-serif;
    position: relative;
}

nav a:hover {
    color: #A79157;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #E5DAC9;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}


@media (min-width: 901px) {
    .btn-header {
        margin-left: 40px;
        
    }
}

.mobile-menu-btn {
    display: none;
}

footer {
    background-color: #06001e;
    color: #999999;
    padding-top: 80px;
    font-size: 0.95rem;
    border-top: 5px solid #A79157;
    margin-top: auto;
    font-family: 'Lato', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-col h3 {
    color: #A79157;
    margin-bottom: 25px;
    font-family: 'Lufga', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-logo-img {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: #887647;
    padding-left: 5px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-list i {
    color: #A79157;
    font-size: 1.3rem;
    margin-top: 2px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #C69C3A;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn.instagram:hover {
    background: #ff538c;
    border-color: #E1306C;
}

.social-btn.facebook:hover {
    background: #0f4388;
    border-color: #1877F2;
}

.social-btn.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.copyright {
    text-align: center;
    border-top: 1px solid #E0B442;
    padding: 3px 0;
    font-size: 0.85rem;
    background-color: #06001E;
    color: whitesmoke;
    opacity: 0.8;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn i {
    font-size: 32px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


@media (max-width: 900px) {

    header {
        height: 70px;
    }

    .logo img {
        height: 85px;
        margin-top: 12px;
    }

    .header-content {
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 14px;
        font-size: 1.8rem;
        cursor: pointer;
        background: none;
        border: none;
        color: #2D2D2D;
        padding: 4px 6px;
    }

    .header-content nav {
        display: none;
    }

    .header-content.menu-open nav {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 16px 20px 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        z-index: 10000;
    }

    .header-content.menu-open nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .header-content.menu-open nav a {
        display: block;
        width: 100%;
    }

    .header-content.menu-open #nav-cta,
    .header-content.menu-open .btn-header {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        background-color: #8B1E22 !important;
        color: white !important;
        padding: 10px 10px !important;
        font-size: 1.0rem !important;
        border-radius: 25%important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        margin-top: 5px !important;
        margin-left: 0px;
        box-shadow: 0 10px 20px rgba(139, 30, 34, 0.3) !important;
    }

    footer {
        padding-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 35px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-logo-img {
        max-width: 120px;
        margin: 0 auto 10px auto;
    }

    .footer-col h3 {
        font-family: "Lufga", sans-serif;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .contact-list li {
        justify-content: center;
        margin-bottom: 10px;
    }

    .social-icons {
        justify-content: center;
        gap: 12px;
    }

    .social-btn {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .copyright {
        padding: 20px 0;
        font-size: 0.8rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn i {
        font-size: 28px;
    }
}

/* =========================================
   COOKIE BANNER (Aviso de Privacidade)
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px;
    transition: bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border-top: 4px solid #8B1E22;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    font-family: "Lufga";
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.btn-cookie {
    background-color: #8B1E22;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--fonte-titulo, sans-serif);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(139, 30, 34, 0.2);
}

.btn-cookie:hover {
    background-color: #6a1518;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .btn-cookie {
        width: 100%;
    }
}