:root {
  --bg: #ffffff; --ink: #000000; --ink-2: #333333; --muted: #6b6b6b; --line: #e6e6e6; --panel: #f4f4f4; --soft: #f7f7f7;
  --green: #05944f; --red: #e11900; --blue: #2f6cf6;
  --font: Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1); --spring: cubic-bezier(0.34, 1.3, 0.64, 1);
  --r: 20px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.55; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { letter-spacing: 0; line-height: 1.2; }
h1 { font-size: clamp(38px, 5.4vw, 68px); font-weight: 900; }
h1 em { font-style: normal; background: linear-gradient(90deg, #6b6b6b, #b5b5b5); -webkit-background-clip: text; background-clip: text; color: transparent; }
h2 { font-size: clamp(28px, 3.6vw, 46px); font-weight: 800; }
h3 { font-size: 19px; font-weight: 700; }
.lead { font-size: 18px; color: var(--muted); max-width: 640px; margin-top: 14px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.center { text-align: center; }
.ok { color: var(--green); }
.arrow { display: inline-block; transition: transform 0.2s var(--ease); margin-left: 6px; }
.btn:hover .arrow { transform: translateX(4px); }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 24px; padding: 14px 6vw; background: rgba(255,255,255,0.82); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.nav.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(0,0,0,0.05); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 21px; letter-spacing: -0.03em; }
.brand-mark { width: 30px; height: 30px; border-radius: 9px; background: #000 url('/media/icon.svg') center/cover; }
.nav-links { display: flex; gap: 24px; margin-left: auto; font-size: 14px; font-weight: 500; color: var(--ink-2); white-space: nowrap; }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: #000; transition: right 0.25s var(--ease); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; gap: 10px; }
.burger { display: none; width: 40px; height: 40px; border: none; background: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; margin-left: auto; }
.burger span { display: block; width: 18px; height: 2px; background: #000; border-radius: 2px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; border-radius: 10px; font-weight: 600; font-size: 14px; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; transition: transform 0.15s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s; }
.btn:active { transform: scale(0.96); }
.btn.solid { background: #000; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn.solid:hover { background: #1a1a1a; transform: translateY(-1px); }
.btn.ghost { background: #fff; color: #000; border-color: #000; }
.btn.ghost:hover { background: var(--panel); }
.btn.xl { padding: 16px 28px; font-size: 16px; border-radius: 12px; }
.btn.inverse.solid { background: #fff; color: #000; box-shadow: 0 8px 24px rgba(255,255,255,0.12); }
.btn.inverse.solid:hover { background: #eee; }
.btn.inverse.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn.inverse.ghost:hover { background: rgba(255,255,255,0.08); }

/* hero */
.hero { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; padding: 60px 6vw 70px; min-height: calc(100vh - 70px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background-image: radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px); background-size: 26px 26px; mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 70%); }
.glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.6; pointer-events: none; }
.g1 { width: 520px; height: 520px; right: -120px; top: -120px; background: radial-gradient(circle, #d9e6ff, transparent 70%); }
.g2 { width: 420px; height: 420px; left: 10%; bottom: -160px; background: radial-gradient(circle, #e8ffe0, transparent 70%); }
.pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 600; box-shadow: 0 4px 14px rgba(0,0,0,0.05); margin-bottom: 22px; }
.dot.live { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(5,148,79,0.5); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(5,148,79,0.5); } 70% { box-shadow: 0 0 0 10px rgba(5,148,79,0); } 100% { box-shadow: 0 0 0 0 rgba(5,148,79,0); } }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0; }
.hero-cta.center { justify-content: center; }
.hero-stats { list-style: none; display: flex; gap: 36px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 24px; }
.hero-stats b { display: block; font-size: 30px; font-weight: 900; letter-spacing: -0.03em; }
.hero-stats span { font-size: 13px; color: var(--muted); }
.hero-visual { position: relative; display: flex; justify-content: center; perspective: 1400px; }
.phone { width: 330px; height: 690px; background: #0b0b0b; border-radius: 48px; padding: 12px; box-shadow: 0 50px 100px rgba(0,0,0,0.28), inset 0 0 0 2px #2a2a2a; position: relative; overflow: hidden; }
.phone.tilt { transform: rotateY(-14deg) rotateX(6deg) rotateZ(2deg); animation: float 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: rotateY(-14deg) rotateX(6deg) rotateZ(2deg) translateY(0); } 50% { transform: rotateY(-14deg) rotateX(6deg) rotateZ(2deg) translateY(-12px); } }
/* barra de status estilo iPhone dentro da moldura */
.phone { display: flex; flex-direction: column; }
.status { position: relative; height: 44px; background: #fff; border-radius: 38px 38px 0 0; display: flex; align-items: center; justify-content: space-between; padding: 6px 26px 0; font-size: 13px; font-weight: 700; flex: none; }
.status .island { position: absolute; left: 50%; top: 9px; transform: translateX(-50%); width: 92px; height: 26px; background: #0b0b0b; border-radius: 16px; }
.status .sig { font-size: 10px; letter-spacing: 1px; }
.phone-screen { width: 100%; flex: 1; min-height: 520px; background: #fff; border-radius: 0 0 38px 38px; overflow: hidden; display: flex; flex-direction: column; padding: 10px 10px 8px; }
.mock-seg, .mock-tab, .mock-cities { display: flex; gap: 6px; margin-bottom: 8px; }
.mock-seg span, .mock-tab span, .mock-cities span { flex: 1; text-align: center; font-size: 10px; font-weight: 700; padding: 8px 4px; border-radius: 8px; background: #f2f2f2; color: #111; }
.mock-seg span.on, .mock-cities span.on, .mock-tab span.on { background: #111; color: #fff; }
.mock-card { display: flex; gap: 10px; align-items: center; padding: 10px; border: 1px solid #eee; border-radius: 12px; margin-bottom: 8px; background: #f7f7f7; }
.mock-card .car { width: 54px; height: 54px; border-radius: 8px; background: #111; flex: none; }
.mock-card b, .mock-card em, .mock-card strong { display: block; }
.mock-card b { font-size: 12px; }
.mock-card em { font-size: 10px; color: #666; font-style: normal; margin: 2px 0; }
.mock-card strong { font-size: 14px; }
.mock-tab { margin-top: auto; margin-bottom: 0; }
.mock-detail .mock-hero { height: 110px; background: #111; border-radius: 12px; margin-bottom: 12px; }
.mock-detail b { font-size: 16px; }
.mock-detail em { display: block; color: #666; font-style: normal; margin: 4px 0 10px; }
.mock-detail strong { font-size: 22px; }
.mock-cta { display: block; margin-top: auto; background: #111; color: #fff; text-align: center; padding: 12px; border-radius: 12px; font-size: 13px; font-weight: 700; }
.mock-map { position: relative; background: linear-gradient(#eef3ea, #d9e6d4); }
.mock-map .pin { position: absolute; top: 38%; left: 42%; width: 12px; height: 12px; background: #111; border-radius: 50%; }
.mock-map .pin.p2 { top: 52%; left: 62%; }
.mock-sheet { margin-top: auto; background: #fff; border-radius: 16px; padding: 14px; }
.phone.sm .phone-screen { min-height: 420px; }
.phone-shot, .phone.sm > img { width: 100%; flex: 1; min-height: 0; object-fit: cover; object-position: top; border-radius: 0 0 38px 38px; }
.phone.sm > img { border-radius: 0 0 32px 32px; }
.app-screen { width: 100%; flex: 1; min-height: 0; background: #fff; border-radius: 0 0 38px 38px; overflow: hidden; padding: 8px 10px 12px; display: flex; flex-direction: column; color: #111; }
.ui-seg { display: grid; grid-template-columns: 1fr 1fr; background: #111; color: #fff; border-radius: 8px; font-size: 9px; font-weight: 700; margin-bottom: 8px; }
.ui-seg span { padding: 8px 6px; text-align: center; }
.ui-seg span:last-child { background: #fff; color: #111; border-radius: 0 8px 8px 0; }
.ui-sort { display: flex; gap: 6px; margin-bottom: 8px; }
.ui-sort i { flex: 1; height: 8px; background: #ececec; border-radius: 99px; }
.ui-cities { display: flex; gap: 4px; margin-bottom: 8px; }
.ui-cities i { height: 16px; width: 46px; background: #f1f1f1; border-radius: 99px; }
.ui-cities i.on { background: #111; }
.ui-list { display: flex; flex-direction: column; gap: 8px; flex: 1; min-height: 0; }
.ui-card { display: grid; grid-template-columns: 56px 1fr; gap: 8px; padding: 8px; border: 1px solid #eee; border-radius: 12px; background: #fff; }
.ui-card b, .ui-card em, .ui-card small { display: block; }
.ui-thumb { background: linear-gradient(180deg, #f6f6f6, #e8e8e8); border-radius: 8px; position: relative; }
.ui-thumb::after { content: ''; position: absolute; left: 18%; right: 18%; top: 42%; height: 28%; background: #111; border-radius: 4px; }
.ui-card b { font-size: 10px; }
.ui-card em { font-style: normal; font-size: 9px; color: #6b6b6b; margin-top: 2px; }
.ui-card small { font-size: 11px; font-weight: 800; margin-top: 6px; }
.ui-hero { height: 92px; background: #111; border-radius: 10px; margin-bottom: 8px; }
.app-screen[data-screen="detail"] .ui-hero { height: 92px; }
.app-screen[data-screen="detail"] .ui-row { height: 12px; background: #f3f3f3; border-radius: 6px; margin-bottom: 6px; }
.app-screen[data-screen="assets"] .ui-map { flex: 1; border-radius: 12px; background: radial-gradient(circle at 42% 40%, #dce8ff 0 16%, transparent 40%), linear-gradient(#eef3ea, #dfe8d8); position: relative; }
.app-screen[data-screen="assets"] .ui-pin { position: absolute; width: 10px; height: 10px; background: #111; border-radius: 50%; top: 38%; left: 46%; box-shadow: 18px 22px 0 #111, -22px 16px 0 #111; }
.app-screen[data-screen="station"] .ui-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.app-screen[data-screen="station"] .ui-box { height: 54px; background: #f4f4f4; border-radius: 10px; }
.app-screen[data-screen="news"] .ui-news { height: 64px; background: #f5f5f5; border-radius: 10px; margin-bottom: 8px; }
.phone.sm { width: 250px; height: 520px; border-radius: 40px; padding: 10px; box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 0 2px #2a2a2a; }
.phone.sm .phone-screen, .phone.sm .app-screen { border-radius: 0 0 32px 32px; min-height: 420px; }
.phone.sm .status { height: 36px; border-radius: 32px 32px 0 0; font-size: 11px; padding: 4px 20px 0; }
.phone.sm .status .island { width: 72px; height: 20px; top: 8px; }
.float-card { position: absolute; background: #fff; border-radius: 16px; padding: 12px 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.16); min-width: 190px; animation: floaty 6s ease-in-out infinite; border: 1px solid #eee; }
.float-card small { color: var(--muted); font-size: 11px; }
.float-card b { display: block; font-size: 22px; color: var(--green); letter-spacing: -0.02em; }
.float-card b.dark { color: #000; }
.float-card b .ok { font-style: normal; font-size: 11px; background: #e6f9ef; color: var(--green); padding: 2px 8px; border-radius: 999px; vertical-align: middle; margin-left: 6px; }
.float-card span { font-size: 11px; color: var(--muted); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.fc1 { left: -20px; top: 80px; animation-delay: 1s; }
.fc2 { right: -30px; bottom: 150px; animation-delay: 2.5s; }
.fc3 { left: -8px; bottom: 50px; animation-delay: 4s; }

/* marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #000; color: #fff; padding: 14px 0; }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; font-weight: 600; font-size: 15px; letter-spacing: 0.02em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* sections */
.section { padding: 100px 6vw; }
.section.dark { background: #000; color: #fff; }
.section.dark .lead, .section.dark .eyebrow { color: #a6a6a6; }
.section.soft { background: var(--soft); }
.section-head { margin-bottom: 44px; max-width: 760px; }
.section-head.split { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; gap: 20px; flex-wrap: wrap; }

.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.steps li:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.steps .num { position: absolute; top: 18px; right: 18px; font-size: 44px; font-weight: 900; color: #eee; letter-spacing: -0.04em; line-height: 1; }
.steps svg { width: 40px; height: 40px; fill: none; stroke: #000; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 16px; }
.steps p { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* app shots */
.shots { display: flex; gap: 22px; overflow-x: auto; padding: 10px 0 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.shots::-webkit-scrollbar { display: none; }
.shot { flex: 0 0 auto; scroll-snap-align: start; text-align: center; margin: 0; }
.shot figcaption { margin-top: 18px; max-width: 250px; }
.shot figcaption b { display: block; font-size: 16px; }
.shot figcaption span { font-size: 13px; color: #a6a6a6; }
.shot .phone { transition: transform 0.35s var(--ease); }
.shot:hover .phone { transform: translateY(-8px) scale(1.02); }

/* bento */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(210px, auto); gap: 16px; }
.b { background: var(--panel); border-radius: var(--r); padding: 26px; display: flex; flex-direction: column; transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.b:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,0.08); }
.b p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.b-wide { grid-column: span 2; background: #000; color: #fff; flex-direction: row; align-items: center; gap: 24px; }
.b-wide .eyebrow { color: #a6a6a6; }
.b-wide p { color: #a6a6a6; }
.b-wide h3 { font-size: 24px; }
.b-tall { grid-row: span 2; }
.bico { width: 40px; height: 40px; fill: none; stroke: #000; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 16px; }
.mini-chart { flex: 0 0 46%; background: #111; border-radius: 14px; padding: 16px; }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 110px; }
.bars i { flex: 1; height: var(--h); background: #333; border-radius: 4px 4px 0 0; transform-origin: bottom; animation: grow 0.8s var(--ease) both; }
.bars i.today { background: #fff; }
.bars i:nth-child(n) { animation-delay: calc(var(--i, 0) * 40ms); }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.chart-foot { display: flex; justify-content: space-between; margin-top: 10px; font-size: 12px; color: #a6a6a6; }
.chart-foot b { font-size: 14px; }
.chat-demo { margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.cm { max-width: 90%; padding: 9px 12px; border-radius: 14px; font-size: 13px; line-height: 1.4; }
.cm.me { align-self: flex-end; background: #000; color: #fff; border-bottom-right-radius: 4px; }
.cm.them { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.cm small { display: block; font-size: 10px; font-weight: 700; color: var(--muted); }
.cm.file { display: flex; align-items: center; gap: 10px; }
.cm.file i { font-style: normal; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 8px 6px; border-radius: 6px; }

/* frota */
.fleet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.veh { background: #fff; border-radius: var(--r); padding: 26px; border: 1px solid var(--line); transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.veh:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.veh-art { height: 150px; width: 100%; margin: 0 0 18px; border-radius: 16px; background: #111; position: relative; overflow: hidden; }
.veh-art::before, .veh-art::after { content: ''; position: absolute; }
.veh-art.taxi { background: linear-gradient(180deg, #f6f6f6, #e8e8e8); }
.veh-art.taxi::before { left: 18%; right: 18%; top: 46%; height: 38px; background: #111; border-radius: 10px 10px 6px 6px; }
.veh-art.taxi::after { left: 28%; right: 28%; top: 28%; height: 28px; background: #2a2a2a; border-radius: 8px 8px 0 0; }
.veh-art.van { background: linear-gradient(180deg, #f3f6ff, #e4eaf8); }
.veh-art.van::before { left: 14%; right: 14%; top: 38%; height: 52px; background: #1a1a1a; border-radius: 8px; }
.veh-art.van::after { left: 20%; width: 36%; top: 22%; height: 28px; background: #333; border-radius: 6px 6px 0 0; }
.veh-art.station { background: linear-gradient(180deg, #eef8f1, #dceee2); }
.veh-art.station::before { left: 50%; top: 22%; width: 14px; height: 86px; background: #111; border-radius: 8px; transform: translateX(-50%); }
.veh-art.station::after { left: 28%; right: 28%; bottom: 22%; height: 18px; background: #05944f; border-radius: 999px; }
.veh .tag { display: inline-block; background: #000; color: #fff; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 5px; margin-bottom: 10px; }
.veh p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.veh ul { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.veh li { background: var(--panel); border-radius: 999px; padding: 5px 11px; font-size: 12px; font-weight: 600; }

/* plans */
.plan-tabs { display: inline-flex; background: var(--panel); border-radius: 999px; padding: 4px; }
.plan-tabs button { border: none; background: transparent; padding: 10px 20px; border-radius: 999px; font: inherit; font-weight: 600; cursor: pointer; color: #000; transition: background 0.2s; }
.plan-tabs button.on { background: #000; color: #fff; }
.grid { display: grid; gap: 18px; }
.plans { grid-template-columns: repeat(4, 1fr); margin-bottom: 30px; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; position: relative; overflow: hidden; animation: rise 0.5s var(--ease) both; transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,0.08); }
.plan .pimg { height: 120px; display: flex; align-items: center; justify-content: center; background: var(--panel); border-radius: 14px; margin: 10px 0 14px; }
.plan img { max-height: 96px; object-fit: contain; }
.plan .tag { display: inline-block; background: #000; color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 5px; margin-left: 6px; vertical-align: middle; }
.plan h3 { font-size: 17px; }
.plan .city { color: var(--muted); font-size: 12px; margin-top: 2px; }
.plan .kv { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 10px; margin: 6px 0 14px; font-size: 12px; color: var(--muted); }
.plan .kv b { display: block; color: #000; font-size: 14px; }
.plan .price { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 12px; }
.plan .price b { font-size: 22px; letter-spacing: -0.02em; }
.plan .price a { font-size: 13px; font-weight: 700; border-bottom: 2px solid #000; }
.plan .cd { position: absolute; top: 14px; right: 14px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 5px; font-variant-numeric: tabular-nums; }
.plans .empty { grid-column: 1 / -1; color: var(--muted); text-align: center; padding: 30px; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* afiliados */
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.checks { list-style: none; margin: 24px 0 30px; }
.checks li { padding-left: 32px; position: relative; margin-bottom: 12px; color: #d6d6d6; }
.checks li::before { content: ''; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--green); }
.checks li::after { content: ''; position: absolute; left: 7px; top: 7px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.tiers { display: grid; gap: 12px; }
.tier { background: #111; border: 1px solid #262626; border-radius: 16px; padding: 18px 20px; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; transition: transform 0.25s var(--ease), border-color 0.25s; }
.tier:hover { transform: translateX(6px); border-color: var(--c); }
.gem { width: 16px; height: 16px; background: var(--c); transform: rotate(45deg); border-radius: 3px; box-shadow: 0 0 18px var(--c); }
.tier b { font-size: 20px; letter-spacing: -0.02em; display: block; }
.tier small { color: #a6a6a6; font-size: 12px; }
.tier em { font-style: normal; font-weight: 800; font-size: 16px; white-space: nowrap; }
.tier-note { color: #a6a6a6; font-size: 12px; margin-top: 6px; }

/* regras */
.rules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rule { border-top: 3px solid #000; padding-top: 18px; }
.rule b { display: block; font-size: 40px; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 8px; }
.rule p { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* faq */
.faq { max-width: 840px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 6px 26px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq details:last-child { border-bottom: none; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 17px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 24px; color: var(--muted); transition: transform 0.25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin-top: 10px; max-width: 720px; }

/* cta + footer */
.cta-final { position: relative; overflow: hidden; margin: 0 6vw 100px; background: #000; color: #fff; border-radius: 28px; padding: 80px 6vw; text-align: center; }
.cta-final .g3 { width: 600px; height: 600px; left: 50%; top: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%); }
.cta-final p { color: #a6a6a6; margin-top: 10px; font-size: 18px; position: relative; }
.cta-final h2, .cta-final .hero-cta { position: relative; }
.footer { border-top: 1px solid var(--line); padding: 50px 6vw 30px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: start; }
.footer p { color: var(--muted); font-size: 14px; margin-top: 10px; max-width: 420px; }
.footer-cols { display: flex; gap: 60px; }
.footer-cols div { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-cols b { margin-bottom: 4px; }
.footer-cols a { color: var(--muted); }
.footer-cols a:hover { color: #000; }
.footer .fine { grid-column: 1 / -1; font-size: 12px; max-width: none; border-top: 1px solid var(--line); padding-top: 16px; }
.sticky-cta { display: none; }

/* reveal on scroll */
.reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }

/* responsive */
@media (max-width: 1150px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: repeat(3, 1fr); }
  .steps, .rules { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav.open .nav-links, .nav.open .nav-cta { display: flex; flex-direction: column; width: 100%; gap: 12px; }
  .nav.open { flex-wrap: wrap; }
  .burger { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 40px; min-height: 0; }
  .hero-visual { margin-top: 30px; }
  .phone.tilt { transform: none; animation: floaty 6s ease-in-out infinite; }
  .float-card { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .b-wide { grid-column: span 2; flex-direction: column; align-items: stretch; }
  .mini-chart { flex: none; }
  .b-tall { grid-row: auto; }
  .fleet, .plans { grid-template-columns: 1fr 1fr; }
  .footer { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40; background: #000; color: #fff; border-radius: 12px; padding: 15px; justify-content: center; font-weight: 700; box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
}
@media (max-width: 560px) {
  .bento, .fleet, .plans, .steps, .rules { grid-template-columns: 1fr; }
  .b-wide { grid-column: span 1; }
  .phone { width: 290px; height: 600px; }
  .section { padding: 64px 5vw 80px; }
  .hero-stats { gap: 20px; }
  .hero-stats b { font-size: 24px; }
  .footer-cols { gap: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.veh img { height: 150px; width: 100%; object-fit: contain; margin: 0 0 18px; filter: drop-shadow(0 20px 20px rgba(0,0,0,0.12)); }
