
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

.title-becas {
    font-size: 70px;
    color: #242323; 
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200; /* Quita la negrita */
    margin-top: -20px;

}

.programa-imagen {
    width:90%;              /* Igual que la de Becas */
    max-width: 1100px;
    height: 350px;           /* MISMA ALTURA en todas (ajustable) */
    object-fit: cover;       /* 🔥 Recorta igual todas las imágenes */
    object-position: center;
    filter: brightness(85%);
    margin-bottom: 20px; 
    margin-top: -50px;
}

.becas-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -20px;
}
.becas-caption {
    max-width:85%;  
    padding: 20px 0;
}

.becas-caption p {
    margin-top: 0;
    text-align: justify;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;   
}


.footer {
/* Gris ultra suave */
    padding: 70px 8%;             /* Mucho aire */
    font-family: 'Inter', sans-serif;
    color: #444;
}

/* TOP: Logo izquierda + texto derecha */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;   /* 🔥 Izquierda / Derecha */
    align-items: center;
    margin-top: 20px;
    width: 100%;
}
/* Logo */
.footer-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.footer-left img{
    width: 175px;  
    padding-left: 35px;               
}

/* Texto descriptivo */
.footer-text {
    flex: 2;
    text-align: left;
    max-width: 700px;
}

.footer-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Línea separadora */
.footer-separator {
    width: 100%;
    border-top: 1px solid #ccc;
    margin: 50px 0 25px 0;
}


.footer-bottom p {
    font-size: 12px;              /* 🔥 Texto más pequeño */
    color: #555;
    margin: 0;
    width: 100%;                  /* Forzar salto de línea natural */
    max-width: 330px;             /* Ajusta para 4 líneas */
}

.left-text {
    text-align: left;
}

.right-text {
    text-align: right;
}
/* Responsivo */
@media (max-width: 1024px) {

    /* Centra todo el footer-top */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-left {
        justify-content: center;
    }

    .footer-text {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Centrar completamente el footer-bottom */
    .footer-bottom {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100%;
        gap: 5px;
    }

    .footer-bottom p {
        text-align: center !important;
        width: 100%;
        margin: 0;
    }
}



/* ============================================================
   RESPONSIVE — TABLETS Y CELULARES
============================================================ */

/* TABLETS (768px - 1024px) */
@media (max-width: 1024px) {

    .title-becas {
        font-size: 55px;
        margin-top: 0;
    }

    .programa-imagen {
        height: 300px;
        width: 95%;
        margin-top: -20px;
    }

    .becas-caption {
        max-width: 90%;
    }

}

/* CELULARES GRANDES (481px - 767px) */
@media (max-width: 767px) {

    .title-becas {
        font-size: 45px;
        margin-top: 0;
    }

    .programa-imagen {
        height: 260px;
        width: 95%;
        margin-top: -10px;
    }

    .becas-caption {
        max-width: 92%;
        padding: 10px 0;
    }

    .becas-caption p {
        font-size: 1rem;
        line-height: 1.7;
    }


}

/* CELULARES PEQUEÑOS (≤ 480px) */
@media (max-width: 480px) {

    .title-becas {
        font-size: 34px;
        margin-top: 10px;
        padding: 0 10px;
    }

    .programa-imagen {
        height: 220px;
        width: 95%;
        margin-top: 0;
    }

    .becas-caption {
        max-width: 95%;
        padding: 0;
    }

    .becas-caption p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

}



