/* =========================================
   ESTILOS PREMIUM - NOSOTROS (FSP)
   ========================================= */

:root {
    --brand-dark: #0F172A;
    --brand-cyan: #00aeef;
    --brand-magenta: #ec008c;
    --brand-green: #10b981;
    --brand-yellow: #f59e0b;
    --bg-light: #f8fafc;
}

body { background-color: var(--bg-light); }

/* --- 1. HERO SECTION (ENCABEZADO) --- */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--brand-dark);
    overflow: hidden;
    margin-top: -80px; /* Ajuste para menú transparente si aplica */
    padding-top: 80px;
}

.about-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Pon aquí una foto de tu equipo o de Chocó */
    background-image: url('../img/slider-1.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: grayscale(100%); /* Efecto elegante b/n */
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

.about-subtitle {
    display: block;
    color: var(--brand-cyan);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* --- 2. MISIÓN Y VISIÓN (TARJETAS FLOTANTES) --- */
.mv-section {
    padding: 100px 0;
    margin-top: -80px; /* Efecto de superposición sobre el hero */
    position: relative;
    z-index: 10;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border-bottom: 5px solid transparent;
}

.mv-card:hover { transform: translateY(-10px); }

/* Colores específicos por tarjeta */
.mv-mission { border-bottom-color: var(--brand-cyan); }
.mv-vision { border-bottom-color: var(--brand-magenta); }

.mv-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
}
.mv-mission .mv-icon { color: var(--brand-cyan); }
.mv-vision .mv-icon { color: var(--brand-magenta); }

.mv-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

/* --- 3. HISTORIA (TIMELINE MODERNO) --- */
.history-section {
    padding: 100px 0;
    background: white;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}
.section-intro h2 {
    font-size: 2.5rem;
    color: var(--brand-dark);
    font-weight: 800;
    margin-bottom: 15px;
}
.section-intro p { font-size: 1.1rem; color: #64748b; }

/* Línea de tiempo */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* La línea central */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #e2e8f0;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.container-time {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

/* Círculos en la línea */
.container-time::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--brand-dark);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: 0.3s;
}

.left { left: 0; text-align: right; }
.right { left: 50%; text-align: left; }

.left::after { right: -10px; border-color: var(--brand-cyan); }
.right::after { left: -10px; border-color: var(--brand-magenta); }

.content-time {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.year-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--brand-dark);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* --- 4. SECCIÓN LEGAL Y TRANSPARENCIA (NUEVO) --- */
.legal-strip {
    background: var(--brand-dark);
    color: white;
    padding: 80px 0;
    margin-top: 50px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    padding: 0 20px;
}

.legal-text h3 { color: white; font-size: 2rem; margin-bottom: 20px; }
.legal-text p { opacity: 0.8; line-height: 1.8; margin-bottom: 20px; }

.legal-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}
.legal-number {
    font-size: 1.5rem;
    font-family: monospace;
    color: var(--brand-yellow);
    display: block;
    margin-bottom: 10px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .about-title { font-size: 2.5rem; }
    
    /* Ajuste Timeline Móvil */
    .timeline::after { left: 31px; }
    .container-time { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left; }
    .container-time::after { left: 21px; }
    .right { left: 0; }
    
    .legal-grid { grid-template-columns: 1fr; }
}