/* ############################################# SECCION: PORTADA ############################################# */
.main_section {
    /* Display & Position */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100dvh; /* por si falla */
    height: calc(100vh - var(--header-height));

    /* Background */
    background: url("../../media/portada.jpg");  /* El estadio esta muy mal generada */
    /* background: linear-gradient(to right, #000, transparent), url("../media/portada.jpg");  */
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

.portada_text {
    width: 80vw;
    text-align: left;
}

.portada_text p {
    text-align: left;
}

.portada_text h1 {
    font-weight: 700;
    font-size: clamp(36px, 8vw, 60px);
    padding: 0;
    /* padding-bottom: 5vh; */
}

.portada_text h1 span {
    color: var(--color-t2);
}

.portada_text .btn-link {
    /* Box model */
    width: 30%;
    padding: var(--padding-button);
    /* Bordes */
    border: none;
    border-radius: var(--border-radius-button);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 1); /* Añade una sombra sutil para darle relieve */
    /* Background */
    background-color: var(--lila-1);
    /* background-color: var(--color-t2); */

    /* Font */
    color: #000;
    text-decoration: none;
    font-weight: bold;
    /* Cursor */
    cursor: pointer;
}

.portada_text .btn-link:hover {
    opacity: 0.7;
}

.button_container_index .button_1 {
    width: 40%;
    width: clamp(55px, 40%, 150px);
}


/* ==================================== */
/* Sección de Citas sobre importancia de educacion finanaciera
/* ==================================== */
.quotes-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.quotes-grid {
    display: grid;
    grid-template-columns: 1fr;  /* Por defecto, una columna en pantallas pequeñas (móviles) */
    gap: 25px; /* Espacio entre las tarjetas */
}

/* Estilos de la Tarjeta de Cita (Quote Card) */
.quote-card {
    background: #ffffff;
    padding: 30px 25px 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    border-top: 5px solid var(--lila-1); /* Borde superior para */
}

/* ==================================== */
/* Sección de "Mas dinero, no soluciona el problema" */
/* ==================================== */
.stats-source {
    font-size: var(--fs-small);
    font-style: italic;
}

.stats-highlight {
    margin-top: 2rem;
}

/* ---------------------------*/
/* DESKTOP  */
/* ---------------------------*/
/* mobile first. Estas config son para Desktop */
@media only screen and (min-width: 1000px) {
    .portada_text { 
        width: 40vw;
    }

    .button_container_index .button_1 {
        width: 25%;
    }

    .quotes-grid {
        /* Cuatro columnas */
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-highlight {
        border-bottom: 0;
    }

  

}
