
/* ═══════════════════════════════════════════
   CORE — VARIÁVEIS & RESET
═════════════════════════════════════════════ */
:root {
  --bg: #09101e;
  --panel: rgba(17, 24, 43, 0.72);
  --panel-strong: rgba(13, 19, 36, 0.94);
  --panel-border: rgba(255, 255, 255, 0.07);
  --text: #eef2f7;
  --text-soft: #bdc8dc;
  --muted: #8896b0;

  --gold: #d6b86e;
  --gold-mid: #c4a456;
  --gold-deep: #a07e35;
  --gold-bright: #e8cc88;

  --poly-purple: #7b56c0;
  --poly-magenta: #c05070;
  --poly-blue: #3a9dc8;
  --poly-purple-gl: rgba(123, 86, 192, 0.14);
  --poly-magenta-gl: rgba(192, 80, 112, 0.10);
  --poly-blue-gl: rgba(58, 157, 200, 0.13);

  --success: #8cc7b5;
  --guarantee: #5bb89a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui: 'Inter', ui-sans-serif, system-ui, sans-serif;

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 12px 36px rgba(0, 0, 0, 0.28);
  --shadow-premium: 0 32px 96px rgba(0, 0, 0, 0.52);
  --container: 1180px;
  --nav-h: 76px;
  --t-fast: 180ms ease;
  --t-med: 260ms ease;
  --t-slow: 420ms ease;
  --t-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font-ui);
  background:
    radial-gradient(ellipse 70% 40% at 15% 5%, var(--poly-blue-gl), transparent),
    radial-gradient(ellipse 50% 30% at 88% 8%, var(--poly-purple-gl), transparent),
    radial-gradient(ellipse 60% 35% at 50% 98%, var(--poly-magenta-gl), transparent),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(214, 184, 110, 0.04), transparent),
    linear-gradient(180deg, #07111f 0%, #09101e 50%, #0c1428 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.022;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  padding: 10px 16px; background: #fff; color: #000;
  border-radius: 10px; z-index: 10000;
}
.skip:focus { left: 12px; top: 12px; }

/* ═══════════════════════════════════════════
   TIPOGRAFIA PREMIUM
═════════════════════════════════════════════ */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ═══════════════════════════════════════════
   LINHA POLICROMÁTICA
═════════════════════════════════════════════ */
.poly-line {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--poly-blue) 18%,
    var(--poly-purple) 50%,
    var(--poly-magenta) 82%,
    transparent 100%);
  opacity: 0.35;
  border-radius: 999px;
}
.poly-line.bright { opacity: 0.55; height: 2px; }

/* ═══════════════════════════════════════════
   CABEÇALHO — CORRIGIDO FINAL
═════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(7, 14, 28, 0.50);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background var(--t-med), box-shadow var(--t-med);
}
.site-header.scrolled {
  background: rgba(7, 14, 28, 0.88);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.30);
}
.nav {
  min-height: var(--nav-h);
  display: flex; align-items: center; gap: 20px;
  position: relative;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0;
  z-index: 301;
}
.brand img {
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(214, 184, 110, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.brand:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-ui);
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.brand-sub {
  font-family: var(--font-ui);
  font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.04em;
}

/* NAV LINKS — DESKTOP (DENTRO DO HEADER) */
.nav-links {
  display: flex; align-items: center; gap: 24px;
  margin-left: auto; margin-right: 20px;
  font-size: .92rem; color: var(--text-soft);
  font-weight: 500;
  z-index: 301;
}
.nav-links a {
  position: relative; padding-bottom: 2px;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--t-med);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

/* CTA BUTTON — DIREITA */
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(214, 184, 110, 0.22), rgba(214, 184, 110, 0.10));
  border: 1px solid rgba(214, 184, 110, 0.28);
  color: var(--text);
  font-weight: 650; font-size: 0.9rem; white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 18px rgba(0, 0, 0, 0.18);
  transition: var(--t-fast);
  margin-left: auto !important;
  z-index: 301;
}
.nav-cta:hover {
  border-color: rgba(214, 184, 110, 0.50);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.24);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; padding: 4px;
  cursor: pointer;
  z-index: 301;
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text-soft);
  transition: transform var(--t-med), opacity var(--t-med), width var(--t-med);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═════════════════════════════════════════════ */
.hero {
  padding: 80px 0 56px;
  min-height: calc(100svh - var(--nav-h));
  display: grid; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; pointer-events: none; inset: -30% -20%;
  background:
    radial-gradient(ellipse 50% 45% at 20% 30%, rgba(58, 157, 200, 0.11), transparent),
    radial-gradient(ellipse 40% 35% at 80% 20%, rgba(123, 86, 192, 0.11), transparent),
    radial-gradient(ellipse 35% 40% at 50% 90%, rgba(192, 80, 112, 0.07), transparent);
  animation: ambientDrift 20s ease-in-out infinite alternate;
}
@keyframes ambientDrift {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(2%, 1%) scale(1.04); opacity: 0.85; }
  100% { transform: translate(-2%, 2%) scale(0.97); opacity: 1; }
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-soft); font-size: 0.87rem; font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.eyebrow:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 999px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--poly-blue), var(--poly-purple));
  box-shadow: 0 0 16px rgba(123, 86, 192, 0.45);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(123, 86, 192, 0.45); }
  50% { box-shadow: 0 0 26px rgba(123, 86, 192, 0.80); }
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
  line-height: 1.0; letter-spacing: -0.02em;
  font-weight: 600;
}
.h1-main { color: var(--text); display: block; margin-bottom: .12em; }
.h1-gold {
  display: block;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-lead {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  max-width: 56ch; line-height: 1.72;
  font-weight: 400;
}

.hero-proof {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 14px;
  color: var(--muted); font-size: .88rem;
}
.proof-avatars { display: flex; }
.proof-av {
  width: 26px; height: 26px; border-radius: 999px;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--poly-purple), var(--poly-blue));
  margin-left: -8px;
  transition: transform var(--t-fast);
}
.proof-av:hover { transform: translateY(-2px); }
.proof-av:first-child { margin-left: 0; }
.proof-av:nth-child(2) { background: linear-gradient(135deg, var(--poly-blue), var(--poly-magenta)); }
.proof-av:nth-child(3) { background: linear-gradient(135deg, var(--poly-magenta), var(--poly-purple)); }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px;
}

/* ═══════════════════════════════════════════
   BOTÕES PREMIUM
═════════════════════════════════════════════ */
.btn-primary, .btn-secondary, .final-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 54px; padding: 0 26px; border-radius: 999px;
  font-family: var(--font-ui); font-weight: 700; font-size: 1rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast), gap var(--t-fast);
  position: relative;
  overflow: hidden;
}
.btn-primary::before, .final-btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent);
  opacity: 0; transition: opacity var(--t-fast);
  pointer-events: none;
}
.btn-primary:hover::before, .final-btn:hover::before { opacity: 1; }

.btn-arrow {
  transition: transform var(--t-fast);
  display: inline-block;
}
.btn-primary:hover .btn-arrow,
.final-btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary, .final-btn {
  background: linear-gradient(180deg, #dec872 0%, #b8922c 100%);
  color: #111; border: 1px solid rgba(255, 237, 195, 0.35);
  box-shadow: 0 14px 36px rgba(184, 146, 44, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover, .btn-primary:focus-visible,
.final-btn:hover, .final-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(184, 146, 44, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text); border: 1px solid rgba(255, 255, 255, 0.10);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ═══════════════════════════════════════════
   ∞ → 8 ANIMAÇÃO
═════════════════════════════════════════════ */
.symbol-8-wrap {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.symbol-8 {
  display: inline-block;
  font-style: normal;
  font-weight: 800;
  
  /* Estado inicial (∞) */
  opacity: 0.45;
  transform: rotate(0deg) scale(1.4);
  filter: blur(1.5px);
  
  /* Transição suave */
  transition:
    opacity 1.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 1.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 1.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Estado final (8) — ativado via JS */
.symbol-8.animate {
  opacity: 1;
  transform: rotate(90deg) scale(1);
  filter: blur(0);
}

/* Pulso suave após animação contínua */
.symbol-8.animate.done {
  animation: symbolPulse 3.8s ease-in-out infinite;
}

@keyframes symbolPulse {
  0%, 100% {
    text-shadow: none;
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 10px rgba(214, 184, 110, 0.3);
    opacity: 0.88;
  }
}

/* Tooltip discreta */
.symbol-8-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  white-space: nowrap;
  padding: 7px 13px;
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  color: #111;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 10;
}

.symbol-8-tip::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--gold);
}

.symbol-8-wrap:hover .symbol-8-tip,
.symbol-8-wrap:focus-within .symbol-8-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin-top: 18px; color: var(--muted); font-size: .9rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta span::before { content: "✓"; color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════════════
   CARTÃO HERO
═════════════════════════════════════════════ */
.hero-card {
  position: relative; border-radius: 32px; padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.016)),
    var(--panel);
  border: 1px solid rgba(214, 184, 110, 0.14);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
  animation: gentleFloat 7s ease-in-out infinite;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium), inset 0 1px 0 rgba(255, 255, 255, 0.10);
  border-color: rgba(214, 184, 110, 0.22);
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.hero-card::after {
  content: ""; position: absolute; pointer-events: none;
  bottom: -70px; right: -70px;
  width: 240px; height: 240px; border-radius: 999px;
  background: radial-gradient(circle, var(--poly-purple-gl), transparent 65%);
}

.hcard-top { display: flex; justify-content: center; margin-bottom: 18px; }
.logo-wrap {
  width: 128px; height: 128px; border-radius: 32px;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.10), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(214, 184, 110, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.32),
    0 0 0 7px rgba(123, 86, 192, 0.055);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.hero-card:hover .logo-wrap {
  transform: scale(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 64px rgba(0, 0, 0, 0.40),
    0 0 0 7px rgba(123, 86, 192, 0.08);
}
.logo-wrap img { width: 84px; height: 84px; border-radius: 26px; object-fit: contain; }

.hcard-name {
  text-align: center; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.hcard-desc {
  text-align: center; margin: 7px auto 0;
  max-width: 32ch; color: var(--text-soft); font-size: .92rem;
  line-height: 1.45;
}

.demo { margin-top: 22px; }
.demo-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; font-size: 0.86rem; color: var(--text-soft);
  font-weight: 500;
}
.demo-live { display: inline-flex; align-items: center; gap: 7px; color: var(--success); }
.live-dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--success);
  box-shadow: 0 0 12px rgba(140, 199, 181, 0.45);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.chat-bubble {
  padding: 15px 16px 13px;
  border-radius: 16px 16px 16px 4px;
  background: rgba(255, 255, 255, 0.042);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-soft); font-size: 0.95rem; line-height: 1.6;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.chat-bubble:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.10);
}
.chat-bubble strong {
  color: var(--gold); font-size: .82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.chat-cursor {
  display: inline-block; width: 2px; height: 1.1em;
  background: var(--gold); margin-left: 2px; vertical-align: text-bottom;
  animation: blink .9s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.demo-input {
  margin-top: 12px;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 11px 11px 15px;
  border-radius: 16px;
  background: rgba(8, 13, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.demo-input:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(214, 184, 110, 0.08);
}
.demo-input span { flex: 1; color: var(--muted); font-size: .91rem; }
.send-btn {
  width: 40px; height: 40px; border-radius: 999px; flex-shrink: 0;
  background: linear-gradient(180deg, rgba(214, 184, 110, 0.22), rgba(214, 184, 110, 0.09));
  border: 1px solid rgba(214, 184, 110, 0.26); color: var(--gold);
  display: grid; place-items: center; font-size: 0.95rem;
  transition: transform var(--t-fast), background var(--t-fast);
}
.send-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(180deg, rgba(214, 184, 110, 0.32), rgba(214, 184, 110, 0.15));
}

/* ═══════════════════════════════════════════
   FAIXA DE CONFIANÇA
═════════════════════════════════════════════ */
.trust-strip { padding: 18px 0 26px; border-top: 1px solid rgba(255, 255, 255, 0.04); }
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 30px; font-size: .9rem; color: var(--muted); font-weight: 500;
}
.trust-item { display: inline-flex; align-items: center; gap: 9px; }
.trust-icon { color: var(--gold); font-size: 1rem; }

/* ═══════════════════════════════════════════
   SEÇÕES
═════════════════════════════════════════════ */
.section { padding: 64px 0; }
.section-head { margin-bottom: 32px; }

.kicker {
  display: block; margin-bottom: 10px;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  font-family: var(--font-ui);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.08; letter-spacing: -0.01em;
  font-weight: 600;
}
.section-text {
  margin-top: 14px; color: var(--text-soft);
  max-width: 60ch; font-size: 1rem; line-height: 1.7;
}

/* ═══════════════════════════════════════════
   GRADES DE CARTÕES
═════════════════════════════════════════════ */
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.card {
  padding: 26px; border-radius: var(--radius-xl);
  background: var(--panel); border: 1px solid var(--panel-border);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 184, 110, 0.18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
}
.card[data-poly="purple"]:hover { border-color: rgba(123, 86, 192, 0.30); }
.card[data-poly="magenta"]:hover { border-color: rgba(192, 80, 112, 0.30); }
.card[data-poly="blue"]:hover { border-color: rgba(58, 157, 200, 0.30); }

.card-icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(214, 184, 110, 0.09);
  border: 1px solid rgba(214, 184, 110, 0.15);
  color: var(--gold); font-size: 1.1rem;
  transition: transform var(--t-fast), background var(--t-fast);
}
.card:hover .card-icon { transform: scale(1.08); }
.card-icon[data-poly="purple"] { background: var(--poly-purple-gl); border-color: rgba(123, 86, 192, 0.22); color: #a882e8; }
.card-icon[data-poly="magenta"] { background: var(--poly-magenta-gl); border-color: rgba(192, 80, 112, 0.22); color: #d87da0; }
.card-icon[data-poly="blue"] { background: var(--poly-blue-gl); border-color: rgba(58, 157, 200, 0.22); color: #6cb8d8; }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem; line-height: 1.22; margin-bottom: 10px;
  font-weight: 600;
}
.card p { color: var(--text-soft); font-size: .97rem; line-height: 1.65; }

/* ═══════════════════════════════════════════
   PASSOS
═════════════════════════════════════════════ */
.steps-card {
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--panel); border: 1px solid var(--panel-border);
  box-shadow: var(--shadow-sm);
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.step { position: relative; padding: 32px 28px; }
.step:not(:last-child)::after {
  content: "";
  position: absolute; top: 32px; right: 0;
  width: 1px; height: 60%;
  background: linear-gradient(180deg, transparent, rgba(214, 184, 110, 0.14), transparent);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 600;
  line-height: 1; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.14rem; margin-bottom: 10px; font-weight: 600;
}
.step p { color: var(--text-soft); font-size: .97rem; line-height: 1.65; }

/* ═══════════════════════════════════════════
   PRIVACIDADE
═════════════════════════════════════════════ */
.privacy-wrap {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 18px; align-items: stretch;
}
.privacy-main {
  padding: 32px; border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(123, 86, 192, 0.07) 0%, rgba(58, 157, 200, 0.05) 100%),
    var(--panel-strong);
  border: 1px solid rgba(123, 86, 192, 0.16);
  box-shadow: var(--shadow);
}
.priv-list { margin-top: 20px; display: grid; gap: 13px; }
.priv-list li {
  position: relative; padding-left: 26px;
  color: var(--text-soft); font-size: .98rem; line-height: 1.6;
}
.priv-list li::before {
  content: "•"; color: var(--poly-purple);
  position: absolute; left: 0; top: 0;
  font-size: 1.2rem; line-height: 1.2;
}
.privacy-side { display: flex; flex-direction: column; gap: 14px; }
.priv-card {
  flex: 1; padding: 22px; border-radius: var(--radius-xl);
  background: var(--panel); border: 1px solid var(--panel-border);
  display: flex; flex-direction: column; justify-content: center;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.priv-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 184, 110, 0.14);
}
.priv-card-icon { font-size: 1.5rem; margin-bottom: 12px; }
.priv-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem; margin-bottom: 7px; font-weight: 600;
}
.priv-card p { color: var(--text-soft); font-size: .93rem; line-height: 1.6; }

/* ═══════════════════════════════════════════
   DEPOIMENTOS
═════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.tcard {
  padding: 26px; border-radius: var(--radius-xl);
  background: var(--panel); border: 1px solid var(--panel-border);
  display: flex; flex-direction: column;
  transition: transform var(--t-med), border-color var(--t-med);
}
.tcard:hover { transform: translateY(-3px); border-color: rgba(214, 184, 110, 0.14); }

.tcard-stars { color: var(--gold); font-size: .95rem; margin-bottom: 14px; letter-spacing: .06em; }
.tcard-text {
  color: var(--text-soft); font-size: .98rem; line-height: 1.7;
  font-style: italic; flex: 1;
  font-family: var(--font-display);
  font-weight: 500;
}
.tcard-footer {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex; align-items: center; gap: 12px;
}
.tcard-avatar {
  width: 36px; height: 36px; border-radius: 999px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1rem;
  transition: transform var(--t-fast);
}
.tcard:hover .tcard-avatar { transform: scale(1.1); }
.sym-purple { background: rgba(123, 86, 192, 0.20); border: 1px solid rgba(123, 86, 192, 0.28); color: #a882e8; }
.sym-blue { background: rgba(58, 157, 200, 0.20); border: 1px solid rgba(58, 157, 200, 0.28); color: #6cb8d8; }
.sym-magenta { background: rgba(192, 80, 112, 0.20); border: 1px solid rgba(192, 80, 112, 0.28); color: #d87da0; }

.tcard-meta { display: flex; flex-direction: column; line-height: 1.3; }
.tcard-meta strong { font-size: .92rem; color: var(--text-soft); font-weight: 600; }
.tcard-meta span { font-size: .80rem; color: var(--muted); }

.tcard-anon-note {
  margin-top: 22px; text-align: center;
  color: var(--muted); font-size: 0.87rem; line-height: 1.6;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.tcard-anon-note strong { color: var(--text-soft); font-weight: 600; }

/* ═══════════════════════════════════════════
   GARANTIA
═════════════════════════════════════════════ */
.guarantee-section { padding: 0 0 56px; }

.guarantee-panel {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 28px;
  padding: 32px 36px; border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(91, 184, 154, 0.08) 0%, rgba(58, 157, 200, 0.05) 100%),
    var(--panel-strong);
  border: 1px solid rgba(91, 184, 154, 0.22);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(91, 184, 154, 0.06) inset;
  position: relative; overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.guarantee-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(91, 184, 154, 0.10) inset;
}
.guarantee-panel::before {
  content: "";
  position: absolute; pointer-events: none;
  top: -60px; left: -60px;
  width: 200px; height: 200px; border-radius: 999px;
  background: radial-gradient(circle, rgba(91, 184, 154, 0.10), transparent 65%);
}
.guarantee-icon {
  font-size: 3rem; line-height: 1;
  filter: drop-shadow(0 4px 14px rgba(91, 184, 154, 0.30));
}
.guarantee-body h2 {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.guarantee-body h2 span { color: var(--guarantee); }
.guarantee-body p {
  color: var(--text-soft); font-size: 1rem; line-height: 1.65;
  max-width: 64ch;
}
.guarantee-body p strong { color: var(--text); }
.guarantee-badge-wrap { text-align: center; flex-shrink: 0; }
.guarantee-badge-circle {
  width: 84px; height: 84px; border-radius: 999px;
  border: 2px dashed rgba(91, 184, 154, 0.40);
  display: grid; place-items: center;
  background: rgba(91, 184, 154, 0.07);
  padding: 8px;
  transition: transform var(--t-med), border-color var(--t-med);
}
.guarantee-panel:hover .guarantee-badge-circle {
  transform: scale(1.06);
  border-color: rgba(91, 184, 154, 0.55);
}
.guarantee-badge-circle strong {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--guarantee);
  display: block; line-height: 1.1;
}
.guarantee-badge-circle span {
  font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600;
}

/* ═══════════════════════════════════════════
   PREÇOS
═════════════════════════════════════════════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; align-items: stretch;
}
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 28px; border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.016)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.20);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.plan:hover { transform: translateY(-3px); box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28); }

.plan.popular {
  border: none;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28), 0 0 50px rgba(123, 86, 192, 0.09);
}
.plan.popular::before {
  content: "";
  position: absolute; inset: 0; border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--poly-purple) 50%, var(--poly-blue) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  animation: borderRotate 4s linear infinite;
}
@keyframes borderRotate {
  0% { background: linear-gradient(0deg, var(--gold) 0%, var(--poly-purple) 50%, var(--poly-blue) 100%); }
  25% { background: linear-gradient(90deg, var(--gold) 0%, var(--poly-purple) 50%, var(--poly-blue) 100%); }
  50% { background: linear-gradient(180deg, var(--gold) 0%, var(--poly-purple) 50%, var(--poly-blue) 100%); }
  75% { background: linear-gradient(270deg, var(--gold) 0%, var(--poly-purple) 50%, var(--poly-blue) 100%); }
  100% { background: linear-gradient(360deg, var(--gold) 0%, var(--poly-purple) 50%, var(--poly-blue) 100%); }
}
.plan.popular { transform: translateY(-8px); }
.plan.popular:hover { transform: translateY(-11px); }

.plan-badge {
  position: absolute; top: 18px; right: 18px;
  padding: 7px 12px; border-radius: 999px;
  font-size: 0.77rem; font-weight: 700; letter-spacing: 0.05em;
  background: rgba(214, 184, 110, 0.12); color: var(--gold);
  border: 1px solid rgba(214, 184, 110, 0.24);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 184, 110, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(214, 184, 110, 0); }
}
.plan-guarantee-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--guarantee); margin-top: 4px;
  font-weight: 600;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
}
.plan-tag { margin: 7px 0 0; color: var(--text-soft); font-size: .93rem; min-height: 42px; line-height: 1.5; }
.plan-price {
  margin: 20px 0 4px;
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700; letter-spacing: -0.03em;
}
.plan-dur { color: var(--muted); font-size: .92rem; margin-bottom: 10px; }

.plan-note { color: var(--gold); font-size: .90rem; font-weight: 600; margin-bottom: 18px; }
.plan-feats { display: grid; gap: 11px; }
.plan-feats li {
  display: flex; gap: 8px; align-items: flex-start;
  color: var(--text-soft); font-size: .95rem; line-height: 1.5;
}
.plan-feats li::before { content: none; } /* Removido para usar os ícones do HTML (✦/🔒) */

/* Novo estilo Premium: Realce para Poliamor/Redes */
.plan.premium-highlight {
  border: 1px solid rgba(192, 80, 112, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(192, 80, 112, 0.06);
}
.plan.premium-highlight:hover {
  border-color: rgba(192, 80, 112, 0.35);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.4), 0 0 50px rgba(192, 80, 112, 0.12);
}

.plan-space { flex: 1; }

.plan-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; width: 100%; margin-top: 20px; border-radius: 999px;
  font-weight: 700; font-size: 0.97rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10); color: var(--text);
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.plan-btn .btn-arrow { transition: transform var(--t-fast); }
.plan-btn:hover .btn-arrow { transform: translateX(4px); }
.plan.popular .plan-btn {
  background: linear-gradient(180deg, #dec872 0%, #b8922c 100%);
  color: #111; border-color: rgba(255, 237, 195, 0.35);
  box-shadow: 0 14px 36px rgba(184, 146, 44, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.plan.premium-highlight .plan-btn {
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  color: var(--gold); border-color: rgba(214, 184, 110, 0.4);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.plan-btn:hover, .plan-btn:focus-visible { transform: translateY(-2px); }

.checkout-wrap {
  margin-top: 22px; padding: 18px 22px; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted); font-size: 0.93rem; line-height: 1.7;
}
.checkout-wrap strong { color: var(--text-soft); }
.crypto-note { color: var(--gold); margin-top: 6px; display: block; font-weight: 500; }

.ethics-strip {
  margin-top: 20px; padding: 14px 18px; border-radius: var(--radius-md);
  background: rgba(123, 86, 192, 0.06); border: 1px solid rgba(123, 86, 192, 0.13);
  color: var(--muted); font-size: .9rem;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.6;
}
.ethics-strip span:first-child { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ═══════════════════════════════════════════
   FAQ
═════════════════════════════════════════════ */
.faq { display: grid; gap: 10px; }

.faq-item {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--panel); border: 1px solid var(--panel-border);
  transition: border-color var(--t-fast);
}
.faq-item.open { border-color: rgba(214, 184, 110, 0.18); }

.faq-trigger {
  width: 100%; text-align: left; padding: 18px 22px;
  font-weight: 650; font-size: 0.98rem; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color var(--t-fast);
}
.faq-item.open .faq-trigger { color: var(--gold); }

.faq-icon {
  width: 26px; height: 26px; border-radius: 999px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold); font-size: 1rem;
  transition: transform var(--t-med), background var(--t-med), border-color var(--t-med);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(214, 184, 110, 0.10);
  border-color: rgba(214, 184, 110, 0.20);
}

.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t-slow);
}
.faq-body.open { max-height: 400px; }

.faq-body-inner {
  padding: 0 22px 18px;
  color: var(--text-soft); font-size: .98rem; line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CTA FINAL
═════════════════════════════════════════════ */
.final-cta { padding: 0 0 80px; }
.cta-panel {
  position: relative; overflow: hidden;
  padding: 52px 44px; border-radius: 32px; text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(123, 86, 192, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 50% at 80% 90%, rgba(58, 157, 200, 0.09), transparent 50%),
    radial-gradient(ellipse 50% 50% at 20% 90%, rgba(192, 80, 112, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(214, 184, 110, 0.06), rgba(214, 184, 110, 0.02)),
    var(--panel-strong);
  border: 1px solid rgba(214, 184, 110, 0.16);
  box-shadow: var(--shadow);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.cta-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
}
.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: -0.02em; line-height: 1.1; font-weight: 600;
}
.cta-panel p {
  margin: 16px auto 0; color: var(--text-soft);
  max-width: 50ch; font-size: 1.02rem; line-height: 1.7;
}
.cta-actions {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px; margin-top: 28px;
}
.cta-poly-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--poly-blue) 20%,
    var(--poly-purple) 50%,
    var(--poly-magenta) 80%,
    transparent);
  opacity: 0.55;
}

/* ═══════════════════════════════════════════
   RODAPÉ
═════════════════════════════════════════════ */
.site-footer { padding: 16px 0 40px; }
.footer-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 14px; padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted); font-size: .9rem;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { transition: color var(--t-fast); }
.footer-links a:hover { color: var(--text-soft); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ═══════════════════════════════════════════
   RESPONSIVO — CORRIGIDO FINAL
═════════════════════════════════════════════ */

/* DESKTOP — NAV DENTRO DO HEADER */
@media (min-width: 861px) {
  .nav-links {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    max-width: 900px !important;
    height: var(--nav-h) !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    animation: none !important;
    z-index: 301 !important;
    pointer-events: none !important;
  }
  .nav-links a {
    pointer-events: auto !important;
    position: relative; padding-bottom: 2px;
    transition: color 180ms ease;
    white-space: nowrap;
  }
  .nav-links a::after {
    content: "";
    position: absolute; bottom: -2px; left: 0; right: 100%;
    height: 1px; background: var(--gold);
    transition: right 260ms ease;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { right: 0; }
}

/* TABLET */
@media (max-width: 1080px) {
  .hero-grid, .privacy-wrap, .pricing-grid,
  .testimonials-grid, .guarantee-panel { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .hero { padding-top: 56px; }
  .plan.popular { transform: none; }
  .plan.popular:hover { transform: translateY(-4px); }
  .guarantee-badge-wrap { display: none; }
}

/* MOBILE */
@media (max-width: 860px) {
  .container { width: min(calc(100% - 16px), var(--container)); }
  .nav { width: 100%; justify-content: space-between; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: #050a14;
    border-top: 1px solid rgba(214, 184, 110, 0.22);
    padding: 40px 24px; gap: 0;
    font-size: 1.15rem; align-items: stretch;
    z-index: 1000;
    overflow-y: auto;
    margin: 0;
  }
  .nav-links.open {
    display: flex; flex-direction: column;
    animation: menuSlideIn 200ms ease forwards;
  }
  @keyframes menuSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open a {
    padding: 20px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-soft);
    font-size: 1.1rem; font-weight: 500;
    transition: color var(--t-fast), padding-left var(--t-fast);
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open a:hover { color: var(--gold); padding-left: 8px; }
  .nav-links.open a:active {
    color: var(--gold);
    padding-left: 8px;
    background: rgba(214, 184, 110, 0.06);
    border-radius: 8px;
  }
  .hamburger { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn-primary, .btn-secondary, .final-btn { width: 100%; }
  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding-left: 16px;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .g3, .g4 { grid-template-columns: 1fr; }
  .privacy-side { flex-direction: column; }
  .cta-panel { padding: 32px 22px; }
  .guarantee-panel { padding: 24px 22px; }
}

/* ═══════════════════════════════════════════
   MOVIMENTO REDUZIDO
═════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .symbol-8 { transform: rotate(90deg) !important; opacity: 1 !important; }
}
