/* Estilos para la sección Nosotros */

/* Hero Section con mejor legibilidad */
.about-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

/* Mejoras de legibilidad para el texto del hero */
.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

/* Estilos para las tarjetas principales */
.vision-card,
.mision-card,
.objetivos-card {
    background: var(--tech-gray);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mision-card::before,
.objetivos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

/* Hover effects */
.vision-card:hover,
.mision-card:hover,
.objetivos-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Círculos de iconos */
.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.vision-card:hover .icon-circle,
.mision-card:hover .icon-circle,
.objetivos-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Estilos para los objetivos */
.objetivo-item {
    background: rgba(62, 123, 250, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid var(--accent-primary);
}

.objetivo-item:hover {
    background: rgba(62, 123, 250, 0.1);
    transform: translateX(5px);
}

.objetivo-item h3 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Sección de Valores */
.valores-section {
    background: var(--tech-gray);
    padding: 5rem 0;
}

.valores-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.valores-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.valores-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.valores-card:hover .valores-icon {
    transform: scale(1.1);
    color: var(--accent-secondary);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent-primary) 0%, transparent 100%);
    opacity: 0.05;
}

.cta-section .btn-primary {
    background: var(--text-light);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
}

.cta-section .btn-primary:hover {
    background: var(--accent-secondary);
    color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

    .icon-circle i {
        font-size: 2rem;
    }

    .valores-card {
        margin-bottom: 1rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}