/* =========================
   QUIÉNES SOMOS
========================= */

#quienes {
    padding: 20px 0;
}

/* =========================
   TÍTULO
========================= */
.quienes-titulo {
    margin-top: -30px;   /* ⬆️ sube SOLO el título */
    margin-bottom: 18px;
}

#quienes h2 {
    color: #001b3d;
    font-size: 32px;
    font-weight: 700;
}

/* =========================
   IMAGEN EMPRESA
========================= */
.quienes-imagen-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -10px;   /* 🔽 BAJA la imagen */
    margin-bottom: 35px;
}

/* IMAGEN GRANDE Y CENTRADA */
.quienes-imagen {
    width: 600px;        /* 🔥 MÁS GRANDE */
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    object-fit: contain;
}

/* =========================
   ICONOS
========================= */
.quienes-icono {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* ITEMS */
.quienes-item {
    align-items: flex-start;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .quienes-imagen-wrapper {
        margin-top: 15px;
    }

    .quienes-imagen {
        width: 120%;        /* 🔥 MÁS GRANDE */
        max-width: 1000px;   /* evita que se vea exagerada */
    }
}

.quienes-items {
    margin-top: -30px; /* ⬆️ sube suavemente los textos */
}
