/* IMPORT MUST BE FIRST LINE */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;1,6..96,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* RESET & VARIABLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CRITICAL: Prevent Horizontal Scroll caused by full-width sections */
html,
body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    font-family: 'Poppins', sans-serif;
    /* Default Text Font */
    padding-top: 100px;
    /* Prevent content hiding behind header */
}

/* HEADINGS TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.logo,
.hero-content h1 {
    font-family: 'Bodoni Moda', serif !important;
    font-weight: 700;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.bg-navy {
    background-color: var(--navy);
}

.bg-light {
    background-color: var(--light-gray);
}

/* BUTTONS */
/* Force Button Look */
.hero-cta,
.btn,
.btn-gold {
    display: inline-block !important;
    /*BOTÃO DO BANNER PAGINA INICIO */
    background-color: #fcc47a !important;
    /* Gold */
    color: #030826 !important;
    /* TEXTO DO BOTAO DOURADO DO BANNER DA PAGINA INICIO*/
    padding: 15px 35px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none !important;
    border: 2px solid #030826;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.hero-cta:hover {
    background-color: #030826 !important;
    color: #fcc47a !important;
    border-color: #fcc47a;
}

.btn-block {
    display: block;
    width: 100%;
}

/* HEADER */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    /* High Z-Index */
    background-color: var(--navy);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    min-height: 100px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 110px;
    width: auto;
    transition: height 0.3s;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

/* HERO CAROUSEL (Fix for Stacking) */
.hero-carousel {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
    /* Dark Overlay */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: rgb(255, 255, 255);
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CAROUSEL CONTROLS */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*cOR DA SETA DO CARROSEL PARA PASSAR PARA PROXIMA IMAGEM */
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 20;
}

.carousel-next {
    right: 0;
}

.carousel-prev {
    left: 0;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--gold);
}

/* PROMO SLIDE */
.promo-slide .promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, #0a0030 100%);
    z-index: -1;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    /*imagem 2 da pagina Colecao*/
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.btn-shop {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-shop:hover {
    background-color: var(--navy);
    color: var(--white);
}

/* SOBRE PAGE (ZIG-ZAG) */
.about-hero-navy {
    background-color: var(--navy);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.about-hero-navy h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.luxury-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.zigzag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.zigzag-row .content {
    flex: 1;
}

.zigzag-row .image-container {
    flex: 1;
}

.zigzag-row img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--navy);
}

.zigzag-row h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.zigzag-row p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    text-align: justify;
}

.highlight-text {
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

.zig-zag-reverse {
    background-color: #F9F9F9;
}

.zig-zag-reverse .zigzag-row {
    flex-direction: row-reverse;
}

/* GOLDEN CIRCLE & DNA */
.golden-circle-navy {
    background-color: var(--navy);
    padding: 80px 0;
    text-align: center;
}

.golden-circle-navy h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.golden-circle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gc-card-navy {
    border: 1px solid var(--gold);
    padding: 2rem;
    color: white;
    transition: transform 0.3s;
}

.gc-card-navy:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.gc-card-navy h3 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.manifesto-editorial {
    padding: 100px 0;
    text-align: center;
    background: #fff;
}

.editorial-big-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--navy);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.dna-values-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.dna-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.dna-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--navy);
}

.dna-list li::before {
    content: '•';
    color: var(--gold);
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.cta-section {
    background-color: #ffffff !important;
    /* White Background */
    color: #030826 !important;
    /* Navy Text */
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: #030826 !important;
    /* Navy Title */
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Ensure button remains Gold */
.cta-section .btn-gold {
    background-color: #fcc47a;
    color: #030826;
}

/* FOOTER & FORM */
.site-footer {
    background-color: var(--navy);
    color: white;
    padding: 1rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-media a {
    color: white;
    margin-right: 15px;
    font-size: 1.5rem;
}

#newsletter-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: 'Montserrat', sans-serif;
}

#newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#newsletter-form button {
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* WHATSAPP BUTTON */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.whatsapp-img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

/* MAPS */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* MOBILE RESPONSIVE */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        /* Separa as barras */
        width: 30px !important;
        height: 22px !important;
        /* Altura obrigatória para caber as 3 barras */
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        /* Espessura da barra */
        background-color: #fcc47a !important;
        /* Brand Gold */
        border-radius: 2px;
        margin: 0 !important;
        /* Remove margens antigas que atrapalham */
    }

    /* Fix Header Height for Mobile */
    .navbar {
        height: auto !important;
        min-height: 80px;
        overflow: visible !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy);
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .logo img {
        height: 110px;
    }

    .hero-carousel {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .zigzag-row,
    .zigzag-row.reverse {
        flex-direction: column-reverse !important;
        gap: 20px;
        text-align: center;
    }

    .zigzag-row img {
        box-shadow: none;
        max-height: 300px;
    }

    .zigzag-row p {
        text-align: center;
    }

    .golden-circle-grid {
        grid-template-columns: 1fr;
    }

    .footer-content,
    .location-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-media {
        justify-content: center;
    }

    .section-padding {
        padding: 50px 0;
    }

    /* Força o container do rodapé a usar Flexbox em coluna */
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Manda a Newsletter para o topo (Ordem 1) */
    .newsletter-col {
        order: 1 !important;
        margin-bottom: 40px;
        /* Espaço para separar da marca */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        /* Linha fina separando */
        padding-bottom: 30px;
    }

    /* Manda a Marca para baixo (Ordem 2) */
    .brand-col {
        order: 2 !important;
    }

    /* 1. Força o container azul do rodapé a ter pouco espaço no topo */
    .site-footer {
        padding-top: 10px !important;
        /* Cola o conteúdo no topo do azul */
    }

    /* 2. Remove margens invisíveis da Logo */
    .footer-col .logo {
        margin-top: 0 !important;
        padding-top: 0 !important;
        line-height: 1 !important;
        /* Evita altura de linha extra */
        margin-bottom: 15px !important;
        /* Espaço apenas embaixo da logo */
    }

    .footer-col .logo img {
        display: block;
        /* Remove comportamento de texto */
        margin-top: 0 !important;
    }

    /* Diminui a distância entre a Newsletter (que está em cima) e a Logo */
    .footer-col.newsletter-col {
        margin-bottom: 20px !important;
        /* Reduz o empurrão para baixo */
        padding-bottom: 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Garante que a logo suba */
    .footer-col.brand-col {
        margin-top: 20px !important;
        /* Pequeno respiro após a linha */
    }
}

/* =========================================
   REVISÃO DE CORES: PÁGINA SOBRE
   Alternância: Branco -> Azul -> Branco -> Azul
   ========================================= */

/* 1. HERO (Topo) - Fundo Branco, Texto Azul */
.about-hero-navy {
    background-color: #FFFFFF !important;
    padding: 120px 0 80px 0 !important;
    /* Ajuste de respiro */
}

.about-hero-navy h1 {
    color: #fcc47a !important;
    /* Título Dourado */
}

.about-hero-navy p {
    color: #030826 !important;
    /* Subtítulo Azul */
    font-weight: 600;
}

/* 2. BLOCO 1: O QUE É - Fundo Azul, Texto Branco */
/* Alvo: A primeira seção de luxury (normal) */
.luxury-section:not(.zig-zag-reverse) {
    background-color: #030826 !important;
}

.luxury-section:not(.zig-zag-reverse) h2 {
    color: #fcc47a !important;
    /* Título Dourado */
}

.luxury-section:not(.zig-zag-reverse) p {
    color: #FFFFFF !important;
    /* Texto Branco para leitura */
}

/* 3. BLOCO 2: A ORIGEM - Fundo Branco, Texto Azul */
/* Alvo: A seção com a classe reverse */
.luxury-section.zig-zag-reverse {
    background-color: #FFFFFF !important;
}

.luxury-section.zig-zag-reverse h2 {
    color: #030826 !important;
    /* Título Azul */
}

.luxury-section.zig-zag-reverse p {
    color: #333333 !important;
    /* Texto Cinza Escuro */
}

/* 4. BLOCO 3: GOLDEN CIRCLE - Fundo Azul (Já é o padrão, reforçando) */
.golden-circle-navy {
    background-color: #030826 !important;
}

.golden-circle-navy h2 {
    color: #fcc47a !important;
}

.gc-card-navy {
    border-color: #fcc47a !important;
}

.gc-card-navy h3 {
    color: #fcc47a !important;
}

.gc-card-navy p {
    color: #FFFFFF !important;
}

/* 5. BLOCO 4: MANIFESTO - Mantém (Fundo Branco) */
.manifesto-editorial {
    background-color: #FFFFFF !important;
}

.editorial-big-text {
    color: #030826 !important;
}

/* 6. BLOCO 5: DNA & VALORES - Fundo Azul, Texto Branco */
.dna-values-section {
    background-color: #030826 !important;
}

.dna-values-section h2 {
    color: #fcc47a !important;
    /* Título Dourado */
}

.dna-list li {
    color: #FFFFFF !important;
    /* Texto da lista Branco */
}

/* Ajuste da bolinha da lista para Dourado */
.dna-list li::before {
    color: #fcc47a !important;
}

/* 7. CTA FINAL - Mantém Branco (Padrão do CSS anterior) */
.cta-section {
    background-color: #ffffff !important;
}

/* =============================================
   CORREÇÃO IMEDIATA: CORES DO TOPO E RODAPÉ
   Força o Fundo Azul (#030826)
   ============================================= */

/* 1. TOPO (HEADER) */
header.navbar,
.navbar {
    background-color: #030826 !important;
    /* Navy Dark */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    position: fixed !important;
    /* Force Fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    /* High Z-Index */
}

/* Garante que os links do menu sejam brancos/dourados sobre o fundo azul */
.nav-links a {
    color: #fcc47a !important;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fcc47a !important;
    /* Gold */
}

/* 2. RODAPÉ (FOOTER + NEWSLETTER) */
footer.site-footer,
.site-footer {
    background-color: #030826 !important;
    /* Navy Dark */
    color: #FFFFFF !important;
}

/* Garante que a área da Newsletter também seja azul */
.footer-col.newsletter-col {
    background-color: transparent !important;
}

/* Garante que o rodapé final (copyright) seja levemente mais escuro ou igual */
.footer-bottom {
    background-color: #030826 !important;
    /* Tom levemente mais escuro para acabamento */
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Garante que textos no rodapé sejam legíveis */
.footer-col p,
.footer-col h3 {
    color: #ffffff !important;
}

.footer-col h3.text-gold {
    color: #fcc47a !important;
}

/* Replace the previous 100vw hack with this safer version */
.about-hero-navy,
.luxury-section,
.golden-circle-navy,
.dna-values-section,
.site-footer,
.navbar,
#sobre-teaser,
.promo-slide .promo-bg {
    width: 100%;
    /* Go back to 100% of parent */
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* ADICIONAR/MODIFICAR NO CSS */
#destaques {
    background-color: #F5F5F5 !important;
    /* Cinza Claro */
}

/* ADICIONAR/MODIFICAR NO CSS */
#sobre-teaser {
    background-color: #030826 !important;
    /* Azul Escuro */
}

/* Garanta que o texto dentro dele fique branco para ler */
#sobre-teaser h2,
#sobre-teaser p {
    color: #FFFFFF !important;
}

/* ADICIONAR/MODIFICAR NO CSS */
#localizacao {
    background-color: #FFFFFF !important;
    /* Branco */
}

#localizacao h2,
#localizacao p {
    color: #030826 !important;
    /* Texto Azul */
}