/* ============================================================
   GeoMatch — Landing Page
   Paleta: cream/gold/preto (brand GeoMatch)
   Estilo: resposta direta, seções numeradas, pills, marquees
   ============================================================ */

:root {
  --cream: #F1E7D4;
  --cream-2: #E9DAC0;
  --sand: #F4DFC4;
  --gold: #C9A079;
  --gold-bright: #EFCF9C;
  --gold-deep: #8B6240;
  --brown: #6E4F38;
  --black: #0A0805;
  --ink: #18120B;
  --ink-soft: #3A2E20;
  --paper-line: rgba(10, 8, 5, 0.14);
  --gold-line: rgba(201, 160, 121, 0.28);
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'Outfit', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  background: #050403; /* evita flash claro no rubber-band iOS */
}

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  width: 100%;
}

[data-controller="landing"] {
  overflow-x: clip;
  width: 100%;
  touch-action: pan-y pinch-zoom;
}

img { display: block; max-width: 100%; }

.wrap { width: min(1140px, 92vw); margin: 0 auto; }

/* ---------- Type ---------- */

.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
  text-wrap: balance;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.kicker::before, .kicker::after {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  opacity: 0.5;
}

.hl {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  padding: 0 0.14em;
  border-radius: 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hl-ink {
  background-image: linear-gradient(var(--ink), var(--ink));
  color: var(--gold-bright);
  padding: 0 0.14em;
  border-radius: 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- Buttons ---------- */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-row.center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid var(--black);
  font-family: var(--body);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 55%, var(--gold-deep) 130%);
  color: var(--black);
  box-shadow: 0 10px 32px rgba(201, 160, 121, 0.35);
}
.btn--gold:hover { box-shadow: 0 14px 40px rgba(201, 160, 121, 0.5); }

.btn--dark {
  background: var(--ink);
  color: var(--sand);
  border-color: var(--gold);
}

.btn .btn-sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}
.btn .btn-label { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.btn .btn-ic { font-size: 22px; line-height: 1; }

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  padding: 12px 0;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.marquee--dark {
  background: var(--black);
  color: var(--gold-bright);
  border-color: var(--gold);
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee-roll 26s linear infinite;
}
.marquee-track span { padding: 0 18px; }
.marquee-track span::after { content: "✦"; padding-left: 36px; opacity: 0.55; }

@keyframes marquee-roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Reveal on scroll ---------- */

@media (prefers-reduced-motion: no-preference) {
  .rv { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
  .rv.is-in { opacity: 1; transform: none; }
  .rv-d1 { transition-delay: 0.08s; }
  .rv-d2 { transition-delay: 0.16s; }
  .rv-d3 { transition-delay: 0.24s; }
}

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 22px 0;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar .btn { padding: 10px 22px; font-size: 14px; border-color: var(--gold); }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.wordmark .wm-geo { color: #F7F1E6; }
.wordmark .wm-match {
  background: linear-gradient(180deg, #FFF1D8 0%, var(--sand) 25%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wordmark--ink .wm-geo { color: var(--ink); }

.logo-pin {
  width: 34px; height: 34px;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  flex: none;
}
.logo-pin span {
  transform: rotate(45deg);
  font-family: var(--display);
  font-size: 15px;
  color: var(--gold-bright);
}
.wordmark--ink .logo-pin { border-color: var(--ink); }
.wordmark--ink .logo-pin span { color: var(--ink); }

.wordmark-logo { height: 34px; width: auto; display: block; }

/* ============================================================
   1 · HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;   /* fallback para browsers antigos */
  min-height: 100svh;  /* small viewport height: exclui barras de UI */
  min-height: 100dvh;  /* dynamic viewport height: atualiza quando barra de URL some */
  background: radial-gradient(ellipse at 50% 38%, #14100A 0%, #0A0805 60%, #000 100%);
  color: #F7F1E6;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 78% 42%, rgba(201, 160, 121, 0.13) 0%, transparent 42%),
    repeating-linear-gradient(90deg, rgba(201, 160, 121, 0.045) 0 1px, transparent 1px 90px);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5ED36A;
  box-shadow: 0 0 10px #5ED36A;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot { 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(48px, 6.6vw, 92px);
  margin-bottom: 26px;
}

.hero-sub {
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 500;
  line-height: 1.45;
  color: #E4D8C2;
  max-width: 30ch;
  margin-bottom: 14px;
}
.hero-sub strong { color: var(--gold-bright); font-weight: 700; }

.hero-support {
  font-size: 15px;
  color: rgba(228, 216, 194, 0.62);
  margin-bottom: 36px;
  max-width: 46ch;
  line-height: 1.6;
}

.hero-proof {
  margin-top: 26px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(228, 216, 194, 0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.hero-proof .sep { color: var(--gold); }

/* Phone mockup */

.phone {
  position: relative;
  width: min(320px, 100%);
  margin: 0 auto;
  border-radius: 44px;
  border: 3px solid #2A2115;
  background: #000;
  padding: 10px;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(201, 160, 121, 0.25),
    0 0 120px rgba(201, 160, 121, 0.12);
}
.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: #14100A;
}
.phone-screen img { width: 100%; }
.phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 24px;
  border-radius: 999px;
  background: #000;
  z-index: 2;
}

.hero-phone { position: relative; }

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(16, 12, 8, 0.92);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 9px 16px 9px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #F1E7D4;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 3;
  animation: chip-float 5s ease-in-out infinite;
}
.float-chip small { display: block; font-size: 11px; font-weight: 600; color: var(--gold); }
.float-chip .chip-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: grid; place-items: center;
  font-size: 13px;
  color: var(--black);
  font-weight: 800;
  flex: none;
}
.float-chip--a { top: 13%; left: -64px; }
.float-chip--b { bottom: 19%; right: -56px; animation-delay: 2.2s; }

@keyframes chip-float { 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .float-chip { animation: none; } }

/* ============================================================
   Section scaffolding
   ============================================================ */

.sec { padding: 110px 0; position: relative; overflow-x: clip; }
.sec--cream { background: var(--cream); color: var(--ink); }
.sec--cream-2 { background: var(--cream-2); color: var(--ink); }
.sec--dark {
  background: linear-gradient(180deg, #0D0A07 0%, #0A0805 100%);
  color: #F1E7D4;
}
.sec--black { background: #050403; color: #F1E7D4; }

.sec-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.sec-head .kicker { margin-bottom: 18px; }
.sec-head h2 { font-size: clamp(34px, 4.4vw, 60px); margin-bottom: 18px; }
.sec-head p { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.55; opacity: 0.82; text-wrap: pretty; }

.sec--cream .kicker, .sec--cream-2 .kicker { color: var(--gold-deep); }
.sec--dark .kicker, .sec--black .kicker { color: var(--gold); }

.sticker-num {
  font-family: var(--display);
  font-size: 22px;
  width: 56px; height: 56px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}

/* ============================================================
   2 · COMO FUNCIONA
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  background: var(--sand);
  border: 2px solid var(--black);
  border-radius: 22px;
  padding: 34px 28px 38px;
  box-shadow: 6px 6px 0 var(--black);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.step-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--black); }
.step-card .sticker-num { color: var(--gold-deep); background: var(--cream); }
.step-card h3 { font-family: var(--display); font-size: 26px; text-transform: uppercase; letter-spacing: 0.02em; }
.step-card p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }

/* ============================================================
   3 · ONDE USAR
   ============================================================ */

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.use-card {
  background: var(--cream);
  border: 1.5px solid var(--black);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.use-card:hover { transform: translateY(-4px); box-shadow: 0 14px 0 -8px var(--gold); }
.use-card .use-emoji { font-size: 34px; line-height: 1; }
.use-card h3 { font-size: 19px; font-weight: 800; }
.use-card p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); }

.sec-closing {
  margin: 54px auto 0;
  text-align: center;
}
.sec-closing span {
  display: inline-block;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 30px);
  background: var(--ink);
  color: var(--gold-bright);
  padding: 14px 30px;
  border-radius: 14px;
  transform: rotate(-1deg);
}

/* ============================================================
   4 · CONHEÇA O APP
   ============================================================ */

.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
}
.feature-row + .feature-row { border-top: 1px solid rgba(201, 160, 121, 0.16); }
.feature-row--flip .feature-media { order: 2; }

.feature-media { display: flex; justify-content: center; }
.feature-media .phone { width: min(280px, 80vw); }

.feature-copy .feat-ic {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.feature-copy h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  margin-bottom: 18px;
}
.feature-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(241, 231, 212, 0.78);
  margin-bottom: 14px;
  max-width: 48ch;
  text-wrap: pretty;
}
.feature-copy p strong { color: var(--gold-bright); }

.feature-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

/* image-slot inside phones */
.phone-screen image-slot { width: 100%; aspect-ratio: 720 / 1346; display: block; }

/* ============================================================
   5 · SEGURANÇA
   ============================================================ */

.sec--seg {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 160, 121, 0.09) 0%, transparent 55%),
    #050403;
}

.seg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.seg-card {
  border: 1px solid var(--gold-line);
  background: rgba(201, 160, 121, 0.05);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.seg-card .seg-ic {
  font-size: 26px;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(201, 160, 121, 0.12);
  border: 1px solid var(--gold-line);
  display: grid;
  place-items: center;
  flex: none;
}
.seg-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--gold-bright); }
.seg-card p { font-size: 15px; line-height: 1.6; color: rgba(241, 231, 212, 0.72); }

.seg-central {
  border: 2px solid var(--gold);
  border-radius: 22px;
  padding: 38px;
  background: linear-gradient(135deg, rgba(201, 160, 121, 0.1), rgba(201, 160, 121, 0.02));
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.seg-central-title h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.1;
  color: var(--gold-bright);
}
.seg-central-title p { margin-top: 8px; font-size: 14px; color: rgba(241, 231, 212, 0.6); }

/* Grid de 4 ações rápidas — igual à tela /safety_center */
.seg-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.seg-quick-card {
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.seg-quick-card strong { font-size: 15px; font-weight: 800; display: block; }
.seg-quick-card span   { font-size: 13px; opacity: 0.75; display: block; }

.seg-quick-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}

.seg-quick--pink        { background: rgba(239, 107, 107, 0.18); color: #F1E7D4; }
.seg-quick--pink        .seg-quick-icon { background: rgba(220, 80, 80, 0.85); color: #fff; }

.seg-quick--blue        { background: rgba(100, 130, 200, 0.18); color: #F1E7D4; }
.seg-quick--blue        .seg-quick-icon { background: rgba(70, 100, 180, 0.85); color: #fff; }

.seg-quick--purple      { background: rgba(140, 100, 200, 0.18); color: #F1E7D4; }
.seg-quick--purple      .seg-quick-icon { background: rgba(110, 80, 180, 0.85); color: #fff; }

.seg-quick--pink-light  { background: rgba(239, 150, 130, 0.15); color: #F1E7D4; }
.seg-quick--pink-light  .seg-quick-icon { background: rgba(210, 100, 90, 0.75); color: #fff; }

.seg-closing {
  margin-top: 60px;
  text-align: center;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 36px);
  color: #F1E7D4;
}
.seg-closing .hl { white-space: nowrap; }

/* ============================================================
   6 · FILTRO POR CIDADE
   ============================================================ */

.filter-how {
  max-width: 720px;
  margin: -28px auto 56px;
  text-align: center;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  border: 2px dashed var(--gold-deep);
  border-radius: 18px;
  padding: 24px 30px;
  background: rgba(244, 223, 196, 0.45);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.filter-card {
  background: var(--cream-2);
  border: 1.5px solid var(--black);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 5px 5px 0 rgba(10, 8, 5, 0.85);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.filter-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 rgba(10, 8, 5, 0.85); }
.filter-card h3 { font-size: 19px; font-weight: 800; margin: 12px 0 10px; }
.filter-card p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.filter-card .use-emoji { font-size: 30px; }

/* ============================================================
   7 · GOLD
   ============================================================ */

.sec--gold-mode {
  background:
    radial-gradient(ellipse at 50% 15%, rgba(201, 160, 121, 0.16) 0%, transparent 55%),
    #030302;
  overflow: hidden;
}
.sec--gold-mode::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(239, 207, 156, 0.06) 0%, transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(239, 207, 156, 0.07) 0%, transparent 26%);
  pointer-events: none;
}

.gold-badge {
  display: inline-block;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, #FFF1D8, var(--gold-bright) 35%, var(--gold) 70%, var(--gold-deep));
  padding: 9px 24px 8px 28px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 0 44px rgba(239, 207, 156, 0.35);
}

.gold-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.gold-invisible {
  border: 1px solid var(--gold-line);
  border-radius: 24px;
  padding: 44px;
  background: linear-gradient(160deg, rgba(201, 160, 121, 0.1), rgba(201, 160, 121, 0.02));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gold-invisible .feat-ic { font-size: 42px; display: block; margin-bottom: 20px; }
.gold-invisible h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.08;
  margin-bottom: 18px;
}
.gold-invisible h3 .hl { white-space: nowrap; }
.gold-invisible p { font-size: 17px; line-height: 1.65; color: rgba(241, 231, 212, 0.78); max-width: 50ch; }

.gold-panel {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid var(--gold);
  border-radius: 24px;
  background: #0B0906;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(201, 160, 121, 0.12);
}
.gold-panel ul { list-style: none; display: flex; flex-direction: column; }
.gold-panel li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(241, 231, 212, 0.88);
}
.gold-panel li + li { border-top: 1px solid rgba(201, 160, 121, 0.14); }
.gold-panel li::before {
  content: "✓";
  font-weight: 800;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex: none;
  margin-top: 1px;
}

.gold-price {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(201, 160, 121, 0.25);
  text-align: center;
}
.gold-price .price-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.gold-price .price-value {
  font-family: var(--display);
  font-size: 44px;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 4px;
}
.gold-price .price-period { font-size: 14px; color: rgba(241, 231, 212, 0.55); margin-bottom: 20px; }
.gold-price .btn { width: 100%; justify-content: center; }

/* ============================================================
   9 · DEPOIMENTOS
   ============================================================ */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.testi-card {
  background: var(--sand);
  border: 1.5px solid var(--black);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testi-badge {
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--gold-bright);
  border-radius: 999px;
  padding: 6px 14px;
}

.testi-card blockquote {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.testi-card blockquote::before { content: "“"; font-family: var(--display); font-size: 34px; color: var(--gold-deep); display: block; line-height: 0.6; margin-bottom: 10px; }

.testi-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--black);
  flex: none;
}
.testi-who strong { font-size: 14.5px; display: block; }
.testi-who small { font-size: 12.5px; color: var(--ink-soft); }

.testi-wide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testi-wide .testi-card {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--gold-deep);
  box-shadow: 6px 6px 0 var(--gold);
}
.testi-wide .testi-card blockquote { color: rgba(241, 231, 212, 0.85); font-size: 16.5px; }
.testi-wide .testi-badge { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--black); }
.testi-wide .testi-who small { color: rgba(241, 231, 212, 0.55); }

.testi-closing {
  margin-top: 56px;
  text-align: center;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}

/* ============================================================
   10 · NOSSA HISTÓRIA
   ============================================================ */

.story-cols {
  max-width: 820px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 17.5px;
  line-height: 1.75;
  color: rgba(241, 231, 212, 0.8);
  text-wrap: pretty;
}
.story-cols strong { color: var(--gold-bright); }

.story-quote {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.2;
  color: #F1E7D4;
}
.story-quote footer {
  margin-top: 16px;
  font-family: var(--body);
  text-transform: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 70px;
}
.stat-card {
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  background: rgba(201, 160, 121, 0.04);
}
.stat-card .stat-emoji { font-size: 28px; margin-bottom: 12px; }
.stat-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 21px; color: var(--gold-bright); margin-bottom: 8px; }
.stat-card p { font-size: 13.5px; line-height: 1.5; color: rgba(241, 231, 212, 0.6); }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mvv-card {
  border: 1px solid rgba(201, 160, 121, 0.18);
  border-radius: 18px;
  padding: 30px 26px;
  background: rgba(201, 160, 121, 0.04);
}
.mvv-card h3 { font-size: 17px; font-weight: 800; color: var(--gold-bright); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.mvv-card p { font-size: 15px; line-height: 1.6; color: rgba(241, 231, 212, 0.7); }

/* ============================================================
   8 · CTA FINAL
   ============================================================ */

.sec--final {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(201, 160, 121, 0.4) 0%, transparent 60%),
    var(--cream);
  text-align: center;
}

.final-incl {
  max-width: 680px;
  margin: 0 auto 56px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.final-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 28px;
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--gold);
  padding: 60px 48px;
  color: var(--cream);
}
.final-card h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.final-card > p { font-size: 16px; color: rgba(241, 231, 212, 0.65); margin-bottom: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #050403;
  color: rgba(241, 231, 212, 0.6);
  padding: 56px 0 40px;
  border-top: 1px solid rgba(201, 160, 121, 0.18);
}
.footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  text-align: center;
}
.footer-tag { font-size: 14px; letter-spacing: 0.04em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; font-size: 14px; }
.footer-links a { color: var(--gold); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-contact { font-size: 13.5px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); text-decoration: underline; }
.footer-fine { font-size: 12px; opacity: 0.55; }

/* ============================================================
   CTA fixo mobile
   ============================================================ */

.mobile-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 50;
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(12, 9, 6, 0.94);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 10px 12px 10px 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
}
.mobile-cta.is-visible {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.mobile-cta .wordmark-logo { height: 30px; width: auto; }
.mobile-cta-text { flex: 1; min-width: 0; color: var(--cream); line-height: 1.2; }
.mobile-cta-text strong { display: block; font-size: 15px; }
.mobile-cta-text small { font-size: 12px; color: rgba(241, 231, 212, 0.55); }
.mobile-cta .btn { padding: 11px 20px; font-size: 14px; flex: none; width: auto; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 980px) {
  .sec { padding: 76px 0; }
  .sec-head { margin-bottom: 44px; }
  .hero { padding: 110px 0 70px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-sub, .hero-support { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-proof { justify-content: center; }
  .steps { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
  .feature-row--flip .feature-media { order: 0; }
  .feature-copy { text-align: center; }
  .feature-copy p { margin-left: auto; margin-right: auto; }
  .seg-grid { grid-template-columns: 1fr; }
  .seg-central { gap: 24px; }
  .filter-grid { grid-template-columns: 1fr; }
  .gold-features { grid-template-columns: 1fr; gap: 16px; margin-bottom: 20px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .testi-wide { grid-template-columns: 1fr; max-width: 520px; margin: 20px auto 0; }
  .story-stats { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid { grid-template-columns: 1fr; }
  .float-chip--a { left: -8px; }
  .float-chip--b { right: -8px; }
}

@media (max-width: 700px) {
  .mobile-cta { display: flex; }
}

@media (max-width: 560px) {
  .sec { padding: 60px 0; }
  .sec-head { margin-bottom: 36px; }
  .sec-head p { font-size: 15.5px; }
  .wrap { width: min(1140px, 100vw - 40px); }

  /* Hero compacto */
  .hero { padding: 96px 0 64px; min-height: auto; }
  .hero .wrap { gap: 44px; }
  .hero h1 { font-size: clamp(42px, 12vw, 56px); margin-bottom: 20px; }
  .hero-badge { margin-bottom: 22px; padding: 7px 14px; font-size: 11.5px; }
  .hero-sub { font-size: 17px; }
  .hero-support { font-size: 14px; margin-bottom: 28px; }
  .hero-proof { font-size: 12px; }
  .hero-phone .phone { width: min(250px, 76vw); }
  .float-chip--a, .float-chip--b { display: none; }
  .topbar { padding: 16px 0; }
  .topbar .btn { display: none; }
  .wordmark { font-size: 19px; }
  .logo-pin { width: 30px; height: 30px; }
  .logo-pin span { font-size: 13px; }

  .marquee { padding: 9px 0; font-size: 12.5px; }

  .btn { width: 100%; justify-content: center; padding: 15px 24px; font-size: 16px; }

  .display { line-height: 1.06; }
  .sec-head h2 { font-size: clamp(30px, 9vw, 40px); }

  .step-card { padding: 28px 24px 30px; box-shadow: 5px 5px 0 var(--black); }
  .step-card h3 { font-size: 23px; }
  .sticker-num { width: 48px; height: 48px; font-size: 19px; }

  .use-grid { grid-template-columns: 1fr; }
  .use-card { padding: 24px 22px; }
  .sec-closing span { font-size: 18px; padding: 12px 20px; }

  .feature-media .phone { width: min(240px, 72vw); }
  .feature-copy h3 { font-size: 27px; }
  .feature-copy p { font-size: 15.5px; }

  .seg-card { padding: 22px; gap: 14px; }
  .seg-central { padding: 26px 22px; }
  .seg-central-title h3 { font-size: 24px; }

  .filter-how { padding: 20px 22px; font-size: 15.5px; margin-bottom: 40px; }
  .filter-card { padding: 24px 22px; }

  .gold-invisible { padding: 28px 24px; }
  .gold-invisible p { font-size: 15.5px; }
  .gold-panel { padding: 26px 22px; max-width: 100%; }
  .gold-panel li { font-size: 15px; padding: 13px 0; }
  .gold-price .price-value { font-size: 38px; }

  .testi-card { padding: 24px 22px; }
  .testi-card blockquote { font-size: 15px; }

  .story-cols { font-size: 16px; gap: 18px; }
  .story-stats { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 52px; }
  .stat-card { padding: 22px 16px; }
  .stat-card h3 { font-size: 18px; }
  .mvv-card { padding: 24px 22px; }

  .final-card { padding: 40px 24px; border-radius: 22px; }
  .final-incl { font-size: 15.5px; }

  .footer { padding: 44px 0 110px; }
}

/* ============================================================
   MOTION — transições e entradas
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {

  /* ---------- Keyframes ---------- */
  @keyframes rise-in {
    from { opacity: 0; transform: translateY(34px); }
    to { opacity: 1; transform: none; }
  }
  @keyframes fade-down {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: none; }
  }
  @keyframes phone-in {
    from { opacity: 0; transform: translateY(70px) rotate(3deg) scale(0.96); }
    to { opacity: 1; transform: none; }
  }
  @keyframes chip-pop {
    from { opacity: 0; transform: translateY(14px) scale(0.7); }
    to { opacity: 1; transform: none; }
  }
  @keyframes hl-sweep-hero {
    0% { background-size: 0% 100%; color: var(--gold-bright); }
    55% { color: var(--gold-bright); }
    100% { background-size: 100% 100%; color: var(--black); }
  }
  @keyframes gold-breathe {
    50% { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 90px rgba(201, 160, 121, 0.24); }
  }
  @keyframes badge-shimmer {
    from { background-position: 0% 0; }
    to { background-position: -200% 0; }
  }

  /* ---------- Entrada do hero (sequência no load) ---------- */
  .topbar { animation: fade-down 0.7s ease 0.15s both; }
  .hero-badge { animation: rise-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both; }
  .hero h1 { animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both; }
  .hero-sub { animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
  .hero-support { animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both; }
  .hero .cta-row { animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.54s both; }
  .hero-proof { animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.68s both; }
  .hero-phone { animation: phone-in 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both; }
  .hero h1 .hl {
    background-repeat: no-repeat;
    animation: hl-sweep-hero 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.9s both;
  }
  .float-chip--a {
    animation: chip-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.35s both,
               chip-float 5s ease-in-out 2s infinite;
  }
  .float-chip--b {
    animation: chip-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s both,
               chip-float 5s ease-in-out 2.7s infinite;
  }

  /* tilt 3D / paralaxe via JS */
  .hero .phone { will-change: transform; transition: box-shadow 0.3s ease; }

  /* ---------- Sweep dos destaques ao revelar ---------- */
  .rv .hl, .rv .hl-ink { background-repeat: no-repeat; background-size: 0% 100%; }
  .rv .hl { color: var(--gold-bright); }
  .rv .hl-ink { color: inherit; }
  .rv .hl, .rv .hl-ink {
    transition: background-size 0.7s cubic-bezier(0.65, 0, 0.35, 1) 0.35s, color 0.25s ease 0.6s;
  }
  .rv.is-in .hl { background-size: 100% 100%; color: var(--black); }
  .rv.is-in .hl-ink { background-size: 100% 100%; color: var(--gold-bright); }

  /* ---------- Pop de números, emojis e ícones ---------- */
  .rv .sticker-num {
    opacity: 0;
    transform: scale(0.4) rotate(-22deg);
    transition: opacity 0.45s ease 0.25s, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s;
  }
  .rv.is-in .sticker-num { opacity: 1; transform: none; }

  .rv .use-emoji, .rv .feat-ic, .rv .stat-emoji {
    opacity: 0;
    transform: scale(0.5) translateY(8px);
    transition: opacity 0.4s ease 0.18s, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s;
  }
  .rv.is-in .use-emoji, .rv.is-in .feat-ic, .rv.is-in .stat-emoji {
    opacity: 1; transform: none;
  }

  .rv .seg-ic {
    opacity: 0;
    transform: scale(0.6) rotate(-10deg);
    transition: opacity 0.4s ease 0.2s, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
  }
  .rv.is-in .seg-ic { opacity: 1; transform: none; }

  /* ---------- Linhas do kicker desenham ---------- */
  .rv .kicker::before, .rv .kicker::after {
    width: 0;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  }
  .rv.is-in .kicker::before, .rv.is-in .kicker::after { width: 26px; }

  /* ---------- Feature rows: phone sobe, copy desliza do lado ---------- */
  .feature-row.rv .phone {
    transform: translateY(46px) rotate(2.5deg);
    transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  }
  .feature-row.rv.is-in .phone { transform: none; }

  .feature-row.rv .feature-copy {
    opacity: 0;
    transform: translateX(44px);
    transition: opacity 0.7s ease 0.22s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s;
  }
  .feature-row--flip.rv .feature-copy { transform: translateX(-44px); }
  .feature-row.rv.is-in .feature-copy { opacity: 1; transform: none; }

  /* ---------- Selos rotacionados entram girando ---------- */
  .sec-closing.rv span {
    transform: rotate(2.5deg) scale(0.92);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
  }
  .sec-closing.rv.is-in span { transform: rotate(-1deg) scale(1); }

  /* ---------- Gold: respiração e shimmer ---------- */
  .gold-panel { animation: gold-breathe 4.5s ease-in-out infinite; }
  .gold-badge {
    background-size: 200% 100%;
    animation: badge-shimmer 3.4s linear infinite;
  }

  /* ---------- Botões: sheen no hover ---------- */
  .btn { position: relative; overflow: hidden; }
  .btn::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: -60%;
    width: 40%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
  }
  .btn:hover::after { left: 130%; transition: left 0.55s ease; }

  /* ---------- Marquee pausa no hover ---------- */
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
