/* ===========================
   QUIÉNES SOMOS 
   =========================== */

#nosotros_quienes_somos {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* PARTE SUPERIOR: IMAGEN */
.qs-hero {
    position: relative;
    flex: 0 0 80%; 
    background-image: url('../../assets/img/Satelital 0.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.qs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.17);
}

.qs-hero .container {
    position: relative;
    z-index: 2;
    max-width: 550px;
    margin-right: 8%;
    text-align: left;
}

.qs-hero .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

.qs-hero .intro-text p {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* PARTE INFERIOR: BLOQUE GRIS */
.qs-footer-gray {
    flex: 0 0 20%; 
    background-color: #333333; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.qs-footer-gray .container {
    max-width: 1000px;
    text-align: center;
}

.qs-footer-gray p {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    #nosotros_quienes_somos {
        height: auto; 
    }
    .qs-hero {
        flex: 0 0 500px;
        justify-content: center;
    }
    .qs-hero .container {
        margin-right: 0;
        text-align: center;
        padding: 20px;
    }
    .qs-footer-gray {
        padding: 40px 20px;
    }
}