/* ============================================================
   GiroMax, Landing Page v3
   Tokens semânticos (claro/escuro intercalados) · GSAP · interativo
   ============================================================ */

:root {
  /* Marca fixa */
  --navy: #0B1A2A;
  --navy-deep: #06101B;
  --verde: #0F9D58;
  --verde-bright: #1FCB73;
  --verde-soft: #E2F5EA;
  --verde-ink: #0A5C34;
  --ambar: #FBBC04;
  --ambar-soft: #FEF4D0;
  --ambar-ink: #6E4F00;
  --azul: #4285F4;
  --coral: #EA4335;

  /* TEMA ESCURO (default) */
  --bg: #0B1A2A;
  --bg-2: #0E2233;
  --surface: rgba(255, 255, 255, .04);
  --surface-2: rgba(255, 255, 255, .065);
  --bd: rgba(255, 255, 255, .10);
  --bd-2: rgba(255, 255, 255, .18);
  --txt: #EAF1F5;
  --txt-2: rgba(234, 241, 245, .64);
  --txt-3: rgba(234, 241, 245, .40);
  --head: #FFFFFF;
  --accent: var(--verde-bright);
  --tagv-bg: rgba(31, 203, 115, .14); --tagv-tx: var(--verde-bright); --tagv-bd: rgba(31, 203, 115, .3);
  --taga-bg: rgba(251, 188, 4, .14); --taga-tx: var(--ambar); --taga-bd: rgba(251, 188, 4, .3);

  --r-card: 14px; --r-sheet: 22px; --r-pill: 999px; --r-btn: 11px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --maxw: 1240px; --gutter: 26px;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* TEMA CLARO por seção */
.theme-light {
  --bg: #F4F7F9;
  --bg-2: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #EFF2F5;
  --bd: #E1E6EB;
  --bd-2: #CDD5DC;
  --txt: #3A4651;
  --txt-2: #5C6671;
  --txt-3: #8C949D;
  --head: #0B1A2A;
  --accent: var(--verde-ink);
  --tagv-bg: var(--verde-soft); --tagv-tx: var(--verde-ink); --tagv-bd: rgba(15, 157, 88, .22);
  --taga-bg: var(--ambar-soft); --taga-tx: var(--ambar-ink); --taga-bd: rgba(183, 130, 12, .25);
}
.theme-paper { --bg: #FFFFFF; }

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); background: var(--navy); color: var(--txt);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(31, 203, 115, .45); border-radius: 8px; }
::selection { background: rgba(31, 203, 115, .28); color: #fff; }

.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(58px, 6.5vw, 98px); position: relative; background: var(--bg); color: var(--txt); }

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -.03em; line-height: 1.02; color: var(--head); }
.display { font-size: clamp(42px, 6.2vw, 82px); font-weight: 600; line-height: .98; letter-spacing: -.04em; color: var(--head); }
.h-xl { font-size: clamp(29px, 3.4vw, 45px); letter-spacing: -.035em; line-height: 1.05; }
.h-lg { font-size: clamp(24px, 2.5vw, 35px); letter-spacing: -.03em; line-height: 1.08; }
.h-md { font-size: clamp(20px, 1.8vw, 25px); letter-spacing: -.025em; }
.lead { font-size: clamp(16px, 1.1vw, 18px); color: var(--txt-2); line-height: 1.58; font-weight: 400; }
p { text-wrap: pretty; }
em { font-style: normal; color: var(--accent); }
strong { color: var(--head); font-weight: 600; }

.eyebrow { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 11px; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .55; }
.eyebrow.center { justify-content: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 16px; font-weight: 600; letter-spacing: -.01em; padding: 15px 26px; border-radius: var(--r-btn); transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease), border-color .25s; position: relative; white-space: nowrap; will-change: transform; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--verde); color: #fff; box-shadow: 0 8px 30px -8px rgba(15, 157, 88, .65); }
.btn-primary:hover { background: var(--verde-bright); box-shadow: 0 16px 44px -8px rgba(31, 203, 115, .6); }
.btn-ghost { background: var(--surface-2); color: var(--txt); border: 1px solid var(--bd-2); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--accent); }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* Pills */
.pill { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: var(--r-pill); border: 1px solid var(--bd); background: var(--surface-2); color: var(--txt-2); }
.dot { width: 7px; height: 7px; border-radius: 50%; }
.dot.verde { background: var(--verde-bright); box-shadow: 0 0 10px var(--verde-bright); }
.dot.ambar { background: var(--ambar); box-shadow: 0 0 10px var(--ambar); }
.dot.azul { background: var(--azul); }
.tag-verde { background: var(--tagv-bg); color: var(--tagv-tx); border-color: var(--tagv-bd); }
.tag-ambar { background: var(--taga-bg); color: var(--taga-tx); border-color: var(--taga-bd); }

.glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }

/* Brand + animated mark */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .mark { width: 27px; height: 27px; flex: none; overflow: visible; }
.brand .mark rect { transform-box: fill-box; transform-origin: bottom; }
.brand .word { font-size: 22px; letter-spacing: -.04em; line-height: 1; }
.brand .word .giro { color: var(--head); font-weight: 500; }
.brand .word .max { color: var(--verde-bright); font-weight: 700; }
.theme-light .brand .word .giro { color: #0B1A2A; }

/* ============================================================ HEADER */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .3s, border-color .3s, backdrop-filter .3s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(8, 18, 29, .72); backdrop-filter: saturate(160%) blur(16px); border-bottom-color: rgba(255,255,255,.1); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.site-header .brand .word .giro { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { font-size: 15px; font-weight: 500; color: rgba(234,241,245,.64); padding: 9px 14px; border-radius: 8px; transition: color .2s, background .2s; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.18); }
.hamburger { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.hamburger:hover { background: rgba(255,255,255,.06); }
.hamburger svg { width: 24px; stroke: #fff; }
.mobile-menu { position: fixed; inset: 76px 0 0 0; z-index: 99; background: #06101B;
  backdrop-filter: saturate(150%) blur(22px); padding: 18px var(--gutter) calc(24px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain; transform: translateY(-14px); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 48px 48px; opacity: .35; -webkit-mask-image: linear-gradient(#000, transparent 72%); mask-image: linear-gradient(#000, transparent 72%); }
.mobile-menu > * { position: relative; z-index: 1; }
.mobile-menu-head { padding: 8px 2px 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu-kicker { display: block; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--verde-bright); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 10px; padding-block: 16px; }
.mobile-menu-links a { display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 12px; min-height: 68px; padding: 12px 14px; color: #EAF1F5; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.045); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); transition: transform .2s var(--ease), border-color .2s, background .2s; }
.mobile-menu-links a:active { transform: scale(.985); }
.mobile-menu-links a:hover { border-color: rgba(31,203,115,.34); background: rgba(31,203,115,.075); }
.mobile-menu-links .mm-ic { color: var(--verde-bright); width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; background: rgba(31,203,115,.1); border: 1px solid rgba(31,203,115,.2); }
.mobile-menu-links .mm-ic svg { width: 18px; height: 18px; stroke: currentColor; }
.mobile-menu-links .mm-copy { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.mobile-menu-links .mm-copy strong { font-size: 16px; line-height: 1.1; letter-spacing: -.02em; color: #fff; }
.mobile-menu-links .mm-copy small { font-size: 12.5px; line-height: 1.35; color: rgba(234,241,245,.54); }
.mobile-menu .btn { width: 100%; margin-top: auto; }
.mobile-menu-cta { min-height: 54px; box-shadow: 0 18px 42px -18px rgba(31,203,115,.9); }
.mobile-menu-note { margin-top: 11px; text-align: center; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0; color: rgba(234,241,245,.46); }

/* ============================================================ HERO */
.hero { position: relative; padding-top: clamp(80px, 14vh, 120px); padding-bottom: clamp(42px, 9vh, 74px); overflow: hidden; background: var(--navy); }
.aurora { position: absolute; inset: -20% -10% auto -10%; height: 120%; z-index: 0; pointer-events: none; filter: blur(60px); opacity: .9; transform: translateZ(0); }
.aurora span { position: absolute; border-radius: 50%; mix-blend-mode: screen; will-change: transform; }
.aurora .a1 { width: 60vw; height: 60vw; top: -25vw; right: -10vw; background: radial-gradient(circle, rgba(31,203,115,.5), transparent 62%); animation: drift1 18s ease-in-out infinite; }
.aurora .a2 { width: 46vw; height: 46vw; bottom: -22vw; left: -8vw; background: radial-gradient(circle, rgba(66,133,244,.34), transparent 62%); animation: drift2 22s ease-in-out infinite; }
.aurora .a3 { width: 34vw; height: 34vw; top: 18vw; left: 36vw; background: radial-gradient(circle, rgba(15,157,88,.3), transparent 60%); animation: drift3 16s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6vw,4vw) scale(1.1); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(5vw,-3vw) scale(1.12); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(3vw,3vw) scale(.9); } }
@media (prefers-reduced-motion: reduce) { .aurora span { animation: none; } }
.hero-grid-lines { position: absolute; inset: 0; z-index: 0; opacity: .4; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 66px 66px; -webkit-mask-image: radial-gradient(75% 65% at 50% 32%, #000, transparent 78%); mask-image: radial-gradient(75% 65% at 50% 32%, #000, transparent 78%); }
.hero, .hero * { --txt: #EAF1F5; --txt-2: rgba(234,241,245,.64); --txt-3: rgba(234,241,245,.4); --head: #fff; color: var(--txt); }
.hero-inner { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: clamp(32px, 4vw, 60px); align-items: center; }
.hero-grid > * { min-width: 0; }
.badge-row { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-bottom: clamp(20px, 3.2vh, 28px); }
/* padding-bottom estende a máscara p/ não cortar descendentes (g, y, ç);
   margin-bottom negativo igual mantém o mesmo espaçamento entre linhas */
.hero h1 .ln { display: block; overflow: hidden; padding-bottom: .18em; margin-bottom: -.18em; }
.hero h1 .ln > span { display: inline-block; }
.hero .lead { margin-top: clamp(20px, 3.2vh, 28px); max-width: 520px; color: var(--txt-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(24px, 3.8vh, 32px); }
.hero-hint { font-size: 13.5px; color: var(--txt-3); display: flex; align-items: center; gap: 8px; margin-top: clamp(12px, 2.2vh, 18px); }
.hero-hint svg { width: 15px; height: 15px; stroke: var(--verde-bright); }
.hero-trial { font-family: var(--mono); font-size: 12.5px; letter-spacing: .03em; color: var(--verde-bright); margin-top: clamp(14px, 2.2vh, 18px); }

/* ---------- Interactive order builder ---------- */
.builder { position: relative; padding-top: clamp(8px, 1.5vh, 20px); }
/* Espelha o tema dark REAL do app (styles/globals.css html.dark) */
.builder .phone { --p-canvas:#0d0d10; --p-card:#1c1c21; --p-sand:#26262b; --p-line:#2c2c33; --p-ink:#f4f4f5; --p-ink2:#c9cace; --p-ink3:#9a9ba2; --p-ink4:#6c6d74; --p-verde:#0F9D58; --p-verde-bright:#1FCB73; --p-verde-ink:#5ED99A;
  position: relative; z-index: 2; width: 100%; max-width: 332px; margin: 0 auto; background: #000; border-radius: 44px; padding: 7px; box-shadow: 0 50px 110px -20px rgba(0,0,0,.85); border: 1px solid rgba(255,255,255,.14); }
.phone-scr { position: relative; background: var(--p-canvas); border-radius: 38px; overflow: hidden; color: var(--p-ink); }
.ph-st { display: flex; justify-content: space-between; align-items: center; padding: 12px 22px 4px; font-size: 12.5px; font-weight: 600; color: var(--p-ink); }
.ph-sys { display: inline-flex; align-items: center; gap: 6px; }
.ph-sys svg { width: 15px; height: 13px; color: var(--p-ink); }
.ph-app { padding: 8px 16px 4px; }
.ph-hd { display: flex; align-items: center; gap: 12px; padding: 6px 2px 16px; }
.ph-back { width: 36px; height: 36px; border-radius: 11px; background: var(--p-sand); border: 1px solid var(--p-line); display: grid; place-items: center; flex: none; }
.ph-back svg { width: 18px; height: 18px; stroke: var(--p-ink); }
.ph-step { font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--p-ink3); }
.ph-tt { font-size: 23px; font-weight: 700; letter-spacing: -.03em; margin-top: 2px; color: var(--p-ink); }
.ph-scan { width: 100%; height: 56px; border-radius: 16px; border: 1px solid var(--p-line); background: var(--p-sand); display: flex; align-items: center; justify-content: center; gap: 11px; color: var(--p-ink); font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s, transform .15s; }
.ph-scan:hover { background: #303036; }
.ph-scan:active { transform: scale(.985); }
.ph-scan svg { width: 21px; height: 21px; stroke: var(--p-ink); }
.ph-scan.scanning { animation: scanPulse .6s ease; }
@keyframes scanPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(31,203,115,0); } 50% { box-shadow: inset 0 0 0 1.5px rgba(31,203,115,.55), inset 0 0 28px rgba(31,203,115,.22); } }
.ph-sec { font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--p-ink3); margin: 18px 0 9px; }
.ph-list { display: flex; flex-direction: column; gap: 8px; }
.ph-empty { border: 1.5px dashed var(--p-line); border-radius: 16px; color: var(--p-ink4); font-size: 13px; text-align: center; padding: 26px 18px; line-height: 1.5; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ph-empty svg { width: 26px; height: 26px; stroke: var(--p-ink4); }
.ph-it { background: var(--p-card); border: 1px solid var(--p-line); border-radius: 14px; padding: 11px 13px; display: flex; align-items: center; gap: 11px; }
.ph-it .sw { width: 4px; align-self: stretch; min-height: 32px; border-radius: 3px; }
.ph-it .pi { flex: 1; min-width: 0; }
.ph-it .pn { font-size: 13.5px; font-weight: 600; color: var(--p-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-it .pm { font-size: 10.5px; color: var(--p-ink3); margin-top: 4px; display: flex; gap: 7px; align-items: center; }
.ph-it .pp { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--p-ink); text-align: right; }
.ph-it .pq { font-family: var(--mono); font-size: 10.5px; color: var(--p-ink3); margin-top: 2px; text-align: right; }
.mini { font-size: 8.5px; font-weight: 700; padding: 2px 7px; border-radius: 999px; letter-spacing: .02em; }
.mini.v { background: rgba(15,157,88,.18); color: var(--p-verde-ink); }
.mini.a { background: rgba(251,188,4,.16); color: #F2C94C; }
.ph-pay { display: flex; gap: 8px; overflow: hidden; }
.ph-pay .pay { font-size: 12.5px; font-weight: 600; color: var(--p-ink2); background: var(--p-card); border: 1px solid var(--p-line); border-radius: 999px; padding: 9px 15px; white-space: nowrap; }
.ph-pay .pay.on { color: var(--p-ink); border-color: rgba(255,255,255,.85); }
.ph-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--p-line); }
.ph-tot { display: flex; justify-content: space-between; align-items: center; }
.ph-tot .tl2 { font-size: 12px; color: var(--p-ink3); }
.ph-tot .tv { font-family: var(--mono); font-size: 21px; font-weight: 700; color: var(--p-ink); }
.ph-go { margin-top: 12px; background: var(--p-verde); color: #fff; text-align: center; font-size: 15px; font-weight: 600; padding: 14px; border-radius: 14px; transition: background .2s, transform .15s; cursor: pointer; }
.ph-go:hover { background: var(--p-verde-bright); }
.ph-go:active { transform: scale(.985); }
.ph-nav { margin-top: 12px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--p-line); background: var(--p-canvas); display: flex; align-items: flex-end; justify-content: space-between; }
.ph-nav .nv { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 9.5px; font-weight: 500; color: var(--p-ink4); }
.ph-nav .nv svg { width: 20px; height: 20px; stroke: var(--p-ink4); }
.ph-nav .nv.on { color: var(--p-verde-ink); }
.ph-nav .nv.on svg { stroke: var(--p-verde-ink); }
.ph-nav .fab { flex: none; transform: translateY(-8px); }
.ph-nav .fab svg { width: 24px; height: 24px; stroke: #fff; }
.ph-nav .fab { width: 54px; height: 54px; border-radius: 17px; background: var(--p-verde); display: grid; place-items: center; box-shadow: 0 10px 24px -6px rgba(15,157,88,.7); }

/* tela de confirmação (Finalizar venda) */
.ph-done { position: absolute; inset: 0; z-index: 6; background: var(--p-canvas); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px 26px; gap: 4px; opacity: 0; visibility: hidden; transform: scale(1.02); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
.ph-done.show { opacity: 1; visibility: visible; transform: none; }
.ph-done-ic { width: 76px; height: 76px; border-radius: 50%; background: rgba(15,157,88,.16); color: var(--p-verde-ink); display: grid; place-items: center; margin-bottom: 18px; }
.ph-done.show .ph-done-ic { animation: donepop .5s var(--ease) both; }
@keyframes donepop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
.ph-done-ic svg { width: 36px; height: 36px; stroke: var(--p-verde-ink); }
.ph-done-tt { font-size: 22px; font-weight: 700; letter-spacing: -.02em; color: var(--p-ink); }
.ph-done-sub { font-size: 13px; color: var(--p-ink3); line-height: 1.5; max-width: 24ch; margin-top: 6px; }
.ph-done-card { width: 100%; background: var(--p-card); border: 1px solid var(--p-line); border-radius: 16px; padding: 6px 14px; margin: 22px 0 16px; }
.ph-done-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; font-size: 13px; color: var(--p-ink3); }
.ph-done-row + .ph-done-row { border-top: 1px solid var(--p-line); }
.ph-done-row .num, .ph-done-row span:last-child { color: var(--p-ink); font-weight: 600; }
.ph-done-row:first-child .num { font-family: var(--mono); font-size: 16px; color: var(--p-verde-ink); }
.ph-done-sync { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--p-ink3); }
.ph-done-sync .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--p-verde-bright); box-shadow: 0 0 8px var(--p-verde-bright); }

/* shelf of tappable products */
.shelf { margin-top: 18px; }
.shelf-label { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--txt-3); display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.shelf-label .reset { color: var(--txt-2); cursor: pointer; border: 1px solid var(--bd); padding: 4px 10px; border-radius: 999px; transition: color .2s, border-color .2s; }
.shelf-label .reset:hover { color: var(--verde-bright); border-color: var(--verde); }
.shelf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.prod-btn { display: flex; align-items: center; gap: 9px; padding: 8px 9px; border-radius: 11px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); text-align: left; cursor: pointer; transition: transform .15s, border-color .2s, background .2s; }
.prod-btn:hover { transform: translateY(-2px); border-color: rgba(31,203,115,.4); background: rgba(31,203,115,.06); }
.prod-btn:active { transform: translateY(0) scale(.99); }
.prod-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.prod-btn .pb-sw { width: 5px; height: 26px; border-radius: 3px; flex: none; }
.prod-btn .pb-i { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.prod-btn .pb-n { font-size: 12px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prod-btn .pb-m { font-size: 10px; color: var(--txt-3); margin-top: 1px; font-family: var(--mono); white-space: nowrap; }
.prod-btn .pb-add { width: 23px; height: 23px; border-radius: 7px; background: rgba(31,203,115,.18); color: var(--verde-bright); display: flex; align-items: center; justify-content: center; font-size: 16px; line-height: 1; flex: none; transition: background .2s, color .2s, transform .2s; }
.prod-btn:hover .pb-add { background: var(--verde); color: #fff; transform: scale(1.1); }
.builder .ghint { font-size: 12px; color: var(--txt-3); text-align: center; margin-top: 14px; display: flex; align-items: center; gap: 7px; justify-content: center; }
.builder .ghint svg { width: 14px; height: 14px; stroke: var(--verde-bright); }

/* fly chip */
.fly { position: fixed; z-index: 200; pointer-events: none; background: var(--verde); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px; box-shadow: 0 8px 24px rgba(15,157,88,.5); }

/* floating credibility chips */
.fchip { position: absolute; z-index: 5; background: rgba(13,28,41,.92); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 11px 14px; display: flex; align-items: center; gap: 11px; box-shadow: 0 20px 50px -16px rgba(0,0,0,.7); }
.fchip .fi { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex: none; }
.fchip .fi svg { width: 17px; height: 17px; }
.fchip .ft { font-size: 12px; font-weight: 600; line-height: 1.2; color: #fff; }
.fchip .fs { font-size: 10.5px; color: var(--txt-3); }
.c-stock .fi { background: rgba(31,203,115,.16); } .c-stock .fi svg { stroke: var(--verde-bright); }
.c-sync .fi { background: rgba(251,188,4,.16); } .c-sync .fi svg { stroke: var(--ambar); }

/* Selos de confiança abaixo dos CTAs (antes flutuavam sobre o mockup) */
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(20px, 3vh, 28px); }
.hero-trust .fchip { position: static; }

/* Hero-copy centralizado (badges, título, texto, CTAs e selos) em todas as larguras */
.hero-copy { text-align: center; }
.hero-copy .badge-row { justify-content: center; }
.hero-copy .lead { margin-inline: auto; }
.hero-copy .hero-actions { justify-content: center; }
.hero-copy .hero-hint { justify-content: center; }
.hero-copy .hero-trust { justify-content: center; }

/* Proof band, faixa de personas */
.proof-band { display: flex; flex-direction: column; gap: 12px; margin-bottom: clamp(34px, 4vw, 56px); padding-block: clamp(20px, 2.4vw, 30px); border-block: 1px solid var(--bd); position: relative; z-index: 2; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.proof-row { overflow: hidden; }
.proof-track { display: flex; gap: 14px; width: max-content; animation: proof-scroll 38s linear infinite; }
@keyframes proof-scroll { to { transform: translateX(-50%); } }

.proof-item { display: inline-flex; align-items: center; gap: 10px; flex: none; white-space: nowrap; padding: 9px 17px 9px 9px; border-radius: var(--r-pill); border: 1px solid var(--bd); background: var(--surface-2); font-size: clamp(13px, 1.25vw, 15px); font-weight: 500; letter-spacing: -.01em; color: var(--txt); transition: border-color .25s var(--ease), background .25s var(--ease); }
.proof-item:hover { border-color: var(--bd-2); }
.proof-item .pi-ic { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 9px; flex: none; background: rgba(255,255,255,.06); }
.proof-item .pi-ic svg { width: 16px; height: 16px; fill: none; stroke: var(--txt-2); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* Feat band, funcionalidades entre hero e problema · desliza para a direita */
.feat-band { padding-block: clamp(20px, 2.4vw, 30px); border-bottom: 1px solid var(--bd); position: relative; z-index: 2; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
@keyframes feat-scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.feat-rtl { animation-name: feat-scroll-right; animation-duration: 59s; animation-timing-function: linear; animation-iteration-count: infinite; }
.feat-band .proof-item .pi-ic { background: rgba(31,203,115,.1); }
.feat-band .proof-item .pi-ic svg { stroke: var(--verde-bright); }
@media (prefers-reduced-motion: reduce) {
  .feat-rtl { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  .feat-band { -webkit-mask-image: none; mask-image: none; }
}

/* a faixa é a transição de entrada → encosta no topo da seção (sem o padding-top de seção) */
#solucao { padding-top: 0; }

@media (prefers-reduced-motion: reduce) {
  .proof-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  .proof-band { -webkit-mask-image: none; mask-image: none; }
}

/* ============================================================ SECTION HEADS */
.sec-head { max-width: 820px; }
.sec-head .eyebrow { margin-bottom: 15px; }
.sec-head .lead { margin-top: 15px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: inline-block; }

/* ============================================================ COM vs SEM */
/* ---------- Comparação pareada (Hoje → Com o GiroMax) ---------- */
.compare { margin-top: 28px; border: 1px solid var(--bd); border-radius: var(--r-sheet); overflow: hidden;
  /* metade direita com leve banho verde p/ reforçar o "depois" */
  background: linear-gradient(90deg, var(--surface) 0 50%, rgba(15,157,88,.05) 50% 100%); }
.compare-head, .crow { display: grid; grid-template-columns: 1fr 44px 1fr; align-items: center; column-gap: clamp(10px, 1.6vw, 22px); padding-inline: clamp(20px, 2.4vw, 30px); }
.compare-head { padding-block: 16px; border-bottom: 1px solid var(--bd); }
.ch { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--txt-3); font-weight: 600; }
.ch-good { color: var(--accent); }
.ch .ch-stat { margin-left: 4px; padding: 3px 9px; border-radius: 999px; font-size: 10.5px; letter-spacing: .06em; background: rgba(234,67,53,.1); color: var(--coral); }
.ch-good .ch-stat { background: rgba(15,157,88,.13); color: var(--verde); }

.crow { padding-block: 13px; transition: background .25s; }
.crow + .crow { border-top: 1px solid var(--bd); }
.crow:hover { background: rgba(11,26,42,.025); }
.cell { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.4; }
.cell.bad { color: var(--txt-2); }
.cell.good { color: var(--head); font-weight: 500; }
.cell .ci { width: 22px; height: 22px; border-radius: 7px; flex: none; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.cell .ci svg { width: 13px; height: 13px; stroke-width: 2.6; }
.cell.bad .ci { background: rgba(234,67,53,.13); } .cell.bad .ci svg { stroke: var(--coral); }
.cell.good .ci { background: rgba(15,157,88,.16); } .cell.good .ci svg { stroke: var(--verde); }
.cell .cb { display: flex; flex-direction: column; }
.cell .cell-tag { display: none; }      /* só no mobile, no desktop o cabeçalho já rotula */
.carrow { justify-self: center; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--surface); border: 1px solid var(--bd); color: var(--accent); }
.carrow svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.2; }

/* ============================================================ PILARES */
/* ---------- Eixos interativos (por que + para quem + campo/base) ---------- */
.axes { margin-top: 34px; }
.axes-hint { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--txt-3); margin-bottom: 14px; }
.axes-hint svg { width: 14px; height: 14px; stroke: var(--accent); }
.axes-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.axt { position: relative; overflow: hidden; display: flex; align-items: center; gap: 13px; text-align: left; padding: 15px 18px 15px 20px; border: 1px solid var(--bd); border-radius: var(--r-sheet); background: var(--surface); cursor: pointer; opacity: .68; transition: border-color .3s, background .3s, transform .3s, opacity .3s; }
.axt::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--verde-bright); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.axt:hover { border-color: var(--bd-2); background: var(--surface-2); transform: translateY(-2px); opacity: 1; }
.axt .axt-n { font-family: var(--mono); font-size: 13px; color: var(--txt-3); align-self: flex-start; margin-top: 1px; }
.axt .axt-b { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.axt .axt-t { font-size: 15.5px; font-weight: 600; color: var(--head); letter-spacing: -.01em; }
.axt .axt-s { font-size: 12.5px; color: var(--txt-3); }
.axt .axt-go { flex: none; color: var(--txt-3); transition: transform .25s, color .25s; }
.axt .axt-go svg { width: 18px; height: 18px; stroke: currentColor; display: block; }
.axt.active { opacity: 1; border-color: var(--tagv-bd); background: linear-gradient(160deg, var(--tagv-bg), var(--surface) 72%); }
.axt.active::before { transform: scaleX(1); }
.axt.active .axt-n { color: var(--accent); }
.axt.active .axt-go { color: var(--accent); transform: translateX(3px); }

.axes-stage { margin-top: 14px; border: 1px solid var(--bd); border-radius: var(--r-sheet); background: var(--surface); padding: clamp(20px, 2.3vw, 32px); overflow: hidden; }
.axp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4.4vw, 60px); align-items: center; }
.axp[hidden] { display: none; }
.axp.fade { animation: axfade .45s var(--ease); }
@keyframes axfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.axp-kicker { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.axp-checks { display: flex; flex-direction: column; margin: 12px 0 16px; }
.axp-checks li { display: flex; gap: 13px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--bd); }
.axp-checks li:last-child { border-bottom: none; }
.axp-checks .ck { width: 28px; height: 28px; border-radius: 8px; background: var(--tagv-bg); display: flex; align-items: center; justify-content: center; flex: none; }
.axp-checks .ck svg { width: 15px; height: 15px; stroke: var(--accent); stroke-width: 2.4; }
.axp-checks div b { display: block; font-size: 14.5px; font-weight: 600; color: var(--head); }
.axp-checks div span { display: block; font-size: 13px; color: var(--txt-3); margin-top: 2px; }
.axp-cap { font-size: 14.5px; color: var(--txt-2); line-height: 1.55; }
.axp-cap strong { color: var(--head); font-weight: 600; }

/* Cartões-visual dentro dos eixos */
.viz-card { border: 1px solid var(--bd); border-radius: var(--r-card); background: var(--surface-2); padding: 18px 20px; }
.viz-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--txt-3); margin-bottom: 12px; }
.rep-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--bd); }
.rep-row:first-of-type { border-top: none; }
.rep-sw { width: 6px; height: 26px; border-radius: 3px; flex: none; }
.rep-n { flex: 1; font-size: 14.5px; font-weight: 500; color: var(--head); }

/* Max, assistente de IA */
.max-chat { display: flex; flex-direction: column; gap: 10px; }
.max-msg { max-width: 88%; padding: 10px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; }
.max-msg strong { color: var(--head); font-weight: 600; }
.max-msg.user { align-self: flex-end; background: var(--surface); border: 1px solid var(--bd); color: var(--txt-2); border-bottom-right-radius: 4px; }
.max-msg.bot { align-self: flex-start; background: var(--tagv-bg); border: 1px solid var(--tagv-bd); color: var(--txt); border-bottom-left-radius: 4px; }
.max-bot-tag { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }

/* Eixo 03, verdade do caixa */
.viz-card.cash { padding: 22px; }
.cash-tabs { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: var(--surface); border: 1px solid var(--bd); }
.cash-t { padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--txt-3); cursor: pointer; transition: color .2s, background .2s; }
.cash-t.active { background: var(--tagv-bg); color: var(--accent); }
.cash-val { display: flex; align-items: baseline; gap: 7px; margin: 20px 0 7px; }
.cash-cur { font-family: var(--mono); font-size: 18px; color: var(--txt-3); }
.cash-n { font-family: var(--mono); font-size: clamp(30px, 4vw, 42px); font-weight: 700; line-height: 1; color: var(--head); }
.cash-lbl { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--txt-2); }
.cash-bars { margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.cash-bar { display: grid; grid-template-columns: 70px 1fr 56px; align-items: center; gap: 12px; font-size: 12.5px; }
.cash-bar .cb-k { color: var(--txt-3); }
.cash-bar .cb-track { height: 8px; border-radius: 999px; background: var(--bd); overflow: hidden; }
.cash-bar .cb-fill { display: block; height: 100%; border-radius: 999px; background: var(--verde-bright); transition: width .5s var(--ease); }
.cash-bar .cb-fill.am { background: var(--ambar); }
.cash-bar .cb-v { font-family: var(--mono); color: var(--txt-2); text-align: right; }

/* ============================================================ RECURSOS, ficha técnica */
/* Inventário em grade dividida por hairlines: prova abrangência sem repetir o
   contraste "antes → depois" (esse fica exclusivo da Rotina e das Regras). */
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 34px; border: 1px solid var(--bd); border-radius: var(--r-sheet); overflow: hidden; background: var(--bd); }
.spec { display: flex; gap: 15px; padding: 20px 24px; background: var(--surface); transition: background .3s; }
.spec:hover { background: var(--surface-2); }
.spec-ic { width: 38px; height: 38px; flex: none; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--bd-2); display: flex; align-items: center; justify-content: center; }
.spec-ic svg { width: 19px; height: 19px; stroke: var(--accent); }
.spec-tx h3 { font-size: 16px; }
.spec-tx p { font-size: 13.5px; color: var(--txt-2); margin-top: 5px; line-height: 1.5; }

/* ============================================================ UM DIA, pin */
/* Gradiente navy→deep: diferencia esta seção da "Regras reais" (navy) logo abaixo,
   criando um degrau de fundo onde antes havia dois escuros idênticos colados. */
.day-pin { position: relative; background: linear-gradient(180deg, var(--navy) 0%, var(--navy) 30%, var(--navy-deep) 100%); color: #EAF1F5; }
.day-pin { --txt-2: rgba(234,241,245,.64); --txt-3: rgba(234,241,245,.4); --head: #fff; }
.day-viewport { overflow: hidden; }
/* Sem o pin GSAP (mobile/tablet ou tela muito baixa), os painéis precisam
   de scroll horizontal nativo, senão os passos 2-5 ficam inacessíveis */
@media (max-width: 900px), (max-height: 599px) {
  .day-viewport { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scroll-padding-left: var(--gutter); scrollbar-width: none; }
  .day-viewport::-webkit-scrollbar { display: none; }
  .day-panel { scroll-snap-align: start; }
  .day-progress { display: none; }
  .day-pin .day-hint { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--verde-bright); }
  .day-hint svg { width: 16px; height: 16px; stroke: var(--verde-bright); animation: dayNudge 1.6s ease-in-out infinite; }
  @keyframes dayNudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
}
@media (prefers-reduced-motion: reduce) { .day-hint svg { animation: none; } }
.day-head { padding-top: clamp(76px, 10vw, 140px); }
.day-hint { display: none; }
.day-track { display: flex; gap: 22px; padding: 38px var(--gutter) clamp(56px, 7vw, 88px); width: max-content; }
.day-panel { flex: 0 0 clamp(300px, 70vw, 500px); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-sheet); padding: 30px; background: linear-gradient(165deg, rgba(255,255,255,.06), transparent); position: relative; overflow: hidden; min-height: 288px; display: flex; flex-direction: column; }
.day-panel .dp-big { font-size: clamp(62px, 7vw, 96px); font-weight: 600; line-height: .8; letter-spacing: -.05em; color: rgba(255,255,255,.06); position: absolute; top: 22px; right: 26px; }
.day-panel .dp-step { font-family: var(--mono); font-size: 13px; color: var(--verde-bright); letter-spacing: .08em; }
.day-panel h3 { font-size: clamp(23px, 2.6vw, 30px); margin-top: 12px; color: #fff; }
.day-panel p { font-size: 15.5px; color: rgba(234,241,245,.64); margin-top: 12px; }
.day-panel .dp-foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: auto; padding-top: 18px; }
.day-panel .dp-chip { display: inline-flex; }
.day-panel .dp-where { font-family: var(--mono); font-size: 13px; color: rgba(234,241,245,.4); text-transform: uppercase; letter-spacing: .06em; }
.day-panel.amber { border-color: rgba(251,188,4,.28); }
.day-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--verde-bright); width: 0%; box-shadow: 0 0 12px var(--verde-bright); z-index: 5; }


/* ============================================================ SYNC (fila, eixo 02) */
.sync-card { border: 1px solid var(--bd); border-radius: var(--r-sheet); padding: 24px; background: var(--surface); }
.sync-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--bd); }
.sync-row:last-of-type { border-bottom: none; }
.sync-l { display: flex; align-items: center; gap: 13px; }
.sync-l .sd { width: 10px; height: 10px; border-radius: 50%; }
.sync-name { font-size: 15px; font-weight: 500; color: var(--head); }
.sync-sub { font-size: 12px; color: var(--txt-3); margin-top: 2px; }
.sync-r { font-family: var(--mono); font-size: 12px; font-weight: 600; }
.sync-foot { margin-top: 20px; display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--txt-2); }
.sync-foot svg { width: 17px; height: 17px; stroke: var(--accent); }

/* ============================================================ REGRAS */
.rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.rule { border: 1px solid var(--bd); border-radius: var(--r-sheet); padding: 26px; background: var(--surface); transition: transform .4s var(--ease), border-color .4s; }
.rule:hover { transform: translateY(-4px); border-color: var(--bd-2); }
.rule .eq { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rule .eq .tok { font-family: var(--mono); font-size: 15px; font-weight: 600; padding: 7px 14px; border-radius: 9px; }
.rule .eq .tok.green { background: var(--tagv-bg); color: var(--tagv-tx); }
.rule .eq .tok.gray { background: var(--surface-2); color: var(--txt-2); border: 1px solid var(--bd); }
.rule .eq .tok.amber { background: var(--taga-bg); color: var(--taga-tx); }
.rule .eq .neq { color: var(--coral); font-size: 22px; font-weight: 700; }
.rule p { font-size: 14.5px; color: var(--txt-2); margin-top: 15px; line-height: 1.55; }

/* ============================================================ PREÇO */
.billing-row { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 30px; }
.billing-note { font-family: var(--mono); font-size: 12.5px; letter-spacing: .03em; color: var(--txt-3); }
.billing-note strong { color: var(--accent); font-weight: 600; }
.billing-note span { display: inline-block; margin-top: 4px; color: var(--accent); font-weight: 600; }
/* Toggle segmentado mensal/anual (knob deslizante posicionado via JS) */
.billing-row .toggle { position: relative; display: inline-flex; padding: 4px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--bd); }
.billing-row .knob { position: absolute; top: 4px; bottom: 4px; left: 4px; width: 0; border-radius: 999px; background: var(--verde); box-shadow: 0 6px 16px -6px rgba(15,157,88,.6); transition: left .3s var(--ease), width .3s var(--ease); }
.billing-row .toggle button { position: relative; z-index: 1; border: 0; background: transparent; cursor: pointer; padding: 9px 20px; border-radius: 999px; font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--txt-2); transition: color .25s; }
.billing-row .toggle button.active { color: #fff; }
.billing-row .toggle button em { font-style: normal; font-size: 12px; font-weight: 700; color: var(--verde-ink); background: var(--verde-soft); border-radius: 999px; padding: 2px 7px; margin-left: 6px; }
.billing-row .toggle button.active em { color: #fff; background: rgba(255,255,255,.18); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; border: 1px solid var(--bd); border-radius: var(--r-sheet); background: var(--surface); padding: 28px 26px 26px; transition: border-color .3s, transform .3s, box-shadow .3s; }
.plan:hover { border-color: var(--bd-2); transform: translateY(-4px); box-shadow: 0 24px 60px -36px rgba(11,26,42,.35); }
.plan.featured { border-color: rgba(15,157,88,.45); background: linear-gradient(170deg, var(--verde-soft) -40%, var(--surface) 36%); box-shadow: 0 30px 70px -40px rgba(15,157,88,.45); }
/* glow sutil no hover, halo no canto, sem clipar a flag */
.plan .p-glow { position: absolute; width: 190px; height: 190px; border-radius: 50%; background: rgba(31,203,115,.18); filter: blur(60px); top: -24px; right: -24px; opacity: 0; transition: opacity .4s; pointer-events: none; }
.plan:hover .p-glow { opacity: 1; }
.plan.featured .p-glow { opacity: .5; }
.plan.featured:hover .p-glow { opacity: 1; }
.plan .p-num { position: absolute; top: 26px; right: 28px; font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--txt-3); }
.plan.featured .p-num { color: var(--accent); }
.plan .p-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--verde); color: #fff; border-color: var(--verde); box-shadow: 0 8px 22px -8px rgba(15,157,88,.7); z-index: 2; }
.plan .p-flag .dot { background: #fff; box-shadow: none; }
.plan .p-name { font-size: 20px; font-weight: 600; letter-spacing: -.02em; color: var(--head); }
.plan .p-ideal { font-family: var(--mono); font-size: 11.5px; letter-spacing: .02em; color: var(--accent); margin-top: 8px; }
/* selo de herança / base */
.plan .p-inherit { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--bd); font-size: 12.5px; font-weight: 600; color: var(--head); }
.plan .p-inherit svg { width: 15px; height: 15px; stroke: var(--accent); flex: none; }
.plan .p-inherit > span { min-width: 0; line-height: 1.35; }
.plan .p-inherit strong { color: var(--accent); }
.plan .p-inherit.base { color: var(--txt-3); font-weight: 500; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.plan .p-price { display: flex; align-items: baseline; gap: 5px; margin-top: 20px; }
.plan .p-price .cur { font-family: var(--mono); font-size: 17px; color: var(--txt-3); font-weight: 500; }
.plan .p-price .p-val { font-family: var(--mono); font-size: clamp(40px, 3.6vw, 52px); font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--head); }
.plan .p-price .p-per { font-size: 15px; color: var(--txt-3); }
.plan .p-bill { font-family: var(--mono); font-size: 11.5px; letter-spacing: .02em; color: var(--txt-3); margin-top: 8px; min-height: 16px; }
.plan .p-bill strong { color: var(--accent); font-weight: 600; }
.plan .p-feats { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan .p-feats li { font-size: 14.5px; color: var(--txt-2); line-height: 1.4; padding-left: 26px; position: relative; }
.plan .p-feats li::before { content: ""; position: absolute; left: 0; top: 2px; width: 16px; height: 16px; border-radius: 5px; background: var(--tagv-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A5C34' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat; }
.plan .p-cta { margin-top: 26px; width: 100%; }
.plans-fine { text-align: center; margin-top: 30px; font-size: 14.5px; color: var(--txt-2); }
.plans-fine a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================ COMPARATIVO (acordeão) */
.cmp { --cc: 96px; --cx: 30px; margin-top: clamp(40px, 5vw, 60px); border: 1px solid var(--bd); border-radius: var(--r-sheet); background: var(--surface); overflow: hidden; }
.cmp-cols, .cmp-cat, .cmp-row { display: grid; grid-template-columns: minmax(0,1fr) repeat(3, var(--cc)) var(--cx); align-items: center; }

/* toggle mestre: recolhe/expande a tabela inteira (recolhida por padrão) */
.cmp-master { width: 100%; display: flex; align-items: center; gap: 14px; border: 0; cursor: pointer; padding: 16px 18px 16px 20px; font: inherit; text-align: left;
  background: linear-gradient(100deg, rgba(15,157,88,.13), rgba(31,203,115,.05) 58%, transparent); transition: background .25s; }
.cmp-master:hover { background: linear-gradient(100deg, rgba(15,157,88,.20), rgba(31,203,115,.09) 58%, transparent); }
.cm-icon { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--verde); box-shadow: 0 8px 18px -8px rgba(15,157,88,.6); }
.cm-icon svg { width: 19px; height: 19px; stroke: #fff; }
.cm-text { display: flex; flex-direction: column; gap: 2px; margin-right: auto; }
.cmp-master-title { font-size: 15px; font-weight: 600; letter-spacing: -.01em; color: var(--head); }
.cm-hint { font-size: 12.5px; color: var(--txt-2); }
.cm-cta { flex: none; display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 600; box-shadow: 0 10px 22px -10px rgba(11,26,42,.55); transition: transform .2s, box-shadow .2s, background .2s; }
.cmp-master:hover .cm-cta { transform: translateY(-1px); background: #16314a; box-shadow: 0 14px 28px -10px rgba(11,26,42,.7); }
.cm-label { white-space: nowrap; }
.cm-hide { display: none; }
.cmp.is-open .cm-show { display: none; }
.cmp.is-open .cm-hide { display: inline; }
.cmp-master-chev { width: 16px; height: 16px; stroke: #fff; flex: none; transition: transform .3s var(--ease); }
.cmp.is-open .cmp-master-chev { transform: rotate(180deg); }
.cmp.is-open .cmp-master { background: var(--surface-2); }
.cmp.is-open .cm-cta { background: var(--txt-2); box-shadow: none; }
.cmp.is-open .cmp-master:hover .cm-cta { background: var(--head); }
/* leve aceno do chevron p/ convidar ao clique (só quando recolhido) */
@media (prefers-reduced-motion: no-preference) {
  .cmp:not(.is-open) .cmp-master-chev { animation: cmBob 1.9s var(--ease) infinite; }
}
@keyframes cmBob { 0%, 70%, 100% { transform: translateY(0); } 82% { transform: translateY(3px); } }

.cmp-all { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.cmp.is-open .cmp-all { grid-template-rows: 1fr; }
.cmp-all-inner { overflow: hidden; }

.cmp-cols { padding: 14px 22px; background: var(--surface-2); border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); }
.cmp-cols .cc-col { text-align: center; font-size: 13px; font-weight: 600; color: var(--txt-2); }
.cmp-cols .cc-col.is-pro { color: var(--accent); }

.cmp-group { border-top: 1px solid var(--bd); }
.cmp-group:first-of-type { border-top: 0; }
.cmp-cat { width: 100%; border: 0; background: transparent; cursor: pointer; padding: 17px 22px; font: inherit; text-align: left; transition: background .2s; }
.cmp-cat:hover { background: var(--surface-2); }
.cmp-cat .cc-name { font-size: 15.5px; font-weight: 600; color: var(--head); padding-right: 12px; }
.cmp-cat .cc-chev { width: 18px; height: 18px; stroke: var(--txt-3); justify-self: end; transition: transform .3s var(--ease); }
.cmp-group.is-open .cmp-cat .cc-chev { transform: rotate(180deg); }

/* status na categoria colapsada */
.cs { justify-self: center; }
.cs.yes { width: 18px; height: 18px; border-radius: 6px; background: var(--tagv-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A5C34' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat; }
.cs.no { width: 14px; height: 0; border-top: 2px solid var(--bd-2); border-radius: 2px; }
.cs.partial { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--txt-3); }

/* corpo expansível (anima via grid-template-rows) */
.cmp-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.cmp-group.is-open .cmp-body { grid-template-rows: 1fr; }
.cmp-rows { overflow: hidden; }
.cmp-row { padding: 12px 22px; }
.cmp-row + .cmp-row { border-top: 1px solid var(--bd); }
.cmp-rows { border-top: 1px solid var(--bd); background: linear-gradient(var(--bg), var(--bg)); }
.cmp-row .cr-name { font-size: 14px; color: var(--txt-2); line-height: 1.4; padding-right: 12px; display: inline-flex; align-items: center; gap: 7px; flex-wrap: wrap; position: relative; }
.cmp-row .cr-cell { justify-self: center; text-align: center; }
.cmp-row .cr-cell.yes { width: 18px; height: 18px; border-radius: 6px; background: var(--tagv-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A5C34' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat; }
.cmp-row .cr-cell.no { width: 14px; height: 0; border-top: 2px solid var(--bd-2); border-radius: 2px; }
.cmp-row .cr-cell.val { font-family: var(--mono); font-size: 12.5px; font-weight: 600; color: var(--head); line-height: 1.25; }

/* tooltip */
.cr-info { display: inline-flex; align-items: center; justify-content: center; width: 17px; height: 17px; padding: 0; border: 0; border-radius: 50%; background: var(--surface-2); cursor: pointer; flex: none; }
.cr-info svg { width: 12px; height: 12px; stroke: var(--txt-3); }
.cr-info:hover svg { stroke: var(--accent); }
.cr-tip { position: absolute; left: 0; bottom: calc(100% + 8px); z-index: 5; width: min(320px, 78vw); padding: 11px 13px; border-radius: 12px; background: var(--head); color: #fff; font-size: 12.5px; line-height: 1.45; box-shadow: 0 16px 40px -16px rgba(11,26,42,.5); opacity: 0; visibility: hidden; transform: translateY(4px); transition: opacity .2s, transform .2s, visibility .2s; pointer-events: none; }
.cr-tip::after { content: ""; position: absolute; top: 100%; left: 16px; border: 6px solid transparent; border-top-color: var(--head); }
.cr-name:hover .cr-tip, .cr-name.tip-open .cr-tip { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============================================================ MODAL DE CONTATO */
.contact-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.contact-modal[hidden] { display: none; }
.cm-backdrop { position: absolute; inset: 0; background: rgba(6,16,27,.66); backdrop-filter: blur(6px); }
.cm-card { position: relative; z-index: 1; width: min(480px, 100%); background: #0E2233; border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-sheet); padding: 38px 34px 34px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); animation: cmIn .25s var(--ease); }
@keyframes cmIn { from { opacity: 0; transform: translateY(14px) scale(.98); } }
.cm-card .eyebrow { color: var(--verde-bright); }
.cm-card h3 { color: #fff; font-size: 24px; margin-top: 14px; letter-spacing: -.02em; }
.cm-card > p { color: rgba(234,241,245,.64); margin-top: 10px; font-size: 15px; }
.cm-mail { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; padding: 10px 10px 10px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-card); background: rgba(255,255,255,.05); }
.cm-mail .num { font-size: 14.5px; color: #EAF1F5; word-break: break-all; }
.cm-mail .btn { padding: 9px 16px; font-size: 14px; flex: none; background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.cm-open { margin-top: 16px; width: 100%; }
.cm-x { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(234,241,245,.64); }
.cm-x:hover { background: rgba(255,255,255,.08); color: #fff; }
.cm-x svg { width: 18px; height: 18px; }
.placeholder { border: 1.5px dashed var(--bd-2); border-radius: var(--r-card); padding: 18px 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.placeholder .pt { font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--txt-3); padding: 5px 11px; border: 1px solid var(--bd); border-radius: 7px; white-space: nowrap; }
.placeholder p { font-size: 14px; color: var(--txt-2); margin: 0; }

/* ============================================================ FAQ */
.faq-grid { display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: clamp(36px, 5vw, 64px); align-items: start; }
.faq-aside { position: sticky; top: 104px; align-self: stretch; display: flex; flex-direction: column; }
.faq-aside h2 { margin-top: 20px; }
.faq-aside-sub { font-size: 15px; color: var(--txt-2); line-height: 1.55; margin: 14px 0 22px; max-width: 32ch; }
.faq-help { background: rgba(31, 203, 115, .055); border: 1px solid rgba(31, 203, 115, .18); border-radius: var(--r-card); padding: 22px; margin-top: auto; }
.faq-help-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--bd); color: var(--verde-bright); display: grid; place-items: center; margin-bottom: 14px; }
.faq-help-ic svg { width: 22px; height: 22px; }
.faq-help-txt b { display: block; font-weight: 600; font-size: 16px; color: var(--head); letter-spacing: -.01em; }
.faq-help-txt span { display: block; font-size: 14px; color: var(--txt-2); line-height: 1.5; margin-top: 4px; }
.faq-help .btn { margin-top: 18px; }
.btn-block { display: flex; width: 100%; }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 540px; }
.faq-item { background: var(--surface); border: 1px solid var(--bd); border-radius: var(--r-card); overflow: hidden; transition: border-color .2s, background .2s; }
.faq-item:hover { border-color: var(--bd-2); }
.faq-item[open] { border-color: rgba(31, 203, 115, .28); background: rgba(31, 203, 115, .03); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; font-weight: 600; font-size: clamp(14.5px, 1.4vw, 16px); letter-spacing: -.02em; color: var(--head); padding: 17px 20px; transition: color .2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover, .faq-item[open] summary { color: var(--accent); }
.faq-item .chev { width: 28px; height: 28px; border-radius: 50%; background: var(--surface-2); color: var(--txt-3); display: grid; place-items: center; flex: none; transition: transform .25s var(--ease), background .2s, color .2s; }
.faq-item .chev svg { width: 15px; height: 15px; }
.faq-item[open] .chev { transform: rotate(180deg); background: rgba(31,203,115,.15); color: var(--verde-bright); }
.faq-body { padding: 0 20px 18px; }
.faq-body p { font-size: 14.5px; color: var(--txt-2); line-height: 1.6; max-width: 64ch; }
@supports (interpolate-size: allow-keywords) {
  .faq-item::details-content { height: 0; overflow: clip; opacity: 0; transition: height .32s var(--ease), opacity .26s ease, content-visibility .32s allow-discrete; }
  .faq-item[open]::details-content { height: auto; opacity: 1; }
}

/* ============================================================ FOOTER */
/* Band de fechamento (substitui a antiga seção CTA dedicada) */
.footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px 40px; flex-wrap: wrap; padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-cta .fcta-copy h2 { font-size: clamp(23px, 3vw, 33px); letter-spacing: -.02em; line-height: 1.1; color: #fff; }
.footer-cta .fcta-copy p { font-family: var(--mono); font-size: 13px; letter-spacing: .03em; color: var(--verde-bright); margin-top: 12px; }
.footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.1); padding-block: 64px 36px; color: rgba(234,241,245,.64); }
.footer .brand .word .giro { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { color: rgba(234,241,245,.4); font-size: 14.5px; max-width: 300px; margin-top: 16px; line-height: 1.6; }
.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: .03em; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; padding: 7px 0; font-size: 14.5px; color: rgba(234,241,245,.64); transition: color .2s; }
.footer-col a:hover { color: var(--verde-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 26px; }
.footer-bottom .legal { font-size: 13px; color: rgba(234,241,245,.4); display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.footer-bottom .ph-inline { font-family: var(--mono); font-size: 11px; padding: 3px 8px; border: 1px dashed rgba(255,255,255,.18); border-radius: 6px; }
.footer-bottom .legal-links { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.footer-bottom .legal-links a, .footer-bottom .legal-links button { font-family: var(--sans); font-size: 13px; color: rgba(234,241,245,.5); background: none; border: none; cursor: pointer; padding: 0; transition: color .2s var(--ease); }
.footer-bottom .legal-links a:hover, .footer-bottom .legal-links button:hover { color: var(--txt); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: border-color .25s, background .25s; }
.footer-social a:hover { border-color: var(--verde); background: rgba(255,255,255,.06); }
.footer-social svg { width: 18px; height: 18px; stroke: rgba(234,241,245,.64); }

/* reveal */
.reveal { opacity: 0; transform: translateY(30px); }
.no-js .reveal, .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================================================ RESPONSIVE */
/* Hero em duas colunas: o título precisa caber na coluna de texto (~600px),
   senão cada .ln quebra em duas linhas dentro da máscara de animação */
@media (min-width: 1081px) {
  .hero .display { font-size: clamp(46px, 4vw, 62px); }

  /* Catálogo tocável LATERAL ao telefone: botões compactos à esquerda, telefone
     à direita. Aproxima a ação (tocar produto) do resultado (telefone) na mesma view. */
  .builder { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
  .builder .phone { zoom: .85; }                                  /* mockup proporcional */
  .builder .shelf { order: -1; flex: none; width: 186px; margin-top: 0; }

  /* rótulo enxuto em coluna estreita */
  .builder .shelf-label { flex-direction: column; align-items: flex-start; gap: 9px; font-size: 10px; margin-bottom: 12px; }
  .builder .shelf-label .reset { padding: 3px 9px; }
  .builder .shelf-grid { grid-template-columns: 1fr; gap: 8px; } /* pilha vertical */
  .builder .ghint { margin-top: 12px; font-size: 11px; }

  /* botões minimalistas, identificação rápida, alvo fácil de tocar */
  .builder .prod-btn { padding: 8px 10px; gap: 9px; border-radius: 11px; align-items: stretch; }
  .builder .prod-btn .pb-sw { width: 4px; height: auto; align-self: stretch; min-height: 26px; border-radius: 3px; }
  .builder .prod-btn .pb-i { gap: 2px; justify-content: center; }
  .builder .prod-btn .pb-n { font-size: 11.5px; white-space: normal; line-height: 1.25; }
  .builder .prod-btn .pb-m { font-size: 9.5px; }
  .builder .prod-btn .pb-add { width: 22px; height: 22px; font-size: 15px; border-radius: 7px; align-self: center; }
}
/* Notebooks / janelas baixas: encolhe mais p/ garantir o catálogo na dobra */
@media (min-width: 1081px) and (max-height: 880px) {
  .builder .phone { zoom: .74; }
}
/* Viewports baixos (notebooks, janelas snapped): compacta a seção pinada
   para que os painéis fiquem inteiros na tela durante o scroll horizontal */
/* Viewports baixos (notebooks 14", janelas compactas): reduz apenas a geometria
   vertical do hero para manter o mockup dentro do primeiro viewport. */
@media (min-width: 901px) and (max-height: 820px) {
  .hero { padding-top: clamp(88px, 14vh, 118px); padding-bottom: clamp(42px, 7vh, 68px); }
  .badge-row { margin-bottom: clamp(16px, 2.4vh, 22px); }
  .hero .lead { margin-top: clamp(16px, 2.4vh, 22px); }
  .hero-actions { margin-top: clamp(20px, 3vh, 26px); }
  .hero-hint { margin-top: clamp(10px, 1.8vh, 14px); }
  .day-head { padding-top: 88px; }
  .day-head .h-xl { font-size: clamp(28px, 4.6vh, 42px); }
  .day-track { padding-top: 22px; padding-bottom: 24px; }
  .day-panel { min-height: max(230px, min(288px, calc(100vh - 320px))); padding: 26px; }
  .day-panel .dp-big { font-size: clamp(52px, 10vh, 88px); }
  .day-panel h3 { font-size: clamp(20px, 3.4vh, 28px); }
  .day-panel p { font-size: 15px; }
}
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .builder { max-width: 460px; margin-inline: auto; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .rules { grid-template-columns: 1fr; }
  .axp { grid-template-columns: 1fr; gap: 28px; }
  .axt { padding: 16px 18px; gap: 12px; }
  .axt .axt-t { font-size: 16px; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan.featured { order: -1; }
  .specs { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-aside { position: static; display: block; }
  .faq-aside-sub { max-width: 46ch; }
  .faq-help { max-width: 440px; margin-top: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .axes-tabs { grid-template-columns: 1fr; }
  .cash-bar { grid-template-columns: 64px 1fr 50px; }
  :root {
    --gutter: 18px;
    --mobile-section-y: 68px;
    --mobile-stack: 34px;
    --mobile-card-pad: 24px;
    --mobile-card-gap: 18px;
  }
  body { font-size: 16px; }
  .section { padding-block: var(--mobile-section-y); }
  .wrap { padding-inline: var(--gutter); }
  .display { font-size: clamp(40px, 12.2vw, 50px); line-height: .98; }
  .h-xl { font-size: clamp(30px, 9.4vw, 40px); line-height: 1.03; }
  .h-lg { font-size: clamp(27px, 8vw, 34px); line-height: 1.06; }
  .h-md { font-size: clamp(21px, 6.5vw, 26px); }
  .lead { font-size: 17px; line-height: 1.55; }
  .eyebrow { font-size: 11.5px; gap: 9px; }
  .eyebrow::before { width: 22px; }
  .sec-head .eyebrow { margin-bottom: 16px; }
  .sec-head .lead { margin-top: 18px; }
  .sec-head.center { text-align: left; }
  .sec-head.center .eyebrow { justify-content: flex-start; }

  .btn,
  .btn-lg {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 15.5px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .nav { height: 72px; gap: 12px; }
  .brand .word { font-size: 21px; }
  /* CTA do header: largura natural (não 100%) e compacto ao lado do menu */
  .nav-cta { gap: 8px; }
  .nav-cta .btn { width: auto; min-height: 42px; padding: 10px 17px; font-size: 14.5px; }
  .mobile-menu {
    top: 72px;
    padding: 16px var(--gutter) calc(22px + env(safe-area-inset-bottom));
  }
  .mobile-menu-links { gap: 9px; padding-block: 14px; }
  .mobile-menu-links a { min-height: 64px; padding: 11px 13px; }

  .hero {
    padding-top: 112px;
    padding-bottom: 58px;
  }
  .hero-grid { gap: 40px; }
  .badge-row { gap: 8px; margin-bottom: 18px; }
  .hero .lead { margin-top: 18px; }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }
  .hero-hint {
    align-items: center;
    line-height: 1.45;
    margin-top: 14px;
  }
  .hero-hint svg { flex: none; margin-top: 2px; }
  .builder {
    width: 100%;
    max-width: 360px;
  }
  .builder .phone {
    max-width: min(326px, 100%);
    border-radius: 34px;
    padding: 8px;
  }
  .phone-scr { border-radius: 31px; }
  .ph-app { padding-inline: 15px; }
  .ph-tt { font-size: 22px; }
  .ph-scan { height: 54px; }
  .shelf-grid { grid-template-columns: 1fr; }
  .shelf-label {
    align-items: flex-start;
    gap: 10px;
    line-height: 1.35;
  }
  .builder .ghint {
    align-items: flex-start;
    line-height: 1.45;
  }
  .builder .ghint svg { flex: none; margin-top: 2px; }
  .proof-band { padding-block: 20px; margin-bottom: 40px; gap: 12px; }
  .feat-band { padding-block: 20px; }
  .proof-item { font-size: 13px; padding: 8px 14px 8px 8px; }
  .proof-item .pi-ic { width: 25px; height: 25px; }

  .plans,
  .rules {
    gap: var(--mobile-card-gap);
    margin-top: var(--mobile-stack);
  }
  .specs { margin-top: var(--mobile-stack); }
  .faq-grid {
    gap: var(--mobile-stack);
  }
  .sync-card,
  .rule,
  .plan {
    padding: var(--mobile-card-pad);
  }

  /* Comparação pareada vira pilha de cards "antes → depois" */
  .compare { border: none; background: none; overflow: visible; margin-top: var(--mobile-stack);
    display: flex; flex-direction: column; gap: var(--mobile-card-gap); }
  .compare-head { display: none; }
  .crow { grid-template-columns: 1fr; padding: 4px var(--mobile-card-pad);
    border: 1px solid var(--bd); border-radius: 18px; background: var(--surface); }
  .crow + .crow { border-top: 1px solid var(--bd); }
  .crow:hover { background: var(--surface); }
  .crow .carrow { display: none; }
  .crow .cell { padding-block: 14px; font-size: 15px; }
  .crow .cell.bad { border-bottom: 1px dashed var(--bd); }
  .crow .cell.good { background: linear-gradient(rgba(15,157,88,.045), rgba(15,157,88,.045)); margin-inline: calc(var(--mobile-card-pad) * -1); padding-inline: var(--mobile-card-pad); }
  .cell .cell-tag { display: block; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--txt-3); margin-bottom: 4px; }
  .cell.good .cell-tag { color: var(--accent); }
  .spec { padding: 20px var(--mobile-card-pad); }

  .day-head { padding-top: var(--mobile-section-y); }
  .day-track {
    gap: 16px;
    padding: 34px var(--gutter) var(--mobile-section-y);
  }
  .day-panel {
    /* deixa ~44px do próximo painel à mostra → sinaliza que dá pra deslizar */
    flex-basis: calc(100vw - var(--gutter) * 2 - 44px);
    min-height: 360px;
    padding: 28px 24px;
  }
  .day-panel .dp-big {
    top: 22px;
    right: 22px;
    font-size: clamp(70px, 23vw, 96px);
  }
  .day-panel p { font-size: 15.5px; line-height: 1.55; }

  .toggle {
    width: auto;
    max-width: 100%;
  }
  .toggle button {
    flex: 0 0 auto;
    min-width: 0;
    padding: 10px 22px;
    font-size: 14px;
    white-space: nowrap;
  }
  #planos .sec-head .lead {
    margin-top: 16px;
  }
  #planos .billing-row {
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }
  #planos .billing-note {
    width: 100%;
    max-width: 32ch;
    margin-inline: auto;
    padding-left: 1px;
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: .02em;
    text-align: center;
  }
  #planos .plans {
    margin-top: 8px;
  }
  .billing-row .toggle button em {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    font-size: 11px;
  }
  .truth-num { margin-top: 24px; }
  .truth-num .tn-label {
    align-items: flex-start;
    line-height: 1.35;
  }
  .truth-num .tn-label .dot { flex: none; margin-top: 5px; }
  .truth-num .tn-val { font-size: clamp(36px, 13vw, 48px); }
  .cash-snapshot {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 20px;
  }
  .cash-tile { padding: 13px 14px; }
  .cash-tile strong { font-size: 20px; }
  .tbar .tb-top {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }
  .truth-note {
    padding: 14px 15px;
    line-height: 1.5;
  }

  .sync-row {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
  .sync-foot {
    align-items: flex-start;
    line-height: 1.45;
  }
  .sync-foot svg { flex: none; margin-top: 2px; }
  .rule .eq { gap: 9px; }
  .rule .eq .tok { font-size: 13.5px; }
  .plan .p-flag { max-width: calc(100% - 28px); }
  .plans-fine {
    margin-top: 24px;
    text-align: left;
  }
  .faq-item summary {
    align-items: flex-start;
    padding: 18px 18px;
    line-height: 1.35;
  }
  .cmp { --cc: 50px; --cx: 22px; margin-top: var(--mobile-stack); }
  .cmp-master { padding: 13px 14px; gap: 11px; }
  .cm-icon { width: 34px; height: 34px; border-radius: 10px; }
  .cmp-master-title { font-size: 14px; }
  .cm-hint { font-size: 11.5px; }
  .cm-cta { padding: 7px 11px; font-size: 12px; }
  .cmp-cols { top: 0; padding: 11px 14px; }
  .cmp-cols-title { font-size: 10px; }
  .cmp-cols .cc-col { font-size: 11.5px; }
  .cmp-cat { padding: 15px 14px; }
  .cmp-cat .cc-name { font-size: 14px; padding-right: 8px; }
  .cmp-row {
    padding: 11px 14px;
  }
  .cmp-row .cr-name {
    font-size: 12.5px;
  }
  .cmp-row .cr-cell.val { font-size: 11px; }
  .cmp-row:has(.cr-cell.val) {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
  }
  .cmp-row:has(.cr-cell.val) .cr-name {
    width: 100%;
    padding-right: 0;
    font-size: 13px;
    font-weight: 650;
    color: var(--head);
  }
  .cmp-row:has(.cr-cell.val) .cr-cell {
    width: auto;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-self: stretch;
    gap: 12px;
    padding: 8px 10px;
    border: 1px solid var(--bd);
    border-radius: 10px;
    background: var(--surface-2);
    color: var(--head);
    text-align: right;
  }
  .cmp-row:has(.cr-cell.val) .cr-cell::before {
    content: "";
    flex: none;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--txt-3);
  }
  .cmp-row:has(.cr-cell.val) .cr-name + .cr-cell::before { content: "Solo"; }
  .cmp-row:has(.cr-cell.val) .cr-name + .cr-cell + .cr-cell::before {
    content: "Pro";
    color: var(--accent);
  }
  .cmp-row:has(.cr-cell.val) .cr-name + .cr-cell + .cr-cell + .cr-cell::before { content: "Equipe"; }
  .cmp-row:has(.cr-cell.val) .cr-cell.val {
    font-size: 12px;
    line-height: 1.3;
  }
  .cs.partial { font-size: 8.5px; }

  .faq-body { padding: 0 18px 18px; }
  .faq-body p { font-size: 15px; }
  .footer-cta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-cta .fcta-copy p {
    font-size: 11px;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .footer-cta .btn { width: 100%; }
  .cm-card {
    padding: 34px 22px 24px;
  }
  .cm-mail {
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }
  .cm-mail .btn {
    width: 100%;
    min-height: 44px;
  }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding-block: 52px 32px; }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-trust .fchip { display: flex; }
}

/* ============================================================
   MOBILE, modelos distintos por seção (<= 560px).
   Cada seção usa a mecânica coerente com seu conteúdo; só os
   Planos mantêm swipe. Desktop e tablet permanecem intactos.
   ============================================================ */
.m-dots, .cmp-switch { display: none; }   /* controles só no mobile */
@keyframes neqPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }
@keyframes cellSwap { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes knobTease {
  0%, 55%, 100% { transform: translateX(0); box-shadow: 0 6px 16px -6px rgba(15, 157, 88, 0); }
  67%          { transform: translateX(9px); box-shadow: 9px 6px 18px -5px rgba(15, 157, 88, .55); }
  79%          { transform: translateX(0); box-shadow: 0 6px 16px -6px rgba(15, 157, 88, 0); }
  87%          { transform: translateX(9px); box-shadow: 9px 6px 18px -5px rgba(15, 157, 88, .55); }
  95%          { transform: translateX(0); box-shadow: 0 6px 16px -6px rgba(15, 157, 88, 0); }
}

@media (max-width: 560px) {
  /* ---- Hero: remove a moldura de celular (debezel) ----
     A tela do usuário já é o celular; a tela do app vira um card limpo. */
  .builder .phone {
    max-width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 22px;
  }
  .builder .phone-scr {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 24px 60px -28px rgba(0, 0, 0, .7);
  }
  .ph-st { display: none; }          /* status bar simulada (9:41) sai */
  .ph-app { padding-top: 14px; }

  /* ---- Catálogo do hero: faixa horizontal de chips tocáveis ---- */
  .builder .shelf-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .builder .shelf-grid::-webkit-scrollbar { display: none; }
  .builder .prod-btn {
    flex: 0 0 auto;
    min-width: 184px;
    scroll-snap-align: start;
  }

  /* ---- PLANOS: swipe-carrossel (o único da página) ---- */
  .plans {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-top: 14px;     /* espaço p/ a flag "Mais popular" */
    padding-bottom: 4px;
    max-width: none;
  }
  .plans::-webkit-scrollbar { display: none; }
  /* Solo → Pro (centro) → Equipe: ordem natural do DOM, Pro snapa no meio */
  .plans > .plan { scroll-snap-align: center; flex: 0 0 84%; }
  .plans > .plan.featured { order: 0; }
  .plan .p-glow { display: none; }

  /* ---- RECURSOS: bento 2 colunas (varre os 6 de uma vez, sem swipe) ---- */
  .specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border: none;
    background: none;
    border-radius: 0;
    margin-top: var(--mobile-stack);
  }
  .spec {
    flex-direction: column;
    gap: 11px;
    border: 1px solid var(--bd);
    border-radius: 16px;
    background: var(--surface);
    padding: 16px;
  }
  .spec-tx h3 { font-size: 15px; }
  .spec-tx p { font-size: 12.5px; line-height: 1.45; margin-top: 4px; }

  /* ---- REGRAS: stack de declarações (reverte p/ 1 coluna; ≠ pulsa) ---- */
  .rule .neq { display: inline-block; animation: neqPulse 2.4s var(--ease) infinite; }

  /* ---- ROTINA: toggle "Hoje ⇄ Com o GiroMax" ----
     Reaproveita o stack existente; mostra só o lado ativo de cada linha. */
  .cmp-switch {
    display: flex;
    width: max-content;
    margin: 20px auto 14px;
    position: relative;
    padding: 4px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--bd);
  }
  .cmp-switch { padding: 3px; }
  .cmp-switch button {
    position: relative; z-index: 1;
    padding: 7px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 600; color: var(--txt-2);
    white-space: nowrap;
    transition: color .25s var(--ease);
  }
  .cmp-switch .cmp-knob { top: 3px; bottom: 3px; }
  .cmp-switch button.on { color: #fff; }
  .cmp-switch .cmp-knob {
    position: absolute; top: 4px; bottom: 4px; left: 4px; width: 0;
    border-radius: 999px; background: var(--coral);
    transition: left .3s var(--ease), width .3s var(--ease), background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .cmp-switch.giro .cmp-knob { background: var(--verde); }
  /* efeito-isca: o knob "espia" para o lado com sombra direcional verde,
     prenunciando o destino "Com o GiroMax". Para no 1º uso (JS remove .teasing). */
  .cmp-switch.teasing .cmp-knob { animation: knobTease 4.5s var(--ease) infinite; will-change: transform; }
  .compare.mode-hoje .cell.good { display: none; }
  .compare.mode-hoje .cell.bad { border-bottom: none; }
  .compare.mode-giro .cell.bad { display: none; }
  .compare .cell { animation: cellSwap .35s var(--ease); }

  /* Subtítulo desta seção nivelado com a escala mobile geral, escopado via :has */
  .section:has(.compare) .sec-head .eyebrow { margin-bottom: 11px; }
  .section:has(.compare) .sec-head .lead {
    font-size: 17px;
    line-height: 1.55;
    margin-top: 14px;
  }
  /* Cards compactos e de tamanho uniforme, bem próximos */
  .cmp-switch { margin-bottom: 12px; }
  .compare { gap: 8px; margin-top: 16px; }
  .compare .crow { padding: 0; border-radius: 13px; overflow: hidden; }
  .compare .crow + .crow { border-top: 1px solid var(--bd); }
  .compare .cell {
    align-items: center;
    gap: 10px;
    min-height: 60px;
    padding: 11px var(--mobile-card-pad);
    font-size: 14.5px;
    line-height: 1.38;
    margin: 0;
  }
  .compare.mode-giro .cell.good { padding: 11px var(--mobile-card-pad); margin: 0; }
  .compare .cell .ci { width: 21px; height: 21px; border-radius: 7px; }
  .compare .cell .ci svg { width: 12px; height: 12px; }
  .compare .cell .cell-tag { font-size: 9.5px; margin-bottom: 2px; }

  /* ---- Dots de paginação (injetados via JS) ---- */
  .m-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
  }
  .m-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--bd-2);
    padding: 0; border: none;
    transition: width .25s var(--ease), background .25s var(--ease);
  }
  .m-dot.active { width: 22px; border-radius: 999px; background: var(--accent); }

  /* ---- Eixos: 3 abas empilhadas → faixa horizontal de pills ---- */
  .axes-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .axes-stage { margin-top: 16px; }
  .axes-tabs::-webkit-scrollbar { display: none; }
  .axt {
    flex: 0 0 auto;
    padding: 9px 14px;
    border-radius: 999px;
    gap: 8px;
    align-items: center;
    scroll-snap-align: start;
  }
  .axt::before { display: none; }       /* barra superior do tab sai */
  .axt .axt-b { flex-direction: row; align-items: center; gap: 7px; }
  .axt .axt-s,
  .axt .axt-go { display: none; }        /* subtítulo e chevron saem */
  .axt .axt-n { margin-top: 0; align-self: center; }
  .axt .axt-t { font-size: 13.5px; white-space: nowrap; }

  /* ---- Faixa de prova: 1 marquee (personas) no mobile ---- */
  .proof-band .proof-row.reverse { display: none; }

  /* "Um dia" (Como funciona) mantém o swipe-carrossel, ver bloco mobile
     base acima; os dots voltam via JS (config .day-viewport). */
}
@media (max-width: 380px) {
  /* Telas estreitas: só logo + menu no header (CTA fica no menu) */
  .nav-cta .btn-primary { display: none; }
}
@media (max-width: 360px) {
  :root { --gutter: 16px; --mobile-card-pad: 20px; }
  .display { font-size: clamp(37px, 12vw, 43px); }
  .h-xl { font-size: clamp(28px, 9vw, 35px); }
  .pill { padding: 6px 11px; font-size: 12.5px; }
  .prod-btn { padding: 11px; }
  .day-panel { min-height: 340px; padding: 24px 20px; }
}
