

:root{
  --sc-azul:#232d67;
  --sc-verde:#2f8f8c;
  --sc-turq:#52b8b5;
  --sc-teal:#2f8f8c;
  --borde:#e5e7eb;

  --texto:#0f172a;   /* un poco menos duro que #111827 */
  --muted:#64748b;   /* más sutil */
}

/* Paleta base */
:root{
  --sc-azul:#232d67;
  --sc-verde:#2f8f8c;
  --sc-turq:#52b8b5;

  --bg:#f9fafb;
  --text:#111827;
  --muted:#6b7280;
  --card:#ffffff;
  --border:#e5e7eb;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 10px 25px rgba(0,0,0,.10);
}

/* Body base (por si Tailwind no aplica bien) */
body{
  background: var(--bg);
  color: var(--text);
}

/* Header + Nav (para evitar depender de bg-[#...] de Tailwind) */
.gde-header{
  background: var(--sc-azul);
}
.gde-nav{
  background: var(--sc-verde);
}

/* Título de página */
.gde-page-title{
  color: var(--sc-azul);
  font-weight: 800;
}

/* Grid de tarjetas */
.faq-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
@media (min-width:640px){
  .faq-cards{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width:768px){
  .faq-cards{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (min-width:1024px){
  .faq-cards{ grid-template-columns: repeat(5, minmax(0,1fr)); }
}

/* Tarjeta módulo (botón) */
.faq-card{
  border:0;
  cursor:pointer;
  padding: 22px 16px;
  border-radius: 16px;
  color:#fff;
  text-align:center;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.faq-card:hover{
  filter: brightness(1.03);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.faq-card__code{
  font-size: 26px;
  line-height: 1;
}
.faq-card__label{
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 500; /* más sutil que bold */
  opacity: .95;
  letter-spacing: .02em;
}

/* Gradientes por módulo */
.faq-eu  { background: linear-gradient(135deg, #6b9ed1 0%, #5b8fc5 100%); }
.faq-ccoo{ background: linear-gradient(135deg, #c6952c 0%, #a97c20 100%); }
.faq-gedo{ background: linear-gradient(135deg, #c45d8f 0%, #a94475 100%); }
.faq-ee  { background: linear-gradient(135deg, #2c6849 0%, #23563c 100%); }
.faq-als { background: linear-gradient(135deg, #8f84b3 0%, #776ca1 100%); }

/* Caja dinámica */
.faq-box{
  padding: 34px 28px;
  border-radius: 18px;
  color:#fff;
  box-shadow: var(--shadow-md);
  transition: background .25s ease;
}
.faq-box__title{
  margin:0 0 18px 0;
  font-size: 22px;
  font-weight: 800;
}

/* Lista de FAQs */
.faq-list{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

/* Item FAQ */
.faq-item{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 12px 14px;
  color: var(--text);
}
.faq-q{
  width:100%;
  border:0;
  background: transparent;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 0;
  text-align:left;
  font-weight: 650; /* menos tosca que 800 */
  color: #0f172a;
}
.faq-icon{
  flex: 0 0 auto;
  opacity:.8;
}
.faq-a{
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: #374151;
  display:none; /* se controla con .is-open */
}
.faq-item.is-open .faq-a{
  display:block;
}

/* Botón flotante si querés moverlo a CSS */
.btn-ayuda{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 9999px;
  background: var(--sc-turq);
  color:#fff;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,.20);
  z-index: 9999;
  transition: transform .25s ease, background .2s ease;
  text-decoration:none;
}
.btn-ayuda:hover{
  background: #3fa19e;
  transform: scale(1.08);
}
@media (min-width:640px){
  .btn-ayuda{ width: 64px; height: 64px; font-size: 34px; }
}

/* Secciones tipo “card contenedor” */
.gde-section{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:20px;
  padding:28px 24px;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
}
@media (min-width:768px){
  .gde-section{ padding:32px; }
}

/* Títulos de bloque */
.gde-blocktitle{
  margin:0;
  text-align:center;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;   /* reemplaza tracking-[0.10em] */
  color:var(--sc-azul);
  font-size:20px;
}
.gde-blocksub{
  margin:6px 0 0;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}
@media (min-width:768px){
  .gde-blocktitle{ font-size:22px; }
  .gde-blocksub{ font-size:14px; }
}

/* Grid de cards */
.gde-grid3{
  margin-top:18px;
  display:grid;
  gap:16px;
}
@media (min-width:768px){
  .gde-grid3{ grid-template-columns:repeat(3, minmax(0,1fr)); }
}

/* Card */
.gde-card{
  background:#fff;
  border:1px solid var(--borde);
  border-radius:18px;
  padding:20px;            /* evita texto pegado */
  display:flex;
  flex-direction:column;
  min-height:170px;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
  transition:transform .2s ease, box-shadow .2s ease;
}
.gde-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,.10);
}

/* Variante “destacada” (en vez de bg-[#232d67]/[0.04]) */
.gde-card--softblue{
  background:rgba(35,45,103,.04);
  border-color:rgba(35,45,103,.20);
}

/* Textos dentro de card */
.gde-card__title{
  margin:0;
  font-size:18px;
  font-weight:700;
  color:var(--sc-azul);
}
.gde-card__text{
  margin:8px 0 0;
  font-size:12px;
  line-height:1.55;
  color:#4b5563;
}

/* Botón */
.gde-card__actions{
  margin-top:auto;
  padding-top:16px;
}
.gde-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:10px 14px;
  border-radius:14px;
  background:var(--sc-azul);
  color:#fff;
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  transition:opacity .15s ease;
}
.gde-btn:hover{ opacity:.95; }

/* Botón alternativo bordeado (para “VER MÁS”) */
.gde-btn-outline{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--sc-azul);
  color:var(--sc-azul);
  background:transparent;
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  transition:background .15s ease, color .15s ease;
}
.gde-btn-outline:hover{
  background:var(--sc-azul);
  color:#fff;
}


/* =========================
   MÓDULOS GDE
   ========================= */

/* lista vertical de módulos */
.gde-modlist{
  margin-top:18px;
  display:grid;
  gap:16px;
}

/* card módulo (fila) */
.gde-mod{
  background:#fff;
  border:1px solid var(--borde);
  border-radius:18px;
  padding:22px;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
  transition:transform .2s ease, box-shadow .2s ease;
}
.gde-mod:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,.10);
}

/* fila superior dentro del módulo */
.gde-mod__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

/* lado izquierdo: badge + textos */
.gde-mod__left{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-width:0;
}

/* badge EU/CCOO/GEDO/EE */
.gde-badge{
  width:40px;
  height:40px;
  border-radius:14px;
  background:var(--sc-azul);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:13px;
  flex:0 0 auto;
}
.gde-badge--small{
  font-size:11px;
  letter-spacing:.04em;
}

/* textos */
.gde-mod__title{
  margin:0;
  font-size:18px;
  font-weight:800;
  color:var(--sc-azul);
}
.gde-mod__desc{
  margin:4px 0 0;
  font-size:12px;
  color:#4b5563;
  line-height:1.55;
}

/* lado derecho: acciones */
.gde-mod__actions{
  display:flex;
  align-items:flex-start;
  gap:10px;
  flex:0 0 auto;
}

/* cuando hay 2 botones en columna (GEDO/EE) */
.gde-mod__actions--stack{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:10px;
  min-width:170px;
}

/* botones de módulo (mismo estilo que los anteriores) */
.gde-btn--fixed{
  width:170px;
}

/* panel desplegable */
.gde-panel{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid #eef2f7;
}
.gde-panel__title{
  margin:0;
  font-size:14px;
  font-weight:800;
  color:var(--sc-azul);
}

/* lista de accesos útiles */
.gde-panel__grid{
  margin-top:12px;
  display:grid;
  gap:12px;
}

/* item del panel */
.gde-item{
  border:1px solid var(--borde);
  border-radius:16px;
  padding:12px;
  background:#fff;
}
.gde-item__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.gde-item__title{
  margin:0;
  font-size:13px;
  font-weight:800;
  color:#111827;
}
.gde-item__text{
  margin:4px 0 0;
  font-size:11px;
  color:#4b5563;
  line-height:1.45;
}

/* botón flecha */
.gde-go{
  width:40px;
  height:40px;
  border-radius:14px;
  background:var(--sc-azul);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  flex:0 0 auto;
  transition:opacity .15s ease;
}
.gde-go:hover{ opacity:.95; }

/* responsive: acciones apiladas abajo en mobile */
@media (max-width:640px){
  .gde-mod__row{
    flex-direction:column;
  }
  .gde-mod__actions{
    width:100%;
  }
  .gde-mod__actions--stack{
    width:100%;
    min-width:0;
  }
  .gde-btn--fixed{
    width:100%;
  }
}

/* =========================
   FIRMA DIGITAL
   ========================= */

.gde-grid-2{
  margin-top:18px;
  display:grid;
  gap:16px;
}
@media (min-width:768px){
  .gde-grid-2{ grid-template-columns:1fr 1fr; }
}

/* card genérica (para estas grillas) */
.gde-card{
  background:#fff;
  border:1px solid var(--borde);
  border-radius:18px;
  padding:18px;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
  transition:transform .2s ease, box-shadow .2s ease;
  display:flex;
  flex-direction:column;
  min-height:160px; /* ayuda a que los botones queden alineados */
}
.gde-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.gde-card__title{
  margin:0;
  font-size:18px;
  font-weight:800;
  color:var(--sc-azul);
}
.gde-card__text{
  margin:8px 0 0;
  font-size:12px;
  color:#4b5563;
  line-height:1.55;
}

/* footer del card para empujar el botón abajo */
.gde-card__footer{
  margin-top:auto;
  padding-top:14px;
}

/* botón full width */
.gde-btn-full{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  padding:10px 14px;
  font-size:12px;
  font-weight:800;
  color:#fff;
  text-decoration:none;
  border:0;
  cursor:pointer;
  transition:opacity .15s ease, transform .15s ease;
}
.gde-btn-full:hover{ opacity:.95; }
.gde-btn-full:active{ transform:scale(.99); }

/* variantes */
.gde-btn-full--azul{ background:var(--sc-azul); }
.gde-btn-full--teal{ background:var(--sc-teal); }




/* ===== Tipografía más sutil (override) ===== */

/* títulos principales */
.gde-blocktitle{ font-weight:700; letter-spacing:.10em; }  /* antes 800 y .12em */
.gde-blocksub{ color:var(--muted); }

/* títulos de cards y módulos */
.gde-card__title{ font-weight:600; }   /* antes 700/800 */
.gde-mod__title{ font-weight:700; }    /* antes 800 */
.gde-panel__title{ font-weight:700; }  /* antes 800 */

/* textos */
.gde-card__text,
.gde-mod__desc,
.gde-item__text{ color:var(--muted); }

/* item titles (negro menos “bloque”) */
.gde-item__title{
  font-weight:600;         /* antes 800 */
  color:var(--texto);
}

/* badges (EU/CCOO/GEDO/EE) */
.gde-badge{ font-weight:700; }         /* antes 800 */
.gde-badge--small{ letter-spacing:.02em; } /* antes .04em */

/* botones */
.gde-btn,
.gde-btn-outline,
.gde-btn-full{
  font-weight:700;          /* antes 800 */
  letter-spacing:.03em;     /* leve prolijo */
}

/* si querés aún más suave, probá 600:
.gde-btn,.gde-btn-outline,.gde-btn-full{ font-weight:600; }
*/

/* Fondo animado del cartel "Herramientas GDE" (sin Tailwind arbitrario) */
.gde-gradient-hero{
  position:absolute;
  inset:0;
  opacity:.95;
  background: linear-gradient(90deg, #232d67, #337c58, #52b8b5, #232d67);
  background-size: 300% 300%;
  animation: gdeGradientShift 7s ease infinite;
}

@keyframes gdeGradientShift{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}


/* =========================
   HERO: 2 columnas reales (sin depender de md: de Tailwind)
   ========================= */
.gde-hero-row{
  display: block;
}
@media (min-width: 768px){
  .gde-hero-row{
    display: flex;
    align-items: stretch;
  }
  .gde-hero-left{ width: 70%; }
  .gde-hero-right{ width: 30%; }
}

/* =========================
   Accesos directos: fondo garantizado (sin depender de gradients Tailwind)
   ========================= */
.quick-card{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.quick-card:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}

/* Colores */
.quick-gde      { background: linear-gradient(135deg, #6b9ed1, #5b8fc5); }
.quick-faq      { background: linear-gradient(135deg, #c6952c, #a97c20); }
.quick-nomen    { background: linear-gradient(135deg, #4a4a4a, #3a3a3a); }
.quick-manuales { background: linear-gradient(135deg, #c45d8f, #a94475); }
.quick-recursos { background: linear-gradient(135deg, #2c6849, #23563c); }
.quick-mesa     { background: linear-gradient(135deg, #8f84b3, #776ca1); }

/* =========================
   Herramientas GDE: centrado real + altura mínima para que se vea "como bloque"
   ========================= */
.tools-card{
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  min-height: 360px; /* clave para que parezca centrado y comparable al video */
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}
.tools-content{
  position: relative;
  z-index: 10;
  height: 100%;
  min-height: 360px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* ✅ centrado vertical real */
}

/* Fondo animado */
.gde-gradient-hero{
  position:absolute;
  inset:0;
  opacity:.95;
  background: linear-gradient(90deg, #232d67, #337c58, #52b8b5, #232d67);
  background-size: 300% 300%;
  animation: gdeGradientShift 7s ease infinite;
}
@keyframes gdeGradientShift{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

/* =========================
   Noticias: 1 / 2 / 3 visibles por CSS (sin depender de sm: o lg:)
   ========================= */
.news-track{
  display:flex;
  overflow-x:auto;
  scroll-behavior:smooth;
  border-radius: 1rem;
  -ms-overflow-style:none;
  scrollbar-width:none;
  scroll-snap-type: x mandatory;
}
.news-track::-webkit-scrollbar{ display:none; }

.newsItem{
  scroll-snap-align: start;
  flex: 0 0 100%; /* 1 visible */
}
@media (min-width: 640px){
  .newsItem{ flex-basis: 50%; } /* 2 visibles */
}
@media (min-width: 1024px){
  .newsItem{ flex-basis: 33.3333%; } /* ✅ 3 visibles */
}

/* Asegura que el wrapper sea relativo (por si Tailwind no aplica .relative) */
.news-wrap {
  position: relative;
}

/* Flechas del carrusel: siempre flotantes y centradas */
.news-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  display: none;           /* solo desktop */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
}

.news-nav.prev { left: -16px; }
.news-nav.next { right: -16px; }

@media (min-width: 768px){
  .news-nav { display: flex; }
}

/* Fondo degradado animado del cartel "Herramientas GDE" */
.gde-gradient-hero{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #232d67, #337c58, #52b8b5);
  background-size: 200% 200%;
  opacity: .95;
  animation: gradientShift 6s ease infinite;
}

/* Animación */
@keyframes gradientShift{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Badge arriba a la derecha, SIN depender de Tailwind */
.media-panel { position: relative; } /* por las dudas */

.badge-top-right{
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 60;
  pointer-events: none;
}

.badge-pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,.92);
  color: #232d67;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.06);
}

.text-gde{
  color:#2f8f8c;
}

.text-upper{
  text-transform: uppercase;
}

.tracking-gde {
  letter-spacing: 0.18em;
}

/* Layout 2 columnas + línea divisoria */
.gde-hero-row{
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .gde-hero-row{
    grid-template-columns: 1fr 380px; /* ajustá 360/380 según te guste */
  }
  .gde-hero-right{
    border-left: 1px solid #e5e7eb;   /* divisoria */
  }
}

/* Eyebrow (Portal GDE) sin depender de Tailwind */
.gde-eyebrow{
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  color: #2f8f8c; /* verde */
}

/* Contenedor de features */
.gde-features{
  display: flex;
  flex-direction: column;
  gap: 16px;            /* separación entre cards */
  align-items: center;  /* centra LOS CARDS, no el texto */
}

/* Card pequeña */
.gde-feature-card{
  width: 100%;
  max-width: 340px;     /* para que no toque márgenes del panel grande */
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  transition: box-shadow .2s ease;
}

.gde-feature-card:hover{
  box-shadow: 0 1px 6px rgba(15,23,42,.08);
}

/* Fila icono + texto (evita el “pill” vertical) */
.gde-feature-row{
  display: flex;
  align-items: flex-start; /* CLAVE: no estirar */
  gap: 16px;
}

/* Icono cuadrado real */
.gde-feature-icon{
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #232d67;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

/* Fuerza a que el panel derecho NO arme columnas raras */
.gde-hero-right { min-width: 0; }

/* Contenedor: cards centrados y separados */
.gde-features{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* Card: una sola “caja” */
.gde-feature-card{
  width: 100%;
  max-width: 360px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
}

/* Fila interna: SIEMPRE flex (mata cualquier grid heredado) */
.gde-feature-row{
  display: flex !important;
  align-items: flex-start;
  gap: 14px;
}

/* Icono: cuadrado real */
.gde-feature-icon{
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #232d67;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

/* Texto */
.gde-feature-body{ min-width: 0; }
.gde-feature-title{
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #232d67;
}
.gde-feature-text{
  margin: 4px 0 0 0;
  font-size: 12px;
  color: #4b5563;
  line-height: 1.35;
}

.gde-feature-card, .gde-feature-row { grid-template-columns: none !important; }

/* ===== HERO ROW (2 columnas reales) ===== */
.gde-hero-row{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px) !important;
  align-items: stretch;
}

/* En mobile: 1 columna */
@media (max-width: 767px){
  .gde-hero-row{
    grid-template-columns: 1fr !important;
  }
}

/* Panel derecho: que no quede angosto */
.gde-hero-right{
  min-width: 340px;
}

/* ===== Features ===== */
.gde-features{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* Card: ocupa el ancho del panel derecho */
.gde-feature-card{
  width: 100%;
  max-width: 100%;           /* <-- clave */
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
}

/* Fila interna siempre flex */
.gde-feature-row{
  display: flex !important;
  align-items: flex-start;
  gap: 14px;
}

.gde-feature-icon{
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #232d67;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.gde-feature-body{ min-width: 0; }

.gde-feature-title{
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #232d67;
}

.gde-feature-text{
  margin: 4px 0 0 0;
  font-size: 12px;
  color: #4b5563;
  line-height: 1.35;

}


/* ================================
   HERO "¿Qué es GDE?" (70/30 real)
   ================================ */

.gde-hero-grid {
  display: flex;
  flex-direction: column;          /* móvil: apilado (correcto) */
}

.gde-hero-left {
  padding: 1.5rem;                 /* similar a p-6 */
}

.gde-hero-aside {
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem;
  background: #f9fafb; /* gris suave como imagen 2 */
}

.gde-hero-aside-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;                       /* gap-4 */
  align-items: center;             /* centra las cards como en imagen 2 */
}

/* Card de beneficio */
.gde-benefit {
  width: 100%;
  max-width: 340px;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;          /* rounded-xl */
  background: #ffffff;
  padding: 1rem;                   /* p-4 */
  transition: box-shadow .15s ease;
}

.gde-benefit:hover {
  box-shadow: 0 1px 6px rgba(16,24,40,.08); /* hover:shadow-sm */
}

.gde-benefit-ico {
  flex: 0 0 auto;
  width: 48px;                     /* w-12 */
  height: 48px;                    /* h-12 */
  border-radius: 0.75rem;          /* rounded-xl */
  background: #232d67;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;             /* text-lg */
}

/* Desktop: 70/30 + divisoria vertical */
@media (min-width: 768px) {
  .gde-hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .gde-hero-left {
    flex: 1 1 auto;
    padding: 1.75rem;              /* parecido a md:p-7 */
  }

  .gde-hero-aside {
    width: 420px;                  /* tu 30% “fijo” como la imagen 2 */
    border-top: 0;
    border-left: 1px solid #e5e7eb; /* divisoria vertical */
    padding: 1.5rem;               /* md:p-6 */
    display: flex;
    justify-content: center;
  }

  .gde-hero-aside-inner {
    width: 100%;
    align-items: flex-start;       /* como en imagen 2 (alineado arriba/izq) */
  }
}

@media (min-width: 768px) {

  .gde-hero-aside {
    width: 420px;
    border-top: 0;
    border-left: 1px solid #e5e7eb;
    padding: 1.5rem;
    display: flex;
    justify-content: center;

    background: #f8fafc; /* gris suave tipo portal gobierno */
  }

}

.gde-link {
  color: #2f8f8c;
}