/* HEADER ESPECÍFICO (Ajustado a 75vh - 3/4 de pantalla) */
.nosotros-header {
    height: 95vh;       /* Altura de alto impacto */
    min-height: 500px;  /* Para que no se aplaste en móvil */
    background: url('../img/nosotros_hero.jpg') center/cover no-repeat;
    position: relative;
    
    /* Ajustes para el menú transparente */
    margin-top: -80px; 
    padding-top: 80px; 
}

.overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.75); /* Un poco más oscuro para leer texto */
}

/* TARJETAS DE UBICACIÓN */
.location-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--bs-primary) !important;
}

.icon-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.bg-map-overlay {
    position: absolute;
    right: -1%; bottom: -20%;
    width: 110%;
    opacity: 0.1;
    pointer-events: none;
    filter: invert(1);
}

/* PASOS DEL PROCESO */
.process-step {
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-left-color: var(--bs-primary);
    background: rgba(255,255,255,0.02);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.process-step:hover .step-number {
    color: var(--bs-primary);
    -webkit-text-stroke: 0px;
}

/* Cajas de Misión y Visión */
.bg-card {
    background-color: rgba(30, 41, 59, 0.5); /* Slate semi-transparente */
}
/* --- PARALLAX MISIÓN Y VISIÓN --- */

.parallax-section {
    min-height: 80vh; /* Altura considerable para impacto visual */
    padding-top: 8rem;
    padding-bottom: 8rem;
    position: relative;
}

/* La imagen de fondo */
.parallax-bg {
    position: absolute;
    top: -20%; /* Empieza más arriba para tener recorrido */
    left: 0;
    width: 100%;
    height: 140%; /* Más alta que el contenedor para poder moverse */
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform; /* Optimización de rendimiento */
}

/* Capa oscura */
.overlay-parallax {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85); /* Azul oscuro profundo */
    z-index: 1;
}

/* Tarjetas Glassmorphism mejoradas */
.glass-panel {
    background: rgba(255, 255, 255, 0.03); /* Casi transparente */
    backdrop-filter: blur(20px); /* Blur intenso */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Iconos flotantes */
.icon-floating {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.glass-panel:hover .icon-floating {
    transform: translateY(-10px); /* El icono flota al pasar el mouse */
}