/* ================================================================== */
/* admision.css — estilos EXCLUSIVOS de la página admision.html        */
/* Se carga DESPUÉS de index.css para sobrescribir reglas.             */
/* ================================================================== */

/* ================================================================== */
/* OCULTAR secciones del home que NO van en admision.html              */
/* No se borra el HTML (riesgoso por el layout de Muse); solo se       */
/* oculta con display:none. Reversible en segundos.                    */
/* ================================================================== */
/* Bloque A: 4 íconos bolitas (frames) */
/* Bloque B: labels "NOTICIAS / GALERÍA / MESA DE PARTES / PORTAL" */
/* Bloque C: "PARA UN MEJOR FUTURO APRENDE EN EL MEJOR LUGAR" */
/* Bloque G: título "CONVENIOS" */
/* Bloque H: separador decorativo después del título CONVENIOS */
/* Bloque I: grid (PamphletWidget) con logos de convenios */

/* --- Overlay oscuro sobre el slideshow del hero --- */
/* Hace que el texto blanco y el botón resalten sobre el banner.      */
/* Va DENTRO de #slideshowu162 (position:relative) como última capa,   */
/* cubriendo el 100% del área del slideshow.                           */
.admision-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 500;
  pointer-events: none;
}

/* --- Descripción del hero --- */
/* Mismo patrón Muse que #u3675-4 (título) pero con margin-top mayor  */
/* para caer debajo del título dentro del banner.                      */
.admision-hero-desc {
  z-index: 643;
  width: 720px;
  min-height: 50px;
  position: relative;
  margin-right: -10000px;
  margin-top: 210px;
  margin-left: 50%;
  left: -360px;
  text-align: center;
  color: #FFFFFF;
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.admision-hero-desc p {
  margin: 0;
  padding: 0;
}

/* --- Contenedor del botón CTA del hero --- */
/* También con patrón Muse, margin-top mayor para quedar bajo la      */
/* descripción pero aún dentro del banner (~382px de alto).            */
.admision-hero-cta-wrap {
  z-index: 644;
  width: 320px;
  min-height: 60px;
  position: relative;
  margin-right: -10000px;
  margin-top: 280px;
  margin-left: 50%;
  left: -160px;
  text-align: center;
}

/* --- Botón "INSCRÍBETE AHORA" --- */
/* Fondo rojo del sitio (#FF0000), borde blanco 3px, texto SIEMPRE    */
/* blanco (con !important para ganar sobre reglas globales de <a>).    */
/* Sin subrayado. En hover solo oscurece ligeramente el rojo.          */
.admision-hero-cta {
  display: inline-block;
  background-color: #FF0000 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  padding: 14px 36px;
  border: 3px solid #FFFFFF;
  border-radius: 20px;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  transition: all 0.3s ease;
}
.admision-hero-cta:hover {
  background-color: #CC0000 !important;
  color: #FFFFFF !important;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

/* ================================================================== */
/* SECCIONES NUEVAS DE ADMISIÓN                                        */
/* Clases semánticas con prefijo .adm- para identificarlas             */
/* fácilmente. No usan IDs de Muse ni colisionan con su layout.        */
/* ================================================================== */

/* --- Wrapper común para todas las secciones nuevas --- */
/* IMPORTANTE: usamos display:block !important y float:none !important */
/* para sobrescribir la regla global .colelem de Muse que fuerza       */
/* display:inline;float:left en todo elemento con esa clase.           */
.adm-section {
  display: block !important;
  clear: both !important;
  float: none !important;
  width: 100% !important;
  padding: 80px 20px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  margin: 0;
}
.adm-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
/* Mismos valores exactos que .H1---MAIN-Section-Heading---Center-Aligned */
/* + #u1289-4 (título "NUESTROS PROGRAMAS") para que todos los títulos   */
/* de sección se vean idénticos en la página.                             */
.adm-section-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 32px;
  color: #00698C;
  text-align: center;
  margin: 0 0 14px 0;
  padding: 0;
  text-transform: uppercase;
}
.adm-section-subtitle {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: #666666;
  text-align: center;
  margin: 0 auto 50px auto;
  max-width: 700px;
  font-weight: 400;
}

/* --- Sección PROCESO: timeline minimalista (sin cards, con línea) --- */
.adm-proceso-grid {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
/* Línea horizontal conectora detrás de los números */
.adm-proceso-grid::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0, 105, 140, 0.15) 0%,
    rgba(0, 105, 140, 0.4) 50%,
    rgba(0, 105, 140, 0.15) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.adm-paso-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 260px;
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0 18px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}
.adm-paso-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border: none;
}
.adm-paso-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid #00698C;
  color: #00698C;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 24px auto;
  box-shadow: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.adm-paso-card:hover .adm-paso-number {
  background-color: #00698C;
  color: #FFFFFF;
}
.adm-paso-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #1A2837;
  margin: 0 0 10px 0;
  letter-spacing: -0.2px;
}
.adm-paso-desc {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #6B7A85;
  margin: 0;
  font-weight: 400;
}

/* Responsive: en móviles los pasos se apilan verticalmente sin línea */
@media (max-width: 700px) {
  .adm-proceso-grid {
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }
  .adm-proceso-grid::before {
    display: none;
  }
  .adm-paso-card {
    max-width: 320px;
    padding: 0;
  }
}

/* ================================================================== */
/* SECCIÓN REQUISITOS — lista minimalista con divisores sutiles       */
/* Sin cards, sin sombras: estilo "documentación profesional"          */
/* ================================================================== */
.adm-section-requisitos {
  background-color: #F5F9FB;
}
.adm-requisitos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 0;
  max-width: 980px;
  margin: 0 auto;
}
.adm-requisito-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #DCE6EC;
  border-radius: 0;
  box-shadow: none;
  flex: none;
  max-width: none;
  transition: padding-left 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
}
.adm-requisito-item:hover {
  padding-left: 12px;
  border-bottom-color: #00698C;
  transform: none;
  box-shadow: none;
}
.adm-requisito-check {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: transparent;
  border: 1.5px solid #00698C;
  color: #00698C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 900;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.adm-requisito-item:hover .adm-requisito-check {
  background-color: #00698C;
  color: #FFFFFF;
}
.adm-requisito-text {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #1A2837;
  margin: 0;
  font-weight: 500;
}

/* Si el último item queda HUÉRFANO (solo en su fila), centrarlo */
/* :last-child:nth-child(odd) → es el último Y está en posición impar  */
.adm-requisito-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 460px;
  width: 100%;
}

/* En móvil, una sola columna */
@media (max-width: 760px) {
  .adm-requisitos-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    column-gap: 0;
  }
  .adm-requisito-item:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
  }
}

/* ================================================================== */
/* SECCIÓN CRONOGRAMA — tabla con fechas importantes                  */
/* ================================================================== */
.adm-cronograma-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.adm-cronograma-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
}
.adm-cronograma-table thead th {
  background-color: #00698C;
  color: #FFFFFF;
  padding: 18px 24px;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.adm-cronograma-table tbody td {
  padding: 16px 24px;
  font-size: 15px;
  color: #333333;
  border-bottom: 1px solid #EAEAEA;
}
.adm-cronograma-table tbody tr:last-child td {
  border-bottom: none;
}
.adm-cronograma-table tbody tr:nth-child(even) td {
  background-color: #F5F9FB;
}
.adm-cronograma-highlight td {
  background-color: #FFF4CC !important;
  color: #B80000 !important;
  font-weight: 700;
}

/* ================================================================== */
/* SECCIÓN QUÉ TRAER — dos columnas SÍ / NO                           */
/* ================================================================== */
.adm-section-traer {
  background-color: #F5F9FB;
}
.adm-traer-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.adm-traer-col {
  flex: 1 1 380px;
  max-width: 460px;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  box-sizing: border-box;
}
.adm-traer-header {
  padding: 20px;
  text-align: center;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.adm-traer-si .adm-traer-header {
  background-color: #2E7D32; /* verde */
}
.adm-traer-no .adm-traer-header {
  background-color: #C62828; /* rojo */
}
.adm-traer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.adm-traer-list li {
  padding: 14px 24px;
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 15px;
  color: #333333;
  border-bottom: 1px solid #EAEAEA;
  display: flex;
  align-items: center;
  gap: 14px;
}
.adm-traer-list li:last-child {
  border-bottom: none;
}
.adm-traer-list li::before {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #FFFFFF;
  font-family: '__Lato_5', 'Lato', sans-serif;
}
.adm-traer-si .adm-traer-list li::before {
  content: "\2713"; /* ✓ */
  background-color: #2E7D32;
}
.adm-traer-no .adm-traer-list li::before {
  content: "\2715"; /* ✕ */
  background-color: #C62828;
}

/* ================================================================== */
/* SECCIÓN: DOCUMENTOS DESCARGABLES (PDFs) — proceso-admision.html    */
/* ================================================================== */
.adm-section-docs {
  background-color: #F5F9FB;
}
.adm-docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
.adm-doc-card,
.adm-doc-card:hover,
.adm-doc-card:visited,
.adm-doc-card *,
.adm-doc-card *:hover {
  text-decoration: none !important;
}
.adm-doc-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid #E8EEF2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  cursor: pointer;
}
.adm-doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 106, 140, 0.18);
  border-color: #00698C;
}
.adm-doc-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 106, 140, 0.30);
}
.adm-doc-icon svg {
  width: 26px;
  height: 26px;
  fill: #FFFFFF;
}
.adm-doc-info {
  flex: 1;
  min-width: 0;
}
.adm-doc-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #00698C;
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.adm-doc-desc {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 13px;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}
.adm-doc-action {
  flex-shrink: 0;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #FF0000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: transform 0.25s ease;
}
.adm-doc-card:hover .adm-doc-action {
  transform: translateX(4px);
}
.adm-docs-note {
  text-align: center;
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 13px;
  color: #888888;
  margin: 32px 0 0 0;
  font-style: italic;
}
.adm-docs-note code {
  background-color: #E8EEF2;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Consolas', monospace;
  font-style: normal;
  color: #00698C;
}

/* ================================================================== */
/* SECCIÓN: PASOS PARA OBTENERLO / ¿CÓMO ME REGISTRO?                  */
/* Aplica un fondo gradiente con pattern sutil a .adm-proceso          */
/* ================================================================== */
.adm-section.adm-proceso {
  background: linear-gradient(180deg, #F4F8FB 0%, #EAF2F7 100%);
  position: relative;
  overflow: hidden;
}
.adm-section.adm-proceso::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 106, 140, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 106, 140, 0.05) 0%, transparent 40%);
  pointer-events: none;
}
.adm-section.adm-proceso::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  border: 2px dashed rgba(0, 106, 140, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.adm-section.adm-proceso .adm-section-inner {
  position: relative;
  z-index: 1;
}

/* ================================================================== */
/* SECCIÓN: PREGUNTAS FRECUENTES (FAQ) — fondo oscuro dramático       */
/* ================================================================== */
.adm-section-faq {
  background: linear-gradient(135deg, #003B52 0%, #004E68 50%, #00698C 100%);
  position: relative;
  overflow: hidden;
}
.adm-section-faq::before {
  content: "?";
  position: absolute;
  top: -60px;
  right: -30px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 420px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}
.adm-section-faq::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.adm-section-faq .adm-section-inner {
  position: relative;
  z-index: 1;
}
.adm-section-faq .adm-section-title {
  color: #FFFFFF;
}
.adm-section-faq .adm-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #FF0000;
  margin: 14px auto 0 auto;
  border-radius: 2px;
}
.adm-section-faq .adm-section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}
/* Cards FAQ con más presencia sobre fondo oscuro */
.adm-section-faq .adm-faq-item {
  background-color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.adm-section-faq .adm-faq-item:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  border-color: transparent;
}
.adm-section-faq .adm-faq-item[open] {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  border-color: transparent;
}
.adm-faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.adm-faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E8EEF2;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.adm-faq-item:hover {
  border-color: #B5D0DC;
}
.adm-faq-item[open] {
  border-color: #00698C;
  box-shadow: 0 6px 20px rgba(0, 106, 140, 0.10);
}
.adm-faq-question {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1F2D3D;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}
.adm-faq-question::-webkit-details-marker {
  display: none;
}
.adm-faq-question::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #00698C;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.adm-faq-item[open] .adm-faq-question::after {
  content: "−";
  transform: rotate(180deg);
  background-color: #FF0000;
}
.adm-faq-item[open] .adm-faq-question {
  color: #00698C;
}
.adm-faq-answer {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #555555;
  padding: 0 24px 22px 24px;
}

/* Responsive de PDFs y FAQ */
@media (max-width: 800px) {
  .adm-docs-grid {
    grid-template-columns: 1fr;
  }
  .adm-doc-card {
    padding: 18px 20px;
  }
  .adm-doc-action {
    display: none;
  }
  .adm-faq-question {
    font-size: 15px;
    padding: 18px 20px;
  }
}

/* ================================================================== */
/* SECCIÓN: CONTACTO — 2 cards (WhatsApp + Email)                     */
/* Para páginas de Carnet de Medio Pasaje y Bolsa de Trabajo           */
/* ================================================================== */
.adm-section-contacto {
  background-color: #FFFFFF;
}
.adm-contacto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.adm-contacto-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 30px;
  background-color: #FAFBFC;
  border: 1px solid #E8EEF2;
  border-radius: 14px;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
}
.adm-contacto-card:hover {
  background-color: #FFFFFF;
  border-color: #00698C;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 106, 140, 0.15);
}
.adm-contacto-card .adm-contacto-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 106, 140, 0.25);
}
.adm-contacto-card .adm-contacto-icon svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}
.adm-contacto-card .adm-contacto-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.adm-contacto-card .adm-contacto-label {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #6B7A85;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.adm-contacto-card .adm-contacto-value {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #00698C;
  word-break: break-word;
  line-height: 1.3;
}
@media (max-width: 700px) {
  .adm-contacto-grid {
    grid-template-columns: 1fr;
  }
  .adm-contacto-card {
    padding: 22px 22px;
  }
  .adm-contacto-card .adm-contacto-value {
    font-size: 15px;
  }
}

/* ================================================================== */
/* PORTAL DE TRANSPARENCIA — Responsable del portal (premium)         */
/* ================================================================== */
.adm-section-responsable {
  background-color: #FFFFFF;
  padding-top: 70px;
  padding-bottom: 30px;
}
.adm-responsable-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 48px;
  background: linear-gradient(135deg, #003B52 0%, #004E68 50%, #00698C 100%);
  border: none;
  border-left: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 59, 82, 0.25);
}
/* Decoraciones de fondo */
.adm-responsable-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.adm-responsable-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

/* Icono grande con anillo decorativo */
.adm-responsable-icon {
  position: relative;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFFFFF 0%, #E8F1F5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.adm-responsable-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
}
.adm-responsable-icon::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}
.adm-responsable-icon svg {
  width: 44px;
  height: 44px;
  fill: #00698C;
}

.adm-responsable-info {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.adm-responsable-label {
  display: inline-block;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  margin-bottom: 14px;
}
.adm-responsable-name {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 18px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.adm-responsable-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.adm-responsable-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #00698C;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.adm-responsable-link:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(255, 0, 0, 0.3);
}
.adm-responsable-link:hover svg {
  fill: #FFFFFF;
}
.adm-responsable-link svg {
  width: 16px;
  height: 16px;
  fill: #00698C;
  flex-shrink: 0;
  transition: fill 0.3s ease;
}
@media (max-width: 700px) {
  .adm-responsable-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 24px;
  }
  .adm-responsable-contact {
    justify-content: center;
  }
  .adm-responsable-name {
    font-size: 22px;
  }
}

/* ================================================================== */
/* PORTAL DE TRANSPARENCIA — grid de 7 categorías como cards          */
/* ================================================================== */
.adm-section-transparencia {
  background: linear-gradient(180deg, #F4F8FB 0%, #EAF2F7 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 20px 100px 20px;
}
.adm-section-transparencia::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 106, 140, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.adm-section-transparencia::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.adm-section-transparencia .adm-section-inner {
  max-width: 1240px;
  position: relative;
  z-index: 1;
}

/* --- Grid de 2 columnas --- */
.adm-trans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 900px) {
  .adm-trans-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* --- Card de cada categoría --- */
.adm-trans-cat {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #E8EEF2;
  border-radius: 18px;
  padding: 38px 36px 32px 36px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 55, 75, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.adm-trans-cat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00698C 0%, #FF0000 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease;
}
.adm-trans-cat:hover {
  transform: translateY(-6px);
  border-color: #D4E2EA;
  box-shadow: 0 28px 60px rgba(0, 55, 75, 0.14);
}
.adm-trans-cat:hover::before {
  transform: scaleX(1);
}

/* Número grande watermark en la esquina superior derecha */
.adm-trans-cat-num {
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #F0F5F8 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -3px;
  pointer-events: none;
  user-select: none;
}
.adm-trans-cat:hover .adm-trans-cat-num {
  background: linear-gradient(180deg, #E3EEF3 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Icono distintivo en cuadrado con gradiente */
.adm-trans-cat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(0, 106, 140, 0.28);
  position: relative;
  z-index: 2;
}
.adm-trans-cat-icon svg {
  width: 26px;
  height: 26px;
}

.adm-trans-cat-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: #1A2A36;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 2;
  max-width: 88%;
}

.adm-trans-cat-desc {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #6B7A85;
  margin: 0 0 22px 0;
  position: relative;
  z-index: 2;
}

/* Lista de PDFs como chips minimalistas */
.adm-trans-cat-docs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.adm-trans-cat-doc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: #F6F9FB;
  border: 1px solid #EBF0F4;
  border-radius: 10px;
  text-decoration: none !important;
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1A2837;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.adm-trans-cat-doc svg {
  width: 18px;
  height: 18px;
  fill: #FF0000;
  flex-shrink: 0;
}
.adm-trans-cat-doc::after {
  content: "↗";
  margin-left: auto;
  font-size: 14px;
  color: #00698C;
  font-weight: 900;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.adm-trans-cat-doc:hover {
  background-color: #FFFFFF;
  border-color: #00698C;
  color: #00698C;
  transform: translateX(4px);
}
.adm-trans-cat-doc:hover::after {
  opacity: 1;
  transform: translate(2px, -2px);
}

@media (max-width: 600px) {
  .adm-trans-cat {
    padding: 30px 24px 26px 24px;
  }
  .adm-trans-cat-num {
    font-size: 72px;
    right: 20px;
  }
  .adm-trans-cat-title {
    font-size: 17px;
  }
}

/* ================================================================== */
/* SECCIÓN INTRO: ¿Qué es ...? — bloque con fondo suave y card centrada */
/* Aplica a carnet-medio-pasaje.html y bolsa-trabajo.html              */
/* ================================================================== */
.adm-section-intro {
  background: linear-gradient(180deg, #F4F8FB 0%, #EAF2F7 100%);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}
.adm-section-intro::before {
  content: "\201C";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 320px;
  line-height: 1;
  color: rgba(0, 105, 140, 0.06);
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}
.adm-section-intro .adm-section-inner {
  max-width: 820px;
  background: #FFFFFF;
  border: 1px solid #E1EBF0;
  border-radius: 20px;
  padding: 58px 60px;
  box-shadow: 0 20px 50px rgba(0, 55, 75, 0.08);
  position: relative;
  z-index: 1;
}
.adm-section-intro .adm-section-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 4px;
  background: linear-gradient(90deg, #00698C 0%, #FF0000 100%);
  border-radius: 0 0 4px 4px;
}
.adm-section-intro .adm-section-title {
  margin-bottom: 20px;
}
.adm-section-intro .adm-section-subtitle {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #4A5B68;
}
@media (max-width: 700px) {
  .adm-section-intro {
    padding: 60px 16px;
  }
  .adm-section-intro .adm-section-inner {
    padding: 40px 28px;
    border-radius: 16px;
  }
  .adm-section-intro::before {
    font-size: 220px;
    top: -10px;
  }
}

/* ================================================================== */
/* SECCIÓN ALTERNADA: bloques texto + imagen (Bolsa de Trabajo)        */
/* Layout tipo showcase: un bloque texto/imagen, el siguiente reverse  */
/* ================================================================== */
.adm-section-alt {
  background-color: #FFFFFF;
  padding: 90px 20px;
}
.adm-alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto 80px auto;
}
.adm-alt-block:last-child {
  margin-bottom: 0;
}
.adm-alt-block.reverse .adm-alt-text {
  order: 2;
}
.adm-alt-block.reverse .adm-alt-image {
  order: 1;
}
.adm-alt-text {
  padding: 10px 0;
}
.adm-alt-kicker {
  display: inline-block;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #00698C;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1.5px solid #B5D0DC;
  border-radius: 50px;
  margin-bottom: 22px;
}
.adm-alt-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #1A2A36;
  line-height: 1.18;
  letter-spacing: -0.6px;
  margin: 0 0 18px 0;
  max-width: 480px;
}
.adm-alt-desc {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #4A5B68;
  margin: 0 0 24px 0;
  max-width: 500px;
}
.adm-alt-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.adm-alt-list li {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #3A4A57;
  padding: 12px 0 12px 34px;
  position: relative;
  border-bottom: 1px solid #EEF2F5;
}
.adm-alt-list li:last-child {
  border-bottom: none;
}
.adm-alt-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  box-shadow: 0 4px 10px rgba(0, 106, 140, 0.25);
}
.adm-alt-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 4px;
  height: 8px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: translateY(-65%) rotate(45deg);
}
.adm-alt-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #FFFFFF;
  color: #00698C;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 50px;
  border: 1.5px solid #D4E2EA;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(0, 55, 75, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.adm-alt-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.adm-alt-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 106, 140, 0.18);
  border-color: #00698C;
  color: #00698C;
}
.adm-alt-cta:hover svg {
  transform: translateX(4px);
}

/* --- Imagen del bloque --- */
.adm-alt-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 55, 75, 0.18);
  aspect-ratio: 4 / 3;
}
.adm-alt-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 106, 140, 0.35) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.adm-alt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.adm-alt-block:hover .adm-alt-image img {
  transform: scale(1.05);
}
/* Marco decorativo detrás de la imagen */
.adm-alt-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .adm-section-alt {
    padding: 70px 20px;
  }
  .adm-alt-block {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 60px;
  }
  .adm-alt-block.reverse .adm-alt-text {
    order: 2;
  }
  .adm-alt-block.reverse .adm-alt-image {
    order: 1;
  }
  .adm-alt-title {
    font-size: 26px;
  }
  .adm-alt-image {
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 500px) {
  .adm-alt-title {
    font-size: 22px;
  }
  .adm-alt-cta {
    padding: 14px 24px;
    font-size: 12px;
  }
}

/* ================================================================== */
/* DOMINIO BLOCKS — agrupador de competencias por dominio              */
/* Usado en perfil-egresado.html                                        */
/* ================================================================== */
.adm-dominio-block {
  margin-bottom: 60px;
}
.adm-dominio-block:last-child {
  margin-bottom: 0;
}
.adm-dominio-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #D4E2EA;
}
.adm-dominio-label {
  display: inline-block;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #FFFFFF;
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 106, 140, 0.25);
}
.adm-dominio-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #1A2A36;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
@media (max-width: 700px) {
  .adm-dominio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .adm-dominio-title {
    font-size: 18px;
  }
  .adm-dominio-block {
    margin-bottom: 50px;
  }
}

/* ================================================================== */
/* CUALIDADES DIFERENCIADORAS — 3 cards horizontales                    */
/* ================================================================== */
.adm-section-cualidades {
  background: linear-gradient(135deg, #003B52 0%, #004E68 50%, #00698C 100%);
  position: relative;
  overflow: hidden;
}
.adm-section-cualidades::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.adm-section-cualidades::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.adm-section-cualidades .adm-section-inner {
  position: relative;
  z-index: 1;
}
.adm-section-cualidades .adm-section-title {
  color: #FFFFFF;
}
.adm-section-cualidades .adm-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #FF0000;
  margin: 14px auto 0 auto;
  border-radius: 2px;
}
.adm-section-cualidades .adm-section-subtitle {
  color: rgba(255, 255, 255, 0.78);
}
.adm-cualidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}
.adm-cualidad-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 38px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.adm-cualidad-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}
.adm-cualidad-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFFFFF 0%, #E8F1F5 100%);
  color: #00698C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.adm-cualidad-icon svg {
  width: 28px;
  height: 28px;
}
.adm-cualidad-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 14px 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.adm-cualidad-desc {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
@media (max-width: 900px) {
  .adm-cualidades-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .adm-cualidad-card {
    padding: 32px 26px;
  }
}

/* ================================================================== */
/* SECCIÓN: LÍNEA DE TIEMPO HISTÓRICA — vertical                       */
/* Usado en historia.html                                               */
/* ================================================================== */
.adm-section-timeline {
  background: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 100%);
}
.adm-timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}
/* Línea vertical conectora */
.adm-timeline::before {
  content: "";
  position: absolute;
  left: 78px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 105, 140, 0.15) 0%, rgba(0, 105, 140, 0.4) 50%, rgba(0, 105, 140, 0.15) 100%);
}
.adm-timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 28px 0;
}
.adm-timeline-marker {
  flex-shrink: 0;
  width: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.adm-timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #00698C;
  color: #00698C;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  box-shadow: 0 12px 28px rgba(0, 106, 140, 0.18);
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.adm-timeline-item:hover .adm-timeline-year {
  transform: scale(1.06);
  background: #00698C;
  color: #FFFFFF;
}
/* Marker activo (último hito) */
.adm-timeline-marker-active .adm-timeline-year {
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  color: #FFFFFF;
  border-color: #FF0000;
  box-shadow: 0 16px 36px rgba(0, 106, 140, 0.35), 0 0 0 6px rgba(255, 0, 0, 0.08);
}
.adm-timeline-marker-active .adm-timeline-year::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px dashed rgba(255, 0, 0, 0.4);
  border-radius: 50%;
  animation: timelinePulse 3s ease-in-out infinite;
}
@keyframes timelinePulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

.adm-timeline-content {
  flex: 1;
  display: flex;
  align-items: stretch;
  background: #FFFFFF;
  border: 1px solid #E8EEF2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 55, 75, 0.08);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  min-height: 220px;
}
.adm-timeline-content::before {
  content: "";
  position: absolute;
  top: 36px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-left: 1px solid #E8EEF2;
  border-bottom: 1px solid #E8EEF2;
  transform: rotate(45deg);
  z-index: 3;
}
.adm-timeline-item:hover .adm-timeline-content {
  transform: translateX(6px);
  border-color: #D4E2EA;
  box-shadow: 0 26px 56px rgba(0, 55, 75, 0.14);
}
.adm-timeline-image {
  flex-shrink: 0;
  width: 200px;
  position: relative;
  overflow: hidden;
}
.adm-timeline-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 106, 140, 0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.adm-timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.adm-timeline-item:hover .adm-timeline-image img {
  transform: scale(1.05);
}
.adm-timeline-text {
  flex: 1;
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.adm-timeline-kicker {
  display: inline-block;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #FF0000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.adm-timeline-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1A2A36;
  margin: 0 0 14px 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.adm-timeline-desc {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #4A5B68;
  margin: 0;
}
.adm-timeline-desc strong {
  color: #00698C;
  font-weight: 700;
}

@media (max-width: 850px) {
  .adm-timeline-content {
    flex-direction: column;
    min-height: auto;
  }
  .adm-timeline-image {
    width: 100%;
    height: 200px;
  }
}
@media (max-width: 700px) {
  .adm-timeline::before {
    left: 26px;
  }
  .adm-timeline-item {
    gap: 18px;
    padding: 20px 0;
  }
  .adm-timeline-marker {
    width: 56px;
  }
  .adm-timeline-year {
    width: 56px;
    height: 56px;
    font-size: 14px;
    border-width: 2px;
  }
  .adm-timeline-text {
    padding: 24px 22px;
  }
  .adm-timeline-content::before {
    top: 24px;
    left: -8px;
    width: 16px;
    height: 16px;
  }
  .adm-timeline-image {
    height: 160px;
  }
  .adm-timeline-title {
    font-size: 17px;
  }
}

/* ================================================================== */
/* SECCIÓN: DIRECTORIO DE AUTORIDADES — staff cards                    */
/* Usado en directorio-autoridades.html                                 */
/* ================================================================== */
.adm-section-equipo {
  background: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 100%);
}
.adm-equipo-areaheader {
  display: flex;
  align-items: baseline;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto 36px auto;
  padding-bottom: 18px;
  border-bottom: 1px solid #D4E2EA;
}
.adm-equipo-areaheader-2 {
  margin-top: 70px;
}
.adm-equipo-arealabel {
  display: inline-block;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #FFFFFF;
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 106, 140, 0.25);
}
.adm-equipo-areaname {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #1A2A36;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.adm-equipo-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adm-staff-card {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #E8EEF2;
  border-radius: 16px;
  padding: 36px 28px 30px 28px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(0, 55, 75, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}
.adm-staff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00698C 0%, #FF0000 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease;
}
.adm-staff-card:hover {
  transform: translateY(-6px);
  border-color: #D4E2EA;
  box-shadow: 0 28px 56px rgba(0, 55, 75, 0.14);
}
.adm-staff-card:hover::before {
  transform: scaleX(1);
}

.adm-staff-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  color: #FFFFFF;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto;
  box-shadow: 0 12px 28px rgba(0, 106, 140, 0.28);
  border: 3px solid #FFFFFF;
  outline: 1px solid #D4E2EA;
  transition: transform 0.4s ease;
}
.adm-staff-card:hover .adm-staff-avatar {
  transform: scale(1.05);
}
.adm-staff-name {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #1A2A36;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
  min-height: 42px;
}
.adm-staff-role {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #6B7A85;
  margin: 0;
  font-weight: 600;
}

/* Card destacada (Director General) */
.adm-staff-featured {
  background: linear-gradient(135deg, #003B52 0%, #004E68 50%, #00698C 100%);
  border-color: transparent;
  grid-column: span 3;
  padding: 44px 30px 36px 30px;
}
.adm-staff-featured::before {
  background: #FF0000;
  transform: scaleX(1);
}
.adm-staff-featured .adm-staff-avatar {
  background: linear-gradient(135deg, #FFFFFF 0%, #E8F1F5 100%);
  color: #00698C;
  width: 100px;
  height: 100px;
  font-size: 30px;
  border-color: rgba(255,255,255,0.4);
  outline: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}
.adm-staff-featured .adm-staff-name {
  color: #FFFFFF;
  font-size: 22px;
  min-height: auto;
  margin-bottom: 10px;
}
.adm-staff-featured .adm-staff-role {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}
.adm-staff-featured:hover {
  border-color: transparent;
}

@media (max-width: 950px) {
  .adm-equipo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .adm-staff-featured {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .adm-equipo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .adm-staff-featured {
    grid-column: span 1;
  }
  .adm-equipo-areaheader {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .adm-equipo-areaname {
    font-size: 18px;
  }
}

/* ================================================================== */
/* SECCIÓN: ESTRUCTURA ORGÁNICA — bloques de órganos                    */
/* Usado en estructura-organica.html                                    */
/* ================================================================== */
.adm-section-organigrama {
  background: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 100%);
}
.adm-org-block {
  max-width: 1200px;
  margin: 0 auto 56px auto;
}
.adm-org-block:last-child {
  margin-bottom: 0;
}
.adm-org-header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D4E2EA;
}
.adm-org-label {
  display: inline-block;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #FFFFFF;
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 106, 140, 0.25);
}
.adm-org-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #1A2A36;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.adm-org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.adm-org-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 30px;
  background: #FFFFFF;
  border: 1px solid #E8EEF2;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 55, 75, 0.07);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.adm-org-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00698C 0%, #FF0000 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease;
}
.adm-org-item:hover {
  transform: translateY(-5px);
  border-color: #D4E2EA;
  box-shadow: 0 24px 50px rgba(0, 55, 75, 0.14);
}
.adm-org-item:hover::before {
  transform: scaleX(1);
}
.adm-org-item-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 106, 140, 0.25);
  transition: transform 0.35s ease;
}
.adm-org-item:hover .adm-org-item-icon {
  transform: rotate(-4deg) scale(1.05);
}
.adm-org-item-icon svg {
  width: 26px;
  height: 26px;
}
.adm-org-item-body {
  flex: 1;
  min-width: 0;
}
.adm-org-item-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #1A2A36;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.adm-org-item-desc {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: #6B7A85;
  margin: 0 0 16px 0;
}
.adm-org-item-person {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px dashed #E1EBF0;
}
.adm-org-item-role {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 10.5px;
  font-weight: 900;
  color: #FF0000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.adm-org-item-name {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #00698C;
  line-height: 1.35;
  letter-spacing: -0.1px;
}

/* Card destacada (Dirección General) */
.adm-org-item-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #003B52 0%, #004E68 50%, #00698C 100%);
  border-color: transparent;
  padding: 36px 40px;
}
.adm-org-item-featured::before {
  background: #FF0000;
  transform: scaleX(1);
}
.adm-org-item-featured .adm-org-item-icon {
  background: linear-gradient(135deg, #FFFFFF 0%, #E8F1F5 100%);
  color: #00698C;
  width: 64px;
  height: 64px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.adm-org-item-featured .adm-org-item-icon svg {
  width: 32px;
  height: 32px;
}
.adm-org-item-featured .adm-org-item-title {
  color: #FFFFFF;
  font-size: 22px;
}
.adm-org-item-featured .adm-org-item-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
}
.adm-org-item-featured .adm-org-item-person {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.adm-org-item-featured .adm-org-item-role {
  color: #FFFFFF;
}
.adm-org-item-featured .adm-org-item-name {
  color: #FFFFFF;
  font-size: 16px;
}
.adm-org-item-featured:hover {
  border-color: transparent;
}

@media (max-width: 900px) {
  .adm-org-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .adm-org-item-featured {
    grid-column: span 1;
  }
}
@media (max-width: 600px) {
  .adm-org-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .adm-org-title {
    font-size: 18px;
  }
  .adm-org-item {
    padding: 24px 22px;
    gap: 16px;
  }
  .adm-org-item-featured {
    padding: 28px 24px;
  }
  .adm-org-item-title {
    font-size: 16px;
  }
}

/* ================================================================== */
/* PORTAL TRANSPARENCIA — Header Art. 42 + badge "En actualización"   */
/* ================================================================== */
.adm-trans-art42-header {
  max-width: 1100px;
  margin: 0 auto 36px auto;
  padding: 22px 28px;
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  color: #FFFFFF;
  border-radius: 14px;
  border-left: 5px solid #FF0000;
  box-shadow: 0 16px 36px rgba(0, 106, 140, 0.18);
}
.adm-trans-art42-label {
  display: inline-block;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.adm-trans-art42-text {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* Numerito a)-j) más grande para los items oficiales */
.adm-trans-cat-num {
  font-size: 64px;
}

/* Estado "En actualización" para chips de documentos */
.adm-trans-cat-doc.is-pending {
  background-color: #FFF8E6;
  border-color: #F4D26B;
  color: #6B5A1E;
  cursor: not-allowed;
  opacity: 0.95;
  position: relative;
}
.adm-trans-cat-doc.is-pending svg {
  fill: #C9A227;
}
.adm-trans-cat-doc.is-pending::after {
  display: none;
}
.adm-trans-cat-doc.is-pending:hover {
  background-color: #FFF8E6;
  border-color: #F4D26B;
  color: #6B5A1E;
  transform: none;
}
.adm-trans-cat-badge {
  margin-left: auto;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 9.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6B5A1E;
  background: linear-gradient(135deg, #FFD964 0%, #F4C430 100%);
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(196, 156, 36, 0.3);
  flex-shrink: 0;
}

/* ================================================================== */
/* CV BUTTONS para docentes                                            */
/* ================================================================== */
.adm-staff-cv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 14px;
  background: #FFF8E6;
  border: 1.5px solid #F4D26B;
  border-radius: 8px;
  color: #6B5A1E !important;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 11.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  cursor: not-allowed;
  pointer-events: none;
}
.adm-staff-cv-badge {
  font-size: 9.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6B5A1E;
  background: linear-gradient(135deg, #FFD964 0%, #F4C430 100%);
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ================================================================== */
/* BOTÓN DESCARGA PLAN DE ESTUDIOS                                    */
/* ================================================================== */
.adm-plan-download {
  text-align: center;
  margin-top: 50px;
}
.adm-plan-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #00698C 0%, #004E68 100%);
  color: #FFFFFF !important;
  border-radius: 14px;
  text-decoration: none !important;
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 106, 140, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.adm-plan-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 106, 140, 0.42);
}
/* Estado pendiente (cuando aún no hay PDF) */
.adm-plan-download-btn.is-pending {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}
.adm-plan-download-btn.is-pending:hover {
  transform: none;
  box-shadow: 0 12px 28px rgba(0, 106, 140, 0.3);
}
.adm-plan-download-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.adm-plan-download-badge {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6B5A1E;
  background: linear-gradient(135deg, #FFD964 0%, #F4C430 100%);
  padding: 4px 9px;
  border-radius: 5px;
  white-space: nowrap;
}

/* ================================================================== */
/* GALERÍA DEL INSTITUTO — grid responsive con hover                   */
/* ================================================================== */
.adm-section-gallery {
  background: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 100%);
}
.adm-gallery-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
}
.adm-gallery-section:last-of-type {
  margin-bottom: 30px;
}
.adm-gallery-section-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D4E2EA;
}
.adm-gallery-section-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #00698C;
  margin: 0 0 6px 0;
  letter-spacing: -0.3px;
}
.adm-gallery-section-sub {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 14px;
  color: #6B7A85;
  margin: 0;
  line-height: 1.5;
}
.adm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.adm-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  margin: 0;
  box-shadow: 0 12px 30px rgba(0, 55, 75, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.adm-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 59, 82, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.adm-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 55, 75, 0.18);
}
.adm-gallery-item:hover::after {
  opacity: 1;
}
.adm-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.adm-gallery-item:hover img {
  transform: scale(1.06);
}
.adm-gallery-note {
  text-align: center;
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 14px;
  color: #6B7A85;
  margin: 36px 0 0 0;
  font-style: italic;
}
@media (max-width: 1100px) {
  .adm-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 750px) {
  .adm-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .adm-gallery-section-title {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .adm-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================== */
/* CHIPS DE DOCUMENTOS CON META (2 líneas: título + vigencia/fecha)   */
/* ================================================================== */
.adm-trans-cat-doc.has-meta {
  align-items: flex-start;
  padding: 14px 16px;
  gap: 12px;
}
.adm-trans-cat-doc-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.adm-trans-cat-doc-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 13.5px;
  font-weight: 900;
  color: #1A2837;
  line-height: 1.3;
  letter-spacing: -0.1px;
}
.adm-trans-cat-doc-meta {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #6B7A85;
  line-height: 1.4;
}
.adm-trans-cat-doc.has-meta:hover .adm-trans-cat-doc-title {
  color: #00698C;
}
.adm-trans-cat-doc.is-pending.has-meta .adm-trans-cat-doc-title {
  color: #6B5A1E;
}
.adm-trans-cat-doc.is-pending.has-meta .adm-trans-cat-doc-meta {
  color: #8B7A3E;
}
/* Override ::after arrow for has-meta variant — mantiene la flecha abajo */
.adm-trans-cat-doc.has-meta::after {
  align-self: center;
}

/* ================================================================== */
/* SECCIÓN DOCUMENTOS DE GESTIÓN INSTITUCIONAL — separada del grid a-j */
/* ================================================================== */
.adm-trans-gestion-block {
  max-width: 1240px;
  margin: 60px auto 0 auto;
  padding-top: 50px;
  border-top: 2px dashed #D4E2EA;
}
.adm-trans-gestion-header {
  text-align: center;
  margin-bottom: 40px;
}
.adm-trans-gestion-title {
  font-family: '__Lato_5', 'Lato', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #00698C;
  margin: 0 0 10px 0;
  letter-spacing: -0.4px;
}
.adm-trans-gestion-sub {
  font-family: '__Open Sans_5', 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4A5B68;
  margin: 0 auto;
  max-width: 780px;
}
.adm-trans-gestion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.adm-trans-gestion-grid .adm-trans-cat::before {
  display: none;
}
@media (max-width: 850px) {
  .adm-trans-gestion-grid {
    grid-template-columns: 1fr;
  }
  .adm-trans-gestion-title {
    font-size: 20px;
  }
}
