@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;600;700&display=swap");

/* ── PALETA FILAH 37 ── */
.main-content-87 {
  --azul: #284d98;
  --azul-dark: #1c3a73;
  --azul-light: #eaf0fc;
  --verde: #dfd97c;
  --verde-light: #f3f0ce;
  --rojo: #d23930;
  --rojo-dark: #a82a23;
  --cafe: #5c3e35;
  --cafe-light: #f5efed;
  --crema: #fdfcf9;
  --border: #ebe5e1;
  --text-muted: #8a7a72;
}

/* ════════════ ANIMACIONES ════════════ */
@keyframes fadeUpComite {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrowComite {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

@keyframes fadeInPill {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-comite-87 {
    animation: fadeUpComite 0.7s ease-out both;
  }
  .hero-line-87 {
    animation: lineGrowComite 0.9s ease-out 0.3s both;
  }

  /* Secciones aparecen escalonadas */
  .section-card-87 {
    animation: fadeUpComite 0.6s ease-out both;
  }
  .section-card-87:nth-child(1) {
    animation-delay: 0.2s;
  }
  .section-card-87:nth-child(2) {
    animation-delay: 0.3s;
  }
  .section-card-87:nth-child(3) {
    animation-delay: 0.4s;
  }
  .section-card-87:nth-child(4) {
    animation-delay: 0.5s;
  }
  .section-card-87:nth-child(5) {
    animation-delay: 0.6s;
  }
  .section-card-87:nth-child(n + 6) {
    animation-delay: 0.7s;
  }
}

/* --- Base --- */
.page-layout {
  display: flex;
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
}

.main-content-87 {
  flex: 1;
  overflow-x: hidden;
  font-family: "Noto Sans", sans-serif;
  color: var(--cafe);
}

/* --- Hero Section --- */
.hero-comite-87 {
  position: relative;
  text-align: center;
}

.hero-badge-87 {
  display: block;
  color: var(--rojo);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-content-87 h1 {
  color: var(--azul);
  text-align: center;
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
}

.hero-line-87 {
  width: 80px;
  height: 4px;
  background: var(--verde);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* --- Contenedor Principal --- */
.directorio-wrap-87 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}

/* --- Tarjetas de Sección --- */
.section-card-87 {
  margin-bottom: 50px;
  background: transparent;
}

.section-head-87 h2 {
  margin: 0 0 25px;
  font-size: 1.4rem;
  color: var(--azul);
  text-align: left;
  border-bottom: 2px solid var(--verde-light);
  padding-bottom: 12px;
  font-weight: 700;
  position: relative;
}

/* Acento verde a la izquierda del título */
.section-head-87 h2::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 4px;
  bottom: 12px;
  width: 4px;
  background: var(--verde);
  border-radius: 2px;
}

/* --- Grid de Miembros (Pills) --- */
.member-grid-87 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.member-grid-87.compact {
  gap: 8px;
}

.member-pill-87 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--crema);
  border: 1px solid var(--border);
  color: var(--cafe);
  font-size: 0.92rem;
  transition: all 0.25s ease;
  font-weight: 500;
}

.member-pill-87:hover {
  background: var(--verde-light);
  border-color: var(--verde);
  color: var(--cafe);
  box-shadow: 0 4px 12px rgba(40, 77, 152, 0.08);
  transform: translateY(-2px);
}

.dot-87 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rojo);
  flex: 0 0 7px;
  transition: background 0.25s ease;
}

.member-pill-87:hover .dot-87 {
  background: var(--azul);
}

/* --- Subsecciones --- */
.subsection-grid-87 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.subsection-card-87 {
  padding: 24px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--azul);
  box-shadow: 0 2px 12px rgba(92, 62, 53, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.subsection-card-87:hover {
  transform: translateY(-3px);
  border-top-color: var(--rojo);
  box-shadow: 0 8px 20px rgba(40, 77, 152, 0.1);
}

.subsection-card-87 h3 {
  margin: 0 0 18px;
  color: var(--azul);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.subsection-card-87:hover h3 {
  color: var(--rojo);
}

.subsection-note-87 {
  margin: -10px 0 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  padding-left: 12px;
  border-left: 2px solid var(--verde);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-comite-87 {
    padding: 40px 20px 30px;
  }

  .hero-content-87 h1 {
    font-size: 1.8rem;
  }

  .hero-badge-87 {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .directorio-wrap-87 {
    padding: 10px 18px 50px;
  }

  .section-head-87 h2 {
    font-size: 1.15rem;
  }

  .section-head-87 h2::before {
    left: -12px;
  }

  .member-pill-87 {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .subsection-grid-87 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
