/* Variáveis de Cores e Configurações */
:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --primary-green: #2ecc71; /* Verde vibrante */
    --primary-green-dark: #27ae60;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Layout Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem; /* Padding padronizado de 3rem para TODAS as seções */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: flex-start; /* Coloca o conteúdo mais para o topo em vez do centro exato */
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f4fff8 100%); /* Fundo branco com um leve toque de verde no final */
}

/* Logo */
.logo {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 1.5rem auto; /* Espaço reduzido abaixo da logo */
    transition: transform 0.3s ease;
}

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

/* Tipografia */
h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem); /* Aumentado significativamente */
    font-weight: 800; /* Todo o texto em negrito */
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem; /* Espaço bem reduzido entre o título e o subtítulo */
    max-width: 800px;
    color: var(--text-color);
}

h2 strong {
    font-weight: 800; /* Destaque em negrito */
}

/* Subtítulo */
.subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem); /* Levemente maior */
    font-weight: 500; /* Mais encorpado para melhor leitura */
    color: #222222; /* Tonalidade muito mais escura e visível */
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 700px;
}

/* Destaque opcional no texto com verde (se quiser usar no futuro: <span class="highlight">) */
.highlight {
    color: var(--primary-green);
}

/* Imagem Principal do Hero */
.hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px var(--shadow-medium);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(46, 204, 113, 0.2); /* Sombra esverdeada ao passar o mouse */
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background-color: #516A2F; /* Verde musgo inspirado na imagem */
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    width: 100%;
    max-width: 500px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulseButton 2s infinite;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3e5223;
}

@keyframes pulseButton {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(81, 106, 47, 0.6);
    }
    50% {
        transform: scale(1.03); /* Efeito pulsante */
        box-shadow: 0 0 0 15px rgba(81, 106, 47, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(81, 106, 47, 0);
    }
}

/* Seção de Features */
.features {
    background-color: #fdf7eb; /* Fundo creme/bege da imagem */
    padding: 2.5rem 0; /* Menos padding vertical para não ocupar muita tela */
}

.features .container {
    padding-top: 0;
    padding-bottom: 0;
}

.features-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #4a443e; /* Marrom acinzentado escuro */
    line-height: 1.1; /* Linhas mais coladas */
    margin-bottom: 1.5rem; /* Menos espaço abaixo do título */
    text-align: center;
}

.features-title strong {
    font-weight: 800;
}

.features-list {
    list-style: none;
    padding: 0;
    display: inline-flex; /* Faz o bloco se ajustar ao conteúdo */
    flex-direction: column;
    gap: 0.5rem; /* Espaçamento bem menor entre as linhas da lista */
    align-items: flex-start; /* Alinha o texto à esquerda */
    text-align: left;
}

.features-list li {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: #3b3631;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features-list li i {
    color: #516A2F; /* Verde musgo igual ao botão */
    font-size: 1.6rem;
    min-width: 30px;
    text-align: center;
}

.features-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 16px;
    margin-top: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Seção de Receitas */
.recipes {
    background-color: #c9d1b1; /* Fundo verde oliva claro */
}

.recipes-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 400;
    color: #3b3631;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    text-align: center;
}

.recipes-title strong {
    font-weight: 800;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    width: 100%;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .recipes-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 colunas no desktop */
    }
}

/* Card da Receita */
.recipe-card {
    background-color: #fdf7eb; 
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.recipe-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block; 
}

.recipe-content {
    padding: 1.2rem 0.8rem; /* Menos preenchimento interno */
    text-align: center;
}

.recipe-name {
    font-size: clamp(0.9rem, 3vw, 1.1rem); /* Fonte reduzida */
    font-weight: 700;
    color: #3b3631;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.recipe-detail {
    font-size: 0.85rem; /* Texto de detalhes bem menor */
    color: #555;
    margin-bottom: 0.2rem;
    font-weight: 400;
}

/* Seção Galeria e Molhos */
.gallery {
    background-color: #fdf7eb; /* Fundo creme/bege */
}

.gallery-title {
    font-size: clamp(1.2rem, 3.5vw, 2.2rem); /* Tamanho ajustado para garantir apenas 2 linhas */
    font-weight: 400;
    color: #3b3631;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    text-align: center;
}

.gallery-title strong {
    font-weight: 800;
}

.gallery-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 650px;
    margin: 0 auto 2rem auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-carousel-track .gallery-img {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-shrink: 0; /* REGRA DE OURO DO SAFARI: impede encolhimento */
    object-fit: cover;
    display: block;
    box-shadow: none;
    border-radius: 0;
}

.bonus-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #3b3631;
    line-height: 1.2;
    margin-top: 4rem; /* Espaço entre o botão e este título */
    text-align: center;
}

.bonus-title strong {
    font-weight: 800;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-top: 2rem;
    width: 100%;
    justify-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-card {
    background-color: #c9d1b1; 
    border-radius: 12px; 
    overflow: hidden;
    width: 100%;
    max-width: 260px; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); 
    display: flex;
    flex-direction: column;
}

.bonus-card:last-child:nth-child(odd) {
    grid-column: 1 / -1; /* Centraliza o último bônus (ímpar) no celular */
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas no desktop */
    }
    .bonus-card:last-child:nth-child(odd) {
        grid-column: auto;
    }
}

.bonus-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.bonus-content {
    padding: 1.2rem 1rem; /* Menos preenchimento interno */
    text-align: center;
}

.bonus-name {
    font-size: clamp(1rem, 3vw, 1.2rem); /* Fonte menor */
    font-weight: 800;
    color: #3b3631;
    margin-bottom: 0.5rem;
}

.bonus-desc {
    font-size: clamp(0.9rem, 2.5vw, 1.05rem); /* Fonte menor */
    font-weight: 600; /* Mais encorpado para facilitar leitura em tamanhos pequenos */
    color: #3b3631;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bonus-price {
    font-size: 0.9rem; /* Preço menor */
    color: #3b3631;
    font-weight: 600;
}

.bonus-price s {
    opacity: 0.7;
    margin-right: 5px;
}

/* Seção Problemas (Pain) */
.pain {
    background-color: #fdf7eb; 
}

.pain-title {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem); /* Bem menor */
    font-weight: 600;
    color: #3b3631;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pain-title strong {
    font-weight: 800;
    color: #ff4747; /* Destaque na dor em vermelho */
}

.pain-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 2rem auto;
    background-color: #ffffff; /* Fundo branco pra criar um "card" */
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(255, 71, 71, 0.05); /* Sombra suave avermelhada */
    border: 1px solid rgba(255, 71, 71, 0.15); /* Borda sutil vermelha */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain-list li {
    display: flex;
    align-items: center; /* Centralizado verticalmente com o ícone */
    gap: 0.8rem;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem); /* Fonte reduzida e refinada */
    color: #555555;
    line-height: 1.3;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(0,0,0,0.06); /* Linha divisória */
}

.pain-list li:last-child {
    border-bottom: none;
}

.pain-list li i {
    color: #ff4747;
    font-size: 1.2rem; /* Ícone menor e proporcional */
    min-width: 20px;
    text-align: center;
}

.pain-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #27ae60; /* Verde, focando na solução que virá abaixo */
    font-weight: 800;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Seção Oferta */
.offer {
    background-color: #c9d1b1; /* Fundo verde para dar contraste ao cartão */
}

.offer-card {
    background-color: #fdf7eb; /* Fundo creme/bege do cartão */
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-title {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    font-weight: 800;
    color: #4b5a31; /* Verde escuro estilo imagem */
    text-align: center;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    width: 100%;
}

.offer-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto 1.5rem auto;
    display: block;
}

.offer-list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-bottom: 2rem;
    color: #3b3631;
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    font-weight: 500;
    line-height: 1.3; /* Menos espaço entre linhas */
    width: 100%;
}

.offer-list li {
    margin-bottom: 0.3rem; /* Menos margem entre itens */
}

.offer-price-box {
    text-align: center;
    background-color: #ffffff;
    border: 2px dashed rgba(47, 177, 77, 0.4);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
    width: 100%;
    box-shadow: 0 10px 20px rgba(47, 177, 77, 0.05);
}

.price-old {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #7a756e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-old s {
    color: #ff4747; 
    text-decoration: line-through;
    text-decoration-color: #ff4747;
    text-decoration-thickness: 2px;
}

.price-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-new .installments {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #1a1a1a; /* Cor preta conforme pedido */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.price-new .value {
    font-size: clamp(3rem, 9vw, 4rem);
    color: #2fb14d; /* Verde vibrante */
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.price-cash {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #4a443e;
    font-weight: 600;
    background-color: #fdf7eb;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    margin-top: 0.5rem;
}

.cta-large {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    padding: 1.2rem 3rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.offer-urgency {
    color: #ff0000;
    text-align: center;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    font-weight: 600;
}

/* Seção Garantia */
.guarantee {
    background-color: #c9d1b1; /* Fundo verde combinando com a oferta */
    text-align: center;
}

.guarantee-box {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid #fdf7eb;
}

.guarantee-image {
    width: 100%;
    max-width: 220px; /* Muito maior */
    height: auto;
    margin: 0 auto 1.5rem auto;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.guarantee-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem); 
    font-weight: 800; 
    color: #3b3631;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.guarantee-subtitle {
    font-size: clamp(1rem, 3vw, 1.15rem);
    color: #555555;
    font-weight: 500;
    line-height: 1.4;
    max-width: 450px;
}

/* Seção Autora */
.author {
    background-color: #fdf7eb; /* Fundo creme/bege */
}

.author-name {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #4b5a31; /* Verde escuro */
    text-align: center;
    margin-bottom: 0.2rem;
}

.author-location {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #8c867d; /* Cor mais suave */
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}

.author-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    margin: 0 auto 2rem auto;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.author-bio {
    font-size: clamp(1.1rem, 3.5vw, 1.2rem);
    color: #3b3631;
    text-align: center;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Seção Depoimentos (Prova Social) */
.testimonials {
    background-color: #c9d1b1; /* Fundo verde do mockup */
}

.testimonials-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem); /* Reduzido levemente para forçar em 2 linhas */
    font-weight: 400;
    color: #3b3631;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 2rem; /* Reduzido o espaço embaixo do título */
}

.testimonials-title strong {
    font-weight: 800;
}

.carousel-container {
    position: relative;
    max-width: 350px; /* Largura similar a um celular */
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-radius: 20px;
    border: 3px solid #3b3631; /* Borda imitando celular */
    background-color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #3b3631; 
    opacity: 0.4;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: opacity 0.3s;
    padding: 10px;
}

.carousel-btn:hover {
    opacity: 1;
}

.prev-btn {
    left: -50px;
}

.next-btn {
    right: -50px;
}

/* Responsividade das setas */
@media (max-width: 500px) {
    .prev-btn { left: -20px; color: #fff; text-shadow: 0 0 5px rgba(0,0,0,0.5); }
    .next-btn { right: -20px; color: #fff; text-shadow: 0 0 5px rgba(0,0,0,0.5); }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #3b3631;
    opacity: 0.2;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    opacity: 0.8;
    transform: scale(1.2);
}

/* Seção FAQ */
.faq {
    background-color: #fdf7eb;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.faq-line {
    height: 1.5px;
    background-color: #4b5a31; /* linha verde escura */
    flex-grow: 1;
    max-width: 60px;
}

.faq-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 500;
    color: #4b5a31;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-list {
    max-width: 650px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #c9d1b1; /* Linha sutil para separar */
}

.faq-item:first-child {
    border-top: 1px solid #c9d1b1;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: clamp(1.1rem, 3.5vw, 1.3rem);
    color: #3b3631;
    cursor: pointer;
    font-weight: 400;
}

.faq-question span {
    padding-right: 1.5rem;
}

.faq-question i {
    font-size: 1.2rem;
    color: #3b3631;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: #4a443e;
    line-height: 1.6;
    text-align: left; /* Garante que as respostas fiquem alinhadas à esquerda */
}

/* Rodapé */
.site-footer {
    background-color: #4a4a4a; /* Fundo cinza */
    padding: 1rem 0;
    text-align: center;
}

.site-footer p {
    color: #ffffff;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    margin: 0;
    font-weight: 300;
}

/* Animações */
.fade-in {
    opacity: 0;
    animation: fadeInAnimation 1.2s ease-out forwards;
}

.slide-up {
    opacity: 0;
    animation: slideUpAnimation 1s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes slideUpAnimation {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade adicional para Celulares */
@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem; /* Padrão unificado no mobile também */
    }
    
    .logo {
        max-width: 80px;
        margin-bottom: 1rem; /* Consistente com a redução feita no desktop */
    }
    
    h2 {
        font-size: clamp(1.2rem, 5.5vw, 1.8rem); /* Aumentado o máximo possível para manter em 1 linha */
        white-space: nowrap; /* Força a ficar em uma linha só */
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: 1.05rem; /* Fonte melhorada no celular */
        margin-bottom: 2rem; 
    }

    .hero-image {
        border-radius: 16px; /* Bordas um pouco menos arredondadas em telas pequenas */
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        margin-top: 2rem;
    }

    .features-list li {
        font-size: 1.1rem;
        gap: 0.8rem;
    }
    
    .features-list li i {
        font-size: 1.4rem;
    }
}
