:root {
  --bg: #050505;
  --bg-2: #0b0b0d;
  --bg-3: #121216;
  --gold: #d4af37;
  --gold-2: #f5d76e;
  --gold-3: #8a6d1f;
  --white: #f7f4ec;
  --muted: #b8b3a6;
  --line: rgba(212, 175, 55, 0.22);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --radius: 22px;
  --nav-h: 78px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cinzel", serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.gold-gradient {
  background: linear-gradient(120deg, #8a6d1f, #f5d76e 40%, #d4af37 70%, #fff3c4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
main, .section, .hero, .cinema, .cta-final, .footer, .nav, .wa-float { position: relative; z-index: 2; }
.section { padding: 110px 0; }
.nav { z-index: 50; }
.wa-float { z-index: 80; }
.section.alt { background: linear-gradient(180deg, #070707 0%, #0e0e12 100%); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2, h1, h2 { font-family: var(--display); font-weight: 600; line-height: 1.15; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 14px; }
.section-head p, .lead { color: var(--muted); }
.center { text-align: center; margin-top: 48px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 26px; font-size: 0.95rem; }
.btn-xl { padding: 20px 36px; font-size: 1.05rem; }
.btn-gold {
  background: linear-gradient(135deg, #f5d76e, #d4af37 45%, #8a6d1f);
  color: #1a1406;
  box-shadow: 0 0 0 1px rgba(245, 215, 110, 0.35), 0 10px 40px rgba(212, 175, 55, 0.28);
}
.btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 50px rgba(212, 175, 55, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-3px); }
.btn-tg {
  background: linear-gradient(135deg, #37aee2, #1e96c8);
  color: #fff;
  box-shadow: 0 10px 30px rgba(55, 174, 226, 0.28);
}
.btn-tg:hover { transform: translateY(-3px) scale(1.02); }
.pulse { animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45); }
  50% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
}

.loader {
  position: fixed; inset: 0; z-index: 200;
  background: #050505;
  display: grid; place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-ring {
  width: 86px; height: 86px; margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.15);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}
.loader-mark {
  position: absolute; left: 50%; top: calc(50% - 28px); transform: translate(-50%, -50%);
  font-family: var(--display); font-size: 1.4rem; color: var(--gold);
}
.loader-inner { position: relative; }
.loader-text { letter-spacing: 0.4em; font-size: 0.7rem; color: var(--gold); }
@keyframes spin { to { transform: rotate(360deg); } }

.bg-orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
  animation: drift 18s ease-in-out infinite;
}
.orb-1 { width: 420px; height: 420px; background: #d4af37; top: -80px; right: -60px; }
.orb-2 { width: 320px; height: 320px; background: #3a2a08; bottom: 10%; left: -80px; animation-delay: -6s; }
.orb-3 { width: 260px; height: 260px; background: #6b5420; top: 40%; left: 40%; animation-delay: -12s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}
.particles { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  transition: background 0.3s, backdrop-filter 0.3s, border 0.3s;
}
.nav.scrolled {
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; object-fit: contain; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #f5d76e, #8a6d1f);
  color: #1a1406; font-family: var(--display); font-weight: 700;
}
.logo-text { font-family: var(--display); letter-spacing: 0.12em; font-size: 0.92rem; }
.logo-text em { font-style: normal; color: var(--gold); }
.nav-links { flex: 1; display: flex; justify-content: center; gap: 18px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-2); }
.nav-cta { flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; margin-left: auto; }
.nav-toggle span { display: block; height: 2px; background: var(--white); margin: 7px 8px; transition: 0.25s; }

.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 40px) 20px 80px;
  display: grid; align-items: center;
  position: relative; z-index: 2;
}
.hero-glow {
  position: absolute; inset: auto 10% 8% 10%; height: 220px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.18), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); margin-bottom: 18px; }
.hero .lead { font-size: 1.08rem; max-width: 540px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.play-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 14px;
  background: rgba(255,255,255,0.03);
}
.play-badge small { display: block; color: var(--muted); font-size: 0.7rem; }
.hero-stage { position: relative; min-height: 520px; }

.tv-frame { width: min(520px, 100%); margin-left: auto; position: relative; z-index: 2; }
.tv-bezel {
  background: linear-gradient(180deg, #2a2a2e, #111);
  border-radius: 18px; padding: 12px;
  box-shadow: var(--shadow), 0 0 40px rgba(212,175,55,0.12);
}
.tv-screen {
  position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 16/10;
  background: #0a0a12;
}
.tv-shine {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  animation: shine 6s ease-in-out infinite;
  z-index: 3; pointer-events: none;
}
@keyframes shine { 0%, 100% { transform: translateX(-20%); } 50% { transform: translateX(20%); } }
.tv-posters {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 28px 12px 12px;
  height: 100%;
}
.poster { border-radius: 8px; background-size: cover; background-position: center; animation: ken 18s ease-in-out infinite; }
.p1 { background-image: url("https://images.unsplash.com/photo-1536440136628-849c177e76a1?auto=format&fit=crop&w=600&q=80"); }
.p2 { background-image: url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=600&q=80"); }
.p3 { background-image: url("https://images.unsplash.com/photo-1574375927938-d5a98e8ffe85?auto=format&fit=crop&w=600&q=80"); }
.p4 { background-image: url("https://images.unsplash.com/photo-1478720568477-152d9b164e26?auto=format&fit=crop&w=600&q=80"); }
.p5 { background-image: url("https://images.unsplash.com/photo-1440404653325-ab127d49abc1?auto=format&fit=crop&w=600&q=80"); }
.p6 { background-image: url("https://images.unsplash.com/photo-1598899134739-24c46f058b90?auto=format&fit=crop&w=600&q=80"); }
@keyframes ken { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.tv-ui {
  position: absolute; left: 14px; top: 10px; right: 14px; z-index: 4;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; letter-spacing: 0.16em;
}
.tv-live { display: flex; align-items: center; gap: 6px; color: #ff6b6b; }
.tv-live i { width: 7px; height: 7px; border-radius: 50%; background: #ff4d4d; animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: 0.3; } }
.tv-stand { width: 70px; height: 18px; margin: 0 auto; background: #222; clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%); }
.tv-base { width: 160px; height: 8px; margin: 0 auto; border-radius: 8px; background: #333; }

.phone-mock, .big-phone {
  position: absolute; width: 140px; height: 280px; right: 8%; bottom: 30px;
  background: #111; border: 3px solid #2c2c32; border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 24px rgba(212,175,55,0.2);
  z-index: 4; overflow: hidden;
}
.phone-notch { width: 48px; height: 8px; background: #000; border-radius: 0 0 8px 8px; margin: 0 auto; }
.phone-screen { height: calc(100% - 8px); background: #0c0c14; padding: 10px; }
.phone-screen.big { padding: 14px; }
.app-bar { display: flex; justify-content: space-between; font-size: 0.65rem; letter-spacing: 0.12em; margin-bottom: 8px; color: var(--gold); }
.app-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.app-grid span, .app-row, .hero-thumb {
  border-radius: 8px; background: linear-gradient(160deg, #2a2414, #15120c);
  min-height: 42px;
}
.app-grid.tall span { min-height: 70px; }
.app-row { height: 36px; margin-top: 8px; }
.hero-thumb {
  height: 110px; margin-bottom: 10px;
  background-image: url("https://images.unsplash.com/photo-1522869635100-9f4c5e86aa37?auto=format&fit=crop&w=500&q=80");
  background-size: cover;
}

.chip {
  position: absolute; z-index: 5;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(12,12,16,0.8); border: 1px solid var(--line);
  font-size: 0.72rem; backdrop-filter: blur(8px);
  animation: floaty 5s ease-in-out infinite;
}
.chip-1 { top: 18%; left: 0; }
.chip-2 { top: 48%; left: -10px; animation-delay: -1.5s; }
.chip-3 { bottom: 18%; left: 8%; animation-delay: -3s; }
.float { animation: floaty 6s ease-in-out infinite; }
.float-delay { animation: floaty 7s ease-in-out infinite; animation-delay: -2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 36px; border: 1px solid var(--line); border-radius: 12px;
}
.scroll-hint span {
  display: block; width: 4px; height: 8px; margin: 6px auto; border-radius: 4px;
  background: var(--gold); animation: scroll 1.6s infinite;
}
@keyframes scroll { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(12px); } }

.cards { display: grid; gap: 18px; }
.cards-6 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 215, 110, 0.55);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 30px rgba(212,175,55,0.12);
}
.icon-wrap {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 16px;
  display: grid; place-items: center; color: var(--gold);
  background: rgba(212,175,55,0.08); border: 1px solid var(--line);
}
.icon-wrap svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.card p { color: var(--muted); font-size: 0.92rem; }

.eco-line {
  display: flex; justify-content: center; gap: 22px; margin-bottom: 36px;
}
.eco-line span {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 12px var(--gold); animation: blink 2s infinite;
}
.eco-line span:nth-child(2) { animation-delay: 0.2s; }
.eco-line span:nth-child(3) { animation-delay: 0.4s; }
.eco-line span:nth-child(4) { animation-delay: 0.6s; }
.eco-line span:nth-child(5) { animation-delay: 0.8s; }

.device-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.device-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.device-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
.device-visual { height: 180px; background-size: cover; background-position: center; }
.tv-na { background-image: url("https://images.unsplash.com/photo-1593359677879-a4bb92f829d1?auto=format&fit=crop&w=800&q=80"); }
.tv-and { background-image: url("https://images.unsplash.com/photo-1461151304267-38535e780c79?auto=format&fit=crop&w=800&q=80"); }
.box { background-image: url("https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=800&q=80"); }
.fire { background-image: url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=800&q=80"); }
.phone { background-image: url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&fit=crop&w=800&q=80"); }
.pc { background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=800&q=80"); }
.device-card h3, .device-card p { padding: 0 18px; }
.device-card h3 { margin-top: 16px; font-size: 1.05rem; }
.device-card p { color: var(--muted); padding-bottom: 20px; font-size: 0.9rem; }
.device-slot {
  margin: 0 18px 18px;
  padding: 10px 12px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.panel {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding: 22px; border-radius: 28px;
  background: linear-gradient(180deg, rgba(212,175,55,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
}
.panel-item {
  background: #101014; color: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 22px 12px; display: grid; gap: 10px; place-items: center;
  text-align: center; font-size: 0.9rem; transition: 0.3s;
}
.panel-item:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(212,175,55,0.18);
}
.panel-ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(212,175,55,0.1); color: var(--gold); font-weight: 700;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps-6 { grid-template-columns: repeat(3, 1fr); }
.step-line {
  position: absolute; top: 36px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.steps-6 .step-line { display: none; }
.step {
  text-align: center; padding: 20px; position: relative; z-index: 1;
}
.step-num {
  width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--display);
  border: 1px solid var(--gold); color: var(--gold);
  background: #0b0b0d; box-shadow: 0 0 24px rgba(212,175,55,0.2);
}
.step p { color: var(--muted); }
.note {
  margin-top: 36px;
  text-align: center;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(212,175,55,0.06);
  color: var(--gold-2);
  font-weight: 500;
}

.app-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.app-phone-wrap { position: relative; min-height: 520px; display: grid; place-items: center; }
.glow-ring {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 65%);
  animation: drift 10s ease-in-out infinite;
}
.big-phone { position: relative; width: 250px; height: 510px; right: auto; bottom: auto; }

.app-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 16px;
}
.app-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.app-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f5d76e, #8a6d1f);
  color: #1a1406;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.app-meta { display: grid; gap: 4px; }
.app-meta h3 { font-size: 1.2rem; }
.app-meta p { color: var(--muted); font-size: 0.9rem; }
.app-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.app-facts span {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
.app-facts strong { display: block; color: var(--white); font-size: 0.88rem; margin-bottom: 2px; }
.app-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.cinema {
  position: relative; min-height: 560px; overflow: hidden;
  display: grid; place-items: center; text-align: center;
}
.cinema-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #050505 0%, transparent 20%, transparent 80%, #050505 100%),
    linear-gradient(90deg, #050505 0%, transparent 25%, transparent 75%, #050505 100%),
    rgba(0,0,0,0.45);
  z-index: 2;
}
.cinema-track { position: absolute; inset: 0; z-index: 1; }
.cinema-row {
  height: 50%;
  background-image:
    url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=800&q=70"),
    url("https://images.unsplash.com/photo-1536440136628-849c177e76a1?auto=format&fit=crop&w=800&q=70"),
    url("https://images.unsplash.com/photo-1574375927938-d5a98e8ffe85?auto=format&fit=crop&w=800&q=70"),
    url("https://images.unsplash.com/photo-1440404653325-ab127d49abc1?auto=format&fit=crop&w=800&q=70");
  background-size: 28% 100%, 28% 100%, 28% 100%, 28% 100%;
  background-repeat: repeat-x;
  animation: pan 40s linear infinite;
  filter: saturate(0.8) brightness(0.55);
}
.cinema-row.reverse { animation-direction: reverse; }
@keyframes pan { from { background-position: 0 0; } to { background-position: 1200px 0; } }
.cinema-copy { position: relative; z-index: 3; max-width: 720px; padding: 40px 20px; }
.cinema-copy h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 14px; }
.cinema-copy p { color: var(--muted); margin-bottom: 24px; }

.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pay-card, .pix-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.pay-card h3, .pix-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.pay-card p, .pix-card p { color: var(--muted); margin-bottom: 18px; }
.pix-data {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}
.pix-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: #101014;
  border: 1px solid var(--line);
}
.pix-row span { color: var(--muted); font-size: 0.82rem; }
.pix-row strong { font-size: 0.95rem; word-break: break-word; text-align: right; }
.pix-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%) translateY(16px);
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  color: #1a1406;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: 0.3s ease;
}
.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.support-card a { margin-top: 14px; }

.speed-box {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(212,175,55,0.05);
}
.speed-box h3 { margin-bottom: 10px; }
.speed-box ol {
  margin: 16px 0 22px 18px;
  color: var(--muted);
}
.speed-box li { margin: 6px 0; }
.speed-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.referral-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}
.referral-card p { color: var(--muted); margin: 12px 0 22px; }
.referral-slot {
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.link-item {
  display: grid;
  gap: 8px;
  padding: 22px 16px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #101014;
  transition: 0.3s;
}
.link-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.link-item strong { color: var(--gold-2); font-size: 0.92rem; }
.link-item span { color: var(--muted); font-size: 0.8rem; word-break: break-word; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cta-final {
  position: relative; padding: 130px 20px; text-align: center; overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 20% 10%;
  background: radial-gradient(circle, rgba(212,175,55,0.2), transparent 70%);
  pointer-events: none;
}
.cta-final h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 14px; }
.cta-final p { color: var(--muted); margin-bottom: 28px; }

.footer { border-top: 1px solid var(--line); padding: 60px 0 20px; background: #070707; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer p, .footer a { color: var(--muted); display: block; margin-top: 8px; }
.footer h4 { margin-bottom: 8px; color: var(--white); }
.footer a:hover { color: var(--gold); }
.footer-bottom { width: min(1180px, calc(100% - 40px)); margin: 32px auto 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--muted); }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: #25d366; box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  animation: pulse 2.8s ease-in-out infinite;
}

.reveal { opacity: 0; transform: translateY(24px); transition: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .nav-links { gap: 12px; font-size: 0.72rem; }
}

@media (max-width: 980px) {
  .hero-grid, .app-grid-layout, .cards-6, .device-grid, .steps, .steps-6, .panel, .footer-grid, .pay-grid, .support-grid, .links-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; flex-direction: column; padding: 20px; background: rgba(8,8,10,0.96); max-height: calc(100vh - var(--nav-h)); overflow-y: auto; text-align: left; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-stage { min-height: 420px; }
  .phone-mock { width: 110px; height: 220px; }
  .step-line { display: none; }
}
@media (max-width: 680px) {
  .hero-grid, .app-grid-layout, .cards-6, .device-grid, .steps, .steps-6, .panel, .footer-grid, .pay-grid, .support-grid, .links-grid, .app-facts {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: calc(var(--nav-h) + 20px); }
  .hero-actions, .app-actions, .pix-actions, .speed-actions, .contact-actions { flex-direction: column; }
  .btn-lg, .btn-xl { width: 100%; }
  .chip { display: none; }
  .phone-mock { right: 0; }
  .section { padding: 80px 0; }
  .pix-row { flex-direction: column; align-items: flex-start; }
  .pix-row strong { text-align: left; }
}
