/* ========================================================
   ESTILOS ESPECÍFICOS PARA LA VISTA DE SOBRE NOSOTROS
======================================================== */

/* Hero Interactivo (Más reducido) */
.hero-nosotros {
    min-height: 40vh;
    padding: 80px 0;
    background-image: url('../assets/img/fondo_.png'); /* 📸 FOTO INSTITUCIONAL / HERO (Fondo) */
    background-size: cover;
    background-position: center;
}

/* Morfismo de Vidrio (Glassmorphism) para las Esencias */
.morfismo-wrapper {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.icon-nosotros {
    width: 44px; height: 44px;
    background-color: transparent;
    color: var(--azul-corporativo);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
    transition: all 0.3s ease;
}

.hover-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}
.hover-card:hover {
    transform: translateY(-3px);
    background-color: var(--azul-corporativo) !important;
}
.hover-card:hover *, .hover-card.active * {
    color: #ffffff !important;
}
.hover-card:hover .icon-nosotros, .hover-card.active .icon-nosotros {
    color: var(--azul-corporativo);
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 70, 199, 0.2);
}

.list-valores li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
    width: fit-content;
}
.list-valores li::before {
    content: '';
    position: absolute; left: 0; top: 6px;
    width: 6px; height: 6px; background-color: #cbd5e1;
    border-radius: 50%;
}
.hover-card:hover .list-valores li::before, .hover-card.active .list-valores li::before {
    background-color: #ffffff;
}

/* Sección Quienes Somos */
.section-quienes-somos {
    position: relative;
    padding: 100px 0;
    min-height: 70vh;
}
.nosotros-somos-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
}

/* Galería Asimétrica */
.gallery-nosotros .gallery-item-wrapper {
    height: 100%;
    transition: transform 0.4s ease;
}
.gallery-nosotros .gallery-item {
    transition: transform 0.5s ease;
}
.gallery-nosotros .gallery-item-wrapper:hover .gallery-item {
    transform: scale(1.05);
}

@media (min-width: 992px) {
    .gallery-nosotros .col-md-8 { height: 380px; }
    .gallery-nosotros .col-md-4 { height: 180px; }
    .gallery-nosotros .col-lg-5 { height: 260px; }
    .gallery-nosotros .mt-lg-n5 { margin-top: -80px !important; }
}

@media (max-width: 991px) {
    .gallery-nosotros .gallery-item-wrapper { height: 200px; }
}

/* Reutilizando y ajustando el Banner CTA */
.shadow-lg { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important; }