/* ============================================================
   VaiLev — Identidade 2026
   Navy profundo + laranja/azul da marca, tipografia Sora/Inter
   ============================================================ */

:root {
  --bg: #04070f;
  --bg-2: #0a101f;
  --bg-3: #111a30;
  --ink: #f2f5ff;
  --muted: #93a0c2;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --orange: #ff6a00;
  --orange-2: #ff8a3d;
  --blue: #2f6bff;
  --blue-2: #59c2ff;
  --grad: linear-gradient(92deg, var(--blue-2), var(--blue) 30%, var(--orange) 72%, var(--orange-2));
  --wrap: 1200px;
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); }

.wrap { width: min(var(--wrap), calc(100% - 44px)); margin: 0 auto; }

.skip { position: absolute; left: -999px; top: 8px; z-index: 999; }
.skip:focus { left: 8px; background: #fff; color: #000; padding: 8px 14px; border-radius: 8px; }

::selection { background: rgba(255, 106, 0, 0.35); color: #fff; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ Botões ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border-radius: 16px; padding: 15px 24px;
  font-weight: 700; font-size: 15px; border: 0; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease, background 0.2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange-2), var(--orange) 55%, #f04d00);
  color: #fff;
  box-shadow: 0 12px 34px rgba(255, 106, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover { box-shadow: 0 16px 44px rgba(255, 106, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25); filter: brightness(1.05); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.05); color: #fff;
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-sm { padding: 11px 18px; font-size: 14px; border-radius: 13px; }
.btn-store { text-align: left; }
.btn-store small { display: block; font-size: 10px; font-weight: 600; opacity: 0.85; letter-spacing: 0.1em; text-transform: uppercase; }
.btn-store strong { display: block; font-size: 16px; line-height: 1.15; }
.btn-disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* ============ Nav ============ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 60;
  padding: 14px 0;
  transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 8px 0;
  background: rgba(4, 7, 15, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: min(var(--wrap), calc(100% - 44px)); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 56px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: 0.16em;
}
.brand img { border-radius: 11px; }
.brand em { font-style: normal; color: var(--orange); }
.nav-links { display: flex; gap: 6px; }
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  padding: 9px 14px; border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 46px; height: 46px; align-items: center;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-2);
  border-radius: 13px; cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(4, 7, 15, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center; gap: 40px;
  padding: 100px 32px 44px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: grid; gap: 6px; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: clamp(28px, 7vw, 40px); font-weight: 700;
  padding: 8px 0; letter-spacing: -0.02em;
  transform: translateY(24px); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
.mobile-menu.open nav a { transform: none; opacity: 1; }
.mobile-menu.open nav a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.open nav a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.open nav a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.open nav a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu.open nav a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu-foot { display: grid; gap: 16px; }
.mm-contact { color: var(--muted); font-size: 14px; text-align: center; }

/* ============ Hero ============ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--bg) url("/landing/img/hero-bg.jpg") center 30% / cover no-repeat;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1.02); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 15, 0.96) 0%, rgba(4, 7, 15, 0.82) 38%, rgba(4, 7, 15, 0.35) 75%, rgba(4, 7, 15, 0.55) 100%),
    linear-gradient(180deg, rgba(4, 7, 15, 0.55), transparent 30%, transparent 62%, var(--bg) 96%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.55; }
.hero-fade { position: absolute; inset: auto 0 0; height: 140px; background: linear-gradient(180deg, transparent, var(--bg)); z-index: 2; }

.hero-grid {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255, 138, 61, 0.35);
  background: rgba(255, 106, 0, 0.1);
  color: #ffd2b0;
  border-radius: 999px; padding: 8px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 106, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); }
}

.hero-title {
  margin: 26px 0 20px;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1.02; letter-spacing: -0.045em; font-weight: 800;
}
.ht-line { display: block; }
.ht-rotator { min-height: 1.05em; }
.rotator { position: relative; display: inline-block; }
.rotator-word { display: none; white-space: nowrap; }
.rotator-word.active { display: inline-block; }

.lead { color: #c8d2ec; font-size: clamp(16px, 1.6vw, 19px); max-width: 560px; margin: 0 0 32px; }
.lead strong { color: #fff; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: 14px 40px;
  justify-content: start; max-width: 560px;
  border-top: 1px solid var(--line); padding-top: 26px;
}
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; letter-spacing: -0.02em; }
.stat > span { color: var(--muted); font-size: 12.5px; line-height: 1.4; display: block; max-width: 150px; }

/* Telefone do hero */
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone-glow {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(47, 107, 255, 0.4), transparent 60%),
    radial-gradient(circle at 70% 65%, rgba(255, 106, 0, 0.35), transparent 60%);
  filter: blur(46px); top: 8%; z-index: -1;
}
.device {
  margin: 0; position: relative;
  width: min(320px, 78vw);
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(160deg, #262f4c, #10162b 35%, #060a16);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.device::before {
  content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 22px; border-radius: 12px; background: #05070d; z-index: 2;
}
.device img { width: 100%; height: auto; border-radius: 34px; }
.device-sm { width: min(270px, 74vw); border-radius: 38px; padding: 9px; }
.device-sm::before { top: 17px; width: 70px; height: 18px; }
.device-sm img { border-radius: 30px; }

.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(13, 19, 38, 0.82);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px; padding: 12px 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  z-index: 4;
}
.float-chip strong { display: block; font-size: 13.5px; }
.float-chip small { color: var(--muted); font-size: 11.5px; }
.chip-ico {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #fff; font-weight: 800; font-size: 13px;
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4);
}
.chip-ico-blue { background: linear-gradient(135deg, var(--blue-2), var(--blue)); box-shadow: 0 6px 18px rgba(47, 107, 255, 0.4); }
.chip-price { top: 16%; left: -6%; }
.chip-eta { bottom: 14%; right: -8%; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 4;
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.25); border-radius: 999px;
}
.scroll-hint span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 4px; background: var(--orange);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ Marquee ============ */
.marquee {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden; padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-group { display: flex; align-items: center; gap: 34px; padding-right: 34px; }
.marquee-group span {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: #c2cce8; white-space: nowrap; letter-spacing: 0.02em;
}
.marquee-group i { color: var(--orange); font-size: 9px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Seções ============ */
.section { padding: clamp(80px, 10vw, 130px) 0; position: relative; }
.section-tint {
  background:
    radial-gradient(1000px 500px at 85% 0%, rgba(47, 107, 255, 0.07), transparent 60%),
    radial-gradient(900px 500px at 10% 100%, rgba(255, 106, 0, 0.05), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.eyebrow {
  color: var(--orange); font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; margin: 0 0 14px;
}
h2 {
  font-size: clamp(32px, 4.2vw, 56px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.05; margin: 0 0 18px;
}
.sub { max-width: 590px; color: var(--muted); font-size: clamp(15px, 1.5vw, 17.5px); margin: 0 0 24px; }

/* split text */
.split-word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split-inner { display: inline-block; }

/* ============ Passos ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.step {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.step:hover { transform: translateY(-6px); border-color: rgba(255, 138, 61, 0.35); }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.step b {
  font-family: var(--font-display); font-size: 52px; font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255, 122, 26, 0.75);
}
.step-ico {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(47, 107, 255, 0.14); color: var(--blue-2);
  border: 1px solid rgba(89, 194, 255, 0.2);
}
.step h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -0.02em; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ============ Showcase do app ============ */
.showcase {
  padding: clamp(80px, 10vw, 130px) 0 0;
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(47, 107, 255, 0.08), transparent 65%),
    var(--bg);
  overflow: hidden;
}
.showcase-head { margin-bottom: 26px; }
.gallery { position: relative; }
.gallery-track {
  display: flex; gap: clamp(24px, 4vw, 64px);
  padding: 40px max(24px, calc((100vw - var(--wrap)) / 2)) 90px;
  width: max-content;
}
.g-item { margin: 0; flex: 0 0 auto; text-align: center; }
.g-item .device-sm { margin: 0 auto; transition: transform 0.4s ease; }
.g-item:hover .device-sm { transform: translateY(-10px); }
.g-item figcaption { max-width: 270px; margin: 22px auto 0; }
.g-item figcaption strong { display: block; font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; letter-spacing: -0.01em; }
.g-item figcaption span { color: var(--muted); font-size: 14px; line-height: 1.5; }

/* fallback sem JS/GSAP: scroll horizontal nativo */
html:not(.js) .gallery { overflow-x: auto; scrollbar-width: none; }
html:not(.js) .gallery::-webkit-scrollbar { display: none; }

/* fallback mobile: scroll-snap nativo */
@media (max-width: 899px) {
  .gallery { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery-track { padding: 28px 24px 60px; }
  .g-item { scroll-snap-align: center; }
}

/* ============ Frota ============ */
.fleet { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(89, 194, 255, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.card-media { overflow: hidden; aspect-ratio: 4 / 3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 20px 20px 14px; }
.card-body h3 { margin: 0 0 6px; font-size: 20px; letter-spacing: -0.01em; }
.card-body p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.card-meta {
  margin-top: auto; padding: 14px 20px 18px;
  display: flex; gap: 8px;
}
.card-meta span {
  font-size: 11.5px; font-weight: 600; color: #c2cce8;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 999px;
}

/* ============ Bento diferenciais ============ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.tile {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 28px;
  --mx: 50%; --my: 50%;
}
.tile::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(320px circle at var(--mx) var(--my), rgba(89, 194, 255, 0.1), transparent 65%);
  opacity: 0; transition: opacity 0.35s ease; pointer-events: none;
}
.tile:hover::before { opacity: 1; }
.tile-wide { grid-column: 1 / 3; grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; padding: 44px; }
.tile-wide::before { background: radial-gradient(460px circle at var(--mx) var(--my), rgba(255, 106, 0, 0.1), transparent 65%); }
.tile-kicker { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 16px; }
.tile-big { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; margin: 0 0 16px; }
.tile-wide > p:not(.tile-kicker) { color: var(--muted); max-width: 520px; margin: 0; }
.tile-ico {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255, 106, 0, 0.12); color: var(--orange-2);
  border: 1px solid rgba(255, 138, 61, 0.22); margin-bottom: 20px;
}
.tile h3 { margin: 0 0 8px; font-size: 18.5px; letter-spacing: -0.01em; }
.tile p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.tile-price {
  margin-top: 34px; display: inline-flex; align-items: center; gap: 16px;
  background: rgba(4, 7, 15, 0.55); border: 1px solid var(--line-2);
  border-radius: 16px; padding: 16px 22px; width: fit-content;
}
.tp-route { display: flex; align-items: center; gap: 4px; }
.tp-route i {
  width: 9px; height: 9px; border-radius: 50%; background: var(--blue-2); display: block; position: relative;
}
.tp-route i + i { background: var(--orange); margin-left: 26px; }
.tp-route i + i::before {
  content: ""; position: absolute; right: 13px; top: 3.5px; width: 26px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0 4px, transparent 4px 8px);
}
.tp-value { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; }
.tp-label { color: var(--muted); font-size: 12.5px; max-width: 120px; line-height: 1.35; }

/* ============ Motorista ============ */
.driver-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.driver-media { position: relative; }
.driver-media img {
  border-radius: var(--r-lg); width: 100%; height: auto;
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
}
.driver-chip {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(9, 13, 26, 0.8); border: 1px solid var(--line-2);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 16px; padding: 14px 18px;
}
.driver-chip strong { display: block; font-family: var(--font-display); font-size: 16px; }
.driver-chip span { color: var(--muted); font-size: 12.5px; }
.checks { display: grid; gap: 13px; margin: 28px 0 34px; padding: 0; list-style: none; }
.checks li { display: flex; gap: 13px; align-items: flex-start; color: #d5dcf0; font-size: 15.5px; }
.check-dot {
  flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%;
  background: rgba(255, 106, 0, 0.14); border: 1px solid rgba(255, 138, 61, 0.4);
  position: relative;
}
.check-dot::after {
  content: ""; position: absolute; left: 7px; top: 4px; width: 5px; height: 9px;
  border: solid var(--orange-2); border-width: 0 2px 2px 0; transform: rotate(42deg);
}

/* ============ FAQ ============ */
.faq-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: rgba(255, 255, 255, 0.025); border: 1px solid var(--line);
  border-radius: var(--r-sm); overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item[open] { border-color: rgba(255, 138, 61, 0.35); background: rgba(255, 255, 255, 0.04); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  cursor: pointer; list-style: none;
  padding: 19px 22px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; flex: 0 0 auto; width: 14px; height: 14px; }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; background: var(--orange-2); border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-x::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-x::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq-item[open] .faq-x::after { transform: rotate(90deg); }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* ============ CTA ============ */
.cta-section { padding-bottom: clamp(60px, 8vw, 110px); }
.cta {
  position: relative; overflow: hidden; text-align: center;
  border-radius: 36px; padding: clamp(52px, 7vw, 88px) clamp(24px, 5vw, 80px);
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(47, 107, 255, 0.22), transparent 65%),
    radial-gradient(700px 380px at 50% 115%, rgba(255, 106, 0, 0.2), transparent 65%),
    var(--bg-3);
  border: 1px solid var(--line-2);
}
.cta-glow {
  position: absolute; inset: -2px; border-radius: inherit; pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(89, 194, 255, 0.25) 48%, rgba(255, 138, 61, 0.25) 55%, transparent 72%);
  background-size: 260% 100%;
  animation: ctaSheen 6.5s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}
@keyframes ctaSheen { 0%, 100% { background-position: 130% 0; } 50% { background-position: -30% 0; } }
.cta h2 { max-width: 760px; margin-inline: auto; }
.cta p { color: var(--muted); margin: 0 0 34px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============ Footer ============ */
footer { border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 72px) 0 30px; color: var(--muted); font-size: 14px; background: var(--bg); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 44px; }
.foot-brand p { max-width: 300px; margin: 16px 0 0; }
.foot-grid h4 { color: #fff; margin: 4px 0 16px; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-grid a { transition: color 0.2s ease; }
.foot-grid a:hover { color: #fff; }
.copy {
  border-top: 1px solid var(--line); padding-top: 22px; font-size: 12.5px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.copy-tag { color: var(--orange-2); font-weight: 600; letter-spacing: 0.04em; }

/* ============ Reveal states (JS) ============ */
.js [data-reveal], .js [data-stagger] > * { opacity: 0; transform: translateY(28px); }
.js .split-inner { transform: translateY(110%); }
.js [data-phone] { opacity: 0; transform: translateY(40px) scale(0.96); }

/* ============ Responsivo ============ */
@media (max-width: 1100px) {
  .fleet { grid-template-columns: repeat(2, 1fr); }
  .chip-price { left: 0; }
  .chip-eta { right: 0; }
}

@media (max-width: 899px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-cta .btn-sm { display: none; }

  .hero { padding: 110px 0 70px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { text-align: left; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 14px 18px; }
  .hero-phone { padding: 0 10px; }
  .chip-price { top: 10%; left: -2%; }
  .chip-eta { bottom: 8%; right: -2%; }
  .scroll-hint { display: none; }

  .steps { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .tile-wide { grid-column: auto; grid-row: auto; padding: 32px 26px; }
  .driver-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid > div:first-child .btn { margin-bottom: 8px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .copy { flex-direction: column; }
}

@media (max-width: 560px) {
  .wrap { width: calc(100% - 36px); }
  .fleet { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .float-chip small { display: none; }
  .float-chip { padding: 10px 13px; border-radius: 14px; }
  .cta-actions .btn { width: 100%; }
  .foot-grid { grid-template-columns: 1fr; }
  .stat span:last-child { font-size: 11px; }
}

/* ============ Acessibilidade: movimento reduzido ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js [data-reveal], .js [data-stagger] > *, .js [data-phone] { opacity: 1; transform: none; }
  .js .split-inner { transform: none; }
  .hero-canvas { display: none; }
}
