/* ============================================================
   MS Vision — Landing page
   Sistema de gestão para vidraçarias e empresas de esquadrias
   Brand: chartreuse #cabe1c · slate #4c4f59 · Manrope + JetBrains Mono
   ============================================================ */

:root {
  --font-sans: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Neutrals — cool, low chroma */
  --paper: #ffffff;
  --paper-2: #f5f6f8;
  --paper-3: #eef0f3;
  --line: #e3e6ea;
  --line-2: #d4d8de;

  /* Ink / slate */
  --ink: #23262e;
  --ink-2: #4c505b;
  --ink-3: #767c88;
  --slate: #3d424d;
  --slate-deep: #23262e;
  --slate-deeper: #1a1d24;

  /* Brand accent — chartreuse from logo */
  --accent: #cabe1c;
  --accent-2: #d8cd2a;     /* brighter */
  --accent-deep: #a89c0d;  /* hover / on light */
  --accent-ink: #2b2a08;   /* text on accent */
  --accent-soft: #f6f4d8;
  --accent-glow: rgba(202, 190, 28, 0.35);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(35,38,46,.05), 0 1px 3px rgba(35,38,46,.04);
  --shadow-md: 0 4px 14px rgba(35,38,46,.07), 0 2px 6px rgba(35,38,46,.05);
  --shadow-lg: 0 24px 60px rgba(35,38,46,.13), 0 8px 24px rgba(35,38,46,.08);
  --shadow-xl: 0 40px 90px rgba(26,29,36,.22), 0 12px 32px rgba(26,29,36,.12);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01";
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ---- Eyebrow / labels ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--accent-2); }
.eyebrow.center { justify-content: center; }

/* ---- Headings ---- */
h1, h2, h3 { margin: 0; letter-spacing: -0.025em; line-height: 1.04; font-weight: 800; }
.display {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.h-sec {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}
.lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 22px var(--accent-glow);
}
.btn-accent:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 14px 30px var(--accent-glow); }
.btn-dark {
  background: var(--slate-deep);
  color: #fff;
}
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-2); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-lg { padding: 17px 32px; font-size: 16px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 13px var(--gutter);
  display: flex; align-items: center; gap: 18px;
}
.brand { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; flex-shrink: 0; }
.brand-row { display: flex; align-items: center; gap: 10px; }
.brand img { height: 32px; width: auto; }
.brand-name { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.brand-sub { font-size: 10.5px; font-family: var(--font-mono); color: var(--ink-3); letter-spacing: .03em; white-space: nowrap; line-height: 1; }
.nav-links { display: flex; gap: 2px; margin-left: 10px; flex-wrap: nowrap; }
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--ink-2); white-space: nowrap;
  padding: 8px 12px; border-radius: 999px; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--paper-2); color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav .btn { font-size: 14px; padding: 11px 18px; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--line); background: var(--paper); border-radius: 12px;
  cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .28s ease, opacity .2s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--paper);
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
  max-height: 0; overflow: hidden;
  transition: max-height .36s cubic-bezier(.2,.7,.2,1);
}
.mobile-menu a:not(.mm-cta) {
  font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em;
  padding: 15px 6px; border-bottom: 1px solid var(--line);
}
.mobile-menu a:not(.mm-cta):active { color: var(--accent-deep); }
.mobile-menu .mm-cta { width: 100%; margin: 16px 0 4px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(202,190,28,.16), transparent 60%),
    radial-gradient(900px 500px at 8% 0%, rgba(61,66,77,.06), transparent 55%),
    var(--paper);
}
.hero-grid-tex {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(900px 500px at 70% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(900px 500px at 70% 0%, #000 0%, transparent 72%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 7px 7px 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero-pill .tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  background: var(--accent-soft); color: var(--accent-deep);
  padding: 4px 9px; border-radius: 999px; letter-spacing: .02em;
}
.hero h1 { margin-bottom: 22px; }
.hero-br { display: inline; }
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: .08em; height: .34em;
  background: var(--accent); opacity: .9; z-index: -1; border-radius: 3px;
  transform: skewX(-3deg);
}
.hero .lead { max-width: 34ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.hero-note b { color: var(--ink-2); font-weight: 700; }

/* hero visual */
.hero-visual { position: relative; }
.browser {
  border-radius: 14px; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
}
.browser-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; background: #f3f4f6; border-bottom: 1px solid var(--line);
}
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #d4d8de; }
.browser-bar .dot:nth-child(1){ background:#f0625a; } .browser-bar .dot:nth-child(2){ background:#f5bd4f; } .browser-bar .dot:nth-child(3){ background:#5dc466; }
.browser-bar .url {
  margin-left: 10px; flex: 1; background: #fff; border: 1px solid var(--line);
  border-radius: 7px; padding: 5px 12px; font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-3); max-width: 280px;
}
.browser-shot { display: block; width: 100%; }
.hero-phone {
  position: absolute; right: -22px; bottom: -34px; width: 30%;
  border-radius: 26px; overflow: hidden;
  border: 6px solid #1a1d24; background: #1a1d24;
  box-shadow: var(--shadow-xl);
}
.hero-phone img { border-radius: 18px; }
.float-card {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 13px; padding: 13px 15px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px;
}
.float-card .ic {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
}
.float-card .ic.green { background: #e3f5e8; color: #2f8f4e; }
.float-card .ic.yellow { background: var(--accent-soft); color: var(--accent-deep); }
.float-card .ic svg { width: 19px; height: 19px; }
.float-card b { font-size: 14px; font-weight: 800; letter-spacing: -0.01em; }
.float-card span { font-size: 11.5px; color: var(--ink-3); display: block; margin-top: 1px; }
.fc-1 { top: 16%; left: -42px; }
.fc-2 { bottom: 7%; left: -30px; }

/* trust strip */
.trust {
  margin-top: clamp(40px, 6vw, 68px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 30px; }
.trust-lbl { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.trust-items { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.trust-items .ti { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--ink-2); }
.trust-items .ti svg { width: 17px; height: 17px; color: var(--accent-deep); }

/* ============================================================
   SECTION scaffolding
   ============================================================ */
section { position: relative; }
.sec { padding: clamp(64px, 9vw, 120px) 0; }
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head .h-sec { margin: 14px 0 0; }
.sec-head .lead { margin-top: 18px; }

.band-dark {
  background:
    radial-gradient(900px 480px at 85% 0%, rgba(202,190,28,.10), transparent 58%),
    var(--slate-deep);
  color: #e8eaee;
}
.band-dark .h-sec { color: #fff; }
.band-dark .lead { color: #aeb3bd; }
.band-soft { background: var(--paper-2); }

/* ---- Problema: pain grid ---- */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
.pain {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color .2s, background .2s, transform .2s;
}
.pain:hover { border-color: rgba(202,190,28,.4); background: rgba(255,255,255,.06); transform: translateY(-3px); }
.pain .pic {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(202,190,28,.14); color: var(--accent-2);
  display: grid; place-items: center; margin-bottom: 16px;
}
.pain .pic svg { width: 21px; height: 21px; }
.pain h3 { font-size: 16.5px; font-weight: 700; color: #fff; line-height: 1.3; letter-spacing: -0.01em; }
.pain p { margin: 8px 0 0; font-size: 14px; line-height: 1.55; color: #9ea3ad; }

.pullquote {
  margin-top: 52px;
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start;
  padding: 34px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
}
.pullquote .mark { font-size: 64px; line-height: .7; color: var(--accent); font-weight: 800; font-family: Georgia, serif; }
.pullquote p { margin: 0; font-size: clamp(18px, 2vw, 23px); line-height: 1.45; color: #fff; font-weight: 600; letter-spacing: -0.015em; text-wrap: pretty; }
.pullquote p em { color: var(--accent-2); font-style: normal; }
.pullquote .sub { margin-top: 14px; font-size: 15px; font-weight: 400; color: #aeb3bd; }

/* ---- Solução ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.rev .split-media { order: -1; }
.check-list { display: grid; gap: 14px; margin-top: 30px; }
.check-list li { list-style: none; display: flex; gap: 13px; align-items: flex-start; font-size: 16px; line-height: 1.45; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }
.check-list .ck {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; margin-top: -1px;
}
.check-list .ck svg { width: 15px; height: 15px; }
ul.check-list { padding: 0; margin-block: 30px 0; }

.result-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px;
}
.result-col { display: flex; flex-direction: column; gap: 10px; }
.result-chip {
  display: flex; align-items: center; gap: 11px;
  font-size: 17px; font-weight: 800; letter-spacing: -0.02em;
  padding: 14px 18px; border-radius: 12px;
}
.result-chip.minus { background: var(--paper-2); color: var(--ink-2); }
.result-chip.plus { background: var(--slate-deep); color: #fff; }
.result-chip.plus .d { background: var(--accent); }
.result-chip .d { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); flex-shrink: 0; }

.figure {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  background: #fff;
}
.figure .browser-bar { border-radius: 0; }

/* ---- Benefícios ---- */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; margin-top: 48px; }
.benefit {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 18px 4px; border-bottom: 1px solid var(--line);
}
.benefit .bn {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center; font-weight: 800;
}
.benefit .bn svg { width: 17px; height: 17px; }
.benefit p { margin: 0; font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.35; padding-top: 4px; }

/* ---- Prova social ---- */
.position {
  text-align: center; max-width: 880px; margin: 0 auto;
}
.position .h-sec { margin-bottom: 22px; }
.position .badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 34px; }
.position .badges .b {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-2);
  background: var(--paper); color: var(--ink-2);
}
.position .badges .b.hl { background: var(--slate-deep); color: #fff; border-color: var(--slate-deep); }

/* ---- Como funciona ---- */
.steps { margin-top: 56px; display: grid; gap: 22px; }
.step {
  display: grid; grid-template-columns: 78px 1fr; gap: 24px; align-items: start;
  padding-bottom: 22px; border-bottom: 1px solid var(--line); position: relative;
}
.step:last-child { border-bottom: 0; }
.step .num {
  font-family: var(--font-mono); font-size: 15px; font-weight: 700;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--slate-deep); color: #fff;
  display: grid; place-items: center;
}
.step.is-accent .num { background: var(--accent); color: var(--accent-ink); }
.step h3 { font-size: clamp(20px, 2.2vw, 25px); letter-spacing: -0.02em; font-weight: 800; }
.step p { margin: 9px 0 0; font-size: 16px; line-height: 1.55; color: var(--ink-2); max-width: 56ch; }

/* ---- Planos ---- */
.plan-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px; border-radius: 999px; background: var(--paper-2);
  border: 1px solid var(--line); margin: 30px auto 0;
}
.plan-toggle button {
  border: 0; background: transparent; cursor: pointer; font-family: var(--font-sans);
  font-size: 14px; font-weight: 700; color: var(--ink-3);
  padding: 10px 22px; border-radius: 999px; transition: all .2s; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px;
}
.plan-toggle button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.plan-toggle .save { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; background: var(--accent-soft); color: var(--accent-deep); padding: 3px 7px; border-radius: 999px; }

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin: 44px auto 0; align-items: stretch; }
.plan {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 30px;
  display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.plan.featured { border-color: var(--slate-deep); box-shadow: var(--shadow-lg); }
.plan-tag {
  position: absolute; top: 0; right: 26px; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .05em;
  background: var(--accent); color: var(--accent-ink);
  padding: 5px 12px; border-radius: 999px;
}
.plan .pname { font-size: 14px; font-weight: 700; font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.plan .price { margin-top: 16px; display: flex; align-items: baseline; gap: 6px; }
.plan .price .cur { font-size: 22px; font-weight: 700; color: var(--ink-2); }
.plan .price .amt { font-size: 52px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.plan .price .per { font-size: 15px; color: var(--ink-3); font-weight: 600; }
.plan .price-sub { margin-top: 8px; font-size: 13.5px; color: var(--ink-3); min-height: 20px; }
.plan .btn { width: 100%; margin-top: 24px; }

.plan-incl {
  max-width: 760px; margin: 22px auto 0;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 30px;
}
.plan-incl .pi-head { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; font-family: var(--font-mono); letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 18px; }
.plan-incl .pi-head svg { width: 18px; height: 18px; color: var(--accent-deep); }
.pi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 22px; }
.pi-grid .pi { display: flex; gap: 9px; align-items: center; font-size: 14px; font-weight: 600; color: var(--ink); }
.pi-grid .pi svg { width: 16px; height: 16px; color: var(--accent-deep); flex-shrink: 0; }

/* ---- FAQ ---- */
.faq-wrap { max-width: 860px; margin: 50px auto 0; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); margin-bottom: 12px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--line-2); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  font-family: var(--font-sans); font-size: 16.5px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1.4;
  padding: 21px 24px; display: flex; align-items: center; gap: 16px;
}
.faq-q .qt { flex: 1; }
.faq-q .chev {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper-2); color: var(--ink-2);
  display: grid; place-items: center; transition: transform .3s ease, background .2s, color .2s;
}
.faq-q .chev svg { width: 16px; height: 16px; }
.faq-item.open .faq-q .chev { background: var(--accent); color: var(--accent-ink); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .34s cubic-bezier(.2,.7,.2,1); }
.faq-a-inner { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.62; color: var(--ink-2); max-width: 64ch; }
.faq-foot {
  margin-top: 30px; text-align: center; font-size: 15px; color: var(--ink-2);
  display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; justify-content: center;
}
.faq-foot a { font-weight: 700; color: var(--accent-deep); }
.faq-foot a:hover { text-decoration: underline; }

/* ---- Final CTA ---- */
.finalcta {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 380px at 88% 10%, rgba(202,190,28,.18), transparent 60%),
    var(--slate-deep);
  color: #fff; padding: clamp(40px, 6vw, 72px); text-align: center;
  position: relative; overflow: hidden;
}
.finalcta h2 { font-size: clamp(28px, 4vw, 46px); letter-spacing: -0.03em; }
.finalcta p { margin: 18px auto 0; max-width: 56ch; color: #b9bdc6; font-size: 17px; line-height: 1.55; }
.finalcta .actions { margin-top: 32px; display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--slate-deeper); color: #aeb3bd; padding: 64px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer .brand-f { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer .brand-f .chip { background: #fff; border-radius: 12px; padding: 8px; display: grid; place-items: center; }
.footer .brand-f .chip img { height: 34px; width: auto; }
.footer .brand-f b { color: #fff; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; display: block; }
.footer .brand-f span { font-size: 11px; font-family: var(--font-mono); color: #767c88; letter-spacing: .04em; }
.footer .fdesc { font-size: 14px; line-height: 1.6; max-width: 38ch; color: #8b909b; }
.footer .fcol h4 { font-size: 12px; font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: #767c88; margin: 0 0 16px; font-weight: 600; }
.footer .fcol a, .footer .fcol .fi { display: block; font-size: 14.5px; color: #c2c6cd; margin-bottom: 12px; transition: color .15s; }
.footer .fcol a:hover { color: #fff; }
.footer .fcol .fi { color: #8b909b; }
.footer .fcol .fi b { color: #c2c6cd; font-weight: 600; display: block; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; justify-content: space-between;
}
.footer-bottom .cnpj { font-family: var(--font-mono); font-size: 12.5px; color: #767c88; }
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .legal a { font-size: 13px; color: #8b909b; }
.footer-bottom .legal a:hover { color: #fff; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; }
.reveal.d5 { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 12px; }
  .hero .lead { max-width: 48ch; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .pi-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-phone { display: none; }
  .float-card { display: none; }
  .hero h1 .hl { white-space: normal; }
  .hero-br { display: none; }
}
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta-btn { display: none; }
  .mobile-menu { display: flex; }
  .nav.open { background: var(--paper); box-shadow: var(--shadow-md); }
  .nav.open .mobile-menu { max-height: 70vh; padding-bottom: 18px; overflow-y: auto; }
}
@media (max-width: 720px) {
  .benefits { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .result-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .pi-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .pullquote { grid-template-columns: 1fr; gap: 10px; }
}
