/* ===== ABOUT PAGE STYLES ===== */
/* SOLO ESTILOS EXCLUSIVOS DE LA PÁGINA SOBRE QUE NO ESTÁN EN STYLES.CSS */

:root {
    --primary-color: #e67e22;
    --primary-dark: #d35400;
    --secondary-color: #34495e;
    --dark-bg: #0a1929;
    --dark-blue: #1a2634;
    --text-light: #ffffff;
    --text-gray: #b0c4de;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===== MISSION, VISION, VALUES SECTION ===== */

.mission-vision-values {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: #28394d;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #28394d !important; /* Cambiado de gradiente azul a naranja */
}

/* Eliminamos las reglas individuales para que todas tengan el mismo color */
/*.mission-card::before,
.vision-card::before,
.values-card::before {
    background: linear-gradient(90deg, #070fad, #28394d) !important;
}*/

.mvv-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(26, 20, 190, 0.1); /* Fondo azul tenue con #28394d */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #28394d; /* Iconos en azul #28394d */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Eliminamos los colores individuales para que todos sean azules */
.mission-card .mvv-icon,
.vision-card .mvv-icon,
.values-card .mvv-icon {
    background-color: rgba(26, 20, 190, 0.1); /* Fondo azul tenue con #28394d */
    color: #28394d; /* Iconos en azul #28394d */
}

.mvv-card:hover .mvv-icon {
    background-color: #28394d; /* Fondo azul sólido #28394d */
    color: white; /* Icono blanco */
}

/* Eliminamos las reglas hover individuales */
.mission-card:hover .mvv-icon,
.vision-card:hover .mvv-icon,
.values-card:hover .mvv-icon {
    background-color: #28394d !important; /* Fondo azul sólido #28394d */
    color: white !important; /* Icono blanco */
}

.mvv-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mvv-text {
    color: #666;
    line-height: 1.8;
    text-align: center;
    flex-grow: 1;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
    font-size: 1rem;
}

.values-list li i {
    color: #28394d; /* Checkmarks en azul #28394d */
    font-size: 1.2rem;
}

/* ===== fin MISSION, VISION, VALUES SECTION ===== */

.about-cta {
    padding: 80px 0;
   /* background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-blue) 100%);*/
    color: rgba(0, 0, 0, 0.678);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===== ACTIVE NAV LINK ===== */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .story-grid {
        gap: 30px;
    }
    
    .story-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        padding-right: 0;
        text-align: center;
    }
    
    .story-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-stats {
        justify-content: center;
    }
    
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        margin-top: 70px;
        min-height: 350px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}