/* =====================================================================
   VALOR PYME — Sistema de diseño · Páginas de Rutas
   Brand kit: brand-kit.md (Figma "Guía de estilo para sitio web")
   Tema: movilidad / metro / rutas que se cruzan
   ===================================================================== */

/* ---- Display font: stand-in de FG Futurist (PENDIENTE licencia) ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&display=swap');

:root {
  /* Corporativo */
  --color-corp:        #6126FF;
  --color-corp-40:     rgba(97,38,255,0.4);
  --color-lavanda:     #EFE9FF;

  /* Primarios */
  --color-morado:      #330559;
  --color-verde:       #00C168;
  --color-rosa:        #FF005B;
  --color-amarillo:    #FFF200;

  /* Secundarios */
  --color-naranja:     #FF8500;
  --color-menta:       #87FFD6;
  --color-rosa-claro:  #FFB8DE;
  --color-negro:       #2F2927;
  --color-gris-oscuro: #2F2927;
  --color-gris:        #595959;
  --color-gris-claro:  #9EA2AE;
  --color-borde:       #E7E3F0;
  --color-soft:        #F6F3FF;
  --color-soft-2:      #F4F5F7;
  --color-blanco:      #FFFFFF;

  /* Texto */
  --color-texto-dark:  #330559;
  --color-texto-body:  #2F2927;
  --color-texto-light: #FFFFFF;

  /* Tipografía */
  --font-display: 'FG Futurist', 'Outfit', 'Century Gothic', 'Trebuchet MS', sans-serif;
  --font-body:    Arial, 'Helvetica Neue', Helvetica, sans-serif;

  --text-display: clamp(30px, 3.8vw, 53px);
  --text-h1:      clamp(30px, 4.2vw, 52px);
  --text-h2:      clamp(26px, 3.2vw, 40px);
  --text-h3:      clamp(20px, 2.2vw, 26px);
  --text-lead:    clamp(16px, 1.4vw, 20px);
  --text-body:    16px;
  --text-sm:      14px;
  --text-caption: 13px;

  /* Radios */
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* Sistema de líneas */
  --linea-peso: 10.5px;
  --estacion: 18px;

  /* Layout */
  --maxw: 1240px;
  --pad-x: clamp(20px, 5vw, 80px);
  --header-h: 76px;

  --shadow-sm: 0 4px 16px rgba(51,5,89,.07);
  --shadow-md: 0 14px 40px rgba(51,5,89,.10);
  --shadow-lg: 0 30px 70px rgba(51,5,89,.16);
  --ease: cubic-bezier(.22,.61,.36,1);

  /* Color de ruta (default = corporativo). Cada página lo sobrescribe. */
  --ruta:          var(--color-corp);
  --ruta-ink:      #FFFFFF;   /* texto legible sobre el color de ruta */
  --ruta-soft:     var(--color-lavanda);
  --ruta-deep:     var(--color-morado);
}

/* ===== Temas por ruta (data-ruta en <body>) ===== */
body[data-ruta="capital"]        { --ruta: #FFF200; --ruta-ink: #2A0A4A; --ruta-soft:#FFFBCC; --ruta-deep:#7A6A00; }
body[data-ruta="mercado"]        { --ruta: #2F2927; --ruta-ink: #FFFFFF; --ruta-soft:#ECE9E7; --ruta-deep:#000000; }
body[data-ruta="digitalizacion"] { --ruta: #FF005B; --ruta-ink: #FFFFFF; --ruta-soft:#FFE3EE; --ruta-deep:#A8003C; }
body[data-ruta="talento"]        { --ruta: #00C168; --ruta-ink: #FFFFFF; --ruta-soft:#D4FBE8; --ruta-deep:#00733E; }

/* ===================== Reset / base ===================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-texto-body);
  background: var(--color-blanco);
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; margin: 0; color: var(--color-texto-dark); letter-spacing: -0.01em; }
p { margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(56px, 8vw, 112px); position: relative; }
.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-caption);
  letter-spacing: .14em; text-transform: uppercase; color: var(--ruta-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:""; width: 22px; height: 3px; border-radius: 3px; background: var(--ruta); }
.lead { font-size: var(--text-lead); color: var(--color-gris); line-height: 1.55; }

/* ===================== Botones ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; height: 50px; border: none; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 700; font-size: 16px; line-height: 1;
  background: var(--color-corp); color: #fff; transition: transform .25s var(--ease), background .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { background: var(--color-morado); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:focus-visible { outline: 3px solid var(--color-corp-40); outline-offset: 3px; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ruta { background: var(--ruta); color: var(--ruta-ink); }
.btn--ruta:hover { background: var(--ruta-deep); color:#fff; }
.btn--ghost { background: transparent; color: var(--color-texto-dark); box-shadow: inset 0 0 0 2px var(--color-borde); }
.btn--ghost:hover { background: var(--color-texto-dark); color:#fff; box-shadow:none; }
.btn--onfill { background:#fff; color: var(--color-morado); }
.btn--onfill:hover { background: var(--color-morado); color:#fff; }
.btn--sm { height: 40px; padding: 10px 18px; font-size: 14px; }

.link-more { font-weight: 700; color: var(--color-corp); display: inline-flex; gap: 8px; align-items: center; }
.link-more .arrow { transition: transform .25s var(--ease); }
.link-more:hover .arrow { transform: translateX(4px); }

/* ===================== Header / Nav ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--color-borde);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 34px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav__menu a { font-size: 15px; font-weight: 600; color: var(--color-texto-dark); padding: 8px 0; position: relative; }
.nav__menu a:hover { color: var(--color-corp); }
.nav__item { position: relative; }
.nav__item > button {
  background: none; border: none; font: inherit; font-size: 15px; font-weight: 600;
  color: var(--color-texto-dark); display: inline-flex; align-items: center; gap: 6px; padding: 8px 0;
}
.nav__item > button:hover { color: var(--color-corp); }
.nav__item .chev { width: 10px; height: 10px; transition: transform .25s; }
.nav__item:hover .chev, .nav__item:focus-within .chev { transform: rotate(180deg); }

/* Dropdown rutas */
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 360px; background: #fff; border: 1px solid var(--color-borde); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 12px; opacity: 0; visibility: hidden; transition: .25s var(--ease);
}
.nav__item:hover .dropdown, .nav__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content:""; position:absolute; top:-14px; left:0; right:0; height:14px; }
.drop-route { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: var(--radius-md); transition: background .2s; }
.drop-route:hover { background: var(--color-soft); }
.drop-route__dot { width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.drop-route__t { font-weight: 700; color: var(--color-texto-dark); font-size: 15px; }
.drop-route__d { font-size: 13px; color: var(--color-gris); }
.dot--capital { background:#FFF200; color:#2A0A4A; box-shadow: inset 0 0 0 2px rgba(42,10,74,.16); } /* amarillo de marca con anillo para legibilidad sobre blanco */
.dot--mercado { background:#2F2927; }
.dot--digitalizacion { background:#FF005B; }
.dot--talento { background:#00C168; color:#06301D; }

.nav__cta { margin-left: 4px; }
.nav__burger { display: none; margin-left: auto; background: none; border: none; width: 44px; height: 44px; }
.nav__burger span { display:block; width: 24px; height: 2px; background: var(--color-texto-dark); margin: 5px auto; transition: .3s; }

/* ===================== Hero ===================== */
.hero { position: relative; overflow: hidden; background: var(--ruta); }
.hero::after { /* banda de color de ruta al pie */
  content:""; position:absolute; inset:auto 0 0 0; height: 46%; background: var(--ruta); z-index:0; opacity:.0;
}
.hero__grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(24px,4vw,64px); align-items: center; padding-block: clamp(40px, 4.5vw, 76px); position: relative; z-index: 2; }
.hero__badge { display:inline-flex; align-items:center; gap:10px; background:#fff; border-radius: var(--radius-pill); padding: 8px 16px 8px 8px; box-shadow: var(--shadow-sm); font-weight:700; font-size:14px; color: var(--color-texto-dark); margin-bottom: 22px; }
.hero__badge .rline { width: 30px; height: 30px; border-radius:50%; display:grid; place-items:center; color:#fff; font-family:var(--font-display); font-weight:800; }
.hero__copy { align-self: center; }
.hero h1 { font-size: var(--text-display); color: var(--ruta-ink); margin-bottom: 20px; max-width: 19ch; }
.hero__sub { font-size: var(--text-lead); color: var(--ruta-ink); opacity: .82; max-width: 46ch; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items:center; }
/* CTAs legibles sobre el hero de color vibrante */
.hero .btn--ruta { background: var(--color-corp); color: #fff; }
.hero .btn--ruta:hover { background: var(--color-morado); color: #fff; }
.hero .btn--ghost { color: var(--ruta-ink); box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--ruta-ink) 38%, transparent); }
.hero .btn--ghost:hover { background: var(--ruta-ink); color: var(--ruta); box-shadow: none; }

/* Visual del hero: foto + líneas cruzadas */
.hero__visual { position: relative; aspect-ratio: 1/1; }
.photo-frame { position: relative; z-index: 2; width: 100%; height: 100%; }
.photo-frame__img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.lines-svg { position: absolute; inset: -8% -10%; width: 120%; height: 116%; overflow: visible; pointer-events: none; }
.lines-svg--back { z-index: 1; }
.lines-svg--front { z-index: 3; }
.route-line { fill: none; stroke-width: var(--linea-peso); stroke-linecap: round; stroke-linejoin: round; }
.station { stroke: #fff; stroke-width: 4; }

/* dibujo animado de líneas */
.draw { stroke-dasharray: var(--len, 1200); stroke-dashoffset: var(--len, 1200); }
.is-visible .draw { animation: draw 1.5s var(--ease) forwards; }
.is-visible .draw.d2 { animation-delay:.18s } .is-visible .draw.d3{animation-delay:.36s} .is-visible .draw.d4{animation-delay:.54s}
@keyframes draw { to { stroke-dashoffset: 0; } }
.station-pop { transform: scale(0); transform-origin: center; transform-box: fill-box; }
.is-visible .station-pop { animation: pop .5s var(--ease) forwards .9s; }
@keyframes pop { 60%{transform:scale(1.25)} 100%{transform:scale(1)} }

/* ===================== Reveal on scroll ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}.reveal.d4{transition-delay:.32s}

/* ===================== Sección: descripción del eje ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.split__media { position: relative; aspect-ratio: 4/3.4; }
.split__media .photo-frame__img { border-radius: var(--radius-xl); }
.split h2 { font-size: var(--text-h2); margin: 16px 0 18px; max-width: 18ch; }
.section-head { max-width: 640px; margin-bottom: clamp(34px, 4vw, 54px); }
.section-head h2 { font-size: var(--text-h2); margin: 14px 0 14px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ===================== Estaciones (cards de partners) ===================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.combo__inner.two { grid-template-columns: 1fr; }
.combo__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 820px){ .combo__cards { grid-template-columns: 1fr; } }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1080px){ .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .grid-4 { grid-template-columns: 1fr; } }

/* ===== Estaciones con fondo de color de ruta vibrante ===== */
.estaciones-band { background: var(--ruta); }
.estaciones-band .eyebrow { color: var(--ruta-ink); }
.estaciones-band .eyebrow::before { background: var(--ruta-ink); }
.estaciones-band .section-head h2 { color: var(--ruta-ink); }
.estaciones-band .section-head .lead { color: var(--ruta-ink); opacity: .85; }
.estaciones-band .station-card__num { color: var(--ruta); }
.estaciones-band .tag { background: var(--ruta); color: var(--ruta-ink); min-height: 54px; }
.estaciones-band .station-card .link-more { color: var(--ruta-deep); }
/* Simetría entre cajas: filas a misma altura, botón al fondo */
.estaciones-band .station-card { align-self: stretch; }
.estaciones-band .station-card h3 { min-height: 2.2em; }
.estaciones-band .station-card .link-more { margin-top: auto; }
.station-card {
  background: #fff; border: 1px solid var(--color-borde); border-radius: var(--radius-lg);
  padding: 26px; display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.station-card::before { content:""; position:absolute; top:0; left:0; right:0; height: 5px; background: var(--ruta); transform: scaleX(0); transform-origin:left; transition: transform .4s var(--ease); }
.station-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.station-card:hover::before { transform: scaleX(1); }
.station-card__logo { height: 46px; display: flex; align-items: center; }
.station-card__logo .ph { height: 40px; min-width: 120px; border-radius: var(--radius-sm); background: var(--color-soft-2); display:grid; place-items:center; color: var(--color-gris-claro); font-size:12px; font-weight:700; }
.station-card__logo img { max-height: 40px; max-width: 160px; width: auto; object-fit: contain; }
.tag { align-self: flex-start; display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; line-height: 1.3; color: var(--ruta-deep); background: var(--ruta-soft); padding: 6px 18px; border-radius: var(--radius-pill); }
.station-card h3 { font-size: var(--text-h3); }
.station-card p { font-size: var(--text-sm); color: var(--color-gris); }
.station-card .link-more { margin-top: auto; padding-top: 8px; color: var(--ruta-deep); }
.station-card__num { position:absolute; right: 20px; top: 18px; font-family: var(--font-display); font-weight: 800; font-size: 56px; line-height:1; color: var(--ruta-soft); z-index:0; }
.station-card > * { position: relative; z-index: 1; }

/* ===================== Estaciones de combinación ===================== */
.combo { background: var(--color-morado); color:#fff; border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.combo__inner { position: relative; z-index: 2; padding: clamp(34px,5vw,64px); display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items:center; }
.combo .eyebrow { color: #fff; }
.combo .eyebrow::before { background:#fff; }
.combo h2 { color: #fff; font-size: var(--text-h2); margin: 14px 0 16px; }
.combo p { color: rgba(255,255,255,.82); }
.combo__card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(6px); }
.combo__routes { display:flex; align-items:center; gap:10px; margin: 4px 0 14px; flex-wrap: wrap; }
.route-pill { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:700; background: rgba(255,255,255,.12); padding:6px 12px 6px 6px; border-radius: var(--radius-pill); }
.route-pill .d { width:22px; height:22px; border-radius:50%; display:grid; place-items:center; font-family:var(--font-display); font-weight:800; font-size:12px; }
.combo__card h3 { color:#fff; font-size: 26px; margin-bottom: 6px; }
.combo__benefit { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-md); background: var(--ruta); color: var(--ruta-ink); font-weight: 700; font-size: 14px; }
.combo__lines { position:absolute; inset:0; z-index:1; opacity:.5; }

/* ===================== Beneficios ===================== */
.benefit { background:#fff; border:1px solid var(--color-borde); border-radius: var(--radius-lg); padding: 30px; display:flex; flex-direction: column; gap: 12px; transition: transform .3s var(--ease), box-shadow .3s; }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit__ico { width: 56px; height: 56px; border-radius: 50%; background: var(--ruta); color: var(--ruta-ink); display:grid; place-items:center; }
.benefit__ico svg { width: 28px; height: 28px; }
.benefit h3 { font-size: 20px; }
.benefit p { font-size: var(--text-sm); color: var(--color-gris); }

/* ===================== Contenidos / Blog ===================== */
.blog-section { background: var(--color-soft); }
.blog-card { background:#fff; border-radius: var(--radius-lg); overflow: hidden; border:1px solid var(--color-borde); display:flex; flex-direction:column; transition: transform .3s var(--ease), box-shadow .3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card__img { aspect-ratio: 16/10; position: relative; overflow:hidden; background: var(--color-soft-2); }
.blog-card__img img { width:100%; height:100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__img .ribbon { position:absolute; left:0; bottom:0; height:6px; width:100%; background: var(--ruta); }
.blog-card__body { padding: 22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.blog-card h3 { font-size: 20px; }
.blog-card p { font-size: var(--text-sm); color: var(--color-gris); }
.blog-card .link-more { margin-top: auto; color: var(--ruta-deep); }

/* ===================== CTA diagnóstico ===================== */
.diag { position: relative; overflow: hidden; border-radius: var(--radius-xl); background: var(--color-corp); color:#fff; text-align:center; padding: clamp(32px,4vw,52px) clamp(24px,5vw,72px); }
.diag h2 { color:#fff; font-size: var(--text-h2); max-width: 32ch; margin: 0 auto 14px; }
.diag p { color: rgba(255,255,255,.86); max-width: 76ch; margin: 0 auto 24px; }
.diag__lines { position:absolute; inset:0; z-index:0; opacity:.55; pointer-events:none; }
.diag > * { position: relative; z-index: 1; }

/* ===================== CTA final / otras rutas ===================== */
.route-card { display:block; background:#fff; border:1px solid var(--color-borde); border-radius: var(--radius-lg); padding: 26px; transition: transform .3s var(--ease), box-shadow .3s; position:relative; overflow:hidden; }
.route-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.route-card__top { display:flex; align-items:center; gap:14px; margin-bottom: 14px; }
.route-card__dot { width: 48px; height: 48px; border-radius:50%; display:grid; place-items:center; color:#fff; font-family: var(--font-display); font-weight:800; font-size: 22px; }
.route-card h3 { font-size: 21px; }
.route-card .tag { margin-bottom: 10px; }
.route-card p { font-size: var(--text-sm); color: var(--color-gris); margin-bottom: 14px; }

/* Sección "Continúa tu viaje / otras rutas": burbuja pastel + más aire (solo route pages) */
.otras-rutas .route-card { padding: 30px; }
.otras-rutas .route-card__top { margin-bottom: 22px; }
.otras-rutas .route-card .tag { margin-bottom: 14px; }
.otras-rutas .route-card h3 { margin-bottom: 6px; }
.otras-rutas .route-card__dot { box-shadow: none; }
.otras-rutas .route-card__dot.dot--capital        { background:#FFF3A6; color:#7A6A00; }
.otras-rutas .route-card__dot.dot--mercado        { background:#DAD6D3; color:#2F2927; }
.otras-rutas .route-card__dot.dot--digitalizacion { background:#FFC7DC; color:#A8003C; }
.otras-rutas .route-card__dot.dot--talento        { background:#A6EFC8; color:#00733E; }

/* ===================== Footer ===================== */
.site-footer { background: var(--color-morado); color: #fff; padding-block: clamp(48px,6vw,80px) 32px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer img { height: 36px; margin-bottom: 16px; }
.site-footer h4 { font-family: var(--font-body); font-size: 13px; letter-spacing:.1em; text-transform:uppercase; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.site-footer a { display:block; color: rgba(255,255,255,.82); font-size: 14px; padding: 5px 0; }
.site-footer a:hover { color:#fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 40px; padding-top: 22px; display:flex; justify-content: space-between; gap:16px; flex-wrap:wrap; font-size: 13px; color: rgba(255,255,255,.6); }

/* ===================== Franja B&N con parallax ===================== */
.bw-band { position: relative; overflow: hidden; min-height: clamp(280px, 36vw, 420px); display: grid; place-items: center; text-align: center; }
.bw-band__bg { position: absolute; inset: -42% 0; background-size: cover; background-position: center; filter: grayscale(1) contrast(1.06) brightness(.85); }
.bw-band__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,8,22,.56), rgba(14,8,22,.78)); }
.bw-band__line { position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 100%; z-index: 1; opacity: .85; pointer-events: none; }
.bw-band .container { position: relative; z-index: 2; }
.bw-band .eyebrow { color: #fff; justify-content: center; }
.bw-band .eyebrow::before { background: var(--ruta); }
.bw-band h2 { color: #fff; font-size: var(--text-h2); max-width: 24ch; margin: 12px auto 0; }

/* ===================== Journey strip (vehículo en la ruta) ===================== */
.journey { overflow: hidden; padding: 6px 0 18px; }
.journey__track { position: relative; height: 150px; }
.journey__line { position: absolute; inset: 0; width: 100%; height: 100%; }
.journey__vehicle { position: absolute; bottom: 12px; left: -14%; height: clamp(76px, 9.5vw, 116px); width: auto; animation: ride 17s linear infinite, bob 3.2s ease-in-out infinite; filter: drop-shadow(0 10px 14px rgba(51,5,89,.18)); }
@keyframes ride { from { left: -14%; } to { left: 110%; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 620px){ .journey__track { height: 96px; } }

/* ===================== Parallax ===================== */
.parallax { will-change: transform; }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; order: -1; }
  .split { grid-template-columns: 1fr; }
  .combo__inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav__menu, .nav__cta.desktop { display: none; }
  .nav__burger { display: block; }
}
@media (max-width: 620px) {
  :root { --linea-peso: 6px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; }
}

/* ===== Menú móvil ===== */
.mobile-menu { position: fixed; inset: var(--header-h) 0 0 0; background:#fff; z-index: 99; transform: translateX(100%); transition: transform .35s var(--ease); padding: 24px var(--pad-x); overflow-y:auto; display:flex; flex-direction:column; gap: 6px; }
.mobile-menu.open { transform: none; }
.mobile-menu a { font-size: 18px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--color-borde); color: var(--color-texto-dark); }
.mobile-menu .btn { margin-top: 18px; }
body.menu-open { overflow: hidden; }
