/* Reset básico e fontes */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos gerais */
section {
    padding: 60px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cta-button {
    display: inline-block;
    background-color: #ff6f61; /* Cor chamativa - pode ajustar */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #e65a50; /* Cor mais escura no hover */
}

/* 1. Seção Headline (Hero) */
.hero {
    background-color: #f8f8f8; /* Fundo claro */
    text-align: center;
    padding: 40px 0;
}

.hero-image {
    max-height: 400px;
    width: auto;
    margin: 0 auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 3em;
    font-weight: 900;
    color: #c71585; /* Cor destaque para o título */
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* 2. Seção Problema/Dor */
.problema {
    background-color: #fff;
    text-align: center;
}

.problema h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #c71585;
}

.problema p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* 3. Seção Solução */
.solucao {
    background-color: #f0e6f7; /* Fundo levemente roxo/rosa */
    text-align: center;
}

.solucao h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.solucao p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* 4. Seção Conteúdo */
.conteudo {
    background-color: #fff;
    text-align: center;
}

.conteudo h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.modulos {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Para responsividade */
}

.modulo {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    flex: 1; /* Ocupa espaço igual */
    min-width: 250px; /* Largura mínima */
    max-width: 300px;
}

.modulo img {
    height: 150px; /* Altura fixa para imagens dos módulos */
    width: 100%;
    object-fit: cover; /* Cobre o espaço sem distorcer */
    border-radius: 5px;
    margin-bottom: 15px;
}

.modulo h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #c71585;
}

.modulo p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.bonus-info {
    font-size: 1.1em;
    font-weight: bold;
    color: #555;
    margin-top: 20px;
}

/* 5. Seção Benefícios */
.beneficios {
    background-color: #f0e6f7;
    text-align: center;
}

.beneficios h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.beneficios ul {
    list-style: none; /* Remove bullets */
    padding: 0;
    max-width: 600px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.beneficios li {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.beneficios li::before {
    content: '✔️'; /* Adiciona checkmark */
    color: #28a745; /* Verde */
    position: absolute;
    left: 0;
    top: 0;
}

/* 6. Seção Depoimentos */
.depoimentos {
    background-color: #fff;
    text-align: center;
}

.depoimentos h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.depoimento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Grid responsivo */
    gap: 30px;
}

.depoimento-card {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
}

.depoimento-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    border: 3px solid #c71585;
}

.depoimento-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.depoimento-card strong {
    font-size: 1em;
    color: #333;
}

/* 7. Seção Para Quem é */
.para-quem {
    background-color: #f0e6f7;
    text-align: center;
}

.para-quem h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.para-quem ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.para-quem li {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.para-quem li::before {
    content: '👉'; /* Adiciona dedo apontando */
    position: absolute;
    left: 0;
    top: 0;
}

/* 8. Seção Oferta Final */
.oferta-final {
    background-color: #c71585; /* Cor de destaque forte */
    color: #fff;
    text-align: center;
}

.oferta-final h2 {
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.oferta-final p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.preco-box {
    background-color: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    margin: 30px auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.preco-box p {
    margin: 0 0 10px 0;
    color: #555;
    font-size: 1em;
}

.preco {
    font-size: 3.5em;
    font-weight: 900;
    color: #c71585;
    margin-bottom: 10px;
}

.preco-box strong {
    font-size: 1.2em;
}

.detalhes-oferta {
    margin-top: 20px;
    margin-bottom: 30px;
}

.detalhes-oferta p {
    font-size: 1em;
    margin-bottom: 5px;
    color: #eee;
}

.final-cta {
    font-size: 1.5em;
    padding: 20px 40px;
    background-color: #ffd700; /* Amarelo ouro para destaque */
    color: #333;
}

.final-cta:hover {
    background-color: #e6bf00;
}

/* 9. Rodapé */
footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Responsividade */
@media (max-width: 768px) {
    .modulos {
        flex-direction: column;
        align-items: center;
    }

    .modulo {
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero h2 {
        font-size: 1.3em;
    }

    h2 {
        font-size: 1.8em;
    }

    .oferta-final h2 {
        font-size: 2em;
    }

    .preco {
        font-size: 3em;
    }

    .final-cta {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 1.1em;
    }

    h2 {
        font-size: 1.5em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .oferta-final h2 {
        font-size: 1.8em;
    }

    .preco {
        font-size: 2.5em;
    }

    .final-cta {
        font-size: 1.1em;
        padding: 15px 30px;
    }

    .depoimento-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
    }
}

