/* =====================================================
   LA RUTA · v3 — Premium gray base, yellow as accent
   ===================================================== */

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
*::before, *::after { box-sizing: border-box; }

:root {
  /* Base — soft zinc grays for premium feel */
  --bg: #F4F4F5;
  --bg-2: #FAFAFA;
  --bg-3: #ECECEE;
  --paper: #FFFFFF;
  --ink: #09090B;
  --ink-2: #18181B;
  --ink-3: #27272A;
  --text: #18181B;
  --muted: #52525B;
  --muted-2: #71717A;
  --muted-3: #A1A1AA;
  --line: #E4E4E7;
  --line-2: #D4D4D8;
  --line-3: rgba(9,9,11,0.08);

  /* Accents */
  --y: #FFD60A;
  --y-deep: #F2C400;
  --y-soft: #FFF6BF;
  --y-tint: #FFFBE5;

  /* Status */
  --ok: #16A34A;
  --wa: #25D366;

  /* Shapes */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Premium shadows */
  --shadow-xs: 0 1px 2px rgba(9,9,11,0.04), 0 1px 3px rgba(9,9,11,0.06);
  --shadow-sm: 0 1px 2px rgba(9,9,11,0.04), 0 2px 6px rgba(9,9,11,0.06);
  --shadow: 0 2px 4px rgba(9,9,11,0.04), 0 8px 16px -6px rgba(9,9,11,0.08);
  --shadow-md: 0 4px 6px rgba(9,9,11,0.05), 0 12px 24px -8px rgba(9,9,11,0.1);
  --shadow-lg: 0 10px 20px -5px rgba(9,9,11,0.08), 0 24px 48px -12px rgba(9,9,11,0.16);
  --shadow-xl: 0 16px 32px -8px rgba(9,9,11,0.12), 0 32px 64px -16px rgba(9,9,11,0.2);
  --shadow-yellow: 0 8px 24px -8px rgba(255,214,10,0.4), 0 16px 40px -12px rgba(242,196,0,0.25);
  --shadow-ink: 0 8px 24px -8px rgba(9,9,11,0.35), 0 16px 40px -12px rgba(9,9,11,0.25);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);

  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; background: transparent; border: 0; outline: none; }

/* =====================================================
   COMPONENTS — buttons
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-ink);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
  isolation: isolate;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left .6s var(--ease);
  z-index: -1;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-xl); }
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(0); }

.btn--yellow {
  background: var(--y);
  color: var(--ink);
  box-shadow: var(--shadow-yellow);
}
.btn--yellow:hover { background: var(--y-deep); }

.btn--light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover { border-color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--bg-3); }

.btn--wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(37,211,102,0.5);
}

.btn--lg { padding: 15px 26px; font-size: 15px; }
.btn--xl { padding: 18px 28px; font-size: 16px; }
.btn--full { width: 100%; }

/* Eyebrow labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 12px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--accent {
  background: var(--y);
  color: var(--ink);
  padding: 5px 11px;
  border-radius: var(--r-pill);
}
.eyebrow--accent::before { display: none; }

/* Headings */
.h1 {
  font-size: clamp(34px, 9vw, 56px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}
.h2 {
  font-size: clamp(26px, 7.5vw, 38px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: var(--ink);
}
.h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}

.section-head {
  padding: 0 0 24px;
}
.section-head--center { text-align: center; }
.section-sub {
  color: var(--muted);
  font-size: 14.5px;
  margin: 10px 0 0;
  max-width: 360px;
}
.section-head--center .section-sub { margin: 10px auto 0; }

/* Highlight text */
.highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.highlight::before {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: 5%;
  height: 38%;
  background: var(--y);
  border-radius: 4px;
  z-index: -1;
  transform: skew(-2deg);
}

/* =====================================================
   BRAND
   ===================================================== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ink);
  display: grid;
  place-items: center;
  padding: 4px;
}
.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__sub {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* =====================================================
   TOP NAV
   ===================================================== */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,244,245,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: transform .35s var(--ease);
}
.topnav.is-hidden { transform: translateY(-100%); }
.topnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.topnav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 12.5px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  padding: 24px 20px 32px;
  overflow: hidden;
}

.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__deco::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,214,10,0.25), transparent 60%);
  top: -200px;
  right: -150px;
  border-radius: 50%;
  filter: blur(40px);
}
.hero__deco::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(9,9,11,0.06), transparent 60%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
  filter: blur(50px);
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9,9,11,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,9,11,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black, transparent);
  z-index: 0;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__top {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  animation: fadeUp .5s var(--ease-out) .2s both;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  position: relative;
  flex-shrink: 0;
}
.dot--live::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--ok);
  opacity: 0.5;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero__title {
  font-size: clamp(34px, 9vw, 52px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
  text-align: center;
  animation: fadeUp .6s var(--ease-out) .3s both;
}

.hero__sub {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0 auto 24px;
  max-width: 380px;
  text-align: center;
  animation: fadeUp .6s var(--ease-out) .4s both;
}

.hero__main {
  display: grid;
  gap: 18px;
  animation: fadeUp .7s var(--ease-out) .5s both;
}

.hero__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__media-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--y);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__media-tag .dot { background: var(--y); }
.hero__media-tag .dot::after { background: var(--y); }

.hero__chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}
.hero__chip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-xs);
}
.hero__chip strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__chip span {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.2;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px 16px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-ink);
  transition: all .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.hero__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.hero__cta:active { transform: translateY(0); }
.hero__cta-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--y);
  color: var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero__cta-icon svg { width: 22px; height: 22px; }
.hero__cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}
.hero__cta-main {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero__cta-sub {
  font-size: 11.5px;
  opacity: 0.6;
  margin-top: 3px;
  font-weight: 500;
}
.hero__cta-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--paper);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.hero__alt {
  display: flex;
  gap: 8px;
}
.hero__alt-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border-radius: var(--r);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: all .15s;
  box-shadow: var(--shadow-xs);
}
.hero__alt-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.hero__alt-btn--wa { color: var(--wa); border-color: rgba(37,211,102,0.3); }

/* Trust strip below hero */
.trust {
  padding: 18px 20px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.trust__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust__inner::-webkit-scrollbar { display: none; }
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.trust__item svg { color: var(--y); width: 16px; height: 16px; }
.trust__dot { color: var(--y); }

/* =====================================================
   ACTIVE ORDERS
   ===================================================== */
.orders {
  padding: 12px 20px 4px;
  max-width: 720px;
  margin: 0 auto;
}
.orders[hidden] { display: none; }
.orders__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 14px;
  gap: 12px;
}
.orders__head h2 {
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}
.orders__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.order-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--y);
}
.order-card__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  margin-bottom: 14px;
}
.order-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.order-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-3);
  display: grid; place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.order-card__name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.order-card__id {
  font-size: 11px;
  color: var(--muted-2);
  font-family: ui-monospace, monospace;
  font-weight: 600;
  margin-top: 2px;
}
.order-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  background: var(--y);
  color: var(--ink);
  white-space: nowrap;
}

.order-tl {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 16px 0 12px;
}
.tl-step {
  flex: 0 0 auto;
  text-align: center;
  width: 56px;
}
.tl-step__dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  color: var(--muted-3);
  margin: 0 auto 5px;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 800;
  transition: all .3s var(--ease);
}
.tl-step.is-active .tl-step__dot,
.tl-step.is-done .tl-step__dot {
  background: var(--y);
  border-color: var(--y);
  color: var(--ink);
}
.tl-step.is-active .tl-step__dot { animation: pulseRing 1.5s ease-out infinite; }
@keyframes pulseRing {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,214,10,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(255,214,10,0); }
}
.tl-step__label {
  font-size: 9.5px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
}
.tl-step.is-active .tl-step__label,
.tl-step.is-done .tl-step__label { color: var(--ink); }
.tl-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: -19px -2px 0;
  border-radius: 2px;
}
.tl-line.is-done { background: var(--y); }

.order-card__meta {
  font-size: 12.5px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.order-card__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.order-card__meta-row svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--muted-2);
}

.order-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.order-card__btn {
  flex: 1;
  padding: 10px;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--r-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all .15s;
}
.order-card__btn:hover { background: var(--bg-3); }
.order-card__btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.order-card__btn--wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}

.ghost-btn {
  font-size: 12px;
  padding: 8px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-xs);
}

/* =====================================================
   PEDIR / VEHICLES  (use REAL images)
   ===================================================== */
.pedir { padding: 50px 18px 36px; }
.pedir__inner {
  max-width: 720px;
  margin: 0 auto;
}

.vehicles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.vehicle {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-xs);
  isolation: isolate;
}
.vehicle:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink);
}
.vehicle:active { transform: translateY(-1px); }
.vehicle__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.vehicle__foot {
  padding: 10px 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.vehicle__cta {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-2);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color .15s;
}
.vehicle:hover .vehicle__cta { color: var(--ink); }
.vehicle__cta-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--y);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: transform .25s;
}
.vehicle:hover .vehicle__cta-arrow { transform: translateX(3px); }
.vehicle__pop {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--y);
  box-shadow: var(--shadow);
  z-index: 1;
}
.vehicle__price {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}
.vehicle__price strong { color: var(--ink); }

.pedir__hint {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-weight: 500;
}

/* =====================================================
   FEATURE (showcase image)
   ===================================================== */
.feature {
  padding: 50px 20px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.feature__inner {
  max-width: 720px;
  margin: 0 auto;
}
.feature h2 { color: var(--paper); }
.feature .eyebrow { color: var(--y); }
.feature .eyebrow::before { background: var(--y); }
.feature .section-sub { color: rgba(255,255,255,0.65); }

.feature__layout {
  display: grid;
  gap: 22px;
}
.feature__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 1 / 1;
  max-width: 340px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature__media-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--y);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: var(--r-pill);
}

.feature__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 16px 14px;
  transition: all .2s var(--ease);
}
.pillar:hover {
  border-color: var(--y);
  background: rgba(255,214,10,0.04);
}
.pillar__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  background: var(--y);
  color: var(--ink);
  margin-bottom: 10px;
}
.pillar h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--paper);
}
.pillar p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.45;
}

/* =====================================================
   SERVICES horizontal scroll
   ===================================================== */
.services {
  padding: 50px 0 36px;
}
.services .section-head { padding: 0 20px 22px; }

.services__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 20px 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.services__scroll::-webkit-scrollbar { display: none; }

.svc {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 170px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
}
.svc:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.svc--accent {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.svc--accent h3 { color: var(--paper); }
.svc--accent .svc__price { color: var(--y); }

.svc__num {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 11px;
  font-weight: 800;
  opacity: 0.4;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.05em;
}
.svc__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--y);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 4px;
}
.svc h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.svc p {
  font-size: 13px;
  margin: 0;
  color: var(--muted);
  flex: 1;
}
.svc--accent p { color: rgba(255,255,255,0.7); }
.svc__price {
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.svc__price strong { font-size: 14px; color: var(--ink); font-weight: 800; }
.svc--accent .svc__price strong { color: var(--y); }

/* =====================================================
   ALIADOS (use REAL partner images)
   ===================================================== */
.aliados {
  padding: 50px 0 40px;
}
.aliados .section-head { padding: 0 20px 14px; }

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 20px 16px;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  flex-shrink: 0;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: all .2s var(--ease);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.tab:hover { border-color: var(--ink); }
.tab.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.aliados__panels {
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.ally-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ally {
  aspect-ratio: 16 / 11;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-xs);
  position: relative;
}
.ally:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.ally__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ally__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(9,9,11,0.85), transparent);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ally:hover .ally__overlay { opacity: 1; }
.ally__overlay svg { color: var(--y); width: 14px; height: 14px; }

/* =====================================================
   PROMOS (real images)
   ===================================================== */
.promos {
  padding: 50px 20px 40px;
  background: var(--bg-3);
}
.promos__inner { max-width: 560px; margin: 0 auto; }

.days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
.day {
  padding: 14px 0;
  border-radius: var(--r);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: all .2s var(--ease);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.day:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.day.is-active {
  background: var(--ink);
  color: var(--y);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.promo-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.promo-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}
.promo-card__day {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  background: var(--ink);
  color: var(--y);
  border-radius: var(--r-pill);
}
.promo-card__off {
  background: var(--y);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-yellow);
}
.promo-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.promo-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.promo-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.promo-item {
  aspect-ratio: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  transition: all .2s;
}
.promo-item:hover { transform: scale(1.04); box-shadow: var(--shadow); }
.promo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   AFILIADOS CTA
   ===================================================== */
.afiliados {
  padding: 50px 20px 40px;
}
.afiliados__inner { max-width: 560px; margin: 0 auto; }

.afil-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 28px 22px;
  color: var(--paper);
  box-shadow: var(--shadow-lg);
}
.afil-card__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.afil-card__deco::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,214,10,0.25), transparent 60%);
  top: -100px; right: -80px;
  border-radius: 50%;
  filter: blur(20px);
}
.afil-card__content { position: relative; z-index: 1; }

.afil-card__badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--y);
  color: var(--ink);
  margin-bottom: 14px;
}
.afil-card__title {
  font-size: 26px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--paper);
}
.afil-card__sub {
  font-size: 14px;
  margin: 0 0 20px;
  color: rgba(255,255,255,0.65);
}

.afil-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.afil-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 12px 6px;
  text-align: center;
}
.afil-stat strong {
  display: block;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--y);
}
.afil-stat span {
  font-size: 10.5px;
  color: rgba(255,255,255,0.6);
}

.afil-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.afil-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.afil-perk svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  background: var(--y);
  color: var(--ink);
  border-radius: 50%;
  padding: 2px;
}

.afil-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--r);
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.3);
}
.afil-status__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ok);
  position: relative;
  flex-shrink: 0;
}
.afil-status__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--ok);
  opacity: 0.4;
  animation: pulse 1.8s infinite;
}
.afil-status strong {
  display: block;
  font-size: 13px;
  color: var(--ok);
  font-weight: 800;
}
.afil-status span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* =====================================================
   COBERTURA
   ===================================================== */
.cobertura {
  padding: 50px 20px 40px;
}
.cobertura__inner { max-width: 720px; margin: 0 auto; }
.cob-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.cob-city {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xs);
  transition: all .2s var(--ease);
}
.cob-city:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.cob-city--accent {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.cob-city__pin {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--y);
  color: var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cob-city--accent .cob-city__pin {
  background: rgba(255,214,10,0.15);
  color: var(--y);
}
.cob-city__pin svg { width: 18px; height: 18px; }
.cob-city__text { display: flex; flex-direction: column; line-height: 1.2; }
.cob-city__text strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cob-city--accent .cob-city__text strong { color: var(--paper); }
.cob-city__text span {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}
.cob-city--accent .cob-city__text span { color: rgba(255,255,255,0.6); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 40px 20px 100px;
  background: var(--ink);
  color: var(--paper);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.footer .brand__name { color: var(--paper); }
.footer .brand__sub { color: var(--y); }
.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 12px 0 0;
  max-width: 340px;
}
.footer__col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--y);
  margin: 0 0 12px;
  font-weight: 700;
}
.footer__col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--paper);
  transition: color .2s;
}
.footer__col a:hover { color: var(--y); }
.footer__col a svg { color: var(--wa); flex-shrink: 0; }
.footer__hours {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 8px 0 0;
  font-weight: 500;
}
.socials {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: var(--paper);
  transition: all .2s;
  margin: 0;
}
.socials a svg { width: 16px; height: 16px; color: var(--paper); }
.socials a:hover {
  background: var(--y);
  border-color: var(--y);
}
.socials a:hover svg { color: var(--ink); }
.footer__tag {
  font-size: 12.5px;
  color: var(--y);
  margin: 0;
  font-weight: 600;
}
.footer__legal {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* =====================================================
   FAB WhatsApp
   ===================================================== */
.fab {
  position: fixed;
  bottom: calc(20px + var(--safe-bottom));
  right: 18px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,0.55), 0 4px 12px rgba(37,211,102,0.3);
  z-index: 40;
  animation: fadeUp .6s var(--ease-out) 1s both;
}
.fab svg { width: 26px; height: 26px; }
.fab__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: 0.5;
  animation: ringPulse 2.2s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   BOTTOM SHEET (modern, premium)
   ===================================================== */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.sheet[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}
.sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sheet__panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform .45s var(--ease-out);
  height: 100vh;
  height: 100dvh;
  box-shadow: 0 -30px 60px -20px rgba(0,0,0,0.4);
}
.sheet[aria-hidden="false"] .sheet__panel {
  transform: translateY(0);
}

.sheet__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
  padding-top: calc(14px + var(--safe-top));
}

.icon-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  transition: background .15s;
}
.icon-btn:hover { background: var(--bg-3); }
.icon-btn:active { transform: scale(.92); }

.sheet__head-center {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sheet__step {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}
.sheet__head-center strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.progress {
  height: 3px;
  background: var(--bg-3);
  margin: 0;
  position: relative;
  z-index: 2;
}
.progress__bar {
  height: 100%;
  background: var(--y);
  width: 0%;
  transition: width .4s var(--ease);
}

.sheet__body {
  flex: 1;
  padding: 22px 18px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.sheet__foot {
  padding: 12px 18px calc(16px + var(--safe-bottom));
  background: var(--paper);
  border-top: 1px solid var(--line);
}

/* Vehicle banner (uses real image inside sheet) */
.vehicle-banner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 8px;
  margin: 0 auto 18px;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.vehicle-banner__img {
  width: 84px; height: 84px;
  border-radius: var(--r);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-3);
}
.vehicle-banner__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
  padding-right: 8px;
}
.vehicle-banner__tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.vehicle-banner__name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.vehicle-banner__price {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px;
}

/* Step head */
.step-head {
  text-align: center;
  margin-bottom: 18px;
  animation: fadeIn .35s var(--ease) both;
}
.step-head__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--y);
  display: grid; place-items: center;
  margin: 0 auto 12px;
}
.step-head__icon svg { width: 26px; height: 26px; }
.step-head__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 5px;
  color: var(--ink);
}
.step-head__sub {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Premium fields */
.field {
  margin-bottom: 14px;
  animation: fadeIn .35s var(--ease) both;
}
.field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 6px 4px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 13px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: all .15s;
  box-shadow: var(--shadow-xs);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-3);
  font-weight: 400;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(9,9,11,0.06);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
  line-height: 1.5;
}
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.field--row .field { margin-bottom: 0; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2309090B' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.field__hint {
  font-size: 11.5px;
  color: var(--muted-2);
  margin: 6px 0 0 4px;
  line-height: 1.4;
}

/* The BIG extras textarea */
.field--big {
  margin-bottom: 18px;
}
.field--big label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.field--big label svg {
  width: 14px; height: 14px;
  color: var(--y);
}
.field--big textarea {
  min-height: 160px;
  background: var(--paper);
  border: 1.5px dashed var(--line-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.field--big textarea:focus {
  border-style: solid;
  border-color: var(--ink);
}

.fancy-callout {
  background: var(--y-tint);
  border: 1px solid var(--y);
  border-radius: var(--r);
  padding: 14px;
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 18px;
}
.fancy-callout__icon {
  width: 32px; height: 32px;
  background: var(--y);
  color: var(--ink);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fancy-callout__icon svg { width: 16px; height: 16px; }
.fancy-callout__text {
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}
.fancy-callout__text strong { font-weight: 800; }

/* Summary */
.summary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px;
  margin: 0 0 14px;
  box-shadow: var(--shadow-sm);
}
.summary__title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.summary__title svg { width: 16px; height: 16px; color: var(--y); }
.summary__row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.summary__row:last-child { border-bottom: 0; padding-bottom: 0; }
.summary__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.summary__value {
  font-size: 13.5px;
  font-weight: 600;
  text-align: right;
  word-break: break-word;
  color: var(--ink);
  white-space: pre-line;
}

/* Payment methods */
.pays {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.pay {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: all .15s var(--ease);
  box-shadow: var(--shadow-xs);
  position: relative;
}
.pay:hover { border-color: var(--ink); transform: translateY(-1px); }
.pay.is-selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.pay.is-selected .pay__name { color: var(--paper); }
.pay.is-selected::after {
  content: '✓';
  position: absolute;
  top: 6px; right: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--y);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 900;
}
.pay__logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg);
  display: grid; place-items: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.pay.is-selected .pay__logo { background: rgba(255,214,10,0.2); color: var(--y); }
.pay__name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Aliados in sheet — use real images */
.al-categories {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin-bottom: 16px;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.al-categories::-webkit-scrollbar { display: none; }
.al-cat {
  flex-shrink: 0;
  padding: 8px 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: all .15s;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.al-cat.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.al-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.al-item {
  aspect-ratio: 16 / 11;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  transition: all .15s;
  box-shadow: var(--shadow-xs);
}
.al-item img { width: 100%; height: 100%; object-fit: cover; }
.al-item.is-selected { border-color: var(--ink); box-shadow: var(--shadow-md); }
.al-item.is-selected::after {
  content: '✓';
  position: absolute;
  top: 8px; right: 8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--y);
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.al-skip-card {
  background: var(--paper);
  border: 1.5px dashed var(--line-2);
  border-radius: var(--r);
  padding: 16px;
  text-align: center;
  margin-bottom: 14px;
}
.al-skip-card__title {
  font-size: 13.5px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--ink);
}
.al-skip-card__sub {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
}
.al-skip-card button {
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  color: var(--ink);
}

/* Tracking screen */
.tracking {
  text-align: center;
  padding: 18px 0 0;
}
.tracking__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--ink);
  color: var(--y);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.tracking__label .dot { background: var(--y); }
.tracking__label .dot::after { background: var(--y); }

.tracking__hero {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 18px;
}
.tracking__hero-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--y-soft) 0%, var(--y-tint) 70%, transparent 100%);
  animation: heroFloat 4s ease-in-out infinite;
}
.tracking__hero-img {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-3);
}
.tracking__hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.tracking__route {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 18px auto 0;
  max-width: 320px;
  position: relative;
  padding: 0 8px;
}
.tracking__pin {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--y);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.tracking__pin svg { width: 16px; height: 16px; }
.tracking__path {
  flex: 1;
  height: 8px;
  background-image: radial-gradient(circle, var(--ink) 1.5px, transparent 2px);
  background-size: 10px 8px;
  background-repeat: repeat-x;
  background-position: 0 center;
  position: relative;
}
.tracking__bike {
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 32px;
  background: var(--y);
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  animation: bikeRide 4s ease-in-out infinite;
}
.tracking__bike svg { width: 18px; height: 18px; color: var(--ink); }
@keyframes bikeRide {
  0%, 100% { left: 0; transform: translateY(-50%) scaleX(1); }
  48% { left: calc(100% - 32px); transform: translateY(-50%) scaleX(1); }
  52% { left: calc(100% - 32px); transform: translateY(-50%) scaleX(-1); }
  98% { left: 0; transform: translateY(-50%) scaleX(-1); }
  100% { transform: translateY(-50%) scaleX(1); }
}

.tracking__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.tr-step {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.tr-step__dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted-3);
  transition: all .3s;
}
.tr-step.is-done .tr-step__dot,
.tr-step.is-active .tr-step__dot {
  background: var(--y);
  border-color: var(--y);
  color: var(--ink);
}
.tr-step.is-active .tr-step__dot { animation: pulseRing 1.5s infinite; }
.tr-step__txt {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-2);
  flex: 1;
}
.tr-step.is-done .tr-step__txt,
.tr-step.is-active .tr-step__txt { color: var(--ink); }
.tr-step__time {
  font-size: 10.5px;
  color: var(--muted-2);
  font-family: ui-monospace, monospace;
}

/* Success screen */
.success-screen {
  text-align: center;
  padding: 30px 0 16px;
}
.success-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--y);
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: var(--ink);
  position: relative;
  animation: pop .6s var(--ease-bounce);
}
.success-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--y);
  opacity: 0.4;
  animation: ringPulse 2s ease-out infinite;
}
.success-icon svg { width: 38px; height: 38px; stroke-width: 3.5; }
@keyframes pop {
  0% { transform: scale(0) rotate(-15deg); opacity: 0; }
  60% { transform: scale(1.1) rotate(3deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.success-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  color: var(--ink);
}
.success-sub {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
  padding: 0 12px;
  line-height: 1.45;
}

/* =====================================================
   TOAST
   ===================================================== */
.toast {
  position: fixed;
  bottom: calc(90px + var(--safe-bottom));
  left: 50%;
  transform: translate(-50%, 30px);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease);
  white-space: nowrap;
  max-width: 90vw;
  box-shadow: var(--shadow-lg);
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (min-width: 600px) {
  .vehicles { grid-template-columns: repeat(3, 1fr); }
  .ally-grid { grid-template-columns: repeat(3, 1fr); }
  .cob-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; align-items: start; }
  .footer__legal { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
  .feature__pillars { grid-template-columns: repeat(2, 1fr); }
  .al-grid { grid-template-columns: repeat(3, 1fr); }
  .svc { flex: 0 0 340px; }
}

@media (min-width: 900px) {
  .hero__main {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .hero__media { max-width: 460px; }
  .hero__title { text-align: left; font-size: 56px; }
  .hero__sub { text-align: left; margin: 0 0 22px; }
  .hero__chips { margin: 0; max-width: 100%; }
  .hero__actions { max-width: 100%; margin: 18px 0 0; }
  .hero__top { justify-content: flex-start; }

  .feature__layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
  }

  .ally-grid { grid-template-columns: repeat(4, 1fr); }
  .al-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Prevent text selection on tap UI */
.vehicle, .tab, .day, .pay, .al-item, .al-cat, .btn, .vehicle__pop {
  user-select: none;
  -webkit-user-select: none;
}
