/* --- Estilos para la Página "Nosotros" --- */

/* Misión y Visión */
.mission-section {
    padding: 80px 0;
}
.mission-section img {
    border-radius: var(--border-radius, 12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.mission-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}


/* Sección del Equipo */
.team-section {
    padding: 80px 0;
}

.team-card {
    background: var(--surface-color);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius, 12px);
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-card h4 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-card .team-title {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.team-card .team-social a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.team-card .team-social a:hover {
    color: var(--primary-color);
}


/* Sección de Valores (Reutiliza el estilo de process-step) */
.values-section {
    padding: 80px 0;
}