/* =========================
   SECCIÓN Organización Institucional
========================= */

.organizacion-container {
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px;
  text-align: center;
}

.titulo-organizacion {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #003366;
  font-weight: 700;
}

.subdescripcion-organizacion {
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
}

/* GRID */
.organizacion-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */
.card1 {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  width: 270px;
  text-align: left;
  border-left: 5px solid #007bff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card1 h4 {
  font-size: 1.25rem;
  color: #003366;
  margin-bottom: 15px;
}

.lista-recursos {
  list-style: none;
  padding-left: 0;
}

.lista-recursos li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
  padding-left: 18px;
  position: relative;
}

.lista-recursos li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
  font-size: 1.2rem;
}

/* IMAGEN */
.organigrama {
  height: 420px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  flex-shrink: 0;
  transition: transform .2s ease;
}

.organigrama:hover {
  transform: scale(1.02);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .organizacion-grid {
    justify-content: center;
    text-align: center;
  }

  .organigrama {
    height: auto;
    max-width: 90%;
  }

  .card1 {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .titulo-organizacion {
    font-size: 1.6rem;
  }

  .subdescripcion-organizacion {
    font-size: .95rem;
  }
}
