/* --- SECCIÓN NOSOTROS Y MÉTRICAS --- */
.about-section {
    position: relative;
    padding: 100px 5%;
    background: rgba(4, 31, 38, 0.6);
    z-index: 10;
}

.about-container {
    max-width: 1200px;
    margin: 40px auto 0;
}

/* Pilares */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.pillar-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.pillar-card:hover {
    background: rgba(4, 31, 38, 0.8);
    border-top: 3px solid var(--purple-glow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.pillar-card i {
    font-size: 2.5rem;
    color: var(--purple-glow);
    margin-bottom: 20px;
}

.pillar-card h4 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.pillar-card p {
    color: #a0aec0;
    line-height: 1.6;
}

/* Estadísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.05), rgba(157, 78, 221, 0.05));
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.stat-box {
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -10px;
    width: 1px;
    height: 80%;
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 15px var(--cyan-glow);
    margin-bottom: 10px;
}

/* Agregar sufijos a los números (el +, el %, etc.) */
.stat-box:nth-child(1) .stat-number::after { content: '+'; font-size: 2rem; color: var(--cyan-glow); }
.stat-box:nth-child(2) .stat-number::after { content: '%'; font-size: 2rem; color: var(--cyan-glow); }
.stat-box:nth-child(3) .stat-number::after { content: '+'; font-size: 2rem; color: var(--cyan-glow); }
.stat-box:nth-child(4) .stat-number::after { content: '%'; font-size: 2rem; color: var(--cyan-glow); }

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FOOTER --- */
.cyber-footer {
    background: #020b0e;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    padding: 30px 5%;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-logo i { color: var(--cyan-glow); }

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--cyan-glow); }

.separator { color: rgba(255, 255, 255, 0.2); margin: 0 10px; }

.footer-copy {
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .stat-box:not(:last-child)::after { display: none; }
    .footer-content { flex-direction: column; text-align: center; }
}