body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.hero {
    /* 👇 Agregado para que la sección ocupe el 100% de la altura de la pantalla */
    height: 100vh;
    
    /* 👇 Agregado para centrar el contenido vertical y horizontalmente */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* --- Tu código original --- */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/imagen_principal_landing_lead_magnet.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;

    /* 👇 Se ajusta el padding para que no interfiera con el centrado de flexbox */
    padding: 2rem;
}

.hero h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #00bfa5;
    border-color: #00bfa5;
    font-weight: 700;
    padding: 15px 30px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #008c7a;
    border-color: #008c7a;
    transform: translateY(-2px);
}

.section {
    padding: 80px 0;
}

.section-bg {
    background-color: #fff;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.lead-magnet-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.lead-magnet-card:hover {
    transform: translateY(-5px);
}

.lead-magnet-card img {
    width: 100%;
    height: auto;
}

.lead-magnet-card .card-body {
    padding: 30px;
}

.author-box {
    background-color: #343a40;
    color: white;
    border-radius: 15px;
    text-align: center;
}

.faq-accordion .accordion-button {
    font-weight: 700;
}

footer {
    background-color: #212529;
    color: white;
}