/* ================================
   CSS MINIMALISTA PARA LA SECCIÓN ABOUT
   Diseño simple en 2 columnas
================================ */

/* ================================
   SECCIÓN ABOUT - ESTILOS GENERALES
================================ */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Efecto de fondo sutil */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(62, 26, 78, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(214, 179, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* ================================
   TÍTULOS Y TEXTOS
================================ */
.about-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #3e1a4e, #5b3679);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   COLUMNA IZQUIERDA - MISIÓN Y VISIÓN
================================ */
.content-left {
    padding-right: 2rem;
}

.value-item {
    text-align: left;
}

.value-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3e1a4e, #5b3679);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.value-icon {
    color: white;
    font-size: 1.3rem;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #3e1a4e;
    margin-bottom: 0.8rem;
}

.value-description {
    color: #495057;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* ================================
   COLUMNA DERECHA - CONECTAMOS EXPERIENCIAS
================================ */
.content-right {
    padding-left: 2rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(62, 26, 78, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 15px rgba(0, 0, 0, 0.04);
    position: relative;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3e1a4e, #5b3679, #d6b3ff);
    border-radius: 20px 20px 0 0;
}

.experience-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3e1a4e;
    margin-bottom: 1.2rem;
}

.experience-description {
    color: #495057;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* ================================
   CARACTERÍSTICAS
================================ */
.experience-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #495057;
}

.feature-item i {
    color: #5b3679;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ================================
   TARJETAS DUALES
================================ */
.dual-cards {
    display: flex;
    gap: 1rem;
}

.mini-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(62, 26, 78, 0.05), rgba(214, 179, 255, 0.05));
    border: 1px solid rgba(62, 26, 78, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(62, 26, 78, 0.1);
    border-color: rgba(62, 26, 78, 0.2);
}

.mini-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3e1a4e, #5b3679);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
}

.mini-icon i {
    color: white;
    font-size: 1.1rem;
}

.mini-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #3e1a4e;
    margin-bottom: 0.4rem;
}

.mini-card p {
    color: #6c757d;
    margin: 0;
    font-size: 0.85rem;
}

/* ================================
   RESPONSIVIDAD
================================ */
@media (max-width: 991px) {
    .about-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .content-left {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .content-right {
        padding-left: 0;
    }
    
    .about-title {
        text-align: center;
    }
    
    .value-item {
        text-align: center;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .experience-card {
        padding: 2rem 1.5rem;
    }
    
    .dual-cards {
        flex-direction: column;
    }
    
    .mini-card {
        margin-bottom: 1rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .experience-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .experience-card {
        padding: 1.5rem 1rem;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .experience-title {
        font-size: 1.3rem;
    }
    
    .experience-description {
        font-size: 0.95rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
}

/* ================================
   MEJORAS DE ACCESIBILIDAD
================================ */
@media (prefers-reduced-motion: reduce) {
    .mini-card {
        transition: none;
    }
    
    .mini-card:hover {
        transform: none;
    }
}

/* Focus states */
.mini-card:focus {
    outline: 2px solid #3e1a4e;
    outline-offset: 2px;
}
