/* ==========================================
   ESTILOS DE LA SECCIÓN: NOSOTROS (SIN SCROLL)
   ========================================== */
.nosotros-section {
    background-color: #030814; /* Fondo oscuro unificado */
    color: #ffffff;
    min-height: calc(100vh - 80px); /* Ajustado a pantalla completa menos altura de barra de navegación */
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

/* Títulos */
.nosotros-subtitle {
    font-size: 0.75rem;
    color: #0066ff;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
}

.nosotros-title {
    font-size: 2rem;
    font-weight: 900;
    margin-top: 5px;
    margin-bottom: 5px;
}

.nosotros-title-line {
    width: 60px;
    height: 3px;
    background-color: #0066ff;
    border-radius: 2px;
}

/* Columna Izquierda: Introducción */
.nosotros-intro-card {
    background-color: #0b1528;
    border: 1px solid #1e293b;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-headline {
    font-size: 1.15rem;
    font-weight: 800;
}

.intro-text {
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Alineación de Texto Justificado */
.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* Estadísticas */
.stat-card {
    background: linear-gradient(135deg, #0b1528 0%, #102547 100%);
    border: 1px solid #1e293b;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #0066ff;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0066ff;
    display: block;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Columna Central: Imagen y Valores */
.nosotros-image-box {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1e293b;
    min-height: 200px;
    max-height: 280px;
}

.nosotros-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(3, 8, 20, 0.9) 100%);
}

.image-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0, 102, 255, 0.9);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

/* Valores */
.valores-container {
    background-color: #0b1528;
    border: 1px solid #1e293b;
    border-radius: 12px;
}

.valores-title-sm {
    font-size: 0.8rem;
    font-weight: 800;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.valor-tag {
    display: flex;
    align-items: center;
    background-color: #102547;
    border: 1px solid #1e293b;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 8px;
    width: 100%;
}

.valor-tag i {
    color: #0066ff;
    font-size: 0.9rem;
    margin-right: 6px;
}

/* Columna Derecha: Misión y Visión */
.mv-card {
    background-color: #0b1528;
    border: 1px solid #1e293b;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: #0066ff;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.15);
}

.mv-icon-box {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066ff;
    font-size: 1.1rem;
}

.mv-title {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
}

.mv-text {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
    text-align: justify;
}

/* Clases útiles */
.text-blue {
    color: #0066ff;
}

/* ==========================================
   DISPOSITIVOS MÓVILES (Scroll responsivo)
   ========================================== */
@media (max-width: 991px) {
    .nosotros-section {
        min-height: auto;
    }
    .nosotros-image-box {
        height: 250px;
    }
}