/* Estilo para la sección de MisiónW */
.misionW {
  padding: 4rem 2rem;
  background-color: #f7f7f7;
}

/* Estilo para la sección de MisiónB */
.misionB {
  padding: 4rem 2rem;
  background-color: #0c1c3d;
}

.misionW .contenido {
  max-width: 1200px;
  margin: 0 auto;
}

.misionB .contenido {
  max-width: 1200px;
  margin: 0 auto;
}

.misionW h2 {
  color: #0c1c3d;
  margin-bottom: 1rem;
}

.misionB h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.misionW p {
  color: #0c1c3d;
  font-size: 1.1rem;
  line-height: 1.8;
}

.misionB p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Estilo para el equipo */
.equipo {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.equipo h2 {
  color: #0c1c3d;
  margin-bottom: 2rem;
}

.equipo-miembros {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.miembro {
  background-color: #f7f7f7;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: center;
}

.miembro img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.miembro h3 {
  color: #0c1c3d;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.miembro p {
  color: #666;
  font-size: 1rem;
}

.centrado {
  text-align: center;
}

/* Estilo para los valores institucionales */
.valores-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.valor {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
}

.valor h3 {
  color: #f1c40f;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
