/* =========================================
   ESTILOS EXCLUSIVOS: PÁGINA "NOSOTROS"
========================================= */

/* --- HERO --- */
.hero-nosotros {
    min-height: 60vh;
    background-color: #0a0f14;
    overflow: hidden;
}

.topo-bg-pattern {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    background-image: repeating-radial-gradient( circle at 0 0, transparent 0, #0a0f14 10px, rgba(255,107,0,0.05) 11px, transparent 12px );
    background-size: 80px 80px; opacity: 0.8;
}

.overlay-dark {
    position: absolute; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10,15,20,1) 0%, rgba(10,15,20,0.7) 60%, rgba(10,15,20,0.2) 100%);
}

.badge-elite {
    display: inline-block; padding: 6px 15px;
    background: rgba(255,107,0,0.15); color: var(--color-primario, #FF6B00);
    font-weight: 900; font-size: 0.75rem; letter-spacing: 2px;
    border-radius: 4px; border-left: 3px solid var(--color-primario, #FF6B00);
}

/* --- ESTADÍSTICAS --- */
.stat-card {
    background: #ffffff;
    border-radius: 20px; /* Bordes más redondos y suaves */
    padding: 2rem 1rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-card:hover { transform: translateY(-8px); }

.stat-icon {
    font-size: 2.2rem; color: var(--color-primario, #FF6B00); margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.8rem; font-weight: 900; color: #1a252f;
    letter-spacing: -2px; margin-bottom: 0.2rem;
}

.stat-text {
    color: #64748b; font-weight: 700; text-transform: uppercase;
    font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 0;
}

/* --- MISIÓN Y VISIÓN (Diseño Limpio) --- */
.card-proposito {
    position: relative;
    border-radius: 24px;
    padding: 3.5rem 3rem 3rem 3rem;
    transition: all 0.3s ease;
}

.card-proposito:hover {
    transform: translateY(-5px);
}

.icono-flotante {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Tema Claro (Misión) */
.light-theme {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}
.light-icon {
    background: var(--color-primario, #FF6B00);
    color: white;
}

/* Tema Oscuro (Visión) */
.dark-theme {
    background-color: #151e27;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.dark-icon {
    background: #ffffff;
    color: #1a252f;
}

.text-proposito {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* --- CAPACIDADES TÉCNICAS --- */
.tech-list li {
    padding: 12px 15px;
    background: #ffffff;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.tech-list li:hover {
    border-color: rgba(255,107,0,0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.text-naranja {
    color: var(--color-primario, #FF6B00);
    margin-right: 8px;
}