/* =========================================
   VARIÁVEIS GLOBAIS (Paleta Bella Derme)
   ========================================= */
:root {
    /* Cores principais extraídas do Mockup */
    --gold-primary: #C69C56;    /* Dourado da embalagem */
    --gold-light: #F0E6D2;      /* Fundo creme suave / Dourado muito claro */
    --gold-dark: #967035;       /* Detalhes e sombras */
    
    /* Fundo e Textos */
    --bg-color: #FAFAFA;        /* Fundo branco/gelo para destacar o produto */
    --text-dark: #2C2416;       /* Texto principal (marrom bem escuro para facilitar leitura) */
    --text-light: #5A4A35;      /* Texto secundário */
    --white: #FFFFFF;

    /* Botão de Compra (CTA) - Focado em Conversão */
    --cta-green: #21C055;       
    --cta-hover: #1AA347;

    /* Tipografia */
    --font-copy: 'Inter', sans-serif;
    --font-title: 'Playfair Display', serif;
}

/* =========================================
   RESET CSS GLOBAL
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Rolagem suave ao clicar nos botões */
    font-size: 16px; /* Base para o uso de REM (responsividade) */
}

body {
    font-family: var(--font-copy);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Garante que as imagens se ajustem às telas do celular */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* =========================================
   CLASSES UTILITÁRIAS
   ========================================= */
/* Container que centraliza o conteúdo e não deixa grudar nas bordas no mobile */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   SESSÃO 1: HERO SECTION (Fundo + Pote na frente)
   ========================================= */
/* =========================================
   SESSÃO 1: HERO SECTION (Fundo + Pote na frente)
   ========================================= */
   .hero {
    /* Usando ../ para garantir que o CSS encontre a pasta img independente de onde ele esteja */
    background-image: url('../img/bg.png'); 
    
    /* Configurações para o fundo ficar perfeito */
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    
    /* Cor de segurança */
    background-color: #e9d0a7; 
    
    padding: 60px 0;
    overflow: hidden;
    position: relative; /* Garante que o fundo não vaze */
}
.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* --- ESTILOS DA COPY (Textos) --- */
.hero-copy {
    order: 2; /* Joga o texto para baixo no mobile */
    text-align: center;
    max-width: 600px;
    z-index: 2;
}

.hero-logo h2 {
    font-family: var(--font-title);
    color: var(--gold-dark);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-logo span {
    font-weight: 300;
}

.hero-headline {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subheadline {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* --- BOTÃO CTA (Alta Conversão) --- */
/* --- BOTÃO CTA (Alta Conversão - Corrigido) --- */
.btn-cta {
    display: flex; /* Mudamos para flex para centralizar perfeitamente */
    justify-content: center; /* Centraliza na horizontal */
    align-items: center; /* Centraliza na vertical */
    text-align: center;
    background-color: var(--cta-green);
    color: var(--white);
    font-family: var(--font-copy);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(33, 192, 85, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: var(--cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 192, 85, 0.5);
}

/* Garante que o botão largo mantenha o texto no centro */
.btn-wide {
    max-width: 800px !important;
}

/* --- BADGES DE CONFIANÇA --- */
.hero-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.trust-item {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

/* --- ÁREA DA IMAGEM --- */
/* --- ÁREA DA IMAGEM --- */
.hero-image {
    order: 1; /* Puxa a imagem para o topo no mobile */
    position: relative;
    width: 100%;
    max-width: 400px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Círculo de destaque atrás do produto (substituindo os elementos orientais) */
.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(198,156,86,0.35) 0%, rgba(250,250,250,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* --- A IMAGEM DO MOCKUP --- */
.mockup-img {
    position: relative;
    z-index: 2;
    /* Voltamos para 100% para manter a imagem centralizada perfeitamente no mobile e no PC */
    width: 100%; 
    
    /* O SEGREDO DO TAMANHO GIGANTE ESTÁ AQUI: */
    /* 1.4 significa que ela ficará 40% maior que o limite normal. 
       Se quiser MAIOR, mude para 1.5, 1.6, etc. */
    transform: scale(1.1); 
    
    /* Adicionei a sombra para destacar seu pote de alta resolução do fundo */
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.25));
    
    /* Precisamos chamar uma nova animação que suporte a escala gigante */
    animation: floatProductGigante 4s ease-in-out infinite; 
}

/* Nova animação que mantém a escala gigante enquanto flutua */
@keyframes floatProductGigante {
    0% { transform: scale(1.4) translateY(0px); }
    50% { transform: scale(1.4) translateY(-12px); }
    100% { transform: scale(1.4) translateY(0px); }
}

/* =========================================
   MEDIA QUERIES (Telas maiores / Desktop)
   ========================================= */
   @media (min-width: 992px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-wrapper {
        flex-direction: row; 
        text-align: left;
        justify-content: space-between;
    }

    .hero-copy {
        order: 1; /* Volta para a esquerda no PC */
        text-align: left;
        flex: 1.2;
        padding-right: 40px;
    }

    .hero-headline {
        font-size: 3.2rem;
    }

    .btn-cta {
        width: auto; 
    }

    .hero-trust {
        justify-content: flex-start;
    }

    .hero-image {
        order: 2; /* Volta para a direita no PC */
        flex: 1;
        max-width: 400px !important;
    }
    
    .image-glow {
        width: 450px;
        height: 450px;
    }
}



/* =========================================
   SESSÃO 2: INFOGRÁFICO DE BENEFÍCIOS (LAYOUT FINAL)
   ========================================= */

/* --- ANIMAÇÃO DE PÉROLAS (Top e Bottom) --- */
.delicate-separator {
    height: 14px;
    width: 100%;
    background-color: #FDFBF7; /* Cor base clara */
    /* Criação dos pontos dourados delicados */
    background-image: radial-gradient(circle, var(--gold-primary) 1.5px, transparent 2px);
    background-size: 30px 14px;
    animation: slidePearls 4s linear infinite;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(198, 156, 86, 0.2);
    border-bottom: 1px solid rgba(198, 156, 86, 0.2);
}

.reverse-flow {
    animation: slidePearlsReverse 4s linear infinite;
}

@keyframes slidePearls {
    0% { background-position: 0 0; }
    100% { background-position: 30px 0; }
}

@keyframes slidePearlsReverse {
    0% { background-position: 0 0; }
    100% { background-position: -30px 0; }
}

/* --- BACKGROUND E CONGRUÊNCIA --- */
.benefits {
    /* Degradê radial suave que "ilumina" o pote no centro */
    background: radial-gradient(circle at center, #FFFFFF 0%, #F7F2E8 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.benefits-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--text-dark);
}

/* --- ESTRUTURA DO INFOGRÁFICO --- */
.infographic-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 380px;
}

.benefit-card {
    background-color: var(--white);
    border: 1px solid rgba(198, 156, 86, 0.3);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.benefit-card .icon {
    font-size: 1.4rem;
}

/* --- PRODUTO E BRILHO CENTRAL --- */
.infographic-center {
    position: relative;
    width: 100%;
    max-width: 280px;
    z-index: 3;
}

.center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(198,156,86,0.1) 0%, rgba(255,255,255,0) 70%);
    border: 1px dashed rgba(198,156,86,0.4);
    border-radius: 50%;
    z-index: -1;
}

.infographic-img {
    width: 100%;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

/* --- CTA AREA --- */
.benefits-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* --- MEDIA QUERIES (DESKTOP) --- */
@media (min-width: 992px) {
    .infographic-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
    }

    /* Ajuste de alinhamento para simular o layout da imagem */
    .left-col .benefit-card {
        flex-direction: row-reverse;
        text-align: right;
    }

    /* Linhas conectoras (Desktop) */
    .left-col .benefit-card::after {
        content: '';
        position: absolute;
        right: -60px;
        top: 50%;
        width: 60px;
        height: 1px;
        background-color: var(--gold-primary);
        opacity: 0.5;
    }

    .right-col .benefit-card::after {
        content: '';
        position: absolute;
        left: -60px;
        top: 50%;
        width: 60px;
        height: 1px;
        background-color: var(--gold-primary);
        opacity: 0.5;
    }
}




/* =========================================
   SESSÃO 3: TRANSFORMAÇÃO E AUTOESTIMA
   ========================================= */
   .transformation {
    /* Fundo creme super suave para manter a delicadeza */
    background: linear-gradient(135deg, #FFFDF8 0%, #F5EFE4 100%);
    padding: 80px 0;
    text-align: center;
}

.transform-header {
    max-width: 800px;
    margin: 0 auto 70px auto; /* Margem inferior maior por causa das fotos flutuantes */
}

.transform-header .section-title {
    color: var(--gold-dark); /* Destaque no dourado escuro para o título */
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- GRID DE CARDS --- */
.transform-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 coluna */
    gap: 60px 20px; /* Gap vertical grande de 60px para acomodar as fotos flutuantes */
    margin-bottom: 60px;
}

/* Estrutura base dos Cards */
.transform-card {
    position: relative;
    padding: 60px 20px 30px 20px; /* Padding top enorme para o texto não colar na foto */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.transform-card:hover {
    transform: translateY(-5px);
}

/* A foto redonda "flutuante" no topo do card */
.card-avatar {
    position: absolute;
    top: -45px; /* Puxa a imagem para cima, metade fora do card */
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.transform-card h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.transform-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- VARIAÇÕES DE COR (O Efeito Alternado) --- */
/* Card Claro */
.card-light {
    background-color: var(--white);
    border: 1px solid rgba(198, 156, 86, 0.2);
}
.card-light h3 { color: var(--gold-dark); }
.card-light p { color: var(--text-light); }
.card-light .card-avatar { border: 4px solid var(--white); } /* Borda da foto igual ao fundo */

/* Card Escuro */
.card-dark {
    background-color: var(--gold-dark);
}
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(255, 255, 255, 0.9); }
.card-dark .card-avatar { border: 4px solid var(--gold-dark); }

/* --- BOTÃO LARGO (CTA) --- */
.transform-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-wide {
    width: 100%;
    max-width: 800px; /* O botão estica bastante, igual na imagem */
    font-size: 1.2rem;
    padding: 20px 30px;
}

/* --- MEDIA QUERIES --- */
@media (min-width: 768px) {
    /* Tablet: 2 colunas */
    .transform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 70px 30px;
    }
}

@media (min-width: 1024px) {
    /* Desktop: 4 colunas */
    .transform-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        align-items: stretch; /* Faz todos os cards terem a mesma altura */
    }
    
    .transform-card {
        padding: 60px 25px 30px 25px;
    }
}



/* =========================================
   SESSÃO 4: FÓRMULA E INGREDIENTES (GOLDEN)
   ========================================= */
   .formula {
    /* Degradê sofisticado que conecta perfeitamente com a sessão anterior */
    background: linear-gradient(180deg, #F5EFE4 0%, #E8D5B0 50%, #D4B678 100%);
    padding: 80px 0;
    position: relative;
}

.formula-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.formula-header .section-title {
    color: var(--text-dark);
    line-height: 1.4;
}

.highlight-pill {
    background-color: var(--white);
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark);
    padding: 2px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(198, 156, 86, 0.2);
}

.formula-header .section-subtitle {
    color: var(--text-dark);
    margin-top: 15px;
    font-weight: 500;
}

/* --- ESTRUTURA DOS CARDS --- */
.formula-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.formula-column {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Reduzido levemente para caber os 4 itens de forma elegante */
    width: 100%;
    max-width: 420px;
}

.formula-card {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.formula-card:hover {
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0.9);
}

/* Ícones Dourados simulando a sua imagem de referência */
.icon-golden {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #FFF4D9 0%, #DDB661 70%, #B88A36 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.2rem;
    color: #4A3515;
    box-shadow: inset -2px -2px 6px rgba(0,0,0,0.1), 0 5px 10px rgba(198, 156, 86, 0.5);
    text-shadow: 1px 1px 0px rgba(255,255,255,0.4);
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-family: var(--font-title);
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.card-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* --- ÁREA CENTRAL (PRODUTO) --- */
.formula-center {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.formula-img {
    width: 100%;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

/* --- CTA AREA --- */
.formula-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* --- MEDIA QUERIES (Desktop) --- */
@media (min-width: 1024px) {
    .formula-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

    .formula-column {
        justify-content: center;
    }
    
    /* Centraliza os 3 itens da direita verticalmente em relação aos 4 da esquerda */
    .right-col {
        gap: 25px; 
    }
}






/* =========================================
   SESSÃO 5: PROVA SOCIAL (GOLDEN FLOW - CORRIGIDA)
   ========================================= */
   .testimonials {
    /* Degradê sofisticado que conecta com a sessão anterior e mantém o tom dourado/creme */
    background: linear-gradient(180deg, #F5EFE4 0%, #F1E5CA 50%, #DDB661 100%);
    padding: 80px 0;
    text-align: center;
}

.testimo-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.testimo-header .section-title {
    color: var(--gold-dark); /* Destaque no título */
}

.testimo-header .section-subtitle {
    color: var(--text-dark); /* Cor escura para leitura no creme */
    margin-top: 15px;
}

/* --- GRID DE CARDS (Mobile First) --- */
.testimo-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 coluna */
    gap: 25px;
    margin-bottom: 60px;
}

/* Os Cards Brancos para contraste */
.testimo-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 22px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06); /* Sombra suave */
    transition: transform 0.3s ease;
    border: 1px solid rgba(198, 156, 86, 0.15); /* Borda fina dourada */
}

.testimo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.testimo-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    display: block;
}

.testimo-name {
    font-family: var(--font-title);
    color: var(--gold-dark);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.testimo-name span {
    font-family: var(--font-copy);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-light);
}

.testimo-text {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-style: italic; /* Dá o tom de fala real */
}

/* --- CTA AREA COM BOTÃO VERDE --- */
.testimo-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.dark-trust .trust-item {
    color: var(--text-dark);
}

/* --- MEDIA QUERIES (Desktop) --- */
@media (min-width: 992px) {
    /* Desktop: 4 colunas alinhadas */
    .testimo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        align-items: stretch; /* Garante que os cards fiquem do mesmo tamanho */
    }
    
    .testimo-card {
        display: flex;
        flex-direction: column;
    }

    .testimo-text {
        flex: 1; /* Empurra o conteúdo se os textos tiverem tamanhos diferentes */
    }
}


/* =========================================
   SESSÃO 6: CERTIFICAÇÃO ANVISA (SIMPLIFICADA)
   ========================================= */
   .anvisa-section {
    background-color: var(--white); /* Fundo branco chapado e limpo */
    padding: 70px 0;
}

.anvisa-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* --- COLUNA DA IMAGEM ÚNICA (Corte Seco) --- */
.anvisa-images-single {
    width: 100%;
    max-width: 420px; /* Controla o tamanho máximo da imagem */
    display: flex;
    justify-content: center;
    align-items: center;
}

.combined-img {
    width: 100%;
    height: auto;
    /* Adiciona uma sombra suave para dar profundidade ao produto */
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

/* --- COLUNA DA COPY --- */
.anvisa-copy {
    width: 100%;
    max-width: 550px;
}

.anvisa-copy .section-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.anvisa-copy .section-title span {
    color: var(--gold-primary);
}

.anvisa-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Caixa de Destaque Premium */
.anvisa-highlight {
    background-color: var(--gold-light); /* Fundo creme suave */
    border: 1px dashed var(--gold-primary); /* Borda dashed igual a referência */
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.highlight-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check-icon {
    color: var(--cta-green);
    font-size: 1.3rem;
    margin-top: 3px;
}

.highlight-title {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 5px;
}

.highlight-subtitle {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

/* --- CTA AREA --- */
.anvisa-cta-area {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centralizado no mobile */
    gap: 15px;
}

.anvisa-cta-area .btn-cta {
    width: 100%; /* Full width mobile */
}

.dark-trust .trust-item {
    color: var(--text-dark);
}

/* =========================================
   MEDIA QUERIES (Desktop)
   ========================================= */
@media (min-width: 992px) {
    .anvisa-wrapper {
        flex-direction: row; /* Coloca lado a lado no desktop */
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }

    .anvisa-images-single {
        flex: 1; /* Ocupa 50% */
    }

    .anvisa-copy {
        flex: 1; /* Ocupa 50% */
    }

    .anvisa-cta-area {
        align-items: flex-start; /* Alinha o botão à esquerda */
    }

    .anvisa-cta-area .btn-cta {
        width: auto; /* Botão abraça o texto no desktop */
        padding: 18px 40px;
    }
}





/* =========================================
   SESSÃO 7: OFERTAS E PREÇOS (ATUALIZADA)
   ========================================= */
   .offers-section {
    background-color: #D4B678; 
    padding: 80px 0;
    text-align: center;
}

.offers-main-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 50px;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
}

.offer-discount-bar {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 10px;
    text-transform: uppercase;
}

.offer-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offer-duration {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--gold-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.offer-pots-badge {
    border: 1px solid rgba(198, 156, 86, 0.5);
    color: var(--text-dark);
    padding: 8px;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.offer-pots-badge strong {
    color: var(--gold-dark);
}

.offer-image-box {
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.kit-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.offer-price-area {
    margin-bottom: 15px; /* Reduzido levemente */
}

.price-prefix {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: -5px;
}

.price-installment {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold-dark);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 5px;
}

.price-cash {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- NOVA ÁREA DO SELO ÚNICO (CSS Simplificado) --- */
.offer-single-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 50px; /* Garante alinhamento mesmo que a imagem demore a carregar */
}

.single-trust-img {
    max-width: 100%; /* Adapta ao card */
    max-height: 50px; /* Limita a altura para não brigar com o preço */
    height: auto;
    width: auto;
}

.offer-btn {
    margin-top: auto; 
    padding: 15px 10px;
    font-size: 1rem;
}

/* --- MEDIA QUERIES --- */
@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .offers-main-title {
        font-size: 2.8rem;
    }
}



/* =========================================
   SESSÃO 8: ALERTA ANTI-PIRATARIA
   ========================================= */
   .anti-piracy {
    background-color: var(--white); /* Fundo branco para contraste máximo com a sessão de ofertas */
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(198, 156, 86, 0.2); /* Linha sutil separadora */
}

.anti-piracy-title {
    font-family: var(--font-title);
    font-size: 2rem;
    /* Usando o texto escuro ao invés de vermelho para manter a elegância premium da marca */
    color: var(--text-dark); 
    margin-bottom: 30px;
}

.anti-piracy-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

/* Controla o tamanho da imagem única das logos */
.piracy-img {
    max-width: 100%;
    width: 600px; 
    height: auto;
}

.anti-piracy-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.anti-piracy-text strong {
    color: var(--text-dark);
}

/* =========================================
   MEDIA QUERIES (Desktop)
   ========================================= */
@media (min-width: 992px) {
    .anti-piracy {
        padding: 80px 0;
    }
    
    .anti-piracy-title {
        font-size: 2.5rem;
    }

    .anti-piracy-text {
        font-size: 1.05rem;
    }
}





/* =========================================
   SESSÃO 9: GARANTIA INCONDICIONAL
   ========================================= */
   .guarantee-section {
    /* Fundo creme acetinado elegante */
    background: linear-gradient(135deg, #FDFBF7 0%, #F0E6D2 100%);
    padding: 80px 0;
    overflow: hidden;
}

.guarantee-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* --- COLUNA DAS IMAGENS --- */
.guarantee-images {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Círculo atrás do produto (substitui a borda rosa da referência) */
.guarantee-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.guarantee-product {
    position: relative;
    z-index: 2;
    width: 85%;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

/* Selo de Garantia sobrepondo o produto */
.guarantee-badge {
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 140px;
    z-index: 3;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.guarantee-badge:hover {
    transform: scale(1.05) rotate(-5deg);
}

/* --- COLUNA DA COPY --- */
.guarantee-copy {
    width: 100%;
    max-width: 550px;
}

.guarantee-copy .section-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.guarantee-copy .section-title span {
    color: var(--gold-dark); /* Destaque para "Ou devolvemos seu dinheiro" */
}

.guarantee-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.strong-text {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- CTA AREA --- */
.guarantee-cta-area {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.guarantee-cta-area .btn-cta {
    width: 100%; /* Botão full width no mobile */
}

/* =========================================
   MEDIA QUERIES (Desktop)
   ========================================= */
@media (min-width: 992px) {
    .guarantee-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }

    .guarantee-images {
        flex: 1;
    }

    .guarantee-copy {
        flex: 1;
    }

    .guarantee-cta-area {
        align-items: flex-start; /* Alinha o botão à esquerda */
    }

    .guarantee-cta-area .btn-cta {
        width: auto;
        padding: 18px 40px;
    }
}




/* =========================================
   SESSÃO 9: GARANTIA (SIMPLIFICADA)
   ========================================= */
   .guarantee-section {
    /* Fundo creme acetinado elegante */
    background: linear-gradient(135deg, #FDFBF7 0%, #F0E6D2 100%);
    padding: 70px 0;
}

.guarantee-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* --- UPDATED: COLUNA DA IMAGEM ÚNICA (CSS Limpo) --- */
.guarantee-images-single {
    width: 100%;
    max-width: 450px; /* Controla o tamanho máximo da imagem combinada */
    display: flex;
    justify-content: center;
    align-items: center;
}

.composite-img {
    width: 100%;
    height: auto;
    /* Adiciona uma sombra suave para dar profundidade ao mockup */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.composite-img:hover {
    transform: translateY(-5px); /* Efeito sutil de elevação no hover */
}

/* --- COLUNA DA COPY (Mantida) --- */
.guarantee-copy {
    width: 100%;
    max-width: 550px;
}

.guarantee-copy .section-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.guarantee-copy .section-title span {
    color: var(--gold-dark);
}

.guarantee-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.strong-text {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- CTA AREA COM BOTÃO VERDE (Contraste no Creme) --- */
.guarantee-cta-area {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centralizado no mobile */
    gap: 15px;
}

.guarantee-cta-area .btn-cta {
    width: 100%; /* Full width mobile */
}

/* Reutilizando dark-trust para texto escuro no fundo creme */
.dark-trust .trust-item {
    color: var(--text-dark);
}

/* =========================================
   MEDIA QUERIES (Desktop)
   ========================================= */
@media (min-width: 992px) {
    .guarantee-wrapper {
        flex-direction: row; /* Coloca lado a lado no desktop */
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }

    .guarantee-images-single {
        flex: 1; /* Ocupa 50% */
    }

    .guarantee-copy {
        flex: 1; /* Ocupa 50% */
    }

    .guarantee-cta-area {
        align-items: flex-start; /* Alinha o botão à esquerda */
    }

    .guarantee-cta-area .btn-cta {
        width: auto; /* Botão abraça o texto no desktop */
    }
}





/* =========================================
   SESSÃO 10: DÚVIDAS FREQUENTES (FAQ FINAL)
   ========================================= */
   .faq-section {
    /* Fundo escuro luxuoso alinhado com a paleta da marca */
    background: linear-gradient(180deg, #D4B678 0%, #D4B678 100%);
    padding: 80px 0;
    text-align: center;
}

.faq-main-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 50px;
}

/* --- LISTA DE ACORDEÕES --- */
.faq-list {
    max-width: 900px;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Espaço sutil entre as caixas */
}

.faq-item {
    background-color: var(--white);
    border: 1px solid transparent;
    border-radius: 6px; /* Borda levemente arredondada igual a imagem */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

/* A Pergunta Clicável */
.faq-question {
    padding: 20px;
    display: flex;
    align-items: center; /* Alinha o + com o texto */
    gap: 15px; /* Espaço entre o + e o texto */
    cursor: pointer;
    font-family: var(--font-copy);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    text-align: left;
    outline: none;
    list-style: none; /* Esconde marcador default */
}

.faq-question::-webkit-details-marker {
    display: none;
}

/* Ícone de + à esquerda */
.faq-icon {
    color: var(--gold-dark);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 20px;
    text-align: center;
}

/* Quando o acordeão está aberto */
.faq-item[open] {
    border: 1px solid var(--gold-primary);
}

.faq-item[open] .faq-question {
    color: var(--gold-dark);
    border-bottom: 1px solid rgba(198, 156, 86, 0.2);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg); /* Transforma o + em x */
    color: var(--cta-green);
}

/* A Resposta */
.faq-answer {
    padding: 20px;
    text-align: left;
    background-color: #FAFAFA;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    animation: slideDownFAQ 0.3s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@keyframes slideDownFAQ {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- CTA AREA FINAL --- */
.faq-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

/* Ajuste para a cor clara do trust badge no fundo escuro */
.light-trust .trust-item {
    color: #DDDDDD;
}

/* =========================================
   MEDIA QUERIES (Desktop)
   ========================================= */
@media (min-width: 768px) {
    .faq-question {
        font-size: 1.15rem;
    }
}







/* =========================================
   SESSÃO 11: RODAPÉ (FOOTER)
   ========================================= */
   .site-footer {
    /* Fundo super escuro para fechar a página com peso e autoridade */
    background-color: #120E08; 
    color: #CCCCCC;
    padding: 60px 0 20px 0;
    font-size: 0.85rem;
}

/* --- GRID DO RODAPÉ --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Empilha tudo no mobile */
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    font-family: var(--font-copy);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Coluna da Logo */
.footer-logo-col h2 {
    font-family: var(--font-title);
    color: var(--gold-light);
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo-col span {
    font-weight: 300;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--gold-primary);
}

/* Avisos */
.footer-col p {
    line-height: 1.6;
    margin: 0;
    color: #999999;
}

/* Imagens (Pagamento e Segurança) */
.footer-img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-img:hover {
    opacity: 1;
}

.secure-img {
    max-width: 130px; /* Limita o tamanho do selo de segurança */
}

/* --- BOTTOM (COPYRIGHT) --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Linha divisória sutil */
    padding-top: 25px;
    text-align: center;
    font-size: 0.75rem;
    color: #666666;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================================
   MEDIA QUERIES (Desktop)
   ========================================= */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        /* Cria o layout exato da referência: 5 colunas com tamanhos proporcionais */
        grid-template-columns: 1.2fr 1fr 1.5fr 1fr 1fr;
        gap: 30px;
    }
}