/* Importação de Fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Lato:wght@400;700&display=swap');

/* Animações (Vamos reativar) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* Configurações Globais */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f5e0; /* Fundo Creme */
    color: #462f27; /* Texto Marrom */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Classe de animação */
.animated {
    opacity: 0; /* Começa invisível */
    animation-fill-mode: forwards; /* Garante que o estado final (opacidade 1) persista */
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Títulos de Seção Padrão */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3em;
    color: #462f27;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}
.section-title.light {
    color: #FFFFFF;
}

/* 1. Seção Principal (Hero) */
.hero-section {
    background-color: #FFFFFF;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 1px solid #EAE8D6;
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3em;
    color: #462f27;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-section .subtitle {
    font-size: 1.25em;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 2. Caixa de Oferta */
.offer-box {
    background-color: #fffbef;
    border: 2px solid #fb0;
    border-radius: 12px;
    padding: 30px;
    margin-top: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-anchor {
    font-size: 1.5em;
    color: #666;
    font-weight: 700;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
}

.main-price {
    font-family: 'Poppins', sans-serif;
    font-size: 4em;
    font-weight: 700;
    color: #228B22;
    margin: 10px 0;
    line-height: 1.1;
}

.urgency {
    font-size: 1.2em;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

/* 3. Botão CTA (COM PULSAÇÃO) */
.cta-button {
    display: block;
    font-family: 'Poppins', sans-serif;
    background-color: #32CD32;
    color: #FFFFFF;
    font-size: 1.4em;
    font-weight: 700;
    text-decoration: none;
    padding: 20px 15px;
    border-radius: 8px;
    margin-top: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px #32CD32, 0 0 25px #32CD32;
    animation: pulse 2s infinite; /* Reativando a pulsação */
}

.cta-button:hover {
    background-color: #28a428;
    box-shadow: 0 0 20px #32CD32, 0 0 35px #32CD32;
    transform: scale(1.03);
    animation-play-state: paused;
}

/* NOVO: Estilo do Contador Regressivo */
.timer-container {
    background-color: #462f27; /* Marrom escuro */
    color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    max-width: 450px;
    margin: 30px auto 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timer-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
    margin: 0 0 15px 0;
    text-align: center;
    color: #fb0; /* Amarelo */
}

#countdown-timer {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.timer-segment {
    display: flex;
    flex-direction: column;
}

.timer-segment span {
    font-family: 'Poppins', sans-serif;
}

.timer-segment .timer-number {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
}

.timer-segment .timer-label {
    font-size: 0.9em;
    color: #f7f5e0; /* Creme */
    text-transform: uppercase;
}
/* Fim do Estilo do Contador */

/* 4. Seção Copy */
.copy-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #FFFFFF;
    border-bottom: 1px solid #EAE8D6;
}

.copy-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9em;
    margin-bottom: 15px;
    color: #462f27;
}

.copy-section p {
    font-size: 1.15em;
    line-height: 1.7;
    color: #555;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* 5. Provas Sociais */
.proof-section {
    padding: 60px 20px;
    background-color: #f7f5e0;
}

.testimonial-item {
    background-color: #FFFFFF;
    border-left: 5px solid #32CD32;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    text-align: left;
}

.testimonial-item p {
    font-size: 1.1em;
    font-style: italic;
    color: #333;
    margin: 0;
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.benefits-list li {
    font-size: 1.1em;
    font-weight: 700;
    color: #462f27;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

/* 6. Galeria de Receitas */
.recipes-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    border-top: 1px solid #EAE8D6;
    border-bottom: 1px solid #EAE8D6;
}

.recipe-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.recipe-card {
    background: #FFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.recipe-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.recipe-card-content {
    padding: 20px;
    text-align: left;
}
.recipe-card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: #462f27;
    margin-bottom: 10px;
}
.recipe-card-content p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
}

/* 7. Seção de Bônus */
.bonus-section {
    padding: 60px 20px;
    background-color: #f7f5e0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.bonus-card {
    background: #462f27;
    color: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.bonus-card .bonus-tag {
    background: #fb0;
    color: #462f27;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}
.bonus-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    color: #FFFFFF;
    margin-bottom: 10px;
}

/* NOVO: Estilo do Valor do Bônus */
.bonus-value {
    font-size: 0.9em;
    color: #fb0;
    font-weight: 700;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
}
/* Fim do Estilo do Valor do Bônus */

.bonus-card img {
    width: 100%;
    border-radius: 8px;
    margin: 15px 0;
}
.bonus-card ul {
    list-style-type: none;
    padding-left: 0;
}
.bonus-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #f7f5e0;
}
.bonus-card ul li::before {
    content: '✓';
    color: #fb0;
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* 8. Seção da Autora */
.author-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    border-top: 1px solid #EAE8D6;
    text-align: center;
}

.author-section img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9em;
    margin-bottom: 10px;
    color: #462f27;
}

.author-section p {
    font-size: 1.1em;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 9. Seção de Garantia */
.guarantee-section {
    background-color: #462f27;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.guarantee-section img {
    width: 120px;
    margin-bottom: 20px;
}

.guarantee-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.guarantee-section p {
    font-size: 1.15em;
    color: #F0F0F0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 10. FAQ (Perguntas Frequentes) */
.faq-section {
    padding: 60px 20px;
    background: #FFFFFF;
    border-top: 1px solid #EAE8D6;
}
.faq-container {
    max-width: 750px;
    margin: 0 auto;
}
.faq-item {
    background: #FFF;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #EEE;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.faq-question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #462f27;
}
.faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #462f27;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background: #fdfdfd;
    color: #555;
    font-size: 1.05em;
}
.faq-answer p {
    padding: 0 20px 20px 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* 11. Seção de CTA Final */
.final-cta-section {
    background-color: #f7f5e0;
    padding: 60px 20px;
    text-align: center;
}

/* 12. Rodapé */
.footer-section {
    background-color: #2c2c2c;
    color: #AAA;
    padding: 30px 20px;
    font-size: 0.9em;
    text-align: center;
}

.footer-section p {
    margin: 5px 0;
}

.footer-section a {
    color: #FFF;
    text-decoration: underline;
}

/* Responsividade */
@media screen and (max-width: 600px) {
    .hero-section h1 {
        font-size: 1.8em;
    }
    .hero-section .subtitle {
        font-size: 1.1em;
    }
    .main-price {
        font-size: 3em;
    }
    .cta-button {
        font-size: 1.2em;
    }
    .section-title {
        font-size: 1.9em;
    }
    .copy-section h2, .author-section h2, .guarantee-section h2 {
        font-size: 1.6em;
    }
    .benefits-list {
        flex-direction: column;
        align-items: center;
    }
    .benefits-list li {
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
    }
    .timer-segment .timer-number {
        font-size: 2em;
    }
    .timer-segment .timer-label {
        font-size: 0.7em;
    }
}