/* About Section */
#quienes_somos.about {
    padding: 5rem 0;
    background-color: var(--neutral) !important;
}

#quienes_somos .about-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

#quienes_somos .about-content {
    flex: 1;
}

#quienes_somos .about-content h2 {
    margin-bottom: 1.5rem;
}

#quienes_somos .about-content h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

#quienes_somos .about-image {
    flex: 1;
    height: 400px;
    background: var(--primary) url('../../images/quienes_somos.png') center/cover no-repeat !important;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Overlay para mejorar contraste */
#quienes_somos .about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary) 0%, rgba(24, 255, 255, 0.1) 100%);
    opacity: 0.6;
}

/* Ocultar el ícono completamente */
#quienes_somos .about-image i {
    display: none !important;
}

/* Responsive */
@media (max-width: 992px) {
    #quienes_somos .about-container {
        flex-direction: column;
    }
    
    #quienes_somos .about-image {
        width: 100%;
        height: 300px;
    }
}