/* Reset Básico e Fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9; /* Fundo geral suave */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    color: #3A5F86; /* Azul mais escuro e elegante */
}

h2 {
    font-size: 2.2rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #3A5F86;
    margin-top: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

ul {
    list-style: none; /* Remove bullets padrão */
    padding-left: 0;
    margin-bottom: 1.5rem;
}

ul li {
    padding-left: 1.5em; /* Espaço para o checkmark */
    background-image: url('https://via.placeholder.com/15x15/4CAF50/FFF?text=+'); /* Placeholder para checkmark verde */
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 1em; /* Tamanho do checkmark */
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}


/* Container Principal */
.container {
    max-width: 900px; /* Largura máxima para melhor leitura */
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho (Hero Section) */
.hero {
    background-color: #EAF2F8; /* Azul bem claro e suave */
    padding: 3rem 0;
    text-align: center;
}

.hero .logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 0.5rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .hero-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .price-tag {
    margin-top: 0.5rem;
    font-weight: bold;
    color: #E74C3C; /* Vermelho/Laranja para destaque */
}

/* Botão Call-to-Action (CTA) */
.cta-button {
    display: inline-block;
    background-color: #FFA07A; /* Salmão/Coral vibrante */
    color: #fff;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px; /* Botão arredondado */
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.cta-button:hover {
    background-color: #FF7F50; /* Coral mais escuro */
    transform: scale(1.05);
}

.pulse {
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(255, 160, 122, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 160, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 160, 122, 0); }
}


/* Seção de Dores (Pain) */
.pain {
    padding: 4rem 0;
    background-color: #fff;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Grid responsivo */
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.pain-points .point img {
    max-width: 60px; /* Ícones menores */
    margin-bottom: 0.5rem;
}

.pain .storytelling {
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
    color: #555;
    max-width: 750px;
    margin: 2rem auto 0 auto;
}

/* Seção da Solução (Solution) */
.solution {
    padding: 4rem 0;
    background-color: #f0f8ff; /* Alice Blue - suave */
    text-align: center;
}

.solution .ebook-cover {
     max-width: 300px;
     margin-bottom: 2rem;
     box-shadow: 0 5px 20px rgba(0,0,0,0.15);
     border-radius: 5px;
}

.solution ul {
    display: inline-block; /* Para centralizar a lista */
    text-align: left; /* Alinha texto da lista à esquerda */
    max-width: 600px; /* Limita largura da lista */
    margin-left: auto;
    margin-right: auto;
}


/* Seção de Benefícios (Benefits) */
.benefits {
    padding: 4rem 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.benefits-grid .benefit img {
     max-width: 60px;
     margin-bottom: 0.5rem;
}


/* Seção de Depoimentos (Testimonials) */
.testimonials {
    padding: 4rem 0;
    background-color: #EAF2F8; /* Mesmo azul claro do hero */
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover; /* Garante que a foto não distorça */
}

.testimonial p:first-of-type { /* O texto do depoimento */
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial p:last-of-type { /* Nome e Local */
    font-weight: bold;
    color: #3A5F86;
    margin-bottom: 0;
}

/* Seção de Objeções */
.objections {
    padding: 4rem 0;
    background-color: #fff;
}
.objection {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-left: 5px solid #FFA07A; /* Destaque com cor do CTA */
    margin-bottom: 1.5rem;
    border-radius: 0 5px 5px 0;
}

/* Seção de Bônus */
.bonus {
    padding: 3rem 0;
    background-color: #FFF8DC; /* Cornsilk - cor de bônus */
    text-align: center;
}

.bonus-image {
    max-width: 100%;
    max-height: 200px; /* Limita altura */
    width: auto;
    margin-bottom: 1rem;
}


/* Seção de Garantia */
.guarantee {
    padding: 3rem 0;
    background-color: #E0F2F1; /* Verde bem claro */
    text-align: center;
}
.guarantee-seal {
    max-width: 80px;
    margin-bottom: 1rem;
}


/* Seção Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #3A5F86, #5B84AE); /* Gradiente Azul */
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
}

.final-cta .final-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700; /* Dourado para o preço */
    margin-bottom: 0.5rem;
}

.final-cta .limited-offer {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.final-cta .secure-payment {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Seção FAQ */
.faq {
     padding: 4rem 0;
     background-color: #fff;
}

.faq details {
    background: #f9f9f9;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #eee;
}

.faq summary {
    padding: 1rem;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    position: relative;
}

.faq summary::after { /* Seta para indicar dropdown */
    content: '+';
    position: absolute;
    right: 1rem;
    font-size: 1.5em;
    line-height: 1;
}

.faq details[open] summary::after {
    content: '-';
}

.faq details p {
    padding: 0 1rem 1rem 1rem;
    margin-bottom: 0;
}


/* Footer */
footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}


/* --- Media Queries para Responsividade --- */

/* Tablets e Celulares Maiores */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero .subtitle { font-size: 1.1rem; }
    .cta-button { font-size: 1.1rem; padding: 12px 30px; }
    .pain-points, .benefits-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem;} /* Ajusta grid */

}

/* Celulares Pequenos */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    p, ul li { font-size: 0.95rem; }
    .hero .subtitle { font-size: 1rem; }
    .cta-button { font-size: 1rem; padding: 10px 25px; width: 90%; } /* Botão ocupa mais largura */
    .pain-points, .benefits-grid { grid-template-columns: 1fr; gap: 1.5rem;} /* Empilha em 1 coluna */
    .container { padding: 0 15px; }
    .testimonial { padding: 1.5rem; }
    .objection { padding: 1rem; border-left-width: 4px;}
    .faq summary { padding-right: 2.5rem;} /* Garante espaço para +/- */
    .faq summary::after { right: 0.8rem;}
}