/* Bita Express / brand refresh
   New visual guide: bright, human, photographic, orange + wine. */

:root {
  --brand-orange: #ff6a00;
  --brand-wine: #6e003e;
  --brand-coral: #ff8855;
  --brand-ink: #1f1f1f;
  --brand-paper: #f8f8f8;
  --brand-line: #ececec;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

html { background: var(--brand-paper); }
body {
  background: var(--brand-paper);
  color: var(--brand-ink);
  font-family: var(--font-body);
}

/* First impression: the mascot leaves the origin before the site enters. */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 4vw, 3rem) max(var(--margin-x), 1.25rem);
  padding-top: max(clamp(1.25rem, 4vw, 3rem), env(safe-area-inset-top, 0px));
  padding-bottom: max(clamp(1.25rem, 4vw, 3rem), env(safe-area-inset-bottom, 0px));
  padding-left: max(max(var(--margin-x), 1.25rem), env(safe-area-inset-left, 0px));
  padding-right: max(max(var(--margin-x), 1.25rem), env(safe-area-inset-right, 0px));
  overflow: hidden;
  overflow-x: clip;
  background: var(--brand-wine);
  color: #fff;
  animation: page-loader-exit .45s cubic-bezier(.22, 1, .36, 1) 1.25s forwards;
}
.page-loader__topline, .page-loader__bottomline { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.page-loader__topline img { width: clamp(8.5rem, 15vw, 11.25rem); height: auto; }
.page-loader__topline span, .page-loader__bottomline { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; }
.page-loader__topline span { color: var(--brand-coral); }
.page-loader__scene { position: relative; width: min(100%, 940px); height: min(55vh, 26rem); margin: auto; }
.page-loader__scene::before { content: ""; position: absolute; inset: 8% 12% 5%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transform: rotate(-12deg); }
.page-loader__route { position: absolute; inset: 12% -2% 0; width: 104%; height: 75%; overflow: visible; }
.page-loader__route path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.page-loader__route-shadow { stroke: rgba(31,31,31,.28); stroke-width: 22; }
.page-loader__route-line { stroke: var(--brand-orange); stroke-width: 6; stroke-dasharray: 3 15; }
.page-loader__route-start { fill: #fff; stroke: var(--brand-orange); stroke-width: 5; }
.page-loader__route-end { fill: var(--brand-orange); stroke: #fff; stroke-width: 5; }
.page-loader__route-traveler { fill: var(--brand-orange); stroke: #fff; stroke-width: 4; filter: drop-shadow(0 0 8px rgba(255,106,0,.4)); }
.page-loader__rider { filter: drop-shadow(0 1rem 1.2rem rgba(31,31,31,.24)); }
.page-loader__tag { position: absolute; z-index: 2; padding: .65rem .8rem; border-radius: .5rem; background: rgba(31,31,31,.82); color: #fff; font-family: var(--font-display); font-size: .65rem; font-weight: 700; }
.page-loader__tag--start { left: 4%; bottom: 24%; }
.page-loader__tag--end { right: 4%; top: 18%; background: var(--brand-orange); }
.page-loader__bottomline { color: rgba(255,255,255,.7); }
.page-loader__progress { width: min(34vw, 28rem); height: 2px; overflow: hidden; background: rgba(255,255,255,.22); }
.page-loader__progress i { display: block; width: 34%; height: 100%; background: var(--brand-orange); animation: page-loader-progress 1.35s cubic-bezier(.22, 1, .36, 1) forwards; }
@keyframes page-loader-progress { from { transform: translateX(-120%); } to { transform: translateX(320%); } }
@keyframes page-loader-float { from { transform: translateY(5px) rotate(-2deg); } to { transform: translateY(-8px) rotate(2deg); } }
@keyframes page-loader-exit { to { opacity: 0; visibility: hidden; pointer-events: none; } }

h1, h2, h3, h4,
.hero__title, .section-head__title, .step__title, .value__title,
.card__title, .zone__name, .cta-final__title {
  font-family: var(--font-display);
  color: var(--brand-ink);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.topbar {
  padding-block: 9px;
  background: var(--brand-wine);
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}
.topbar__zone::before { background: var(--brand-orange); box-shadow: 0 0 0 4px rgba(255, 106, 0, .22); }
.topbar__social a { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 248, 248, .82);
  border-bottom: 1px solid rgba(236, 236, 236, .9);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, #ff8533 45%, var(--brand-wine) 100%);
  opacity: .95;
}
.site-header.is-scrolled {
  background: rgba(248, 248, 248, .97);
  border-bottom-color: rgba(236, 236, 236, 1);
  box-shadow: 0 12px 32px rgba(31, 31, 31, .08), 0 1px 0 rgba(31,31,31,.06);
}
.site-header__inner { height: 84px; transition: height .25s ease; }
.site-header.is-scrolled .site-header__inner { height: 68px; }
.site-header__brand { position: relative; }
.site-header__brand img { height: 50px; transition: transform .25s cubic-bezier(.22,1,.36,1), filter .25s ease; }
.site-header__brand:hover img { transform: scale(1.02); }
.site-nav {
  padding: 4px;
  gap: 2px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(236, 236, 236, .9);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 4px 12px rgba(31,31,31,.04);
}
.site-nav__link {
  color: var(--brand-ink);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: -.01em;
  padding: 8px 14px;
  border-radius: 999px;
  min-height: 0;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.site-nav__link::after { display: none; }
.site-nav__link:hover { color: var(--brand-wine); background: #FFF2E9; transform: translateY(-1px); }
.site-nav__link.is-active { color: #fff; background: var(--brand-wine); box-shadow: 0 4px 12px rgba(110,0,62,.22); }
.site-nav__link.is-active:hover { background: #5e0035; color: #fff; }
.site-header__cta-secondary {
  color: var(--brand-wine);
  border: 1.5px solid rgba(110, 0, 62, .18);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
}
.site-header__cta-secondary:hover { background: var(--brand-wine); color: #fff; border-color: var(--brand-wine); transform: translateY(-1px); }
.site-header .btn--primary { box-shadow: 0 10px 28px rgba(255,106,0,.32), 0 1px 0 rgba(255,255,255,.4) inset; }
.site-header .btn--primary:hover { box-shadow: 0 16px 36px rgba(255,106,0,.38), 0 1px 0 rgba(255,255,255,.45) inset; transform: translateY(-2px); }
.menu-button {
  border-color: transparent;
  background: var(--brand-wine);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(110, 0, 62, .22);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.menu-button:hover { background: #5e0035; transform: translateY(-1px) scale(1.02); box-shadow: 0 10px 24px rgba(110, 0, 62, .28); }
.menu-button:active { transform: scale(.97); }

.btn {
  min-height: 48px;
  border-radius: 999px;
  padding-inline: 1.35rem;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--brand-orange); border-color: var(--brand-orange); color: #fff; box-shadow: 0 8px 18px rgba(255, 106, 0, .2); }
.btn--primary:hover { background: #e95e00; box-shadow: 0 12px 24px rgba(255, 106, 0, .28); }
.btn--secondary { background: var(--brand-wine); border-color: var(--brand-wine); color: #fff; }
.btn--outline { color: var(--brand-orange); border: 1.5px solid var(--brand-orange); background: transparent; }
.btn--outline:hover { color: var(--brand-wine); border-color: var(--brand-wine); background: rgba(110, 0, 62, .04); }

.hero {
  position: relative;
  overflow: hidden;
  overflow-x: clip;
  padding-block: clamp(5rem, 7vw, 6.5rem) clamp(4rem, 5vw, 4.5rem);
  background: var(--brand-paper);
  background-image: radial-gradient(520px 520px at 78% -6%, rgba(110,0,62,.06) 0%, transparent 62%);
  color: var(--brand-ink);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  width: 56vw; height: 56vw; right: -18vw; top: -14vw;
  max-width: 680px; max-height: 680px;
  border: 1px solid rgba(110, 0, 62, .07);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  left: -14vw; bottom: -10vw;
  width: 52vw; height: 22vw;
  border: 0;
  border-top: 1px solid rgba(255, 106, 0, .14);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 3.5rem; align-items: center; position: relative; z-index: 1; }
.hero__content { padding-block: .25rem; position: relative; z-index: 1; }
.hero__content .eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--brand-wine);
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: none;
}
.hero__content .eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  border-radius: 0;
  background: var(--brand-orange);
  box-shadow: none;
  flex: 0 0 22px;
}
.eyebrow { font-size: .62rem; letter-spacing: .13em; }
.eyebrow::before { width: 22px; background: currentColor; }
.hero__title {
  max-width: 10ch;
  margin-block: 1rem 1.2rem;
  font-size: clamp(3.1rem, 6.2vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.04em;
  font-weight: 800;
}
.hero__title-orange { color: var(--brand-orange); text-shadow: none; }
.hero__title-last {
  color: var(--brand-wine);
  font-size: 1em;
  line-height: .92;
  white-space: normal;
  background: none;
  padding-right: 0;
  display: inline;
}
.hero__lead {
  max-width: 45ch;
  color: #575757;
  font-size: 1rem;
  line-height: 1.6;
  border-left: 0;
  padding-left: 0;
  margin-top: .6rem;
}
.hero__actions { gap: .75rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero__actions .btn--primary { padding-inline: 1.4rem; min-height: 46px; }
.hero__actions .btn__arrow { transition: transform .25s cubic-bezier(.22,1,.36,1); }
.hero__actions .btn--primary:hover .btn__arrow { transform: translateX(4px); }
.hero__actions .btn--outline { background: #fff; border-color: #E0E0E0; color: var(--brand-ink); box-shadow: 0 4px 14px rgba(31,31,31,.05); }
.hero__actions .btn--outline:hover { background: #fff; border-color: var(--brand-wine); color: var(--brand-wine); box-shadow: 0 8px 20px rgba(31,31,31,.07); }
.hero__meta {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  border-top: 0;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--brand-line);
}
.hero__meta-item {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero__meta-item::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: none;
  flex: 0 0 7px;
}
.hero__meta-label { color: #8a8a8a; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.hero__meta-value { color: var(--brand-wine); font-family: var(--font-display); font-weight: 800; font-size: .88rem; }
.hero__visual {
  aspect-ratio: .98 / 1;
  border: 0;
  border-radius: 2rem 2rem 2rem .4rem;
  background: var(--brand-orange);
  box-shadow: 12px 12px 0 var(--brand-wine);
  overflow: hidden;
  position: relative;
}
.hero__visual::after { display: none; }
.hero__picture { inset: 4% 0 0 4%; width: 96%; height: 96%; border-radius: 1.7rem 1.7rem 1.7rem .35rem; overflow: hidden; border: 0; }
.hero__image { filter: saturate(1.03) contrast(1.02) brightness(1.03); object-position: center 36%; }
.hero__visual-gradient { background: linear-gradient(180deg, transparent 54%, rgba(31, 31, 31, .32)); }
.hero__route { bottom: 1%; z-index: 5; left: 2%; right: 2%; width: auto; }
.hero__route-shadow { stroke: rgba(110, 0, 62, .85); stroke-width: 18; }
.hero__route-line { stroke: var(--brand-orange); stroke-width: 5; filter: none; }
.hero__route-node { fill: #fff; stroke: var(--brand-orange); filter: none; }
.hero__route-pulse { stroke: #fff; }
.hero__route-marker {
  background: #fff;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border: 0;
  border-top: 3px solid var(--brand-orange);
  border-radius: 0 0 10px 10px;
  box-shadow: 4px 4px 0 var(--brand-wine);
  padding: .6rem .7rem;
}
.hero__route-marker strong { color: var(--brand-ink); font-family: var(--font-display); font-size: .9rem; }
.hero__route-marker-code { color: var(--brand-coral); font-weight: 600; letter-spacing: .08em; font-size: .6rem; }
.hero__route-marker--arrival { border-top-color: var(--brand-orange); }

.promise-strip { background: var(--brand-orange); color: var(--brand-ink); padding-block: clamp(2rem, 4vw, 3.25rem); }
.promise-strip__label { color: var(--brand-ink); font-family: var(--font-mono); font-size: .65rem; letter-spacing: .14em; }
.promise-strip__text { color: var(--brand-ink); font-family: var(--font-display); font-weight: 800; letter-spacing: -.04em; line-height: .98; }
.promise-strip__text span { color: var(--brand-wine); }

/* Signature moment: a living route between promise and product. */
.impact-route {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 9rem);
  background: var(--brand-wine);
  color: #fff;
}
.impact-route__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
}
.impact-route__copy .eyebrow { color: var(--brand-coral); }
.impact-route__copy h2 {
  margin-block: 1.25rem 1.6rem;
  color: #fff;
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  line-height: .89;
  letter-spacing: -.06em;
}
.impact-route__copy h2 span { color: var(--brand-orange); }
.impact-route__copy p { max-width: 34ch; color: rgba(255,255,255,.78); font-size: 1.05rem; }
.impact-route__status { display: inline-flex; align-items: center; gap: .55rem; margin-top: 2rem; color: #fff; font-family: var(--font-display); font-size: .78rem; font-weight: 700; }
.impact-route__status-dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--brand-orange); box-shadow: 0 0 0 .35rem rgba(255,106,0,.18); }
.impact-route__panel { padding: 1rem; border: 1px solid rgba(255,255,255,.16); border-radius: 1.5rem 1.5rem 1.5rem .3rem; background: rgba(31,31,31,.5); box-shadow: 12px 12px 0 rgba(255,106,0,.92); }
.impact-route__panel-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem .5rem 1rem; }
.impact-route__panel-top div { display: grid; gap: .25rem; }
.impact-route__label { color: var(--brand-coral); font-family: var(--font-mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.impact-route__panel-top strong { color: #fff; font-family: var(--font-display); font-size: 1.1rem; }
.impact-route__eta { padding: .5rem .75rem; border-radius: 99px; background: var(--brand-orange); color: #fff; font-family: var(--font-display); font-size: .72rem; font-weight: 800; }
.impact-route__map { position: relative; min-height: 20rem; overflow: hidden; border-radius: 1rem 1rem 1rem .2rem; background: #ececec; }
.impact-route__map-grid { position: absolute; inset: -20%; opacity: .55; background: repeating-linear-gradient(22deg, transparent 0 24px, rgba(110,0,62,.08) 25px 27px, transparent 28px 50px), repeating-linear-gradient(112deg, transparent 0 38px, rgba(31,31,31,.08) 39px 41px, transparent 42px 76px); transform: rotate(-7deg); }
.impact-route__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.impact-route__svg path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.impact-route__path-shadow { stroke: rgba(110,0,62,.3); stroke-width: 17; }
.impact-route__path { stroke: var(--brand-orange); stroke-width: 6; stroke-dasharray: 3 13; }
.impact-route__node { stroke-width: 5; }
.impact-route__node--start { fill: var(--brand-wine); stroke: #fff; }
.impact-route__node--end { fill: var(--brand-orange); stroke: #fff; }
.impact-route__traveler { fill: var(--brand-orange); stroke: #fff; stroke-width: 4; filter: drop-shadow(0 2px 4px rgba(31,31,31,.25)); }
.impact-route__map-tag { position: absolute; z-index: 2; padding: .5rem .65rem; border-radius: .45rem; background: rgba(31,31,31,.9); color: #fff; font-family: var(--font-display); font-size: .62rem; font-weight: 700; }
.impact-route__map-tag--start { left: 3%; bottom: 8%; }
.impact-route__map-tag--end { right: 3%; top: 6%; background: var(--brand-orange); }
.impact-route__mascot { position: absolute; z-index: 2; right: 31%; bottom: -24%; width: 9rem; height: 12rem; object-fit: contain; object-position: bottom; opacity: .95; filter: drop-shadow(0 5px 8px rgba(31,31,31,.2)); }
.impact-route__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: .4rem; padding: 1rem .45rem .25rem; }
.impact-route__steps span { display: flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.48); font-family: var(--font-mono); font-size: .58rem; letter-spacing: .04em; }
.impact-route__steps i { width: .45rem; height: .45rem; border: 1px solid currentColor; border-radius: 50%; }
.impact-route__steps .is-complete, .impact-route__steps .is-active { color: var(--brand-coral); }
.impact-route__steps .is-complete i, .impact-route__steps .is-active i { border-color: var(--brand-orange); background: var(--brand-orange); }
.impact-route__orbit { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; pointer-events: none; }
.impact-route__orbit--one { width: 62rem; height: 62rem; right: -38rem; top: -16rem; }
.impact-route__orbit--two { width: 32rem; height: 32rem; left: -22rem; bottom: -21rem; border-color: rgba(255,106,0,.26); }

.section { padding-block: clamp(5rem, 7vw, 6.5rem); background: #fff; }
#como-funciona, #zonas, #faq { background: var(--brand-paper); }
#comercios { background: #fff; }
#como-funciona { padding-block: clamp(5rem, 7vw, 6.5rem); }
.section-head { align-items: end; gap: 3rem; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.section-head__title { max-width: 11ch; font-size: clamp(2.6rem, 4.6vw, 4.4rem); line-height: .94; letter-spacing: -.03em; }
.section-head__title span { color: var(--brand-orange); }
.section-head__lead { color: #575757; line-height: 1.6; max-width: 44ch; font-size: 1rem; }

.steps { gap: 2rem; }
.steps::before { border-top: 2px dashed var(--brand-orange); opacity: .35; filter: none; top: 1.45rem; }
.step { padding: 0 1rem 1rem 0; margin-right: 0; }
.step__icon { width: 2.9rem; height: 2.9rem; background: var(--brand-orange); box-shadow: 0 0 0 6px var(--brand-paper); color: #fff; }
.step:nth-child(2) .step__icon { background: var(--brand-wine); }
.step__number, .commerce-directory__index, .zone__label, .rider-application__code { color: var(--brand-wine); font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; }
.step__title { font-size: 1.32rem; line-height: 1.15; letter-spacing: -.02em; }
.step__body { color: #5a5a5a; font-size: .96rem; line-height: 1.6; }
.llega-banner, .cobertura-banner { border-radius: 1.6rem 1.6rem 1.6rem .35rem; overflow: hidden; box-shadow: 10px 10px 0 var(--brand-orange); }
.llega-banner__caption, .cobertura-banner__caption { background: var(--brand-wine); }
.llega-banner__step, .cobertura-banner__eyebrow { color: var(--brand-coral); font-family: var(--font-mono); }

.commerce-directory { gap: clamp(2rem, 6vw, 6rem); padding-block: 1rem; border-block: 1px solid var(--brand-line); }
.commerce-directory__lead p { color: #5c5c5c; }
.commerce-directory__photo { border-radius: 1.4rem 1.4rem 1.4rem .25rem; box-shadow: 8px 8px 0 var(--brand-orange); }
.commerce-directory__photo picture { aspect-ratio: 4 / 5; }
.commerce-directory__photo img { object-fit: cover; object-position: center; filter: none; }
.commerce-directory__list { border-top: 0; }
.commerce-directory__list li { border-bottom-color: var(--brand-line); padding-block: .9rem; }
.commerce-directory__list strong { font-family: var(--font-display); color: var(--brand-wine); }
.commerce-directory__list span:last-child { color: #7c7c7c; }
html { scroll-padding-top: 5rem; }
.split { gap: 1.25rem; }
.split__panel { border-radius: 1.4rem 1.4rem 1.4rem .25rem; overflow: hidden; }
.split__panel--media { background: var(--brand-paper); }
.split__panel--highlight { background: var(--brand-wine); }
.split__panel-figure { order: -1; }
.split__panel-figure img { filter: saturate(1.05) contrast(1.03); }
.split__badge { color: var(--brand-orange); font-family: var(--font-mono); letter-spacing: .1em; margin-top: .15rem; }
.split__panel--highlight .split__badge { color: var(--brand-coral); }
.split__panel--highlight .card__title { color: #fff; }

.section--dark { background: var(--brand-wine); }
.section--dark .section-head__title, .section--dark .section-head__lead, .section--dark .value__title, .section--dark .value__body { color: #fff; }
.section--dark .section-head__title span { color: var(--brand-orange); }
.riders-panel { gap: clamp(2rem, 6vw, 6rem); }
.riders-panel__visual { border-radius: 1.6rem 1.6rem 1.6rem .35rem; box-shadow: 12px 12px 0 var(--brand-orange); }
.riders-panel__image { filter: saturate(1.05) contrast(1.04); }
.riders-panel__chip { background: #fff; color: var(--brand-wine); border-radius: 999px; font-family: var(--font-display); font-weight: 700; }
.rider-signup { background: #fff; }
.rider-application { gap: clamp(2rem, 7vw, 8rem); }
.rider-application__copy h2 { max-width: 9ch; font-size: clamp(2.6rem, 5vw, 5rem); line-height: .95; }
.rider-application__copy p { color: #656565; font-size: 1.125rem; }
.rider-requirements {
  margin-top: 3rem;
  padding-block: 1rem;
  border-left-color: var(--brand-orange);
  background: var(--brand-paper);
}
.rider-requirements h3 { color: var(--brand-wine); }
.rider-requirements li { padding-block: .45rem; }
.rider-form { border: 1px solid var(--brand-line); border-radius: 1.35rem 1.35rem 1.35rem .25rem; box-shadow: 8px 8px 0 rgba(110, 0, 62, .12); }
.rider-form__head { border-bottom-color: var(--brand-line); }
.rider-form__head span { color: var(--brand-wine); font-family: var(--font-display); font-weight: 800; }
.rider-form__head strong { color: #777; }
.rider-field > span { color: var(--brand-ink); font-weight: 600; }
.rider-form .btn { padding-inline: 1.25rem; font-size: .75rem; }
.input { border-color: #cfcfcf; border-radius: .7rem; background: #fff; }
.input:focus { border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(255, 106, 0, .14); }

.cobertura-banner { box-shadow: 10px 10px 0 var(--brand-wine); }
.zones { border-top-color: var(--brand-line); }
.zone { border-bottom-color: var(--brand-line); }
.zone__marker { color: var(--brand-orange); background: rgba(255, 106, 0, .1); border-radius: 50%; }
.zone__name { font-size: 1.25rem; }
.zone__label { color: #777; }
.zones__note { color: #777; border-left-color: var(--brand-orange); }

.value-grid { gap: 1rem; }
.value { border-radius: 1.35rem 1.35rem 1.35rem .25rem; padding: 2rem; min-height: 280px; }
.value--movimiento { background: var(--brand-orange); }
.value--cereza { background: #fff; }
.value--comercio { background: var(--brand-paper); }
.value--cereza .value__title, .value--comercio .value__title { color: var(--brand-wine); }
.section--dark .value--cereza .value__body,
.section--dark .value--comercio .value__body { color: #575757; }
.value__marker { border-radius: 50%; background: #fff; color: var(--brand-wine); }
.value__ghost { font-family: var(--font-display); color: rgba(255,255,255,.25); }
.value--cereza .value__ghost, .value--comercio .value__ghost { color: rgba(110,0,62,.12); }
.value__picture { border-radius: 1rem 1rem 1rem .2rem; }
.value__picture img { object-position: 58% 38%; filter: saturate(1.03) contrast(1.03); }

/* Graphic stack: app surfaces, icon language and physical touchpoints. */
.brand-stack {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 9rem);
  background: #fff;
}
.brand-stack::before {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -12rem;
  top: -10rem;
  border: 1px solid rgba(255, 106, 0, .16);
  border-radius: 50%;
  pointer-events: none;
}
.brand-stack__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .65fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.brand-stack__intro h2 {
  max-width: 10ch;
  margin-top: 1rem;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: .93;
}
.brand-stack__intro h2 span { color: var(--brand-orange); }
.brand-stack__intro p { color: #656565; line-height: 1.55; }
.brand-stack__stage {
  display: grid;
  grid-template-columns: minmax(22rem, 1.1fr) minmax(19rem, .9fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.2rem, 3vw, 2.5rem);
  background: var(--brand-paper);
  border-radius: 1.8rem 1.8rem 1.8rem .35rem;
  box-shadow: 10px 10px 0 var(--brand-orange);
}
.brand-stack__phones {
  position: relative;
  min-height: 33rem;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}
.brand-stack__phones::before {
  content: "";
  position: absolute;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  background: var(--brand-orange);
  opacity: .12;
}
.brand-phone {
  position: relative;
  width: 13rem;
  height: 26rem;
  padding: .45rem;
  border: 3px solid var(--brand-ink);
  border-radius: 1.8rem;
  background: var(--brand-ink);
  box-shadow: 0 1rem 2rem rgba(31, 31, 31, .17);
}
.brand-phone--main { z-index: 3; transform: rotate(-2deg); }
.brand-phone--back { position: absolute; width: 11rem; height: 22rem; z-index: 1; opacity: .96; }
.brand-phone--left { left: 3%; bottom: 4%; transform: rotate(-12deg); }
.brand-phone--right { right: 3%; top: 5%; transform: rotate(11deg); }
.brand-phone__speaker { position: absolute; z-index: 2; top: .75rem; left: 50%; width: 3.5rem; height: .25rem; transform: translateX(-50%); border-radius: 99px; background: var(--brand-ink); }
.brand-phone__screen { position: relative; display: flex; flex-direction: column; gap: .7rem; height: 100%; overflow: hidden; padding: 1.5rem .85rem .7rem; border-radius: 1.35rem; background: #fff; color: var(--brand-ink); }
.brand-phone__tiny-label { color: var(--brand-wine); font-family: var(--font-mono); font-size: .45rem; letter-spacing: .08em; text-transform: uppercase; }
.brand-phone__screen strong { font-family: var(--font-display); font-size: 1.08rem; line-height: 1.03; letter-spacing: -.05em; }
.brand-phone__screen em { color: var(--brand-orange); font-style: normal; }
.brand-phone--left .brand-phone__screen { background: var(--brand-wine); color: #fff; }
.brand-phone--left .brand-phone__tiny-label { color: var(--brand-coral); }
.brand-phone--left .brand-phone__screen img { width: 8rem; height: 10rem; object-fit: contain; object-position: bottom center; align-self: center; margin-top: auto; }
.brand-phone__action { display: block; padding: .5rem; border-radius: 99px; background: var(--brand-orange); color: #fff; font-family: var(--font-display); font-size: .55rem; font-weight: 700; text-align: center; }
.brand-phone__topline, .brand-phone__categories, .brand-phone__nav { display: flex; justify-content: space-between; align-items: center; gap: .35rem; font-size: .48rem; }
.brand-phone__avatar { display: grid; width: 1.15rem; height: 1.15rem; place-items: center; border-radius: 50%; background: var(--brand-orange); color: #fff; font-family: var(--font-display); font-weight: 800; }
.brand-phone__headline { margin-top: .3rem; font-size: 1.38rem !important; }
.brand-phone__search { padding: .5rem .55rem; border: 1px solid #e5e5e5; border-radius: .55rem; color: #969696; font-size: .48rem; }
.brand-phone__categories span { padding: .35rem .3rem; border-radius: .35rem; background: #fff2e9; color: var(--brand-orange); text-align: center; }
.brand-phone__promo { display: flex; min-height: 5.8rem; justify-content: space-between; align-items: center; padding: .65rem; border-radius: .8rem; background: var(--brand-orange); color: #fff; font-family: var(--font-display); font-size: .72rem; font-weight: 800; line-height: 1.05; }
.brand-phone__promo img { width: 2.6rem; height: 2.6rem; object-fit: contain; }
.brand-phone__nav { margin-top: auto; padding-top: .7rem; border-top: 1px solid #ededed; color: #777; }
.brand-phone__nav .is-active { color: var(--brand-orange); font-weight: 700; }
.brand-phone__route-map { position: relative; height: 12rem; margin: .3rem -.85rem 0; background: linear-gradient(145deg, #f3f3f3 25%, #fff 25%, #fff 50%, #f3f3f3 50%, #f3f3f3 75%, #fff 75%); background-size: 1.5rem 1.5rem; }
.brand-phone__route-line { position: absolute; left: 20%; top: 47%; width: 62%; height: 34%; border-top: 3px solid var(--brand-orange); border-radius: 50%; transform: rotate(-10deg); }
.brand-phone__route-dot, .brand-phone__route-pin { position: absolute; z-index: 1; display: grid; place-items: center; border-radius: 50%; }
.brand-phone__route-dot { left: 17%; top: 44%; width: .7rem; height: .7rem; background: var(--brand-wine); }
.brand-phone__route-pin { right: 14%; top: 28%; width: 1.8rem; height: 1.8rem; background: var(--brand-orange); color: #fff; font-family: var(--font-display); font-size: .7rem; font-weight: 800; }
.brand-phone__status { padding: .6rem; border-radius: .65rem; background: #fff2e9; color: var(--brand-wine); font-family: var(--font-display); font-size: .55rem; font-weight: 700; text-align: center; }
.brand-stack__side { display: flex; min-width: 0; flex-direction: column; justify-content: space-between; gap: 2rem; }
.brand-stack__kit { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.brand-kit-card { min-height: 9rem; display: flex; flex-direction: column; justify-content: space-between; gap: .8rem; padding: 1rem; border-radius: 1rem 1rem 1rem .25rem; color: var(--brand-wine); }
.brand-kit-card img { width: 2.4rem; height: 2.4rem; object-fit: contain; }
.brand-kit-card svg { color: currentColor; }
.brand-kit-card span { font-family: var(--font-display); font-size: .82rem; font-weight: 800; line-height: 1.1; }
.brand-kit-card--orange { background: var(--brand-orange); color: #fff; }
.brand-kit-card--wine { background: var(--brand-wine); color: #fff; }
.brand-kit-card--paper { background: #fff; border: 1px solid #e4e4e4; }
.brand-kit-card--coral { background: #ffe5d8; }
.brand-stack__applications { padding-top: 1.4rem; border-top: 1px solid #ddd; }
.brand-stack__code { color: var(--brand-wine); font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.brand-application-row { display: flex; align-items: end; gap: .8rem; margin-top: 1.1rem; }
.brand-application { position: relative; display: flex; align-items: center; justify-content: center; background: #fff; color: var(--brand-wine); box-shadow: 0 .4rem .8rem rgba(31, 31, 31, .12); }
.brand-application img { object-fit: contain; }
.brand-application b { font-family: var(--font-display); font-size: .57rem; }
.brand-application--bag { width: 5.5rem; height: 4.2rem; flex-direction: column; gap: .25rem; border-radius: .3rem .3rem .8rem .8rem; background: var(--brand-orange); color: #fff; }
.brand-application--bag img { width: 1.8rem; height: 1.8rem; filter: brightness(0) invert(1); }
.brand-application__handle { position: absolute; top: -.65rem; width: 2rem; height: 1rem; border: 3px solid var(--brand-orange); border-bottom: 0; border-radius: 1rem 1rem 0 0; }
.brand-application--box { width: 6.5rem; height: 3.8rem; gap: .35rem; transform: rotate(-3deg); background: #d9a36e; color: var(--brand-wine); }
.brand-application--box img { width: 1.7rem; height: 1.7rem; }
.brand-application--helmet { width: 4.7rem; height: 2.8rem; border-radius: 3rem 3rem .8rem .8rem; background: var(--brand-orange); }
.brand-application--helmet img { width: 2rem; height: 2rem; filter: brightness(0) invert(1); }

@media (max-width: 767px) {
  .brand-stack__intro { grid-template-columns: 1fr; gap: 1.2rem; }
  .brand-stack__stage { grid-template-columns: 1fr; padding: 1rem; }
  .brand-stack__phones { min-height: 27rem; transform: scale(.86); margin-block: -2rem; }
  .brand-stack__side { gap: 1.5rem; }
  .brand-kit-card { min-height: 7.5rem; }
  .brand-application-row { justify-content: center; }
}

.disclosure { border-bottom-color: var(--brand-line); }
.disclosure__summary { color: var(--brand-wine); font-family: var(--font-display); }
.disclosure__icon { border-color: var(--brand-orange); color: var(--brand-orange); border-radius: 50%; }
.disclosure__body { color: #656565; }

.cta-final { background: var(--brand-orange); color: #fff; overflow: hidden; }
.cta-final__title { color: #fff; font-size: clamp(3.2rem, 7vw, 7rem); line-height: .88; }
.cta-final__title-line:nth-child(2) { color: var(--brand-wine); }
.cta-final__lead { color: rgba(255,255,255,.9); }
.cta-final__actions { margin-bottom: 0; }
.cta-final__visual {
  position: relative;
  min-height: clamp(16rem, 30vw, 24rem);
  filter: drop-shadow(10px 12px 0 rgba(110, 0, 62, .45));
  pointer-events: none;
}
.cta-final__picture {
  position: relative;
  z-index: 2;
  display: block;
  width: 92%;
  height: 92%;
}
.cta-final__mascot { width: 100%; height: 100%; object-fit: contain; transform-origin: 50% 100%; }
.cta-final .btn--outline { color: #fff; border-color: #fff; }
.cta-final .btn--outline:hover { background: rgba(255,255,255,.12); }
.cta-final__bg-route { opacity: 1; }
.cta-final__route { opacity: .35; }

.site-footer { background: var(--brand-wine); color: #fff; }
.site-footer h3 { color: var(--brand-coral); font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a, .site-footer__tagline, .site-footer__meta, .site-footer__credits { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }

@media (max-width: 767px) {
  .page-loader {
    padding-top: max(1rem, env(safe-area-inset-top, 0px));
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    gap: .75rem;
  }
  .page-loader__topline { align-items: flex-start; flex-direction: column; gap: .45rem; }
  .page-loader__topline span { max-width: 18rem; font-size: .55rem; line-height: 1.35; }
  .page-loader__scene { height: min(38vh, 300px); width: 100%; margin-block: .5rem auto; }
  .page-loader__scene::before { inset: 10% 4% 8%; }
  .page-loader__route { inset: 14% 0 0; width: 100%; height: 72%; }
  .page-loader__route-shadow { stroke-width: 14; }
  .page-loader__route-line { stroke-width: 4; }
  .page-loader__route-start { r: 7; }
  .page-loader__route-end { r: 8; }
  .page-loader__rider image { width: 130px; height: 137px; }
  .page-loader__tag { font-size: .52rem; padding: .5rem .62rem; max-width: 46vw; line-height: 1.2; }
  .page-loader__tag--start { left: max(0px, env(safe-area-inset-left, 0px)); bottom: 18%; }
  .page-loader__tag--end { right: max(0px, env(safe-area-inset-right, 0px)); top: 14%; }
  .page-loader__bottomline { font-size: .58rem; gap: .6rem; flex-wrap: nowrap; }
  .page-loader__progress { flex: 1 1 auto; width: auto; min-width: 0; max-width: 36vw; }
  .site-header__inner { height: 68px; }
  .site-header.is-scrolled .site-header__inner { height: 62px; }
  .site-header__brand img { height: 40px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(3.1rem, 15vw, 5.3rem); }
  .hero__visual { width: calc(100% - 12px); margin-inline: 0 12px; }
  .hero__route-marker { transform: scale(.78); transform-origin: bottom left; }
  .hero__route-marker--arrival { transform-origin: bottom right; }
  .hero__meta { gap: 1rem; }
  .hero__meta-item { min-width: 0; }
  .hero__meta-value { font-size: .9rem; }
  .steps { gap: 1.8rem; }
  .steps::before { top: 0; bottom: 0; left: 1.65rem; right: auto; border-top: 0; border-left: 2px dashed var(--brand-orange); }
  .step { display: grid; grid-template-columns: 3.3rem 1fr; column-gap: 1rem; padding: 0; }
  .step__icon { grid-row: span 2; }
  .step__number { grid-column: 2; }
  .step__title, .step__body { grid-column: 2; }
  .llega-banner, .cobertura-banner { box-shadow: 6px 6px 0 var(--brand-orange); }
  .commerce-directory { grid-template-columns: 1fr; }
  .commerce-directory__list li { grid-template-columns: 2rem 1fr; }
  .commerce-directory__list li span:last-child { grid-column: 2; }
  .split, .riders-panel, .rider-application { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .value { min-height: 240px; }
  .cta-final__inner { grid-template-columns: 1fr; }
  .cta-final__visual { max-height: 280px; order: -1; }
  .cta-final__mascot { max-height: 300px; }
  .impact-route__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .impact-route__copy h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .impact-route__panel { box-shadow: 7px 7px 0 rgba(255,106,0,.92); }
  .impact-route__map { min-height: 17rem; }
  .impact-route__mascot { right: 24%; width: 7rem; height: 9rem; }
  .impact-route__steps span { font-size: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader { animation-duration: .1s; animation-delay: 0s; }
  .page-loader__route-traveler, .page-loader__rider, .page-loader__progress i { display: none; animation: none; }
  .impact-route__traveler { display: none; }
}

/* Rider registration — full editorial redesign */
.rider-signup {
  background: var(--brand-paper);
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.rider-signup > .container {
  max-width: 1200px;
}
.rider-application {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: stretch;
}

/* Left: dark wine ops panel with numbered route checklist */
.rider-application__copy {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4.5vw, 3.75rem);
  background: var(--brand-wine);
  color: #fff;
  border-radius: 1.75rem 1.75rem 1.75rem .4rem;
  box-shadow: 14px 14px 0 var(--brand-orange);
  min-height: 100%;
}
.rider-application__code {
  color: var(--brand-coral);
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.rider-application__copy h2 {
  margin-top: 1.25rem;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  line-height: .94;
}
.rider-application__copy h2 span { color: var(--brand-orange); }
.rider-application__copy p {
  margin-top: 1.25rem;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  line-height: 1.55;
}
.rider-requirements {
  margin-top: auto;
  padding-top: 2rem;
  padding-block: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 0;
  background: transparent;
}
.rider-requirements ul { counter-reset: rider-check; }
.rider-requirements h3 {
  margin-bottom: 1.1rem;
  color: var(--brand-coral);
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.rider-requirements li {
  counter-increment: rider-check;
  padding: .7rem 0 .7rem 2.4rem;
  color: rgba(255,255,255,.92);
  font-size: .95rem;
}
.rider-requirements li::before {
  content: counter(rider-check, decimal-leading-zero);
  left: 0;
  top: .72rem;
  width: auto;
  border-top: 0;
  color: var(--brand-orange);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
}

/* Right: clean white card with wine header band */
.rider-form {
  gap: 1.1rem;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border: 1px solid var(--brand-line);
  border-radius: 1.75rem 1.75rem 1.75rem .4rem;
  background: #fff;
  box-shadow: 0 24px 50px rgba(31,31,31,.08);
}
.rider-form__head {
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  margin: calc(-1 * clamp(1.75rem, 3.5vw, 2.75rem)) calc(-1 * clamp(1.75rem, 3.5vw, 2.75rem)) 1.5rem;
  padding: 1.2rem clamp(1.25rem, 2.5vw, 1.75rem);
  border-bottom: 0;
  background: var(--brand-wine);
  border-radius: 1.6rem 1.6rem 0 0;
}
.rider-form__head span {
  color: #fff;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.rider-form__head strong {
  color: rgba(255,255,255,.75);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
}
.rider-form__grid {
  gap: 1rem 1.25rem;
}
.rider-field {
  gap: .45rem;
  font-size: .85rem;
}
.rider-field > span { color: var(--brand-ink); font-weight: 600; }
.rider-form .input {
  min-height: 3.25rem;
  padding-inline: .9rem;
  border: 1.5px solid var(--brand-line);
  border-radius: .65rem;
  background: var(--brand-paper);
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.rider-form .input:hover { border-color: #d4d4d4; }
.rider-form .input:focus {
  border-color: var(--brand-orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,106,0,.16);
  outline: 0;
}
.rider-form .input[aria-invalid="true"] { border-color: var(--semantic-error); }
.rider-form .btn {
  align-self: stretch;
  min-height: 3.4rem;
  border-radius: .65rem;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .rider-application {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .rider-application__copy {
    box-shadow: 8px 8px 0 var(--brand-orange);
    border-radius: 1.4rem 1.4rem 1.4rem .35rem;
  }
  .rider-form {
    border-radius: 1.4rem 1.4rem 1.4rem .35rem;
  }
  .rider-form__head {
    margin: calc(-1 * clamp(1.75rem, 3.5vw, 2.75rem)) calc(-1 * clamp(1.75rem, 3.5vw, 2.75rem)) 1.25rem;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
  .topbar__zone::before { animation: none; }
}

/* B2C + B2B split — redistributed editorial spread */
@media (min-width: 1024px) {
  .split--spaced {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: stretch;
  }
}
.split__panel {
  padding: 0;
  gap: 0;
  border: 1px solid var(--brand-line);
  overflow: visible;
}
#comercios.section { overflow: visible; }
.split__panel-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(4rem, 7vw, 6rem) clamp(2.2rem, 4vw, 3.2rem) clamp(2rem, 3.5vw, 2.8rem);
}
.split__panel h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.04;
  letter-spacing: -.02em;
}
.split__panel .btn { margin-top: auto; align-self: flex-start; }

.split__panel--media {
  display: flex;
  flex-direction: column;
  background: #fff;
}
.split__panel--media .split__panel-body { flex: 1; }
.split__panel-figure {
  order: -1;
  flex: none;
  min-height: 0;
  height: clamp(15rem, 26vw, 19rem);
  margin: 0;
}

.split__panel--highlight {
  background: var(--brand-wine);
  border-color: var(--brand-wine);
  color: #fff;
  box-shadow: 10px 10px 0 var(--brand-orange);
  border-radius: 0 1.2rem 1.2rem 0;
}
.split__panel--highlight .card__title { color: #fff; }
.split__panel--highlight .card__body { color: rgba(255,255,255,.82); }
.split__panel--highlight .split__badge { color: var(--brand-coral); }
.split__panel--highlight .split__list { color: rgba(255,255,255,.88); }
.split__panel--highlight .split__list--b2b {
  gap: 0;
  margin-top: .5rem;
}
.split__list--b2b .b2b-item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: .75rem;
  align-items: baseline;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-size: .95rem;
  line-height: 1.45;
}
.split__list--b2b .b2b-item:last-child { border-bottom: 0; }
.b2b-item__index {
  color: var(--brand-orange);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
}
.b2b-eyebrow {
  margin-top: .75rem;
  color: var(--brand-coral);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.b2b-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.b2b-tags span {
  padding: .45rem .85rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
}
.b2b-note {
  max-width: 46ch;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.55;
}
.b2b-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: .5rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.14);
  font-family: var(--font-mono);
}
.b2b-stats > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.b2b-stats dt {
  color: rgba(255,255,255,.5);
  font-size: .55rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.b2b-stats dd {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
}
.b2b-route {
  position: relative;
  margin-top: .5rem;
  height: 5rem;
  overflow: visible;
}
.b2b-route svg {
  width: 100%;
  height: 100%;
}
.b2b-route__line {
  stroke: rgba(255,255,255,.22);
  stroke-width: 2;
  stroke-dasharray: 6 4;
}
.b2b-route__node {
  fill: var(--brand-orange);
}
.b2b-route__node--end {
  fill: var(--brand-coral);
}
.b2b-route__label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
}
.b2b-route__label--start {
  left: 0;
  bottom: 0;
}
.b2b-route__label--end {
  right: 0;
  top: .25rem;
}

/* ================================================================
   HERO · Pulso de Ruta
   ================================================================ */
.hero {
  min-height: calc(100svh - 80px);
  padding-block: clamp(3.75rem, 6vw, 5rem);
  overflow: hidden;
  background: #12191d;
  background-image: none;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  width: min(42rem, 52vw);
  height: min(42rem, 52vw);
  top: -24rem;
  right: -9rem;
  border: 1px solid rgba(255, 194, 71, .16);
  background: none;
}

.hero::after {
  left: -9rem;
  bottom: -17rem;
  width: min(52rem, 64vw);
  height: 28rem;
  border: 0;
  border-top: 1px solid rgba(254, 101, 2, .3);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero__grid {
  grid-template-columns: minmax(0, .9fr) minmax(31rem, 1.1fr);
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.hero__content {
  padding: 0;
}

.hero__content .eyebrow {
  margin-bottom: 1.35rem;
  color: #ffc247;
  font-family: "Azeret Mono", monospace;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
}

.hero__content .eyebrow::before {
  width: 2rem;
  height: 2px;
  flex-basis: 2rem;
  background: #fe6502;
}

.hero__title {
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(4.25rem, 6.3vw, 5.85rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.025em;
  text-wrap: initial;
}

.hero__title-line {
  display: block;
}

.hero__title-orange {
  color: #fe6502;
}

.hero__title-last {
  display: block;
  margin-top: .1em;
  color: #fff;
  font-size: .68em;
  line-height: 1;
  white-space: nowrap;
}

.hero__lead {
  max-width: 47ch;
  margin: 1.65rem 0 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .74);
  font-family: "Alegreya Sans", sans-serif;
  font-size: 1.12rem;
  line-height: 1.5;
}

.hero__actions {
  gap: .85rem;
  margin: 1.8rem 0 0;
}

.hero__actions .btn {
  min-height: 50px;
  padding: .75rem 1.35rem;
  border-radius: .25rem;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: none;
}

.hero__actions .btn--primary {
  color: #12191d;
  background: #fe6502;
  border-color: #fe6502;
}

.hero__actions .btn--primary:hover {
  color: #12191d;
  background: #ffc247;
  border-color: #ffc247;
  box-shadow: 7px 7px 0 rgba(117, 2, 46, .72);
}

.hero__actions .btn--outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
  box-shadow: none;
}

.hero__actions .btn--outline:hover {
  color: #ffc247;
  background: transparent;
  border-color: #ffc247;
  box-shadow: none;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero__meta-item {
  display: grid;
  gap: .2rem;
  min-width: 0;
  padding: 0 1rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .14);
  background: transparent;
  border-radius: 0;
}

.hero__meta-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__meta-item::before {
  display: none;
}

.hero__meta-label {
  color: rgba(255, 255, 255, .5);
  font-family: "Azeret Mono", monospace;
  font-size: .52rem;
  font-weight: 500;
  letter-spacing: .1em;
}

.hero__meta-value {
  overflow: hidden;
  color: #fff;
  font-family: "Alegreya Sans", sans-serif;
  font-size: .94rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background: #26333a;
  box-shadow: none;
  clip-path: polygon(0 0, calc(100% - 3.25rem) 0, 100% 3.25rem, 100% 100%, 3.25rem 100%, 0 calc(100% - 3.25rem));
}

.hero__visual::before {
  content: "LIMA NORTE · RUTA ACTIVA";
  position: absolute;
  z-index: 7;
  top: 1rem;
  right: 1rem;
  width: auto;
  height: auto;
  padding: .5rem .65rem;
  border: 0;
  border-radius: 0;
  background: rgba(18, 25, 29, .9);
  color: #ffc247;
  font-family: "Azeret Mono", monospace;
  font-size: .54rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.hero__visual::after {
  display: none;
}

.hero__picture {
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.hero__picture::after {
  background: rgba(45, 70, 82, .16);
  mix-blend-mode: color;
}

.hero__image {
  filter: saturate(.78) contrast(1.08) brightness(.9);
  object-position: center 42%;
}

.hero__visual-gradient {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(18, 25, 29, .36), transparent 48%),
    linear-gradient(180deg, transparent 50%, rgba(18, 25, 29, .72));
}

.hero__route {
  z-index: 4;
  left: -7%;
  right: auto;
  bottom: -2%;
  width: 114%;
  height: 44%;
  opacity: 1;
}

.hero__route-shadow {
  stroke: rgba(18, 25, 29, .82);
  stroke-width: 19;
}

.hero__route-line {
  stroke: #fe6502;
  stroke-width: 5;
  filter: none;
}

.hero__route-node {
  fill: #ffc247;
  stroke: #12191d;
  stroke-width: 5;
  filter: none;
}

.hero__route-pulse {
  stroke: #ffc247;
}

.hero__route-traveler {
  fill: #fff;
}

.hero__route-marker {
  display: grid;
  min-width: 0;
  padding: .52rem .65rem .58rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-top: 2px solid #fe6502;
  border-radius: 0;
  background: rgba(18, 25, 29, .9);
  box-shadow: none;
}

.hero__route-marker--origin {
  left: 4%;
  bottom: 7%;
}

.hero__route-marker--transit {
  display: none;
}

.hero__route-marker--arrival {
  top: 11%;
  right: 4%;
  border-top-color: #ffc247;
}

.hero__route-marker-code {
  color: #ffc247;
  font-family: "Azeret Mono", monospace;
  font-size: .5rem;
  letter-spacing: .1em;
}

.hero__route-marker strong {
  color: #fff;
  font-family: "Alegreya Sans", sans-serif;
  font-size: .82rem;
  font-weight: 700;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .site-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-header__cta-secondary {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, .95fr) minmax(27rem, 1.05fr);
    gap: 2rem;
  }
}

@media (max-width: 1023px) {
  .hero {
    min-height: 0;
    padding-block: 3.5rem 3rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .hero__title {
    max-width: 9ch;
    font-size: clamp(3.6rem, 10vw, 5rem);
  }

  .hero__visual {
    width: 100%;
    margin: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 479px) {
  .hero {
    padding-block: 2.5rem 2.25rem;
  }

  .hero::before {
    top: -8rem;
    right: -8rem;
    width: 18rem;
    height: 18rem;
  }

  .hero__grid {
    gap: 1.9rem;
  }

  .hero__content .eyebrow {
    margin-bottom: 1rem;
    font-size: .55rem;
    letter-spacing: .11em;
  }

  .hero__content .eyebrow::before {
    width: 1.25rem;
    flex-basis: 1.25rem;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(3rem, 13.5vw, 3.5rem);
    line-height: .9;
  }

  .hero__title-last {
    font-size: .66em;
  }

  .hero__lead {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero__actions {
    flex-wrap: nowrap;
    gap: .5rem;
    margin-top: 1.45rem;
  }

  .hero__actions .btn {
    min-height: 48px;
    padding-inline: 1rem;
    font-size: .93rem;
  }

  .hero__actions .btn--outline {
    padding-inline: .8rem;
  }

  .hero__meta {
    margin-top: 1.5rem;
    padding-top: .85rem;
  }

  .hero__meta-item {
    padding-inline: .45rem;
  }

  .hero__meta-label {
    font-size: .43rem;
    letter-spacing: .06em;
  }

  .hero__meta-value {
    font-size: .78rem;
  }

  .hero__visual {
    aspect-ratio: 16 / 11;
    clip-path: polygon(0 0, calc(100% - 2rem) 0, 100% 2rem, 100% 100%, 2rem 100%, 0 calc(100% - 2rem));
  }

  .hero__visual::before {
    top: .75rem;
    right: .75rem;
    padding: .4rem .5rem;
    font-size: .46rem;
  }

  .hero__route-marker--origin {
    left: 3%;
    bottom: 5%;
  }

  .hero__route-marker--arrival {
    top: 13%;
    right: 3%;
  }

  .hero__route-marker {
    padding: .42rem .5rem;
  }

  .hero__route-marker strong {
    font-size: .72rem;
  }
}
