/* Quiénes Somos */
.quienes-somos {
  background: white;
}

.equipo-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lead {
  font-size: 1.3rem;
  font-weight: 300;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.especialidades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.especialidad {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #0072bc;
}

.especialidad h3 {
  color: #0072bc;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.especialidad p {
  color: #666;
  line-height: 1.6;
}