body {
    font-family: 'Lato', sans-serif;
    background-color: #fdfaf6; /* Beige cálido */
    color: #333;
    margin: 0;
    line-height: 1.6;
}

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

h1, h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* --- Secciones --- */
section, .hero, footer {
    text-align: center;
    padding: 60px 20px;
}

section {
    border-bottom: 1px solid #eee;
}

/* --- Hero Section --- */
.hero {
    background-color: transparent; /* Fondo consistente */
}

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
}

.hero .subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ebook-mockup img {
    max-width: 300px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Botones CTA --- */
.cta-button {
    background-color: #6B8E23; /* Verde Oliva Original */
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button.large {
    font-size: 1.2em;
    padding: 20px 40px;
}

.secure-payment {
    font-size: 0.9em;
    margin-top: 15px;
    color: #555;
}

/* --- Secciones de Contenido --- */
.problem h2, .solution h2, .benefits h2, .guarantee h2, .final-cta h2 {
    margin-bottom: 25px;
}

.problem p, .solution p, .final-cta p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.problem img {
    display: block;
    max-width: 100%;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.after-ebook-img {
    display: block;
    max-width: 100%;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefits ul, .guarantee ul {
    list-style: none;
    padding: 0;
    display: inline-block; /* Para centrar la lista */
    text-align: left; /* Alinear el texto dentro de la lista */
}

.benefits li, .guarantee li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* --- Autora --- */
.author {
    background-color: #fff;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.author-info img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.quote {
    font-style: italic;
    margin-top: 15px;
    padding-left: 15px;
    border-left: 3px solid #6B8E23; /* Verde Oliva Original */
}


/* --- Testimonios --- */
.testimonials .testimonial {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 450px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center; /* Center image and text */
}

.testimonials .testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonials .testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonials .testimonial span {
    font-weight: bold;
}


/* --- CTA Final --- */
.final-cta {
    background-color: transparent;
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: white;
    padding: 30px 20px;
}

footer a {
    color: #6B8E23; /* Verde Oliva Original */
    text-decoration: none;
}

footer .copyright {
    font-size: 0.9em;
    margin-top: 15px;
    color: #aaa;
}

/* --- Animaciones --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Responsive --- */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2em;
    }
    .hero .subtitle {
        font-size: 1.1em;
    }
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    .author-info img {
        margin-bottom: 10px;
    }
    .author-info div {
        text-align: center;
    }
    .quote {
        text-align: center;
        border-left: none;
        padding-left: 0;
    }
}

.urgency {
    background-color: #ffdd57;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
}

.urgency p {
    margin: 0;
    font-weight: 700;
    color: #333;
}

.urgency strong {
    color: #d35400;
}

.lead {
    background-color: #e7f3fe;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}