/* Reset Básico e Definições Globais */
:root {
    --cor-fundo: #2a2724; /* Fundo marrom escuro, celestial */
    --cor-fundo-secundario: #3a3633; /* Tom mais claro para seções */
    --cor-texto-principal: #F5F5F5; /* Letras brancas/gelo */
    --cor-texto-secundario: #cccccc;
    --cor-destaque: #b08f6d; /* Um tom de bronze/dourado para botões e detalhes */
    --cor-cta-rosa: #FF9398; /* Tom de rosa para os botões principais */
    --cor-whatsapp: #25D366; /* Verde do WhatsApp */
    --font-titulo: 'Playfair Display', serif;
    --font-corpo: 'Lora', serif; /* Fonte atualizada para mais elegância */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--cor-fundo);
    color: var(--cor-texto-principal);
    font-family: var(--font-corpo);
    line-height: 1.7; 
}

/* Cabeçalho */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background-color: var(--cor-fundo);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

header.scrolled {
    transform: translateY(0);
    opacity: 1;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verse {
    font-family: var(--font-corpo);
    font-style: italic;
    color: var(--cor-texto-secundario);
    font-size: 0.9rem;
}

/* Header Countdown Timer */
#countdown-timer-header {
    color: var(--cor-texto-principal);
    text-align: center;
}

#countdown-timer-header p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--cor-texto-secundario);
}

#countdown-timer-header #timer {
    font-weight: 700;
    color: var(--cor-cta-rosa);
    font-size: 1.1rem;
    margin-left: 5px;
}


.menu-toggle {
    background: none;
    border: 2px solid var(--cor-destaque);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    transition: background-color 0.3s ease;
}

.menu-toggle svg path {
    stroke: var(--cor-destaque);
    transition: stroke 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(176, 143, 109, 0.1);
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--cor-fundo);
    border-left: 1px solid var(--cor-fundo-secundario);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--cor-texto-principal);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-titulo);
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--cor-destaque);
}


/* Utilitários e Estrutura */
.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

h1, h2, h3 {
    font-family: var(--font-titulo);
    font-weight: 700;
    color: var(--cor-texto-principal);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

p {
    color: var(--cor-texto-secundario);
    font-size: 1.1rem;
}

/* Seção Hero */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(176, 143, 109, 0.1), transparent 70%);
    overflow: hidden;
}

.hero-cross-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.08;
    color: var(--cor-destaque);
    animation: subtle-pulse 8s ease-in-out infinite;
}

.hero-cross-decoration svg {
    width: 300px;
    height: 300px;
    fill: var(--cor-destaque);
}

@keyframes subtle-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.08;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.12;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.08;
    }
}


#hero .container > * {
    position: relative;
    z-index: 1;
}

#hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 20px;
}

#hero .subtitle {
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto 40px;
    color: var(--cor-texto-principal);
    font-style: italic;
}

/* Botões de CTA */
.cta-button {
    display: inline-block;
    background-color: var(--cor-cta-rosa);
    color: var(--cor-fundo);
    font-family: var(--font-corpo);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 147, 152, 0.2);
}

.final-cta {
    background-color: var(--cor-whatsapp);
    color: #FFFFFF;
    padding: 22px 50px;
    font-size: 1.2rem;
    margin-top: 20px;
    width: 100%;
    animation: pulse 2s infinite;
}

.final-cta:hover {
     box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Seção de Benefícios */
#beneficios {
    background-color: var(--cor-fundo-secundario);
}
.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
    margin-bottom: 40px;
}
.beneficio-card, .garantia-card {
    background-color: var(--cor-fundo);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--cor-destaque);
}
.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--cor-destaque);
}

.garantia-card {
    border-color: var(--cor-destaque);
    text-align: center;
}
.garantia-card h3 {
    color: var(--cor-texto-principal);
}

/* Seções com Slider (Amostra e Avaliações) */
.slider-container {
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: var(--cor-destaque) var(--cor-fundo-secundario);
    scrollbar-width: thin;
}

.slider-container::-webkit-scrollbar { height: 8px; }
.slider-container::-webkit-scrollbar-track { background: var(--cor-fundo-secundario); border-radius: 10px; }
.slider-container::-webkit-scrollbar-thumb { background-color: var(--cor-destaque); border-radius: 10px; }

.slider {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 0 5vw;
}

#amostra {
    padding-top: 40px;
}

.slider-amostra img {
    height: 550px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

#avaliacoes {
    background-color: var(--cor-fundo-secundario);
}

.slider-avaliacoes img {
    max-height: 500px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

#produto {
    background-color: var(--cor-fundo);
}
.preco-box {
    background: linear-gradient(145deg, var(--cor-fundo-secundario), var(--cor-fundo));
    border: 2px solid var(--cor-destaque);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: 0 0 30px rgba(176, 143, 109, 0.15);
}
.preco-antigo { text-decoration: line-through; font-size: 1.2rem; opacity: 0.7; }
.preco-novo { font-size: 2rem; margin: 10px 0; font-weight: 500; }
.preco-novo span { font-size: 4rem; font-weight: 700; color: var(--cor-destaque); }
.desconto { background-color: var(--cor-destaque); color: var(--cor-fundo); padding: 5px 10px; border-radius: 5px; display: inline-block; font-weight: 600; margin-bottom: 20px; }
.bonus-warning { margin-top: 20px; font-weight: 500; color: var(--cor-texto-principal); }


/* Selos de Confiança */
.trust-seals-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
    border-top: 1px solid var(--cor-fundo-secundario);
    padding-top: 20px;
}

.trust-seal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cor-texto-secundario);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-seal svg {
    width: 24px;
    height: 24px;
    fill: var(--cor-destaque);
}

.payment-info {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--cor-texto-secundario);
}

.payment-info strong {
    color: var(--cor-texto-principal);
}


/* Seção de FAQ */
.faq-item { margin-bottom: 10px; text-align: left; border-bottom: 1px solid var(--cor-destaque); }
.faq-question { width: 100%; padding: 20px; background: none; border: none; text-align: left; font-size: 1.2rem; font-weight: 600; color: var(--cor-texto-principal); cursor: pointer; position: relative; font-family: var(--font-corpo); padding-right: 50px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { padding: 0 20px 20px 20px; }
.faq-answer.active { max-height: 200px; }

/* Ícone do FAQ (CORRIGIDO) */
.faq-question::after {
    content: '+'; /* Símbolo de mais */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 300; /* Deixa o sinal mais fino */
    color: var(--cor-texto-principal);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '−'; /* Símbolo de menos */
    transform: translateY(-50%) rotate(360deg); /* Animação sutil na troca */
}

/* Rodapé */
footer { padding: 40px 0; text-align: center; border-top: 1px solid var(--cor-fundo-secundario); }
.whatsapp-contact { margin-bottom: 30px; }
.whatsapp-contact p { margin-bottom: 15px; font-size: 1.1rem; color: var(--cor-texto-principal); }
.whatsapp-link { display: inline-flex; align-items: center; gap: 10px; background-color: var(--cor-whatsapp); color: #FFFFFF; padding: 12px 28px; border-radius: 50px; text-decoration: none; font-weight: 600; border: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.whatsapp-link:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }
.whatsapp-link svg { width: 24px; height: 24px; fill: currentColor; }
footer p { font-size: 0.9rem; color: var(--cor-texto-secundario); }
footer p:first-child { margin-bottom: 10px; }

/* ===== ANIMAÇÕES AO ROLAR ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.grid-beneficios .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.grid-beneficios .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.grid-beneficios .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.grid-beneficios .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.grid-beneficios .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .header-container { width: 95%; }
    .verse { display: none; }
    #countdown-timer-header {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .container { padding: 60px 0; }
    #hero { min-height: 100vh; }
    #hero h1 { font-size: 2.5rem; }
    #hero .subtitle { font-size: 1.2rem; }
    h2 { font-size: 2.2rem; }
    .slider-amostra img { height: 450px; }
    .slider-avaliacoes img { max-height: 400px; }
    .preco-novo span { font-size: 3.5rem; }
    .final-cta { padding: 20px 40px; font-size: 1.1rem; }
}

@media (max-width: 480px) {
    body { line-height: 1.6; }
    .container { padding: 50px 0; }
    .hero-cross-decoration svg { width: 200px; height: 200px; }
    #hero h1 { font-size: 2rem; line-height: 1.3; }
    #hero .subtitle { font-size: 1.1rem; }
    h2 { font-size: 1.8rem; }
    p { font-size: 1rem; }
    .slider-amostra img { height: 400px; }
    .slider-avaliacoes img { max-height: 350px; }
    .preco-box { padding: 30px 25px; }
    .preco-novo span { font-size: 3rem; }
    .final-cta { padding: 18px; font-size: 1rem; }
    .faq-question { font-size: 1.1rem; }
    #countdown-timer-header p { font-size: 0.8rem; }
    #countdown-timer-header #timer { font-size: 1rem; }
    .trust-seals-container { gap: 15px; }
}

