.container-quienes-somos {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.container-quienes-somos .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1b4191;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.quienes-somos {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.img-nosotros {
  width: 100%;
  max-width: 400px;
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-nosotros:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.texto-nosotros {
  flex: 1;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;
  color: #4b5563;
  text-align: justify;
  max-width: 600px;
}
.btn-ver-mas {
background: linear-gradient(135deg, #1b4191, #3b82f6);
color: white;
border: none;
padding: 12px 24px;
border-radius: 25px;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 15px;
gap: 8px;
font-family: "Montserrat", sans-serif;
box-shadow: 0 4px 12px rgba(27, 65, 145, 0.3);
}

.btn-ver-mas:hover {
background: linear-gradient(135deg, #2563eb, #1d4ed8);
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(27, 65, 145, 0.4);
}

.btn-ver-mas:active {
transform: translateY(0);
}

.btn-ver-mas i {
transition: transform 0.3s ease;
}

.btn-ver-mas.expandido i {
transform: rotate(180deg);
}

.texto-expandible {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.texto-expandible.expandido {
  max-height: 500px; /* Ajusta según contenido */
  opacity: 1;
}

/* ===== Sección Misión y Visión ===== */
.mission-vision {
  padding: 60px 20px;
 background: linear-gradient(to bottom, #ffffff, #f4f6f9);
}

.mission-vision .container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.mission-vision .card {
  background: #fff;
  padding: 2rem 2rem 2rem 1.5rem;
  border-left: 6px solid #1b4191; /* Línea lateral */
  border-radius: 0.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.mission-vision .card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #1b4191;
}

.mission-vision .card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-vision .container {
    flex-direction: column;
  }
  .mission-vision .card {
    flex: 1 1 100%;
  }
}



/* ===== Junta Directiva ===== */
.section-directiva {
  background: linear-gradient(to bottom, #ffffff, #f4f6f9);
  padding: 80px 20px;
  text-align: center;
}

.section-directiva .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1b4191;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-directiva .content-integrantes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-directiva .integrante {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-directiva .integrante:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.section-directiva .miembro {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0ea5e9;
  box-shadow: 0 8px 12px rgba(137, 137, 140, 0.25);
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}

.section-directiva h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
}

.section-directiva p {
  font-size: 1rem;
  color: #4b5563;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .container-quienes-somos .section-title {
    font-size: 2.2rem;
  }

  .quienes-somos {
    flex-direction: column;
    text-align: center;
  }

  .texto-nosotros {
    text-align: center;
    padding: 0 1rem;
  }
}
@media (max-width: 992px) {
  .section-directiva .content-integrantes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-mision .content,
  .section-vision .content {
    flex-direction: column;
    text-align: center;
  }

  .section-mision .img,
  .section-vision .img {
    justify-content: center;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-directiva .content-integrantes {
    grid-template-columns: 1fr;
  }

  .section-mision img,
  .section-vision img {
    max-width: 90%;
  }
}
