/* ===================================================================
   JGCABAL — futuristic console aesthetic, scrollytelling landing
   =================================================================== */

:root {
  --bg:           #08090C;
  --bg-2:         #0D0F14;
  --surface:      #0F1218;
  --surface-2:    #161A21;
  --line:         rgba(255,255,255,0.07);
  --line-strong:  rgba(255,255,255,0.14);

  --text:         #F2F3EE;
  --text-2:       #B8BBC2;
  --text-3:       #6B6F78;
  --text-4:       #3F434B;

  --accent:       #D4FF3D;   /* electric lime */
  --accent-soft:  rgba(212,255,61,0.18);
  --accent-dim:   rgba(212,255,61,0.45);
  --warn:         #FF4D8F;   /* magenta tension */
  --warn-soft:    rgba(255,77,143,0.18);

  --shadow-glow:  0 0 40px rgba(212,255,61,0.25), 0 0 100px rgba(212,255,61,0.10);

  --pad-x:        clamp(20px, 5vw, 80px);
  --container:    1320px;
  --topbar-h:     56px;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);

  --font-sans:    'Geist', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'Geist Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
*::selection { background: var(--accent); color: #000; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: 'ss01','ss02','cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

html { overflow-x: hidden; }
body { overflow-x: clip; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.mono { font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.02em; }
.accent { color: var(--accent); }
.italic { font-style: italic; font-family: 'Geist', serif; font-weight: 500; }
.bracket { color: var(--accent); opacity: 0.7; }

/* ====================== FIXED CHROME / BG ====================== */
.chrome {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.chrome-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--line) 1px, transparent 1px) 0 0 / 96px 100%,
    linear-gradient(to bottom, var(--line) 1px, transparent 1px) 0 0 / 100% 96px;
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
  opacity: 0.6;
}
.chrome-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, transparent 0%, rgba(0,0,0,0.65) 90%);
}
.chrome-scanline {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 2px,
    rgba(255,255,255,0.012) 2px, rgba(255,255,255,0.012) 3px
  );
  mix-blend-mode: overlay;
}

/* ====================== TOPBAR ====================== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(8,9,12,0.85), rgba(8,9,12,0.4));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
  font-size: 12px;
  gap: 12px;
}
.topbar-left, .topbar-right, .topbar-center { display: flex; align-items: center; gap: 18px; }
.logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: 0.02em; }
.logo-mark { color: var(--accent); font-size: 16px; transform: translateY(-1px); }
.logo-text { font-size: 13px; }
.logo-dot { color: var(--accent); }

.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 4px var(--accent);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.vagas { color: var(--text-2); }
.topbar-cta {
  color: var(--text);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: all 0.25s var(--ease-out);
  font-weight: 500;
}
.topbar-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  box-shadow: 0 0 24px var(--accent-soft);
}

@media (max-width: 880px) {
  .topbar-center { display: none; }
  .vagas { display: none; }
}

@media (max-width: 640px) {
  .topbar-left,
  .topbar-right {
    min-width: 0;
    flex: 1;
  }
  .topbar-right { justify-content: flex-end; }
  .topbar-cta {
    max-width: 54vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ====================== RAIL ====================== */
.rail {
  position: fixed;
  right: 24px;
  top: 50%; transform: translateY(-50%);
  z-index: 40;
  display: flex; align-items: center; gap: 14px;
}
.rail-track {
  width: 2px; height: 280px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.rail-fill {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--accent), rgba(212,255,61,0.4));
  box-shadow: 0 0 12px var(--accent-dim);
  transition: height 0.1s linear;
}
.rail-labels {
  display: flex; flex-direction: column;
  justify-content: space-between;
  height: 280px;
  font-size: 9px;
  color: var(--text-4);
}
.rail-labels span {
  transition: color 0.3s, transform 0.3s;
}
.rail-labels span.active {
  color: var(--accent);
  transform: translateX(-4px);
}
@media (max-width: 980px) { .rail { display: none; } }

/* ====================== TYPOGRAPHY ====================== */
main { position: relative; z-index: 2; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.section-head { max-width: 880px; margin-bottom: 80px; }
.section-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.section-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 60ch;
  margin: 0;
}

u { text-decoration: none; background: linear-gradient(transparent 70%, var(--accent-soft) 70%); padding: 0 2px; }

/* ====================== REVEAL ON SCROLL ====================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1; transform: none;
}

/* ====================== BUTTON ====================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #000;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 0 0 0 var(--accent-soft);
  cursor: pointer;
}
.btn .btn-arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease-out);
  font-size: 16px;
}
.btn:hover {
  box-shadow: 0 0 40px var(--accent-soft), 0 0 80px rgba(212,255,61,0.15);
  transform: translateY(-2px);
}
.btn:hover .btn-arrow { transform: translateX(6px); }
.btn-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.4), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.btn:hover .btn-glow { opacity: 1; }
.btn-xl { padding: 24px 40px; font-size: 14px; }

/* ====================== 01 · HERO ====================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--topbar-h) + 60px);
  padding-bottom: 60px;
  display: flex; flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-grid-inner {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 50% 70%, rgba(212,255,61,0.06), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(94,234,212,0.05), transparent 40%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}
.hero-orb--a {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(212,255,61,0.35), transparent 70%);
  top: 25%; left: -10%;
  animation: float 16s var(--ease-in-out) infinite;
}
.hero-orb--b {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,77,143,0.20), transparent 70%);
  bottom: 0%; right: -5%;
  animation: float 22s var(--ease-in-out) infinite reverse;
}
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px, -30px) scale(1.1); }
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  gap: 32px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  max-width: 100%;
}
.hero-eyebrow .eyebrow-text { color: var(--text-2); }

.hero-headline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(44px, 7.5vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
  word-break: break-word;
  hyphens: auto;
}
.hero-headline .word {
  display: inline-block;
  margin-right: 0.16em;
}
.hero-headline .word.accent {
  color: var(--accent);
  position: relative;
}
.hero-headline .word.italic {
  font-style: italic;
  font-weight: 300;
  color: var(--text-2);
}

.hero-sub {
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
  color: var(--text-2);
  max-width: 64ch;
  margin: 0;
}

.hero-cta-row {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.hero-meta {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
.hero-meta b { color: var(--accent); font-weight: 700; }

.hero-foot {
  position: absolute;
  left: var(--pad-x); right: var(--pad-x); bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.08em;
}
.hero-foot-line { flex: 1; height: 1px; background: var(--line); }

.hero-side-ticker {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-size: 10px;
  color: var(--text-4);
  letter-spacing: 0.18em;
  display: flex; gap: 12px;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 980px) { .hero-side-ticker { display: none; } }

/* ====================== 02 · DOR ====================== */
.pain {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.pain-track {
  position: relative;
  /* tall enough for sticky scroll-through */
  height: 320vh;
}
.pain-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  padding: 0 var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
.pain-left {
  position: relative;
  z-index: 2;
}
.pain-headline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 8px 0 32px;
  text-wrap: balance;
}
.glitch {
  display: inline-block;
  position: relative;
  color: var(--warn);
  font-style: italic;
}
.glitch::before, .glitch::after {
  content: "invisível";
  position: absolute; inset: 0;
  color: var(--warn);
  opacity: 0;
  clip-path: inset(0 0 0 0);
}
.glitch.flicker::before { animation: glitch-a 0.7s steps(2) both; }
.glitch.flicker::after  { animation: glitch-b 0.7s steps(2) both; }
@keyframes glitch-a {
  0%   { opacity: 0.7; transform: translate(-3px, 1px); clip-path: inset(20% 0 60% 0); }
  50%  { opacity: 0.6; transform: translate(2px, -2px); clip-path: inset(60% 0 20% 0); }
  100% { opacity: 0;   transform: translate(0,0); }
}
@keyframes glitch-b {
  0%   { opacity: 0.5; transform: translate(2px, 1px); clip-path: inset(50% 0 30% 0); }
  50%  { opacity: 0.4; transform: translate(-3px, 0); clip-path: inset(10% 0 70% 0); }
  100% { opacity: 0;   transform: translate(0,0); }
}

.strike-magenta {
  position: relative;
  color: var(--text-2);
}
.strike-magenta::after {
  content: '';
  position: absolute; left: -4px; right: -4px;
  top: 55%;
  height: 4px;
  background: var(--warn);
  transform: skewY(-2deg) scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-out) 0.3s;
}
.pain.in-view .strike-magenta::after { transform: skewY(-2deg) scaleX(1); }

.pain-prompt {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}
.pain-counter {
  display: flex; align-items: baseline; gap: 4px;
  font-size: 14px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.pain-counter-current {
  font-size: 64px;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pain-counter-divider { font-size: 32px; color: var(--text-4); }
.pain-counter-total { font-size: 32px; color: var(--text-4); font-variant-numeric: tabular-nums; }

.pain-right { position: relative; }
.pain-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 20px;
}
.pain-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(15,18,24,0.6), rgba(8,9,12,0.4));
  opacity: 0.18;
  transform: translateX(40px);
  filter: blur(1px);
  transition: all 0.6s var(--ease-out);
}
.pain-item.active {
  opacity: 1;
  transform: translateX(0);
  filter: none;
  border-color: var(--warn-soft);
  background: linear-gradient(180deg, rgba(255,77,143,0.08), rgba(8,9,12,0.4));
  box-shadow: 0 0 60px rgba(255,77,143,0.08);
}
.pain-item-num {
  color: var(--text-4);
  font-size: 14px;
  letter-spacing: 0.05em;
  padding-top: 6px;
  transition: color 0.4s;
}
.pain-item.active .pain-item-num { color: var(--warn); }
.pain-item h3 {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 8px;
}
.pain-item p { margin: 0; color: var(--text-2); font-size: 15px; line-height: 1.55; }

.pain-close {
  padding: 80px var(--pad-x) 140px;
  position: relative;
  border-top: 1px solid var(--line);
}
.pain-close-line {
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: var(--text);
  text-wrap: balance;
}
.pain-close-tag {
  display: block;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

@media (max-width: 880px) {
  .pain-sticky { grid-template-columns: 1fr; gap: 32px; align-items: start; padding-top: 100px; padding-bottom: 40px; }
  .pain-counter-current { font-size: 40px; }
}

/* ====================== 03 · SOLUÇÃO (pinned horizontal) ====================== */
.solution {
  position: relative;
  padding-top: 140px;
  border-top: 1px solid var(--line);
}

.services-pin {
  position: relative;
  height: 320vh;
  margin-top: 60px;
}
.services-sticky {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.services-track {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  padding: 0 var(--pad-x);
  will-change: transform;
}
.svc-card {
  flex: 0 0 clamp(380px, 42vw, 620px);
  height: 70vh;
  max-height: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  padding: clamp(32px, 3vw, 48px);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-card.featured::before { opacity: 1; }
.svc-card.featured { border-color: var(--accent-soft); box-shadow: 0 30px 80px -30px rgba(212,255,61,0.2); }

.svc-num {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.svc-illo {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  margin: -8px -8px 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(212,255,61,0.04), transparent 60%),
    linear-gradient(180deg, rgba(8,9,12,0.5), transparent);
  border-radius: 6px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.svc-illo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--line) 1px, transparent 1px) 0 0 / 32px 100%,
    linear-gradient(to bottom, var(--line) 1px, transparent 1px) 0 0 / 100% 32px;
  opacity: 0.4;
  pointer-events: none;
}
.svc-illo svg { width: 92%; height: auto; position: relative; z-index: 1; }
.svc-name {
  font-family: var(--font-sans);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.svc-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 24px;
}
.svc-result {
  padding-top: 20px;
  border-top: 1px dashed var(--line-strong);
}
.svc-result-label {
  display: block;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.svc-result p { font-size: 15px; color: var(--text); line-height: 1.5; margin: 0; }
.svc-result b { color: var(--accent); }

.services-progress {
  display: flex; align-items: center; gap: 14px;
  padding: 32px var(--pad-x) 0;
  max-width: var(--container);
  margin: 0 auto;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
}
.services-progress-bar {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.services-progress-bar > span {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 33%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-dim);
  transition: width 0.3s var(--ease-out);
}

@media (max-width: 880px) {
  .svc-card { flex: 0 0 80vw; height: auto; max-height: none; }
  .services-pin { height: auto; }
  .services-sticky { position: relative; height: auto; padding: 40px 0; }
  .services-track { flex-direction: column; padding: 0 var(--pad-x); }
}

/* ====================== 04 · DIFERENCIAIS ====================== */
.diffs {
  position: relative;
  padding: 160px 0 140px;
  border-top: 1px solid var(--line);
}
.diffs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.diff {
  grid-column: span 2;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
  min-height: 280px;
}
.diff:hover {
  border-color: var(--accent-soft);
  transform: translateY(-4px);
}
.diff::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 30%; height: 1px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s, width 0.5s var(--ease-out);
}
.diff:hover::before { opacity: 1; width: 100%; }
.diff-lg { grid-column: span 3; min-height: 320px; }

.diff-glyph {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--bg);
}
.diff-glyph svg { width: 32px; height: 32px; }
.diff-meta {
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.12em;
}
.diff-title {
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
}
.diff-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
  flex: 1;
}
.diff-stat {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.1em;
}
.diff-stat span {
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

@media (max-width: 980px) {
  .diffs-grid { grid-template-columns: repeat(2, 1fr); }
  .diff, .diff-lg { grid-column: span 1; min-height: 240px; }
  .diff-lg { grid-column: span 2; }
}
@media (max-width: 600px) {
  .diffs-grid { grid-template-columns: 1fr; }
  .diff, .diff-lg { grid-column: span 1; }
}

/* ====================== 05 · PROCESSO ====================== */
.process {
  position: relative;
  padding: 160px 0 200px;
  border-top: 1px solid var(--line);
}
.process-timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 80px;
  max-width: 1100px;
  margin-left: auto; margin-right: auto;
}
.process-line {
  position: absolute;
  left: 40px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
}
.process-line-fill {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--accent), var(--accent-dim));
  box-shadow: 0 0 12px var(--accent-dim);
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.5fr) 1fr;
  gap: 60px;
  padding: 60px 0;
  align-items: start;
}
.step:not(:last-child) { border-bottom: 1px solid var(--line); }
.step::before {
  /* dot on the timeline */
  content: '';
  position: absolute;
  left: -47px; top: 80px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--text-4);
  transition: all 0.4s;
}
.step.active::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent), 0 0 4px var(--accent);
}
.step-num {
  position: relative;
}
.step-num-bg {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(80px, 9vw, 140px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-4);
  transition: color 0.5s, -webkit-text-stroke-color 0.5s;
}
.step.active .step-num-bg {
  color: var(--accent);
  -webkit-text-stroke-color: var(--accent);
}
.step-num-fg {
  position: absolute;
  bottom: -4px; left: 4px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
}
.step-body h3 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.step-body p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 24px;
  max-width: 60ch;
}
.step-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
}

@media (max-width: 880px) {
  .process-timeline { padding-left: 40px; }
  .process-line { left: 12px; }
  .step { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .step::before { left: -33px; top: 50px; }
}

/* ====================== 06 · PROVA SOCIAL ====================== */
.proof {
  position: relative;
  padding: 160px 0 160px;
  border-top: 1px solid var(--line);
}
.proof-mockups {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 80px;
}
.mock-desktop {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), 0 0 60px -20px rgba(212,255,61,0.1);
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
.mock-desktop--link {
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  cursor: pointer;
}
.mock-desktop--link:hover {
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 80px -10px rgba(212,255,61,0.2);
  transform: translateY(-4px);
}
.mock-desktop--link:hover .mock-url {
  color: var(--accent);
  border-color: var(--accent-soft);
}
.mock-desktop-bar {
  height: 32px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
  padding: 0 14px;
  gap: 8px;
}
.mock-desktop-bar > span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--text-4);
}
.mock-url {
  flex: 1;
  min-width: 0;
  margin-left: 12px;
  font-size: 10px;
  color: var(--text-3);
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-desktop-body {
  padding: 40px 48px;
  display: flex; flex-direction: column;
  height: calc(100% - 32px);
  gap: 24px;
  background:
    radial-gradient(circle at 80% 0%, rgba(212,255,61,0.08), transparent 50%),
    var(--surface);
}
.mock-desktop-body--screenshot {
  padding: 0;
  overflow: hidden;
}
.mock-desktop-shot {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(180deg, rgba(8, 9, 12, 0.02) 0%, rgba(8, 9, 12, 0.18) 100%),
    url("screencapture-villageartedecor-br-2026-05-26-23_44_26.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  display: block;
}
.mock-hero { display: flex; flex-direction: column; gap: 12px; flex: 1; justify-content: center; }
.mock-hero-pill {
  align-self: flex-start;
  font-size: 9px;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  letter-spacing: 0.1em;
}
.mock-hero-h {
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.mock-hero-sub { color: var(--text-2); font-size: 13px; max-width: 40ch; }
.mock-btn {
  align-self: flex-start;
  background: var(--accent); color: #000;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.mock-stats > div { display: flex; flex-direction: column; gap: 2px; }
.mock-stats b { font-size: clamp(20px, 2.2vw, 30px); color: var(--accent); letter-spacing: -0.02em; }
.mock-stats span { font-size: 9px; color: var(--text-3); letter-spacing: 0.1em; }

.mock-phone {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 19.5;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  padding: 10px;
  position: relative;
  margin-left: auto;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.6);
}
.mock-phone-notch {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 18px;
  background: var(--bg);
  border-radius: 999px;
  z-index: 2;
}
.mock-phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-radius: 24px;
  padding: 56px 18px 24px;
  display: flex; flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.mock-phone-pill {
  align-self: flex-start;
  font-size: 9px;
  color: var(--text-3);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}
.mock-phone-h { font-size: 18px; font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
.mock-phone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: auto;
}
.mock-phone-grid > img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  background: rgba(255,255,255,0.04);
}
.mock-phone-cta {
  text-align: center;
  font-size: 10px;
  background: var(--accent); color: #000;
  padding: 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

@media (max-width: 880px) {
  .proof-mockups { grid-template-columns: 1fr; }
  .mock-phone { margin: 0 auto; }
}

.testimonial {
  position: relative;
  max-width: 920px;
  margin: 0;
  padding: 56px 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
}
.testimonial-mark {
  position: absolute;
  top: -20px; left: 40px;
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  font-family: 'Geist', serif;
  font-style: italic;
  font-weight: 400;
}
.testimonial blockquote {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 0 0 32px;
  font-style: italic;
  font-family: 'Geist', serif;
}
.testimonial figcaption {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.testimonial figcaption > div:last-child { display: flex; flex-direction: column; gap: 2px; }
.testimonial figcaption b { font-size: 15px; font-weight: 600; font-style: normal; font-family: var(--font-sans); }
.testimonial figcaption span { font-size: 10px; color: var(--text-3); letter-spacing: 0.1em; }

@media (max-width: 600px) { .testimonial { padding: 40px 24px; } }

/* ====================== 07 · FAQ ====================== */
.faq {
  position: relative;
  padding: 160px 0 160px;
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-head { position: sticky; top: calc(var(--topbar-h) + 40px); }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  position: relative;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 20px;
  align-items: center;
  transition: padding 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-mark {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
}
.faq-q {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}
.faq-toggle {
  font-size: 24px;
  color: var(--text-3);
  transition: transform 0.4s var(--ease-out), color 0.3s;
  text-align: right;
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-item[open] .faq-q-mark { color: var(--accent); }
.faq-a {
  padding: 0 60px 32px 80px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 70ch;
  animation: faqOpen 0.5s var(--ease-out);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.faq-item:hover { background: rgba(255,255,255,0.015); }

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: relative; top: 0; }
  .faq-item summary { grid-template-columns: 48px 1fr 30px; gap: 12px; }
  .faq-a { padding-left: 60px; padding-right: 0; }
}

/* ====================== 08 · FECHAMENTO ====================== */
.final {
  position: relative;
  padding: 180px 0 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.final-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.final-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--line) 1px, transparent 1px) 0 0 / 64px 100%,
    linear-gradient(to bottom, var(--line) 1px, transparent 1px) 0 0 / 100% 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,1), transparent 70%);
  opacity: 0.6;
}
.final-orb {
  position: absolute;
  left: 50%; top: 30%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,255,61,0.25), transparent 60%);
  filter: blur(80px);
}

.final-inner {
  text-align: center;
  max-width: 1100px;
  padding-bottom: 140px;
}
.final-headline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 100px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 24px 0 40px;
  text-wrap: balance;
}
.final-headline > span { display: block; }
.final-headline > span span.accent { color: var(--accent); font-weight: 500; }
.final-lede {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--text-2);
  max-width: 60ch;
  margin: 0 auto 24px;
}
.final-kicker {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  color: var(--text);
  max-width: 50ch;
  margin: 0 auto 60px;
  font-weight: 500;
}
.final-cta-row {
  display: flex; justify-content: center;
  margin-bottom: 48px;
}
.final-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; justify-content: center; gap: 40px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
}
.final-bullets .dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 12px var(--accent-dim);
}
.final-bullets .dot-warn { background: var(--warn); box-shadow: 0 0 12px rgba(255,77,143,0.5); }

.footer {
  border-top: 1px solid var(--line);
  padding: 24px var(--pad-x);
  display: flex; justify-content: space-between;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px dashed var(--line-strong);
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.footer-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 600px) { .footer { justify-content: center; text-align: center; } }

/* ====================== LEGAL PAGES ====================== */
.legal-page {
  padding: 80px 0;
}
.legal-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-3);
  text-decoration: none;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.legal-back:hover { color: var(--accent); }
.legal-header h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.legal-updated {
  margin: 0 0 30px;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
.legal-intro {
  margin: 0 0 24px;
  color: var(--text-2);
  line-height: 1.6;
}
.legal-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border-radius: 10px;
  padding: 26px;
  margin-bottom: 14px;
}
.legal-card h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.02em;
}
.legal-card p,
.legal-card li {
  color: var(--text-2);
  line-height: 1.6;
}
.legal-card ul {
  margin: 0;
  padding-left: 18px;
}
.legal-contact {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-2);
}
.legal-contact a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--accent-dim);
}

/* ====================== COOKIE BANNER ====================== */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 18px;
  z-index: 90;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(12,14,18,0.96), rgba(8,9,12,0.98));
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(212,255,61,0.08);
  padding: 16px;
  backdrop-filter: blur(10px);
}
.cookie-banner p {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.45;
}
.cookie-banner-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}
.cookie-btn--accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}
.cookie-btn--accept:hover {
  box-shadow: 0 0 24px var(--accent-soft);
}
.cookie-btn--reject:hover {
  border-color: var(--warn);
  color: var(--warn);
}
.cookie-link {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px dashed var(--line-strong);
}
.cookie-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
body.has-cookie-banner .whatsapp-float {
  bottom: 114px;
}

/* ====================== WHATSAPP FLOAT ====================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; left: 24px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ====================== ACESSIBILIDADE: REDUCED MOTION ====================== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-orb--a,
  .hero-orb--b { animation: none; }
  .status-dot  { animation: none; opacity: 1; }
  html { scroll-behavior: auto; }
  .pain-item {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .glitch::before,
  .glitch::after { animation: none !important; }
  .strike-magenta::after { transform: skewY(-2deg) scaleX(1); transition: none; }
  .diff { transition: none; }
  .diff:hover { transform: none; }
  .whatsapp-float { transition: none; }
}

/* ======================
   MOBILE — PAIN + SERVICES (≤ 880px)
   Desativa o sticky scrollytelling e corrige os cards de serviço
   ====================== */
@media (max-width: 880px) {
  /* Disable 320vh sticky track — itens ficam visíveis normalmente */
  .pain-track  { height: auto; }
  .pain-sticky {
    position: relative;
    height: auto;
    padding-top: 64px;
    padding-bottom: 48px;
  }
  .pain-item   { opacity: 1; transform: translateX(0); filter: none; }
  .pain-counter,
  .pain-prompt { display: none; }

  /* Fix: flex: 0 0 80vw em flex-direction:column define ALTURA mínima de 80vw — bug */
  .svc-card          { flex: none; width: 100%; height: auto; max-height: none; }
  .services-progress { display: none; }
}

/* ======================
   MOBILE — GLOBAL (≤ 640px)
   ====================== */
@media (max-width: 640px) {

  /* Paddings de seção */
  .solution { padding-top: 72px; }
  .diffs    { padding: 72px 0; }
  .process  { padding: 72px 0 80px; }
  .proof    { padding: 72px 0; }
  .faq      { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--topbar-h) + 44px);
    padding-bottom: 34px;
  }
  .hero-eyebrow { display: none; }
  .hero-inner   { gap: 20px; }
  .hero-headline {
    font-size: clamp(34px, 11.5vw, 56px);
    line-height: 0.98;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.45;
  }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-meta {
    text-align: center;
    font-size: 10px;
  }
  .hero-foot    { display: none; }

  /* Botões — evita overflow do texto longo */
  .btn {
    padding: 14px 20px;
    font-size: 12px;
    gap: 10px;
    justify-content: center;
  }
  .btn-xl {
    padding: 16px 20px;
    font-size: 12px;
    width: 100%;
  }
  .btn-label {
    white-space: normal;
    text-align: center;
  }

  /* Pain close */
  .pain-sticky { padding-top: 42px; gap: 24px; }
  .pain-headline { margin-bottom: 18px; }
  .pain-list { gap: 12px; }
  .pain-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }
  .pain-item-num { padding-top: 0; }
  .pain-item h3 { font-size: 20px; }
  .pain-item p { font-size: 14px; line-height: 1.45; }
  .pain-close { padding: 48px var(--pad-x) 64px; }

  /* Services */
  .services-track { gap: 16px; }
  .svc-card { padding: 24px; }
  .svc-illo {
    min-height: 180px;
    margin: 0 0 16px;
  }
  .svc-name { font-size: clamp(24px, 8vw, 30px); }
  .svc-desc { font-size: 15px; margin-bottom: 16px; }

  /* Diferenciais */
  .diffs-grid { gap: 12px; }
  .diff { padding: 22px; min-height: 220px; }

  /* Process timeline */
  .process-timeline { padding-left: 36px; }
  .process-line     { left: 10px; }
  .step             { padding: 36px 0; gap: 12px; }
  .step::before     { left: -30px; top: 44px; }
  .step-num-bg      { font-size: clamp(52px, 16vw, 82px); }
  .step-body h3     { font-size: clamp(24px, 8vw, 32px); }
  .step-body p      { font-size: 15px; line-height: 1.5; }
  .step-list        { font-size: 10px; letter-spacing: 0.06em; }

  /* Proof */
  .proof-mockups { margin-bottom: 40px; }
  .mock-desktop { aspect-ratio: 16 / 11; }
  .mock-desktop-bar { padding: 0 10px; gap: 6px; }
  .mock-url { margin-left: 8px; font-size: 9px; padding: 3px 8px; }
  .mock-phone {
    max-width: 280px;
    border-radius: 28px;
  }
  .mock-phone-screen {
    padding: 50px 14px 16px;
    gap: 12px;
  }
  .mock-phone-grid { gap: 4px; }
  .testimonial   { padding: 36px 20px 28px; }
  .testimonial-mark { font-size: 80px; top: -12px; left: 20px; }
  .testimonial blockquote {
    font-size: clamp(18px, 6vw, 24px);
    margin-bottom: 22px;
  }

  /* FAQ */
  .faq-item summary {
    padding: 20px 0;
    align-items: start;
  }
  .faq-q { font-size: 17px; }
  .faq-a { padding: 0 0 24px 48px; }

  /* Final / CTA */
  .final        { padding: 72px 0 0; }
  .final-inner  { padding-bottom: 72px; }
  .final-cta-row { margin-bottom: 28px; }
  .final-bullets {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .legal-page { padding: 64px 0; }
  .legal-card { padding: 20px; }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }
  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cookie-link {
    margin-left: 0;
    grid-column: span 2;
    text-align: center;
  }
  body.has-cookie-banner .whatsapp-float {
    bottom: 168px;
  }
}

/* ======================
   MOBILE — MUITO PEQUENO (≤ 480px)
   ====================== */
@media (max-width: 480px) {
  /* Topbar */
  .topbar     { padding: 0 16px; }
  .logo-mark  { display: none; }
  .logo-text  { font-size: 11px; letter-spacing: 0; }
  .topbar-cta {
    padding: 5px 10px;
    font-size: 10px;
    max-width: 48vw;
  }

  /* Hero */
  .hero-inner { gap: 16px; }
  .hero-headline { font-size: clamp(30px, 11vw, 42px); }
  .hero-sub { font-size: 15px; }

  /* FAQ itens */
  .faq-item summary {
    grid-template-columns: 40px 1fr 28px;
    gap: 8px;
    padding: 18px 0;
  }
  .faq-a { padding: 0 0 20px 40px; }

  /* Testimonial */
  .testimonial figcaption { flex-direction: column; align-items: flex-start; }

  /* Proof */
  .mock-phone { max-width: 252px; padding: 8px; }
  .mock-phone-notch { width: 54px; height: 16px; top: 12px; }
  .mock-phone-screen { border-radius: 20px; padding: 42px 12px 14px; }
}
