/* ==========================================================================
   LumenAi Educación — hoja de estilos principal
   Sistema visual premium: paleta profunda, tipografía editorial (Fraunces)
   + cuerpo redondeado (Quicksand), profundidad con sombras y aurora suave.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --blue:        #3f6fe0;
  --blue-dark:   #2d54b8;
  --gold:        #f5b942;
  --gold-light:  #ffd989;
  --gold-dark:   #a9740a;
  --teal:        #0e6f6b;
  --teal-light:  #2fa89f;
  --teal-deep:   #0a4b48;
  --pink:        #c2185b;
  --pink-soft:   #e4a6bf;

  --ink:         #11181d;
  --muted:       #545f6a;
  --band:        #f3f5f6;
  --line:        #e5e9eb;
  --white:       #ffffff;
  --surface:     #f7f9fa;
  --surface-dark:   #071f1d;
  --surface-dark-2: #0c322e;

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Quicksand', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-script:  'Caveat', 'Segoe Script', cursive;

  --wrap:        1120px;
  --wrap-narrow: 860px;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   18px;

  --shadow-xs:   0 1px 2px rgba(8, 18, 22, .06);
  --shadow-sm:   0 3px 10px rgba(8, 18, 22, .07);
  --shadow-md:   0 10px 22px -10px rgba(8, 18, 22, .18);
  --shadow-lg:   0 20px 40px -16px rgba(8, 18, 22, .26);

  --header-h:    72px;
  --ease:        cubic-bezier(.2, .6, .3, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--muted);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -.01em;
  margin: 0 0 .6em;
}

p { margin: 0 0 1.15em; }

ul { margin: 0 0 1.15em; padding-left: 1.3em; }

summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

:focus-visible {
  outline: 3px solid var(--teal-light);
  outline-offset: 2px;
  border-radius: 3px;
}

.wrap        { width: 100%; max-width: var(--wrap);        margin-inline: auto; padding-inline: 24px; }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--teal); color: #fff; padding: 10px 18px; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}


/* ---------- 3. Marca / logotipo ---------- */
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand:hover { text-decoration: none; }

.brand__badge {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white);
  border: 2px solid transparent;
  background-image:
    linear-gradient(var(--white), var(--white)),
    linear-gradient(135deg, var(--teal-light), var(--gold));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow-xs);
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  color: var(--teal);
}

.brand__badge svg { width: 68%; height: 68%; display: block; }

.brand__name {
  font-size: 19.5px; font-weight: 700; color: var(--ink); letter-spacing: -.2px;
}

/* Logotipo grande (hero) — construido en HTML/CSS, sin imagen */
.logomark { text-align: center; line-height: 1; }

.logomark__spark {
  display: block; margin: 0 auto 4px; width: 28px; height: 28px; color: var(--gold);
}

.logomark__row {
  font-family: var(--font-display);
  font-size: clamp(32px, 6.4vw, 58px);
  font-weight: 600;
  letter-spacing: -.01em;
}
.logomark__lumen { color: var(--gold-dark); }
.logomark__ai    { color: var(--teal); font-style: italic; }

.logomark__sub {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .3px;
}

@media (prefers-reduced-motion: reduce) {
  .logomark__spark { animation: none; }
}

/* ---------- 4. Cabecera y navegación ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.site-header__inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 16px;
}

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }

.nav__link {
  position: relative;
  display: block;
  padding: 9px 13px;
  font-size: 14.5px; font-weight: 600;
  color: var(--muted);
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease;
}
.nav__link:hover { background: var(--surface); color: var(--teal); text-decoration: none; }
.nav__link.is-active { color: var(--ink); font-weight: 700; }
.nav__link.is-active::after {
  content: "";
  position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2px; border-radius: 2px;
  background: var(--teal);
}

/* Desplegable «Más» */
.nav__more { position: relative; }

.nav__toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font: inherit; font-size: 14.5px; font-weight: 600;
  color: var(--muted);
  background: none; border: 0; cursor: pointer;
  padding: 9px 13px; border-radius: 999px;
  transition: background-color .18s ease, color .18s ease;
}
.nav__toggle:hover { background: rgba(14, 111, 107, .08); color: var(--teal); }
.nav__toggle svg { width: 10px; height: 10px; transition: transform .2s var(--ease); }
.nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 240px;
  margin: 0; padding: 9px 0;
  list-style: none;
  background: #131a1f;
  background-image: linear-gradient(160deg, #16211f, #0e1618);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none;
}
.nav__dropdown.is-open { display: block; }

.nav__dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 14.5px; font-weight: 600;
  color: #dfe6e5;
  transition: background-color .15s ease, color .15s ease;
}
.nav__dropdown a:hover { background: rgba(255, 255, 255, .06); color: #fff; text-decoration: none; }
.nav__dropdown a.is-active { color: var(--gold-light); }

.icon-btn {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: none; border: 0; border-radius: 50%;
  color: var(--muted); cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.icon-btn:hover { background: rgba(14, 111, 107, .1); color: var(--teal); transform: translateY(-1px); }
.icon-btn svg { width: 19px; height: 19px; }

.nav-burger { display: none; }

/* ---------- 5. Menú móvil ---------- */
.drawer {
  position: fixed; inset: var(--header-h) 0 0 auto;
  width: min(330px, 86vw);
  background: var(--white);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 14px 0 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .28s var(--ease);
  z-index: 99;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  display: block;
  padding: 13px 26px;
  font-size: 15.5px; font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid #f2f3f4;
}
.drawer a:hover, .drawer a.is-active { color: var(--teal); background: #f5faf9; text-decoration: none; }

.drawer__heading {
  padding: 18px 26px 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: #9aa0a6;
}

.backdrop {
  position: fixed; inset: 0;
  background: rgba(7, 20, 22, .48);
  opacity: 0; pointer-events: none;
  transition: opacity .28s var(--ease);
  z-index: 98;
}
.backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ---------- 6. Buscador ---------- */
.search {
  position: fixed; inset: 0;
  background: rgba(7, 20, 22, .55);
  display: none;
  z-index: 120;
  padding: 12vh 20px 20px;
}
.search.is-open { display: block; }

.search__panel {
  max-width: 620px; margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.search__field { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.search__field svg { width: 20px; height: 20px; color: var(--muted); flex: none; }

.search__input {
  flex: 1; font: inherit; font-size: 17px; color: var(--ink);
  border: 0; background: none; outline: none;
}

.search__results { list-style: none; margin: 0; padding: 6px 0; max-height: 46vh; overflow-y: auto; }
.search__results li a { display: block; padding: 12px 22px; color: var(--ink); font-weight: 600; }
.search__results li a:hover { background: var(--surface); text-decoration: none; }
.search__results li a span { display: block; font-size: 13.5px; font-weight: 500; color: var(--muted); }
.search__empty { padding: 18px 22px; color: var(--muted); font-size: 15px; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding: 60px 24px 30px;
  background:
    radial-gradient(70% 90% at 82% 8%, rgba(47, 168, 159, .14), transparent 60%),
    linear-gradient(180deg, #f5f8f7 0%, #eef2f1 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: 520px; margin-inline: auto;
  aspect-ratio: 5 / 3;
  display: grid; place-items: center;
}

.hero__disc {
  width: min(270px, 62vw); aspect-ratio: 1;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 42%, #ffffff 55%, #f2f8f7 100%);
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.tagline {
  font-family: var(--font-script);
  font-size: clamp(32px, 5.4vw, 46px);
  font-weight: 600; font-style: italic;
  color: var(--teal);
  text-align: center;
  margin: 0 0 26px;
}

.lead { text-align: justify; font-size: 18px; color: var(--muted); }

/* Franja de insignias de confianza */
.hero-content { padding: 36px 24px 40px; text-align: center; }

.badge-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  list-style: none; margin: 0 0 20px; padding: 0;
}
.badge-row li {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .2px;
  color: var(--teal-deep);
  background: rgba(47, 168, 159, .1);
  border: 1px solid rgba(47, 168, 159, .22);
}

/* Cabecera de páginas interiores */
.page-hero { background: var(--band); padding: 56px 24px 48px; text-align: center; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 5.4vw, 44px); margin-bottom: .3em;
}
.page-hero p  { max-width: 640px; margin-inline: auto; margin-bottom: 0; }

/* Variante sin banda gris: título en color sobre fondo blanco */
.page-hero--plain { background: var(--white); padding: 44px 24px 8px; }
.page-hero--plain h1 { color: var(--teal-deep); font-size: clamp(28px, 4.8vw, 40px); }

/* ---------- 8. Secciones con banda ---------- */
.section { margin: 0 0 4px; }

.band {
  background: var(--teal-deep);
  padding: 20px 24px;
  text-align: center;
}

.band h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: clamp(20px, 3.2vw, 27px);
  font-weight: 600;
  letter-spacing: .1px;
}

.section__body { padding: 64px 24px 68px; }
.section__body > *:last-child { margin-bottom: 0; }

.section--tight .section__body { padding-block: 40px 46px; }

/* Listas centradas al estilo del sitio original */
.list-center { list-style: none; margin: 0 0 1.4em; padding: 0; text-align: center; }
.list-center li { margin: 0 0 .85em; }
.list-center li:last-child { margin-bottom: 0; }
.list-center--lead li { color: var(--ink); }
.list-center--lead strong { color: var(--ink); font-weight: 700; }

.list-numbered {
  max-width: 480px; margin: 0 auto 1.4em; padding-left: 1.4em;
  text-align: left; color: var(--ink);
}
.list-numbered li { margin-bottom: .6em; font-weight: 600; }
.list-numbered li::marker { color: var(--teal); font-weight: 700; }

.text-center { text-align: center; }

/* ---------- 9. Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px;
  font-family: inherit; font-size: 15.5px; font-weight: 700;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease,
              transform .16s ease, box-shadow .16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-outline {
  color: var(--teal-deep);
  background: var(--white);
  border-color: var(--line);
}
.btn-outline:hover { background: var(--surface); border-color: var(--teal-light); }

.btn-solid {
  color: #fff;
  background: linear-gradient(155deg, var(--teal-light), var(--teal));
  box-shadow: 0 6px 16px -4px rgba(14, 111, 107, .38);
}
.btn-solid:hover { background: linear-gradient(155deg, var(--teal), var(--teal-deep)); box-shadow: 0 8px 20px -4px rgba(14, 111, 107, .46); }

.btn-gold {
  color: #2c1c02;
  background: linear-gradient(155deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 16px -4px rgba(245, 185, 66, .45);
}
.btn-gold:hover { box-shadow: 0 8px 20px -4px rgba(245, 185, 66, .55); }

.btn-lg { padding: 14px 32px; font-size: 16.5px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.btn-row--hero { margin-top: 22px; margin-bottom: 6px; }

/* ---------- 10. Tarjetas ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.card:hover { box-shadow: var(--shadow-sm); border-color: var(--teal-light); }
.card h3 a { color: inherit; }
.card h3 a:hover { color: var(--teal); }
.card h3 { font-size: 18.5px; font-weight: 700; margin-bottom: .45em; }
.card p  { font-size: 15.5px; margin-bottom: 0; }
.card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 16px; padding: 10px;
  border-radius: 12px; color: var(--teal);
  background: rgba(14, 111, 107, .09);
}
.card__icon svg { width: 100%; height: 100%; display: block; }

/* ---------- 11. Acordeón (FAQ) ---------- */
.accordion { max-width: var(--wrap-narrow); margin-inline: auto; }

.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.accordion details[open] { border-color: var(--teal-light); box-shadow: var(--shadow-sm); }

.accordion summary {
  padding: 18px 22px;
  font-size: 16.5px; font-weight: 700; color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(14, 111, 107, .09);
  font-size: 18px; font-weight: 700; color: var(--teal); line-height: 1;
  transition: transform .2s var(--ease), background-color .2s ease;
}
.accordion details[open] summary::after { content: "\2212"; background: var(--teal); color: #fff; }

.accordion .accordion__answer { padding: 0 22px 20px; }
.accordion .accordion__answer > *:last-child { margin-bottom: 0; }

/* ---------- 12. Formulario ---------- */
.form { max-width: 620px; margin-inline: auto; }
.form__field { margin-bottom: 18px; }
.form__field label { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }

.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  font: inherit; font-size: 16px; color: var(--ink);
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus { border-color: var(--teal-light); outline: none; box-shadow: 0 0 0 4px rgba(47, 168, 159, .16); }

.form__field textarea { min-height: 150px; resize: vertical; }

.form__check { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.form__check input { width: auto; margin-top: 5px; flex: none; }

.form__note { font-size: 13.5px; color: #80868b; }

/* ---------- 13. Redes sociales ---------- */
.social { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; list-style: none; margin: 26px 0 0; padding: 0; }

.social a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: border-color .2s ease, color .2s ease, background-color .2s ease, transform .2s var(--ease), box-shadow .2s ease;
}
.social a:hover { text-decoration: none; border-color: var(--teal-light); color: var(--teal); background: #f5fbfa; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.social svg { width: 20px; height: 20px; flex: none; }

.social a[data-net="instagram"]:hover { color: #c13584; border-color: #e4a6bf; background: #fdf5f9; }
.social a[data-net="youtube"]:hover   { color: #c4302b; border-color: #edb2b0; background: #fdf5f5; }
.social a[data-net="spotify"]:hover   { color: #1a7d42; border-color: #a7d6b9; background: #f4fbf6; }
.social a[data-net="linkedin"]:hover  { color: #0a66c2; border-color: #a8c8e8; background: #f2f8fd; }

/* ---------- 14. Banda de llamada a la acción (antes del pie) ---------- */
.cta-banner {
  padding: 56px 24px;
  text-align: center;
  color: #dfeceb;
  background: var(--surface-dark);
}
.cta-banner__inner { max-width: 600px; margin-inline: auto; }
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 600;
  color: #fff; font-size: clamp(24px, 4vw, 34px); margin-bottom: .35em;
}
.cta-banner p { color: #b9cbc8; margin-bottom: 26px; }

/* ---------- 15. Pie ---------- */
.site-footer {
  background: linear-gradient(175deg, var(--surface-dark) 0%, var(--surface-dark-2) 100%);
  color: #a9c1be;
  padding: 52px 24px 28px;
  font-size: 15px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  max-width: var(--wrap);
  margin-inline: auto;
}

.site-footer h3 {
  font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #b9cbc8; font-weight: 600; transition: color .18s ease; }
.site-footer a:hover { color: #fff; }
.site-footer p { font-size: 14.5px; color: #a9c1be; }
.site-footer > .site-footer__grid > div:first-child h3 { color: #fff; font-size: 15px; letter-spacing: 0; text-transform: none; }

.site-footer__tag { font-family: var(--font-script); font-size: 23px; font-style: italic; color: var(--gold-light); margin-top: 10px; }

.site-footer__bottom {
  max-width: var(--wrap); margin: 34px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 13.5px; color: #7f9895;
}
.site-footer__bottom a { color: #a9c1be; }
.site-footer__bottom a:hover { color: #fff; }

/* ---------- 16. Revelado al hacer scroll ---------- */
.reveal-init {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.reveal-in { opacity: 1; transform: translateY(0); }

/* ---------- 17. Responsive ---------- */
@media (max-width: 1040px) {
  .nav { display: none; }
  .nav-burger { display: grid; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .lead { text-align: left; }
  .hero { padding: 44px 18px 24px; }
  .section__body { padding: 46px 20px 50px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner { padding: 48px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal-init { opacity: 1; transform: none; }
}

@media print {
  .site-header, .drawer, .backdrop, .search, .site-footer, .cta-banner { display: none !important; }
  body { color: #000; }
}

/* ---------- 18. Agentes IA — banner decorativo y tarjetas ---------- */
.agents-banner {
  margin: 28px 0 6px;
  padding: 24px 26px;
  border-radius: var(--radius);
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 600;
  letter-spacing: .2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  box-shadow: var(--shadow-md);
  background: linear-gradient(120deg, #7b2ff7, #3aa0e8 45%, #17c4a3 75%, #f7cb4d 100%);
}
.agents-banner--pep { background: linear-gradient(120deg, #12325c, #0e6f6b 55%, #2fa89f 100%); }

.agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin: 30px 0 6px;
  padding: 0;
  list-style: none;
}

.agent { text-align: center; }

.agent__badge {
  width: 128px; height: 128px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 10px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2), inset 0 0 0 4px rgba(255, 255, 255, .12);
  transition: transform .28s var(--ease);
}
.agent:hover .agent__badge { transform: translateY(-2px); }

.agent__badge-name { font-size: 17px; font-weight: 800; line-height: 1.05; }
.agent__badge-sub {
  margin-top: 4px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase;
  line-height: 1.25;
  opacity: .95;
}

.agent__desc {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #fff;
  font-size: 13.5px; font-weight: 600;
  line-height: 1.55;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.agent__desc p { margin: 0 0 .8em; }
.agent__desc p:last-child { margin-bottom: 0; }

.agent--purple .agent__badge { background: radial-gradient(circle at 35% 30%, #9b6bd6, #5b2a9e); }
.agent--purple .agent__desc  { background: #7e4fc4; }

.agent--green .agent__badge { background: radial-gradient(circle at 35% 30%, #4fc47e, #157a3f); }
.agent--green .agent__desc  { background: #21a35a; }

.agent--red .agent__badge { background: radial-gradient(circle at 35% 30%, #f37a4d, #b9350f); }
.agent--red .agent__desc  { background: #d9541f; }

.agent--orange .agent__badge { background: radial-gradient(circle at 35% 30%, #ffb54d, #d9770f); }
.agent--orange .agent__desc  { background: #e68a1f; }

.agent--blue .agent__badge { background: radial-gradient(circle at 35% 30%, #5aa8f0, #1c5fa8); }
.agent--blue .agent__desc  { background: #2f7fd1; }

.agent--slate .agent__badge { background: radial-gradient(circle at 35% 30%, #7c8a9c, #3d4a5c); }
.agent--slate .agent__desc  { background: #4a5568; }

.agent--navy .agent__badge { background: radial-gradient(circle at 35% 30%, #3d6ea5, #12325c); }
.agent--navy .agent__desc  { background: #1d4b7a; }

.agent__tag {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
  color: #fff;
}
.agent--purple .agent__tag { background: #5b2a9e; }
.agent--green  .agent__tag { background: #157a3f; }
.agent--red    .agent__tag { background: #b9350f; }
.agent--orange .agent__tag { background: #d9770f; }
.agent--blue   .agent__tag { background: #1c5fa8; }
.agent--slate  .agent__tag { background: #3d4a5c; }
.agent--navy   .agent__tag { background: #12325c; }

.agents-note {
  max-width: var(--wrap-narrow);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: #80868b;
  text-align: center;
}

@media (max-width: 480px) {
  .agent__badge { width: 108px; height: 108px; }
}

/* ---------- 19. Cabecera "sparkle" de las páginas de consultoría ---------- */
.spark-hero { padding: 50px 24px 8px; text-align: center; }
.spark-hero__cluster { width: 40px; height: 40px; margin: 0 auto 8px; color: var(--gold); }
.spark-hero h1 {
  font-family: var(--font-display); font-weight: 600;
  color: var(--teal-deep); font-size: clamp(28px, 4.8vw, 40px); margin-bottom: .18em;
}
.spark-hero__subtitle { color: var(--teal); font-weight: 700; font-size: 17.5px; margin: 0 auto 14px; max-width: 640px; }

.section-heading {
  color: var(--teal-deep);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 600;
  margin: 38px 0 20px;
}
.section-heading--gold { color: var(--gold-dark); }

/* ---------- 20. Caja destacada con iconos (consultoría estratégica) ---------- */
.highlight-box {
  max-width: var(--wrap);
  margin: 22px auto 34px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf7 0%, #fdfcf8 100%);
  box-shadow: var(--shadow-xs);
  text-align: center;
}
.highlight-box__title { color: var(--teal-deep); font-family: var(--font-display); font-weight: 600; font-size: 20px; margin-bottom: 22px; }

.icon-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 26px;
  list-style: none; margin: 0; padding: 0;
}
.icon-row li { width: 128px; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.icon-row svg { width: 34px; height: 34px; color: var(--gold-dark); padding: 8px; border-radius: 12px; background: rgba(245, 185, 66, .14); }
.icon-row span { font-size: 13.5px; font-weight: 700; color: var(--teal-deep); line-height: 1.3; }

.detail-rows { list-style: none; margin: 0; padding: 0; max-width: var(--wrap-narrow); margin-inline: auto; }
.detail-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  transition: background-color .2s ease;
}
.detail-row:last-child { border-bottom: 0; }
.detail-row:hover { background: rgba(14, 111, 107, .04); border-radius: var(--radius-sm); }
.detail-row__icon {
  flex: none; width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px; background: rgba(245, 185, 66, .14);
}
.detail-row__icon svg { width: 30px; height: 30px; color: var(--gold-dark); }
.detail-row h3 { color: var(--teal-deep); font-size: 16.5px; font-weight: 700; margin-bottom: .3em; }
.detail-row p { font-size: 14.5px; margin-bottom: 0; }

@media (max-width: 620px) {
  .detail-row { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
}

/* ---------- 21. Acordeón con icono de red (Sobre LumenAi) ---------- */
.net-accordion { max-width: var(--wrap-narrow); margin: 10px auto 0; }
.net-accordion details {
  border: 0; border-bottom: 1px solid var(--line);
  border-radius: 0; margin-bottom: 0; background: none;
}
.net-accordion summary {
  display: flex; align-items: center; gap: 18px;
  padding: 21px 4px;
  font-size: 17px; font-weight: 600; color: var(--ink);
}
.net-accordion summary::after { content: "\25BE"; flex: none; color: #9aa0a6; font-weight: 400; font-size: 14px; transition: transform .2s var(--ease); }
.net-accordion details[open] summary::after { transform: rotate(180deg); color: var(--teal); }
.net-accordion__icon { flex: none; width: 40px; height: 40px; color: var(--teal); }
.net-accordion__label { flex: 1; }
.net-accordion .accordion__answer { padding: 0 4px 22px 62px; }

.net-accordion__sublinks {
  list-style: none; margin: 0; padding: 0 4px 6px 62px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px;
}
.net-accordion__sublinks a {
  display: block; padding: 10px 0; color: var(--teal); font-weight: 700; font-size: 15px;
  border-bottom: 1px solid var(--line);
  transition: color .18s ease;
}
.net-accordion__sublinks a:hover { color: var(--gold-dark); }
@media (max-width: 560px) {
  .net-accordion__sublinks { grid-template-columns: 1fr; padding-left: 4px; }
  .net-accordion .accordion__answer { padding-left: 4px; }
}

/* ---------- 22. Lista con viñeta flecha ---------- */
.arrow-list { list-style: none; margin: 0 0 1.2em; padding: 0; max-width: 480px; margin-inline: auto; }
.arrow-list li { position: relative; padding-left: 28px; margin-bottom: 9px; font-style: italic; color: var(--ink); font-weight: 600; }
.arrow-list li::before { content: "\279C"; position: absolute; left: 0; color: var(--gold-dark); font-style: normal; }

/* ---------- 23. Línea de tiempo (fases del acompañamiento) ---------- */
.timeline {
  list-style: none; margin: 32px auto; padding: 0;
  max-width: var(--wrap);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 30px 8px;
  position: relative;
}
.timeline__step { width: 150px; text-align: center; position: relative; }
.timeline__dot {
  width: 56px; height: 56px; margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal-light);
  box-shadow: var(--shadow-xs);
  display: grid; place-items: center;
  transition: transform .25s var(--ease);
}
.timeline__step:hover .timeline__dot { transform: translateY(-2px); }
.timeline__dot svg { width: 26px; height: 26px; color: var(--teal); }
.timeline__step span { font-size: 14px; font-weight: 700; color: var(--ink); }
.timeline__step--sub { margin-top: -14px; }
.timeline__step--sub .timeline__dot { width: 44px; height: 44px; border-color: var(--gold); }
.timeline__step--sub .timeline__dot svg { width: 22px; height: 22px; color: var(--gold-dark); }

@media (min-width: 760px) {
  .timeline::before {
    content: "";
    position: absolute; left: 8%; right: 8%; top: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-light), var(--gold));
    z-index: -1;
  }
}

/* ---------- 24. Video card ---------- */
.video-card {
  max-width: var(--wrap-narrow); margin: 22px auto; padding: 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: block; color: inherit;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.video-card:hover { text-decoration: none; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.video-card__media {
  position: relative; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d1b2a, #123a36);
  display: grid; place-items: center;
}
.video-card__play {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255, 0, 0, .92); display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}
.video-card__play svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }
.video-card__body { padding: 18px 20px; }
.video-card__kicker { font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--teal); }
.video-card__title { font-size: 17.5px; font-weight: 700; color: var(--ink); margin: .2em 0; }
.video-card__meta { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- 25. Diagrama radial (PACKS) ---------- */
.radial {
  max-width: 560px; margin: 26px auto; padding: 20px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  text-align: center;
}
.radial__center {
  grid-column: 1 / -1;
  width: 94px; height: 94px; margin: 0 auto 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #5aa8f0, #1c5fa8);
  color: #fff; font-weight: 800; font-size: 15px;
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
}
.radial__item { font-size: 13.5px; font-weight: 600; color: var(--ink); padding: 6px 4px; }

@media (min-width: 560px) {
  .radial { grid-template-columns: repeat(5, 1fr); align-items: center; }
  .radial__center { grid-column: 3; order: 3; }
}

/* ---------- 26. Callout con enlace a subpágina ---------- */
.callout {
  max-width: var(--wrap-narrow); margin: 28px auto;
  padding: 24px 26px;
  border: 1px solid rgba(47, 168, 159, .25);
  background: linear-gradient(180deg, #f2faf9 0%, #edf7f6 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  text-align: center;
}
.callout p { margin-bottom: 14px; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- 27. Banner con texto en contorno (Recursos) ---------- */
.band--outline {
  background: var(--teal);
}
.band--outline h2 {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--gold-light);
  text-shadow: none;
}

/* ---------- 28. Galería de aplicaciones web ---------- */
.app-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.app-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .28s var(--ease), transform .28s var(--ease);
  display: flex; flex-direction: column;
  color: inherit;
}
.app-card:hover { box-shadow: var(--shadow-sm); border-color: var(--teal-light); text-decoration: none; }

.app-card__media { aspect-ratio: 16/10; overflow: hidden; background: #eef1f2; }
.app-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.app-card:hover .app-card__media img { transform: scale(1.02); }

.app-card__media--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-align: center; padding: 16px;
  font-size: 15px; font-weight: 800; line-height: 1.3;
}
.app-card__media--placeholder svg { width: 30px; height: 30px; margin-bottom: 8px; opacity: .9; }

.app-card__body { padding: 15px 17px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.app-card__title { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0; }
.app-card__slug { font-size: 12px; color: var(--muted); word-break: break-all; }
.app-card__cta { margin-top: auto; font-size: 13.5px; font-weight: 700; color: var(--teal); }

/* Paleta de degradados para las tarjetas sin ilustración propia */
.app-card__media--placeholder { background: var(--teal-deep); }

.resource-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.resource-gallery figure {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-xs);
  transition: box-shadow .28s var(--ease), transform .28s var(--ease);
}
.resource-gallery figure:hover { box-shadow: var(--shadow-sm); }
.resource-gallery img { width: 100%; display: block; }
.resource-gallery figcaption { padding: 13px 15px; font-size: 14px; font-weight: 700; color: var(--ink); }

/* ---------- 29. Cabecera "Sobre el autor" ---------- */
.author-hero {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  max-width: var(--wrap); margin: 46px auto 0; padding: 0 24px;
}
.author-hero__doodle { flex: none; width: 130px; height: 62px; color: var(--teal); }
.author-hero h1 {
  font-family: var(--font-display); font-weight: 600;
  color: var(--teal-deep); font-size: clamp(30px, 4.8vw, 42px); margin: 0;
}

/* ---------- 30. Bio con foto + acordeón ---------- */
.author-bio {
  display: flex; align-items: flex-start; gap: 26px; flex-wrap: wrap;
  max-width: var(--wrap); margin: 32px auto 0; padding: 0 24px 30px;
}
.author-bio__photo {
  flex: none; width: 122px; height: 136px;
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.author-bio__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-bio__accordion { flex: 1; min-width: 240px; }
.author-bio__accordion .accordion { max-width: none; margin: 0; }
.author-bio__accordion summary { color: var(--gold-dark); font-weight: 700; }

/* ---------- 31. Galería de libros y pódcasts ---------- */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  max-width: var(--wrap); margin-inline: auto;
}
.media-gallery figure {
  margin: 0; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.media-gallery img {
  width: 100%; height: auto;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  display: block; margin: 0 auto 10px;
  background: var(--surface);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.media-gallery figure:hover img { box-shadow: var(--shadow-sm); }
.media-gallery figcaption { font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.media-gallery figcaption a {
  display: block; margin-top: 4px; font-size: 12px; font-weight: 700;
  letter-spacing: .3px; text-transform: uppercase; color: #1a7d42;
}

.media-gallery--podcasts figcaption span { display: block; font-weight: 500; color: var(--muted); }

/* ---------- 32. Secciones claras con antetítulo (alternancia con las bandas) ---------- */
.eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 .5em;
}
.light-heading {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(22px, 3.6vw, 31px);
  margin: 0 0 .7em;
}
.section--light { background: var(--white); border-top: 1px solid var(--line); }
.section--tint  { background: var(--surface); border-top: 1px solid var(--line); }

/* ---------- 33. Retos (lista con icono, 2 columnas) ---------- */
.reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 28px;
  max-width: var(--wrap-narrow);
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 560px)  { .reason-grid { grid-template-columns: repeat(2, 1fr); max-width: var(--wrap); } }
@media (min-width: 820px)  { .reason-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px)  { .reason-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.reason-grid li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15.5px; color: var(--ink); font-weight: 600;
  padding: 4px 0;
}
.reason-grid__icon {
  flex: none; width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(14, 111, 107, .08);
  color: var(--teal);
}
.reason-grid__icon svg { width: 20px; height: 20px; }

/* ---------- 34. Franja de color de los agentes (inicio) ---------- */
.agent-swatch-group { margin: 26px 0 0; text-align: center; }
.agent-swatch-group__label {
  font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 10px;
}
.agent-swatches {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
  list-style: none; margin: 0; padding: 0;
}
.agent-swatches li {
  width: 34px; height: 34px; border-radius: 50%;
  box-shadow: var(--shadow-xs);
}
.agent-swatches .sw--purple { background: radial-gradient(circle at 35% 30%, #9b6bd6, #5b2a9e); }
.agent-swatches .sw--green  { background: radial-gradient(circle at 35% 30%, #4fc47e, #157a3f); }
.agent-swatches .sw--red    { background: radial-gradient(circle at 35% 30%, #f37a4d, #b9350f); }
.agent-swatches .sw--orange { background: radial-gradient(circle at 35% 30%, #ffb54d, #d9770f); }
.agent-swatches .sw--blue   { background: radial-gradient(circle at 35% 30%, #5aa8f0, #1c5fa8); }
.agent-swatches .sw--slate  { background: radial-gradient(circle at 35% 30%, #7c8a9c, #3d4a5c); }
.agent-swatches .sw--navy   { background: radial-gradient(circle at 35% 30%, #3d6ea5, #12325c); }

/* ---------- 35. Tarjeta del autor (teaser en el inicio) ---------- */
.author-teaser {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  max-width: var(--wrap-narrow); margin: 26px auto 0;
  padding: 20px 24px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface);
}
.author-teaser__photo {
  flex: none; width: 64px; height: 72px; border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-xs);
}
.author-teaser__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-teaser__text { flex: 1; min-width: 200px; }
.author-teaser__text strong { color: var(--ink); }
.author-teaser__text p { margin: 0; font-size: 15px; }

/* ---------- 36. Lista compacta de enlaces (recursos sin ilustración) ---------- */
.link-list {
  list-style: none; margin: 24px auto 0; padding: 0;
  max-width: var(--wrap); columns: 2; column-gap: 32px;
}
.link-list li { break-inside: avoid; margin-bottom: 4px; }
.link-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink); font-weight: 600; font-size: 15px;
}
.link-list a:hover { color: var(--teal); text-decoration: none; }
.link-list a > span { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.link-list a > span > span { font-size: 12px; color: var(--muted); font-weight: 500; word-break: break-all; }
.link-list a small { flex: none; color: var(--teal); font-weight: 700; font-size: 13px; }
@media (max-width: 620px) { .link-list { columns: 1; } }

/* ---------- 37. Sección partida (texto / visual) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  max-width: var(--wrap); margin-inline: auto;
}
.split__text { max-width: 460px; }
.split__text .eyebrow, .split__text .light-heading { text-align: left; }
.split__text > p { text-align: left; }
.split__visual { display: flex; justify-content: center; }
.split--reverse .split__text { order: 2; }
.split--reverse .split__visual { order: 1; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split--reverse .split__text,
  .split--reverse .split__visual { order: initial; }
  .split__text { max-width: none; text-align: center; margin-inline: auto; }
  .split__text .eyebrow, .split__text .light-heading, .split__text > p { text-align: center; }
  .split__text .btn-row { justify-content: center; }
}

/* Lista vertical de pilares (usada en el split de "Nuestro enfoque") */
.pillar-list { list-style: none; margin: 26px 0 0; padding: 0; text-align: left; }
.pillar-list li { display: flex; gap: 14px; margin-bottom: 20px; }
.pillar-list li:last-child { margin-bottom: 0; }
.pillar-list__icon {
  flex: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(14, 111, 107, .09); color: var(--teal);
}
.pillar-list__icon svg { width: 22px; height: 22px; }
.pillar-list strong { display: block; color: var(--ink); font-size: 15.5px; margin-bottom: 2px; }
.pillar-list span { font-size: 14px; color: var(--muted); }

/* Insignias de agentes en tamaño reducido (teaser del inicio) */
.agent-badge-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  list-style: none; margin: 0; padding: 0; max-width: 340px;
}
.agent-badge-grid li {
  aspect-ratio: 1; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; padding: 6px;
  box-shadow: var(--shadow-sm);
}
.agent-badge-grid__name { font-size: 11.5px; font-weight: 800; line-height: 1.1; }
.agent-badge-grid .sw--purple { background: radial-gradient(circle at 35% 30%, #9b6bd6, #5b2a9e); }
.agent-badge-grid .sw--green  { background: radial-gradient(circle at 35% 30%, #4fc47e, #157a3f); }
.agent-badge-grid .sw--red    { background: radial-gradient(circle at 35% 30%, #f37a4d, #b9350f); }
.agent-badge-grid .sw--orange { background: radial-gradient(circle at 35% 30%, #ffb54d, #d9770f); }
.agent-badge-grid .sw--blue   { background: radial-gradient(circle at 35% 30%, #5aa8f0, #1c5fa8); }
.agent-badge-grid .sw--slate  { background: radial-gradient(circle at 35% 30%, #7c8a9c, #3d4a5c); }
.agent-badge-grid .sw--navy   { background: radial-gradient(circle at 35% 30%, #3d6ea5, #12325c); }

/* ---------- 38. Textura sutil (bandas y hero) ---------- */
.band {
  background-image:
    radial-gradient(rgba(255, 255, 255, .14) 1.4px, transparent 1.4px);
  background-size: 20px 20px;
  background-position: 0 0;
}
.band > * { position: relative; z-index: 1; }
