

@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:96.5%;              /* Igual que la de Becas */
    max-width: 1100px;
    height: 450px;           /* 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;
    margin-left: 85px;
}

.programa-imagen image {

    margin-bottom: 20px; 

}


.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;  
    margin-left: 15px; 
    margin-bottom: 50px;
}


/* ======================================================
   FOOTER ESTILO FUNDACIÓN — ELEGANTE Y PROFESIONAL
====================================================== */
.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;
    }

        .programa-imagen {
        width: 100%;              /* ocupar toda la pantalla */
        height: auto;             /* 🔥 evita que se deforme */
        margin-left: 0;           /* 🔥 elimina el desplazamiento */
        margin-top: 10px;
        object-fit: cover;
        object-position: center;
    }
}

