/* =============================================================
   Amarillo Express — Design System
   Marca: amarillo taxi + negro. Mobile-first, sin dependencias.
   ============================================================= */

:root {
  /* Marca */
  --amarillo:       #FFC400;
  --amarillo-2:     #FFD84D;
  --amarillo-dark:  #E0A800;
  --negro:          #0E0F12;
  --negro-2:        #16181D;
  --tinta:          #1B1D22;
  --gris:           #5B6270;
  --gris-2:         #8B92A1;
  --linea:          #E7E9EE;
  --bg:             #FFFFFF;
  --bg-soft:        #F7F8FA;
  --bg-crema:       #FFFBEF;
  --blanco:         #FFFFFF;
  --verde:          #17B26A;

  /* Tipografía */
  --f-display: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Espacio / radios / sombras */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --sh-sm: 0 1px 2px rgba(14,15,18,.06), 0 1px 3px rgba(14,15,18,.04);
  --sh:    0 8px 24px rgba(14,15,18,.08);
  --sh-lg: 0 24px 60px rgba(14,15,18,.14);
  --sh-amarillo: 0 12px 30px rgba(255,196,0,.35);
  --container: 1180px;
  --nav-h: 74px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--f-body);
  color: var(--tinta);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.12; letter-spacing: -.02em; color: var(--negro); font-weight: 700; }

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--amarillo-dark);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--amarillo); border-radius: 2px; }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--negro); color: #E9EAEE; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); margin: 14px 0 14px; }
.section-head p { color: var(--gris); font-size: 1.08rem; }
.section--dark .section-head p { color: var(--gris-2); }
.text-amarillo { color: var(--amarillo-dark); }
.hl { position: relative; z-index: 0; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 4px; height: 38%;
  background: var(--amarillo); z-index: -1; border-radius: 3px; opacity: .9;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-display); font-weight: 700; font-size: .98rem;
  padding: 14px 22px; border-radius: 999px; transition: .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--amarillo); color: var(--negro); box-shadow: var(--sh-amarillo); }
.btn--primary:hover { background: var(--amarillo-2); transform: translateY(-2px); }
.btn--dark { background: var(--negro); color: #fff; }
.btn--dark:hover { background: var(--negro-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--negro); box-shadow: inset 0 0 0 1.6px var(--linea); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.6px var(--negro); }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1eb959; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--negro); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.btn--lg { padding: 17px 28px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Barra superior ---------- */
.topbar { background: var(--negro); color: #C9CCD4; font-size: .82rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar a { color: #C9CCD4; transition: .15s; }
.topbar a:hover { color: var(--amarillo); }
.topbar__left { display: flex; gap: 22px; align-items: center; }
.topbar__left .dot { color: var(--amarillo); }
.topbar__social { display: flex; gap: 16px; align-items: center; }
.topbar__social svg { width: 16px; height: 16px; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--linea);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--f-display); font-weight: 800; font-size: 1.24rem; color: var(--negro); letter-spacing: -.02em; }
.brand__mark { width: 40px; height: 40px; border-radius: 11px; background: var(--amarillo); display: grid; place-items: center; box-shadow: var(--sh-amarillo); flex: none; }
.brand__mark svg { width: 24px; height: 24px; }
.brand small { display: block; font-family: var(--f-body); font-weight: 600; font-size: .62rem; letter-spacing: .22em; color: var(--gris); text-transform: uppercase; margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-weight: 600; font-size: .96rem; color: var(--tinta); transition: .15s; }
.nav__links a:hover { color: var(--amarillo-dark); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft); }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--negro); margin: 4px auto; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 120% at 85% -10%, #FFF6D6 0%, #fff 45%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 74px 0 88px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--linea);
  padding: 7px 14px 7px 8px; border-radius: 999px; box-shadow: var(--sh-sm); font-weight: 600; font-size: .86rem; margin-bottom: 22px;
}
.hero__badge b { color: var(--negro); }
.hero__badge .pill { background: var(--amarillo); color: var(--negro); font-family: var(--f-display); font-weight: 800; font-size: .74rem; padding: 4px 10px; border-radius: 999px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); font-weight: 800; }
.hero p.lead { font-size: 1.18rem; color: var(--gris); margin: 20px 0 30px; max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { display: flex; align-items: center; gap: 20px; margin-top: 34px; flex-wrap: wrap; }
.hero__trust .stars { color: var(--amarillo); letter-spacing: 2px; font-size: 1.05rem; }
.hero__trust small { color: var(--gris); font-size: .88rem; }
.hero__avatars { display: flex; }
.hero__avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -10px; background-size: cover; display: grid; place-items: center; font-size: .8rem; font-weight: 700; color: var(--negro); }

/* Tarjeta visual del hero (mockup app) */
.hero__art { position: relative; display: grid; place-items: center; }
.phone {
  width: 288px; background: var(--negro); border-radius: 40px; padding: 12px; box-shadow: var(--sh-lg);
  position: relative; z-index: 2;
}
.phone__screen { background: linear-gradient(180deg, #fff, #FBFBFD); border-radius: 30px; overflow: hidden; }
.phone__map { height: 220px; position: relative; background:
    linear-gradient(#EEF1F6 0 0) padding-box, #E9EDF3;
  background-image:
    linear-gradient(0deg, rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.phone__route { position: absolute; inset: 0; }
.phone__pin { position: absolute; width: 30px; height: 30px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: var(--sh); }
.phone__pin::after { content:""; position:absolute; inset: 8px; background:#fff; border-radius:50%; }
.pin--a { background: var(--negro); top: 40px; left: 44px; }
.pin--b { background: var(--amarillo); bottom: 40px; right: 44px; }
.phone__card { padding: 16px 18px 20px; }
.phone__row { display: flex; align-items: center; gap: 12px; padding: 11px 0; }
.phone__row .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--bg-crema); display: grid; place-items: center; flex: none; }
.phone__row .ic svg { width: 20px; height: 20px; color: var(--amarillo-dark); }
.phone__row b { font-size: .92rem; }
.phone__row span { font-size: .78rem; color: var(--gris); }
.phone__fare { margin-left: auto; font-family: var(--f-display); font-weight: 800; color: var(--negro); }
.phone__btn { margin-top: 12px; background: var(--amarillo); color: var(--negro); font-family: var(--f-display); font-weight: 800; text-align: center; padding: 13px; border-radius: 14px; font-size: .95rem; }
.hero__blob { position: absolute; width: 340px; height: 340px; background: var(--amarillo); filter: blur(10px); opacity: .18; border-radius: 46% 54% 60% 40%; z-index: 1; }
.hero__chip {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--sh); padding: 12px 15px;
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .85rem; z-index: 3;
}
.hero__chip .badge-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.hero__chip small { display: block; font-weight: 500; color: var(--gris); font-size: .74rem; }
.hero__chip--1 { top: 26px; left: -10px; }
.hero__chip--2 { bottom: 40px; right: -14px; }

/* ---------- Franja de clientes ---------- */
.clients { padding: 34px 0; border-top: 1px solid var(--linea); border-bottom: 1px solid var(--linea); background: #fff; }
.clients p { text-align: center; color: var(--gris); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; }
.clients__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px; }
.clients__row span { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: #AEB4C0; letter-spacing: -.03em; transition: .2s; }
.clients__row span:hover { color: var(--negro); }

/* ---------- Servicios ---------- */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--linea); border-radius: var(--r-lg); padding: 30px 26px;
  transition: .22s ease; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.card__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--bg-crema); display: grid; place-items: center; margin-bottom: 18px; }
.card__ic svg { width: 27px; height: 27px; color: var(--amarillo-dark); }
.card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.card p { color: var(--gris); font-size: .96rem; }
.card__tag { position: absolute; top: 20px; right: 20px; background: var(--negro); color: var(--amarillo); font-family: var(--f-display); font-weight: 800; font-size: .64rem; letter-spacing: .1em; padding: 4px 9px; border-radius: 999px; text-transform: uppercase; }

/* ---------- Diferenciadores (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { display: grid; gap: 22px; margin-top: 30px; }
.feature { display: flex; gap: 16px; }
.feature__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--amarillo); display: grid; place-items: center; flex: none; box-shadow: var(--sh-amarillo); }
.feature__ic svg { width: 22px; height: 22px; color: var(--negro); }
.feature h4 { font-size: 1.08rem; margin-bottom: 3px; }
.feature p { color: var(--gris); font-size: .95rem; }
.split__visual { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--negro); min-height: 440px; display: grid; place-items: center; padding: 30px; }
.split__visual .grid-bg { position: absolute; inset: 0; background-image: linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 34px 34px; }
.safety-badge { position: relative; text-align: center; color: #fff; }
.safety-badge .ring { width: 150px; height: 150px; margin: 0 auto 22px; border-radius: 50%; border: 3px dashed var(--amarillo); display: grid; place-items: center; }
.safety-badge .ring svg { width: 70px; height: 70px; color: var(--amarillo); }
.safety-badge h3 { color: #fff; font-size: 1.5rem; }
.safety-badge p { color: var(--gris-2); margin-top: 8px; }

/* ---------- Cómo funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 34px 26px; background: #fff; border-radius: var(--r-lg); border: 1px solid var(--linea); }
.step__num { counter-increment: step; font-family: var(--f-display); font-weight: 800; font-size: 2.4rem; color: var(--amarillo); line-height: 1; }
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.2rem; margin: 12px 0 8px; }
.step p { color: var(--gris); font-size: .96rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 20px; }
.stat b { display: block; font-family: var(--f-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.2rem); color: #fff; letter-spacing: -.03em; }
.stat b .u { color: var(--amarillo); }
.stat span { color: var(--gris-2); font-weight: 600; font-size: .95rem; }

/* ---------- Corporativo ---------- */
.corp { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.corp__panel { background: linear-gradient(160deg, var(--negro), var(--negro-2)); border-radius: var(--r-xl); padding: 40px; color: #fff; box-shadow: var(--sh-lg); }
.corp__panel .row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.corp__panel .row:last-child { border-bottom: none; }
.corp__panel .row span { color: var(--gris-2); font-size: .92rem; }
.corp__panel .row b { font-family: var(--f-display); }
.corp__panel .row .up { color: var(--verde); font-size: .82rem; font-weight: 700; }
.corp__panel .head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.corp__panel .head .dotgrid { width: 40px; height: 40px; border-radius: 11px; background: var(--amarillo); display: grid; place-items: center; }
.check-list { display: grid; gap: 14px; margin: 26px 0 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--tinta); }
.check-list li svg { width: 22px; height: 22px; color: var(--verde); flex: none; margin-top: 1px; }

/* ---------- Pilotos CTA (teaser) ---------- */
.pilotos-cta { position: relative; overflow: hidden; border-radius: var(--r-xl); background: linear-gradient(115deg, var(--amarillo), var(--amarillo-2)); padding: 56px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: center; }
.pilotos-cta h2 { color: var(--negro); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.pilotos-cta p { color: #5a4b12; font-size: 1.1rem; margin: 12px 0 24px; max-width: 480px; }
.pilotos-cta .deco { position: absolute; right: -40px; top: -40px; width: 260px; height: 260px; border: 26px solid rgba(0,0,0,.06); border-radius: 50%; }

/* ---------- App download ---------- */
.appdl { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.store { display: inline-flex; align-items: center; gap: 11px; background: var(--negro); color: #fff; padding: 11px 20px; border-radius: 14px; transition: .18s; }
.store:hover { transform: translateY(-2px); }
.store svg { width: 26px; height: 26px; }
.store small { display: block; font-size: .68rem; color: #B9BEC9; }
.store b { font-family: var(--f-display); font-size: 1.05rem; }

/* ---------- Testimonios ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: #fff; border: 1px solid var(--linea); border-radius: var(--r-lg); padding: 28px; }
.quote .stars { color: var(--amarillo); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { font-size: 1rem; color: var(--tinta); }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--amarillo); display: grid; place-items: center; font-weight: 800; color: var(--negro); font-family: var(--f-display); }
.quote .who b { display: block; font-size: .95rem; }
.quote .who span { font-size: .82rem; color: var(--gris); }

/* ---------- Contacto ---------- */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact__methods { display: grid; gap: 16px; margin-top: 26px; }
.contact__method { display: flex; gap: 15px; align-items: center; padding: 18px; border-radius: var(--r); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); transition: .18s; }
.contact__method:hover { background: rgba(255,255,255,.07); }
.contact__method .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--amarillo); display: grid; place-items: center; flex: none; }
.contact__method .ic svg { width: 22px; height: 22px; color: var(--negro); }
.contact__method b { display: block; color: #fff; }
.contact__method span { color: var(--gris-2); font-size: .9rem; }
.form { background: #fff; border-radius: var(--r-xl); padding: 34px; box-shadow: var(--sh-lg); }
.form h3 { color: var(--negro); font-size: 1.4rem; margin-bottom: 6px; }
.form > p { color: var(--gris); margin-bottom: 22px; font-size: .95rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .86rem; margin-bottom: 7px; color: var(--tinta); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.6px solid var(--linea); border-radius: 12px;
  font-family: inherit; font-size: .97rem; color: var(--tinta); background: #fff; transition: .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amarillo); box-shadow: 0 0 0 4px rgba(255,196,0,.16); }
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__note { font-size: .8rem; color: var(--gris); margin-top: 12px; text-align: center; }
.form__alert { padding: 13px 16px; border-radius: 12px; font-size: .92rem; font-weight: 600; margin-bottom: 18px; display: none; }
.form__alert.ok { display: block; background: #E8F8F0; color: #0F7A47; }
.form__alert.err { display: block; background: #FDECEC; color: #C0392B; }

/* ---------- Footer ---------- */
.footer { background: var(--negro); color: #A9AEBA; padding: 66px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer p { font-size: .93rem; max-width: 300px; }
.footer h5 { color: #fff; font-family: var(--f-display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: .93rem; transition: .15s; }
.footer ul a:hover { color: var(--amarillo); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: .18s; }
.footer__social a:hover { background: var(--amarillo); color: var(--negro); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .85rem; flex-wrap: wrap; gap: 10px; }

/* ---------- FAB WhatsApp ---------- */
.fab { position: fixed; bottom: 22px; right: 22px; z-index: 70; width: 58px; height: 58px; border-radius: 50%; background: #25D366; box-shadow: 0 10px 30px rgba(37,211,102,.45); display: grid; place-items: center; transition: .2s; }
.fab:hover { transform: scale(1.06); }
.fab svg { width: 30px; height: 30px; color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Página Pilotos ---------- */
.phero { background: radial-gradient(120% 120% at 15% -10%, #FFF6D6 0%, #fff 46%); }
.phero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 70px 0 80px; }
.phero h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); font-weight: 800; }
.phero p.lead { font-size: 1.16rem; color: var(--gris); margin: 20px 0 30px; max-width: 500px; }
.earn-card { background: var(--negro); border-radius: var(--r-xl); padding: 34px; color: #fff; box-shadow: var(--sh-lg); }
.earn-card .big { font-family: var(--f-display); font-weight: 800; font-size: 3rem; color: var(--amarillo); letter-spacing: -.03em; }
.earn-card .lbl { color: var(--gris-2); }
.earn-card .bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.1); margin: 18px 0 8px; overflow: hidden; }
.earn-card .bar i { display: block; height: 100%; width: 78%; background: var(--amarillo); border-radius: 999px; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.req { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.req__list { display: grid; gap: 14px; }
.req__list li { display: flex; gap: 12px; align-items: flex-start; }
.req__list li .n { width: 28px; height: 28px; border-radius: 8px; background: var(--amarillo); color: var(--negro); font-family: var(--f-display); font-weight: 800; display: grid; place-items: center; flex: none; font-size: .9rem; }

/* ---------- Flota eléctrica ---------- */
.eco-chip { display: inline-flex; align-items: center; gap: 8px; background: #E8F8F0; color: #0F7A47; font-weight: 700; font-size: .9rem; padding: 8px 14px; border-radius: 999px; }
.eco-chip svg { width: 16px; height: 16px; }
.split__visual--eco { background: linear-gradient(160deg, #0B3D2E, #12784F); }
.eco-badge { position: relative; text-align: center; color: #fff; }
.eco-badge .ring { width: 116px; height: 116px; margin: 0 auto 16px; border-radius: 50%; border: 3px dashed #fff; display: grid; place-items: center; }
.eco-badge .ring svg { width: 52px; height: 52px; color: var(--amarillo); }
.eco-badge .pct { font-family: var(--f-display); font-weight: 800; font-size: 3.4rem; line-height: 1; color: var(--amarillo); letter-spacing: -.03em; }
.eco-badge h3 { color: #fff; font-size: 1.5rem; margin-top: 4px; }
.eco-badge p { color: rgba(255,255,255,.82); margin-top: 6px; }
.feature__ic--eco { background: var(--verde); box-shadow: 0 12px 30px rgba(23,178,106,.3); }
.feature__ic--eco svg { color: #fff; }
.hl--green::after { background: var(--verde); opacity: .22; }

/* ---------- Form inscripción (uploads) ---------- */
.form__group { font-family: var(--f-display); font-weight: 800; font-size: .95rem; color: var(--negro); margin: 24px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--bg-crema); display: flex; align-items: center; gap: 8px; }
.field .hint { font-weight: 500; font-size: .76rem; color: var(--gris-2); }
.form__hint-block { background: var(--bg-crema); color: var(--amarillo-dark); font-weight: 600; font-size: .84rem; padding: 9px 12px; border-radius: 10px; margin-bottom: 12px; }
.field input[type=file] { padding: 9px 12px; font-size: .86rem; background: var(--bg-soft); cursor: pointer; }
.field input[type=file]::file-selector-button { font-family: var(--f-display); font-weight: 700; font-size: .8rem; border: none; background: var(--negro); color: #fff; padding: 8px 14px; border-radius: 8px; margin-right: 12px; cursor: pointer; transition: .15s; }
.field input[type=file]::file-selector-button:hover { background: var(--negro-2); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid, .split, .corp, .appdl, .contact, .phero__grid { grid-template-columns: 1fr; }
  .grid-cards, .steps, .quotes, .benefits { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split__visual { min-height: 340px; order: -1; }
  .pilotos-cta { grid-template-columns: 1fr; text-align: center; }
  .pilotos-cta p { margin-inline: auto; }
  .req { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 66px 0; }
  .nav__links, .nav__cta .btn--ghost, .topbar__left span:not(.phone-t) { display: none; }
  .nav__burger { display: block; }
  .nav--open .nav__links {
    display: flex; position: absolute; top: var(--nav-h); left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 20px 22px; gap: 6px; border-bottom: 1px solid var(--linea); box-shadow: var(--sh);
  }
  .nav--open .nav__links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--bg-soft); }
  .hero__art { margin-top: 10px; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .grid-cards, .steps, .quotes, .benefits, .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .clients__row { gap: 28px; }
  .clients__row span { font-size: 1.2rem; }
  .pilotos-cta, .corp__panel, .form { padding: 28px; }
  .hero__chip--1 { left: 0; } .hero__chip--2 { right: 0; }
}
