/* =================================================================
   PATA LAB · LANDING v2
   ================================================================= */

:root {
  --azul: #140a63;
  --roxo: #6a2c9e;
  --neon: #b44fff;
  --ouro: #e5b50d;
  --ouro-2: #ffd84a;
  --verde: #00ff88;
  --pink: #ff2d78;
  --branco: #f0eaff;
  --fundo: #08041a;
  --fundo-2: #0e0628;
  --cinza: #1e1340;
  --pixel: 'Press Start 2P', monospace;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter Tight', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--fundo);
  color: var(--branco);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* ------------- CURSOR PIXEL ----------------- */
.cursor {
  width: 16px; height: 16px;
  background: var(--ouro);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  image-rendering: pixelated;
  clip-path: polygon(0 0, 60% 0, 60% 60%, 100% 60%, 100% 100%, 0 100%);
  transition: transform 0.1s;
  mix-blend-mode: difference;
}

/* ------------- SCANLINES + GRID BG ----------------- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.08) 2px, rgba(0,0,0,0.08) 4px);
  pointer-events: none;
  z-index: 100;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(106,44,158,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106,44,158,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ------------- PARTICLES ----------------- */
.pixels-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.pixel-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--neon);
  opacity: 0;
  animation: float-pixel var(--dur) var(--delay) infinite linear;
}
@keyframes float-pixel {
  0%   { transform: translateY(100vh) rotate(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ------------- TOP STRIP (urgência leve) ----------------- */
.top-strip {
  background: linear-gradient(90deg, var(--azul), var(--roxo), var(--azul));
  background-size: 200% 100%;
  animation: stripeShift 8s linear infinite;
  border-bottom: 1px solid rgba(229,181,13,0.4);
  font-family: var(--pixel);
  font-size: 8px;
  color: var(--ouro-2);
  text-align: center;
  padding: 7px 12px;
  letter-spacing: 2px;
  position: relative;
  z-index: 501;
}
@keyframes stripeShift { 0%{background-position:0 0} 100%{background-position:200% 0} }
.top-strip .blink-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--verde); margin-right: 8px;
  animation: blink 1s infinite;
  vertical-align: middle;
}

/* ------------- NAVBAR ----------------- */
nav.main-nav {
  position: sticky; top: 0; width: 100%;
  background: rgba(8,4,26,0.92);
  border-bottom: 2px solid var(--roxo);
  padding: 12px 40px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 500;
  backdrop-filter: blur(8px);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  cursor: none;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 12px rgba(229,181,13,0.55));
  transition: filter 0.2s;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 16px rgba(229,181,13,0.9));
}
/* legados, mantidos caso o user queira reverter pro wordmark+pato */
.nav-logo-duck {
  width: 36px; height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(229,181,13,0.5));
  image-rendering: pixelated;
  animation: duck-bob 1.6s ease-in-out infinite;
}
@keyframes duck-bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-3px); }
}
.nav-logo-word {
  font-family: var(--pixel); font-size: 13px;
  color: var(--ouro); text-shadow: 0 0 10px var(--ouro);
  letter-spacing: 2px;
}
.nav-logo-word span {
  color: var(--branco); text-shadow: none; margin-left: 2px;
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-family: var(--pixel); font-size: 8px;
  color: var(--branco); text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 1px;
}
.nav-links a:hover { color: var(--ouro); text-shadow: 0 0 8px var(--ouro); }

/* esconde o CTA mobile no desktop — só aparece no menu hamburger */
.nav-cta-mobile { display: none; }

.btn-nav-app {
  font-family: var(--pixel); font-size: 8px;
  color: var(--ouro); text-decoration: none;
  border: 1px solid rgba(229,181,13,0.5);
  padding: 8px 14px;
  cursor: none;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 1px;
}
.btn-nav-app:hover {
  background: rgba(229,181,13,0.12);
  border-color: var(--ouro);
  box-shadow: 0 0 10px rgba(229,181,13,0.3);
}

/* =================================================================
   HERO  — split layout: copy + WhatsApp chat mockup
================================================================= */
.hero {
  min-height: calc(100vh - 60px);
  padding: 56px 40px 80px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.hero-copy { position: relative; }

.insert-coin {
  font-family: var(--pixel); font-size: 9px;
  color: var(--verde);
  animation: blink 1s infinite;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
@keyframes blink { 0%,49%{opacity:1} 50%,100%{opacity:0} }

.hero-label {
  font-family: var(--pixel); font-size: 9px;
  color: var(--neon); letter-spacing: 4px;
  margin-bottom: 18px;
  text-shadow: 0 0 10px var(--neon);
}

.hero-title {
  font-family: var(--pixel);
  font-size: clamp(20px, 3.4vw, 34px);
  line-height: 1.5;
  color: var(--branco);
  text-shadow: 3px 3px 0 var(--azul), 0 0 28px rgba(180,79,255,0.6);
  margin-bottom: 20px;
}
.hero-title span.ouro { color: var(--ouro); text-shadow: 0 0 15px var(--ouro); }
.hero-title span.pink { color: var(--pink); text-shadow: 0 0 15px var(--pink); }

.hero-sub {
  font-size: 15px; line-height: 1.8;
  color: rgba(240,234,255,0.78);
  max-width: 520px; margin-bottom: 28px;
}
.hero-sub strong { color: var(--ouro); }

/* preço/trial pill */
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,255,136,0.07);
  border: 1px solid rgba(0,255,136,0.45);
  padding: 12px 18px;
  margin-bottom: 24px;
  font-family: var(--pixel); font-size: 9px;
  color: var(--verde);
  letter-spacing: 2px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  flex-wrap: wrap;
}
.price-pill .divider { color: rgba(0,255,136,0.3); }
.price-pill .price { color: var(--ouro); }

/* CTAs */
.cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.btn-primary {
  font-family: var(--pixel); font-size: 10px;
  background: var(--ouro); color: #000;
  border: none; padding: 18px 26px;
  cursor: none; position: relative;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none; display: inline-block;
  box-shadow: 4px 4px 0 #7a5f00;
  letter-spacing: 1px;
  line-height: 1.4;
}
.btn-primary:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 #7a5f00, 0 0 20px var(--ouro);
}
.btn-primary:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 #7a5f00; }

.btn-secondary {
  font-family: var(--pixel); font-size: 10px;
  background: transparent; color: var(--neon);
  border: 2px solid var(--neon); padding: 16px 24px;
  cursor: none; position: relative;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 0.15s;
  text-decoration: none; display: inline-block;
  letter-spacing: 1px;
  line-height: 1.4;
}
.btn-secondary:hover {
  background: rgba(180,79,255,0.15);
  box-shadow: 0 0 20px var(--neon);
  transform: translate(-2px,-2px);
}

.btn-soon {
  font-family: var(--pixel); font-size: 10px;
  background: rgba(180,79,255,0.06);
  color: rgba(240,234,255,0.45);
  border: 2px dashed rgba(180,79,255,0.35);
  padding: 14px 26px;
  cursor: not-allowed;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  letter-spacing: 1px;
  display: block; text-align: center;
}

/* trust strip — avatars + counter */
.trust-strip {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.trust-avatars {
  display: flex;
}
.trust-avatars .av {
  width: 32px; height: 32px;
  background: var(--cinza);
  border: 2px solid var(--fundo);
  font-family: var(--pixel); font-size: 9px;
  color: var(--ouro);
  display: flex; align-items: center; justify-content: center;
  margin-left: -10px;
  image-rendering: pixelated;
}
.trust-avatars .av:first-child { margin-left: 0; }
.trust-avatars .av:nth-child(2) { background: #2a1a55; color: var(--neon); }
.trust-avatars .av:nth-child(3) { background: #3a1a4b; color: var(--verde); }
.trust-avatars .av:nth-child(4) { background: #1a3a2b; color: var(--ouro); }
.trust-text {
  font-size: 12px;
  color: rgba(240,234,255,0.7);
}
.trust-text strong { color: var(--ouro); font-family: var(--pixel); font-size: 10px; letter-spacing: 1px; }

/* ------- HERO RIGHT — Phone with WhatsApp chat mockup ------- */
.phone-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.phone-wrap::before {
  content: '';
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(180,79,255,0.35), transparent 60%);
  filter: blur(20px);
  z-index: 0;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow { 0%,100%{opacity:0.6} 50%{opacity:1} }

.phone {
  position: relative;
  width: 320px;
  background: #0a0612;
  border: 3px solid var(--roxo);
  border-radius: 32px;
  padding: 14px 12px 18px;
  box-shadow:
    0 0 0 4px #1a0d3d,
    0 25px 60px rgba(180,79,255,0.25),
    inset 0 0 0 2px #2a1a55;
  z-index: 1;
}
.phone-notch {
  width: 80px; height: 8px;
  background: #000;
  border-radius: 0 0 8px 8px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: #0b1418;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background-image:
    repeating-linear-gradient(45deg, rgba(180,79,255,0.04) 0 2px, transparent 2px 6px);
}

.wa-header {
  background: #1f2c34;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid #2a3942;
}
.wa-avatar {
  width: 36px; height: 36px;
  background: var(--ouro);
  color: var(--azul);
  font-family: var(--pixel); font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  image-rendering: pixelated;
}
.wa-meta { flex: 1; }
.wa-name { font-size: 13px; color: #e9edef; font-weight: 700; line-height: 1.2; }
.wa-status { font-size: 11px; color: #00d96c; display: flex; align-items: center; gap: 4px; }
.wa-status .dot { width: 6px; height: 6px; background: #00d96c; border-radius: 50%; animation: blink 1.4s infinite; }
.wa-actions { color: #aebac1; font-size: 14px; letter-spacing: 3px; }

.wa-body {
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 8px;
  height: 420px;
  overflow-y: hidden;
  scroll-behavior: smooth;
  background:
    linear-gradient(rgba(11,20,24,0.92), rgba(11,20,24,0.92)),
    repeating-linear-gradient(45deg, #1a2630 0 8px, #0f1a20 8px 16px);
  /* fade superior pra mensagens sumirem suave */
  mask-image: linear-gradient(to bottom, transparent 0, #000 28px, #000 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 28px, #000 100%);
}
.bubble {
  max-width: 75%;
  padding: 8px 11px 18px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #e9edef;
  position: relative;
  word-wrap: break-word;
  opacity: 0;
  animation: bubbleIn 0.4s forwards;
}
.bubble.them {
  background: #1f2c34;
  align-self: flex-start;
  border-top-left-radius: 0;
}
.bubble.me {
  background: #005c4b;
  align-self: flex-end;
  border-top-right-radius: 0;
}
.bubble .time {
  position: absolute;
  right: 6px; bottom: 3px;
  font-size: 9px; color: rgba(233,237,239,0.55);
}
.bubble.me .time { color: rgba(233,237,239,0.6); }
.bubble.me .check {
  display: inline; color: #53bdeb; margin-left: 2px;
}
.bubble .bot-tag {
  display: inline-block;
  font-family: var(--pixel); font-size: 7px;
  background: var(--ouro); color: #000;
  padding: 2px 5px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.typing {
  align-self: flex-start;
  background: #1f2c34;
  padding: 12px 14px;
  border-radius: 8px;
  border-top-left-radius: 0;
  display: flex; gap: 4px;
  opacity: 0;
  animation: bubbleIn 0.3s forwards;
}
.typing span {
  width: 6px; height: 6px;
  background: #aebac1;
  border-radius: 50%;
  animation: typeBlink 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typeBlink {
  0%,60%,100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.phone-tag {
  position: absolute;
  font-family: var(--pixel); font-size: 8px;
  background: var(--ouro); color: #000;
  padding: 7px 12px;
  letter-spacing: 1px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  z-index: 2;
}
.phone-tag.top-left {
  top: -10px; left: -16px;
  background: var(--pink); color: #fff;
  transform: rotate(-4deg);
  animation: tagBob 3s ease-in-out infinite;
}
.phone-tag.bottom-right {
  bottom: 20px; right: -28px;
  transform: rotate(3deg);
  animation: tagBob 3s ease-in-out infinite reverse;
}
@keyframes tagBob {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%     { transform: translateY(-4px) rotate(-4deg); }
}

/* mascote pixel duck atrás do telefone */
.duck-orbital {
  position: absolute;
  top: -42px; right: -42px;
  width: 110px; height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(229,181,13,0.55));
  animation: duck-float 3s ease-in-out infinite;
  z-index: 2;
  image-rendering: pixelated;
  pointer-events: none;
}
@keyframes duck-float {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(-10px) rotate(3deg); }
}

/* =================================================================
   SECTIONS BASE
================================================================= */
section { position: relative; z-index: 1; padding: 88px 40px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  font-family: var(--pixel); font-size: 8px;
  color: var(--verde); letter-spacing: 4px;
  display: block; margin-bottom: 14px;
}
h2 {
  font-family: var(--pixel);
  font-size: clamp(14px, 2.5vw, 22px);
  line-height: 1.7;
  margin-bottom: 14px;
}
.section-intro {
  font-size: 14px;
  color: rgba(240,234,255,0.7);
  max-width: 580px;
  margin-top: 14px;
  line-height: 1.8;
}

.pixel-divider {
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--roxo) 0, var(--roxo) 8px, transparent 8px, transparent 16px);
  opacity: 0.6;
}

/* =================================================================
   TRUST BAR (logos / stack)
================================================================= */
.trust-bar {
  padding: 32px 40px;
  background: rgba(20,10,99,0.25);
  border-top: 1px solid rgba(180,79,255,0.18);
  border-bottom: 1px solid rgba(180,79,255,0.18);
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.trust-label {
  font-family: var(--pixel); font-size: 8px;
  color: rgba(240,234,255,0.45);
  letter-spacing: 3px;
  white-space: nowrap;
}
.trust-stack { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.trust-stack span {
  font-family: var(--pixel); font-size: 9px;
  color: rgba(240,234,255,0.7);
  letter-spacing: 2px;
  display: inline-flex; align-items: center; gap: 6px;
}
.trust-stack span::before {
  content: '▸'; color: var(--ouro); font-size: 8px;
}

/* badge slot — placeholder enquanto não chega o badge oficial */
.trust-badges {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.badge-slot {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 92px; height: 92px;
  padding: 8px 6px;
  background:
    radial-gradient(circle at center, rgba(229,181,13,0.12), transparent 70%),
    repeating-conic-gradient(from 0deg, rgba(229,181,13,0.15) 0deg 10deg, transparent 10deg 20deg);
  border: 2px solid var(--ouro);
  clip-path: polygon(
    50% 0, 78% 8%, 92% 22%, 100% 50%, 92% 78%, 78% 92%, 50% 100%,
    22% 92%, 8% 78%, 0 50%, 8% 22%, 22% 8%
  );
  text-align: center;
  font-family: var(--pixel);
  color: var(--ouro);
  letter-spacing: 1px;
  line-height: 1.1;
}
.badge-slot .badge-l1 { font-size: 6px; color: rgba(229,181,13,0.7); letter-spacing: 2px; }
.badge-slot .badge-l2 { font-size: 18px; color: var(--ouro); text-shadow: 0 0 8px var(--ouro); margin: 1px 0; }
.badge-slot .badge-l3 { font-size: 7px; letter-spacing: 1px; color: var(--branco); }
.badge-slot .badge-l4 { font-size: 5px; color: rgba(240,234,255,0.55); letter-spacing: 1px; margin-top: 2px; font-family: var(--mono); }

/* =================================================================
   PROBLEMA
================================================================= */
.problema {
  background: linear-gradient(135deg, rgba(20,10,99,0.6), rgba(8,4,26,0.8));
  border-top: 2px solid rgba(180,79,255,0.3);
  border-bottom: 2px solid rgba(180,79,255,0.3);
}
.problema-head { text-align: center; margin-bottom: 48px; }

.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.persona-card {
  background: rgba(8,4,26,0.7);
  border: 2px solid rgba(180,79,255,0.25);
  padding: 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.persona-card:hover {
  border-color: var(--neon);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(180,79,255,0.2);
}
.persona-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.persona-name {
  font-family: var(--pixel); font-size: 10px;
  color: var(--ouro); margin-bottom: 8px;
  line-height: 1.5;
}
.persona-role { font-size: 11px; color: var(--neon); margin-bottom: 12px; display: block; }
.persona-pain { font-size: 13px; line-height: 1.7; color: rgba(240,234,255,0.78); }
.persona-cost {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px dashed rgba(180,79,255,0.25);
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.persona-cost .label { font-family: var(--pixel); font-size: 7px; color: rgba(240,234,255,0.5); letter-spacing: 2px; }
.persona-cost .val { font-family: var(--pixel); font-size: 11px; color: var(--pink); }

.boss-badge {
  position: absolute; top: 12px; right: 16px;
  font-family: var(--pixel); font-size: 7px;
  background: var(--pink); color: #fff;
  padding: 4px 8px;
  animation: blink 1.5s infinite;
  letter-spacing: 1px;
}
.boss-badge.v2 { background: var(--neon); }
.boss-badge.v3 { background: var(--ouro); color: #000; }

/* =================================================================
   SIMULADOR IA
================================================================= */
.simulador { background: var(--fundo-2); }
.simulador .container { text-align: center; }

.terminal-box {
  background: #000;
  border: 2px solid var(--neon);
  max-width: 820px;
  margin: 40px auto 0;
  text-align: left;
  box-shadow: 0 0 30px rgba(180,79,255,0.25);
}
.terminal-header {
  background: rgba(180,79,255,0.2);
  padding: 8px 16px;
  border-bottom: 2px solid var(--neon);
  font-family: var(--pixel); font-size: 8px;
  color: var(--neon);
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: 1px;
}
.terminal-header .dots { display: flex; gap: 5px; }
.terminal-header .dots span {
  width: 8px; height: 8px; background: var(--neon); display: inline-block;
}
.terminal-body { padding: 24px; }
.terminal-body p.prompt {
  color: var(--verde); font-size: 14px; margin-bottom: 16px;
}
.terminal-input {
  width: 100%;
  background: rgba(20,10,99,0.5);
  border: 1px solid var(--neon);
  color: var(--branco);
  font-family: var(--mono);
  padding: 16px;
  height: 100px;
  resize: vertical;
  margin-bottom: 16px;
  outline: none;
  font-size: 14px;
}
.terminal-input:focus {
  border-color: var(--ouro);
  box-shadow: 0 0 10px rgba(229,181,13,0.3);
}
.terminal-output {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px dashed var(--verde);
  color: var(--verde);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.7;
  display: none;
}
.terminal-output.visible { display: block; }
.loading-blink { animation: blink 1s infinite; }

.sim-examples {
  margin-top: 16px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.sim-examples span {
  font-family: var(--pixel); font-size: 7px;
  color: rgba(240,234,255,0.4); letter-spacing: 1px;
  margin-right: 4px; align-self: center;
}
.sim-example-btn {
  font-family: var(--mono); font-size: 11px;
  background: rgba(180,79,255,0.08);
  border: 1px solid rgba(180,79,255,0.3);
  color: rgba(240,234,255,0.7);
  padding: 6px 10px;
  cursor: none;
  transition: all 0.2s;
}
.sim-example-btn:hover {
  border-color: var(--ouro);
  color: var(--ouro);
}

/* =================================================================
   MÉTODO — quest map
================================================================= */
.metodo .metodo-head { text-align: center; margin-bottom: 56px; }
.metodo-head h2 { color: var(--ouro); }
.metodo-head p { color: rgba(240,234,255,0.7); font-size: 14px; max-width: 520px; margin: 12px auto 0; }

.quest-map {
  display: flex; gap: 0; justify-content: center; align-items: stretch;
  flex-wrap: wrap; position: relative;
}
.quest-step {
  flex: 1; min-width: 200px; max-width: 240px;
  background: rgba(20,10,99,0.4);
  border: 2px solid rgba(180,79,255,0.2);
  padding: 32px 20px; text-align: center;
  position: relative; transition: all 0.3s;
}
.quest-step:hover {
  background: rgba(106,44,158,0.35);
  border-color: var(--neon);
  transform: translateY(-8px);
  z-index: 2;
  box-shadow: 0 16px 40px rgba(180,79,255,0.25);
}
.quest-step:not(:last-child)::after {
  content: '▶';
  font-family: var(--pixel); font-size: 12px;
  color: var(--ouro);
  position: absolute; right: -16px; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.step-num {
  font-family: var(--pixel); font-size: 28px;
  color: rgba(180,79,255,0.3); display: block;
  margin-bottom: 8px;
}
.step-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.step-name {
  font-family: var(--pixel); font-size: 9px;
  color: var(--ouro); display: block; margin-bottom: 12px;
  letter-spacing: 1px;
}
.step-desc { font-size: 12px; line-height: 1.7; color: rgba(240,234,255,0.7); }

/* =================================================================
   SERVIÇOS
================================================================= */
.servicos {
  background: radial-gradient(ellipse at center, rgba(106,44,158,0.18) 0%, var(--fundo) 70%);
  text-align: center;
}
.oferta-badge {
  display: inline-block;
  font-family: var(--pixel); font-size: 8px;
  background: var(--pink); color: #fff;
  padding: 8px 20px; margin-bottom: 20px;
  letter-spacing: 2px;
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}
.servico-card {
  background: rgba(8,4,26,0.7);
  border: 2px solid rgba(180,79,255,0.25);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  position: relative;
}
.servico-card:hover {
  border-color: var(--neon);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(180,79,255,0.2);
}
.servico-icon { font-size: 38px; display: block; margin-bottom: 14px; }
.servico-nome {
  font-family: var(--pixel); font-size: 10px;
  color: var(--ouro); line-height: 1.6; margin-bottom: 12px;
  letter-spacing: 1px;
}
.servico-desc {
  font-size: 13px; line-height: 1.7;
  color: rgba(240,234,255,0.75);
}
.servico-stat {
  margin-top: 14px;
  font-family: var(--pixel); font-size: 8px;
  color: var(--verde);
  letter-spacing: 1px;
}

/* =================================================================
   PROJETOS SOB MEDIDA — faixa enxuta, visual quieto
================================================================= */
.custom-work {
  padding: 56px 40px;
  background:
    linear-gradient(180deg, transparent, rgba(106,44,158,0.08), transparent);
}
.custom-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.custom-copy h3 {
  font-family: var(--pixel);
  font-size: clamp(13px, 1.7vw, 17px);
  line-height: 1.65;
  margin: 10px 0 14px;
  color: var(--branco);
}
.custom-copy p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(240,234,255,0.7);
  margin-bottom: 20px;
}
.custom-copy .btn-secondary {
  font-size: 9px; padding: 12px 18px;
}

.custom-chips {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.custom-chips li {
  background: rgba(8,4,26,0.7);
  border: 1px solid rgba(180,79,255,0.2);
  padding: 12px 14px;
  display: flex; gap: 12px;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.custom-chips li:hover {
  border-color: var(--ouro);
  transform: translateY(-2px);
}
.chip-num {
  font-family: var(--pixel);
  font-size: 8px;
  color: var(--ouro);
  letter-spacing: 1px;
  flex-shrink: 0;
  padding-top: 2px;
}
.chip-text {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(240,234,255,0.82);
}
.chip-text em {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: rgba(240,234,255,0.5);
  margin-top: 4px;
}

@media (max-width: 820px) {
  .custom-grid { grid-template-columns: 1fr; gap: 28px; }
  .custom-chips { grid-template-columns: 1fr; }
  .custom-copy { text-align: center; }
}

/* =================================================================
   DEPOIMENTOS / PROVAS
================================================================= */
.provas { background: linear-gradient(180deg, var(--fundo), rgba(20,10,99,0.4)); }
.provas-head { text-align: center; margin-bottom: 48px; }
.provas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.prova-card {
  background: rgba(8,4,26,0.8);
  border: 1px solid rgba(229,181,13,0.25);
  padding: 32px 28px 28px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all 0.3s;
}
.prova-card:hover {
  border-color: var(--ouro);
  box-shadow: 0 0 30px rgba(229,181,13,0.18);
  transform: translateY(-4px);
}
.lv-badge {
  position: absolute; top: -10px; left: 16px;
  font-family: var(--pixel); font-size: 7px;
  background: var(--verde); color: #000;
  padding: 4px 10px;
  letter-spacing: 1px;
}
.stars { color: var(--ouro); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.prova-text {
  font-size: 14px; line-height: 1.8;
  color: rgba(240,234,255,0.85);
  margin-bottom: 18px;
  font-style: italic;
}
.prova-quote-mark {
  font-family: var(--pixel); font-size: 24px;
  color: var(--neon); opacity: 0.4;
  position: absolute; top: 14px; right: 18px;
}
.prova-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(180,79,255,0.2);
}
.prova-avatar {
  width: 36px; height: 36px;
  background: var(--cinza);
  font-family: var(--pixel); font-size: 11px;
  color: var(--ouro);
  display: flex; align-items: center; justify-content: center;
  image-rendering: pixelated;
}
.prova-info { line-height: 1.4; }
.prova-name { font-family: var(--pixel); font-size: 8px; color: var(--branco); letter-spacing: 1px; }
.prova-role { font-size: 11px; color: rgba(240,234,255,0.55); margin-top: 4px; }

.prova-result {
  margin-top: 14px;
  background: rgba(0,255,136,0.07);
  border-left: 2px solid var(--verde);
  padding: 10px 14px;
  font-family: var(--pixel); font-size: 8px;
  color: var(--verde);
  letter-spacing: 1px;
  line-height: 1.6;
}

/* =================================================================
   FUNDADORA + GARANTIA (MVP)
================================================================= */
.garantia-section {
  background: linear-gradient(180deg, var(--fundo), rgba(20,10,99,0.4));
}
.garantia-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.founder-card {
  background: rgba(8,4,26,0.6);
  border: 2px solid rgba(229,181,13,0.3);
  padding: 36px 32px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.founder-badge {
  display: inline-block;
  font-family: var(--pixel); font-size: 8px;
  color: var(--verde); letter-spacing: 3px;
  margin-bottom: 20px;
}
.founder-card h2 {
  font-size: clamp(14px, 2vw, 20px);
  margin-bottom: 24px;
}
.founder-row {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px dashed rgba(180,79,255,0.25);
}
.founder-avatar {
  width: 64px; height: 64px;
  background: rgba(229,181,13,0.08);
  border: 2px solid var(--ouro);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.founder-avatar svg,
.founder-avatar img {
  width: 48px; height: 48px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 6px rgba(229,181,13,0.4));
}
.founder-name {
  font-family: var(--pixel); font-size: 11px;
  color: var(--ouro); letter-spacing: 1px;
  margin-bottom: 6px;
}
.founder-role {
  font-size: 12px; color: rgba(240,234,255,0.6);
}
.founder-bio {
  font-size: 14px; line-height: 1.85;
  color: rgba(240,234,255,0.82);
  margin-bottom: 16px;
}
.founder-bio strong { color: var(--ouro); }
.founder-card .btn-secondary { margin-top: 12px; }

.guarantee-stack {
  display: flex; flex-direction: column; gap: 14px;
}
.guarantee-title {
  font-family: var(--pixel); font-size: 8px;
  color: var(--verde); letter-spacing: 3px;
  margin-bottom: 6px;
}
.guarantee-card {
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.3);
  padding: 18px 22px;
  display: flex; gap: 18px; align-items: flex-start;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all 0.2s;
}
.guarantee-card:hover {
  border-color: var(--verde);
  background: rgba(0,255,136,0.08);
  transform: translateX(4px);
}
.guarantee-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.guarantee-name {
  font-family: var(--pixel); font-size: 10px;
  color: var(--verde); letter-spacing: 1px;
  margin-bottom: 6px;
}
.guarantee-body p {
  font-size: 13px; line-height: 1.65;
  color: rgba(240,234,255,0.78);
}

@media (max-width: 820px) {
  .garantia-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-card { padding: 28px 22px; }
  .founder-card h2 { font-size: 14px; }
}

/* =================================================================
   PLANOS
================================================================= */
.planos-section {
  background: linear-gradient(135deg, rgba(20,10,99,0.5), rgba(8,4,26,0.9));
  border-top: 2px solid rgba(180,79,255,0.3);
  border-bottom: 2px solid rgba(180,79,255,0.3);
}
.planos-head { text-align: center; margin-bottom: 16px; }
.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.plano-card {
  background: rgba(8,4,26,0.8);
  border: 1px solid rgba(180,79,255,0.3);
  padding: 48px 28px 32px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.plano-card:hover { transform: translateY(-4px); }
.plano-card.destaque {
  border: 2px solid var(--ouro);
  background: rgba(229,181,13,0.05);
  box-shadow: 0 0 30px rgba(229,181,13,0.18);
}
.plano-card.destaque:hover { transform: translateY(-6px); }

.popular-tag {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  font-family: var(--pixel); font-size: 7px;
  background: var(--ouro); color: #000;
  padding: 6px 14px;
  white-space: nowrap;
  letter-spacing: 2px;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 6px 100%);
}
.popular-tag.is-destaque { animation: blink 2.5s infinite; }
.popular-tag.v-verde  { background: var(--verde); color: #000; }
.popular-tag.v-pink   { background: var(--pink);  color: #fff; }
.plano-card.destaque { padding-top: 48px; }

.plano-num {
  font-family: var(--pixel); font-size: 7px;
  letter-spacing: 3px; display: block; margin-bottom: 10px;
}
.plano-nome {
  font-family: var(--pixel); font-size: 14px;
  margin-bottom: 12px; display: block;
  letter-spacing: 1px;
}
.plano-desc {
  font-size: 12px; color: rgba(240,234,255,0.7);
  line-height: 1.7; margin-bottom: 16px;
}
.plano-preco { margin-bottom: 16px; }
.plano-preco .valor {
  font-family: var(--pixel); font-size: 22px;
}
.plano-preco .periodo {
  font-size: 11px; color: rgba(240,234,255,0.55);
}
.plano-preco .implantacao {
  font-family: var(--pixel); font-size: 8px;
  color: var(--verde); display: block; margin-top: 6px;
  letter-spacing: 1px;
}
.plano-preco .consulta {
  font-family: var(--pixel); font-size: 12px; color: var(--branco); letter-spacing: 1px;
}

.badge-whatsapp {
  background: rgba(0,255,136,0.07);
  border: 1px solid rgba(0,255,136,0.35);
  padding: 7px 12px; margin-bottom: 16px;
  font-family: var(--pixel); font-size: 7px;
  color: var(--verde); letter-spacing: 1px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  text-align: center;
}

.plano-card .card-items {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.plano-card .card-items li {
  font-size: 12px; color: rgba(240,234,255,0.78);
  padding: 7px 0;
  border-bottom: 1px solid rgba(180,79,255,0.08);
  display: flex; align-items: center; gap: 8px;
}
.plano-card .card-items li::before { content: '▸'; color: var(--verde); flex-shrink: 0; }

.planos-rodape {
  text-align: center; margin-top: 32px;
  font-family: var(--pixel); font-size: 7px;
  color: rgba(240,234,255,0.4); letter-spacing: 2px;
}

/* =================================================================
   FAQ
================================================================= */
.faq { background: var(--fundo); }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(180,79,255,0.2);
}
.faq-q {
  width: 100%; background: none; border: none;
  font-family: var(--pixel); font-size: 10px;
  color: var(--branco); text-align: left;
  padding: 22px 0; cursor: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; line-height: 1.7;
  transition: color 0.2s;
  letter-spacing: 1px;
}
.faq-q:hover { color: var(--ouro); }
.faq-q .arrow { color: var(--neon); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(90deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 14px; line-height: 1.85;
  color: rgba(240,234,255,0.75);
}
.faq-a.open { max-height: 360px; padding-bottom: 22px; }

/* =================================================================
   CTA FINAL
================================================================= */
.cta-final {
  text-align: center;
  background: linear-gradient(135deg, rgba(20,10,99,0.8), rgba(106,44,158,0.4), rgba(8,4,26,0.9));
  border-top: 2px solid rgba(180,79,255,0.4);
  padding: 100px 40px;
}
.glitch-title {
  font-family: var(--pixel);
  font-size: clamp(16px, 3.2vw, 30px);
  color: var(--branco);
  position: relative;
  line-height: 1.6;
  margin-bottom: 24px;
}
.glitch-title::before, .glitch-title::after {
  content: attr(data-text);
  position: absolute; left: 0; right: 0;
  font-family: var(--pixel);
  font-size: inherit;
}
.glitch-title::before {
  color: var(--pink); top: -2px;
  animation: glitch1 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}
.glitch-title::after {
  color: var(--verde); top: 2px;
  animation: glitch2 3s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}
@keyframes glitch1 {
  0%,90%,100%{transform:none;opacity:0}
  91%{transform:translateX(-4px);opacity:0.8}
  93%{transform:translateX(4px);opacity:0.8}
  95%{transform:none;opacity:0}
}
@keyframes glitch2 {
  0%,90%,100%{transform:none;opacity:0}
  92%{transform:translateX(4px);opacity:0.8}
  94%{transform:translateX(-4px);opacity:0.8}
  96%{transform:none;opacity:0}
}
.cta-final p {
  font-size: 15px; color: rgba(240,234,255,0.75);
  max-width: 520px; margin: 0 auto 28px; line-height: 1.85;
}
.cta-final .cta-group { justify-content: center; }
.cta-final .price-pill { margin: 0 auto 24px; }
.cta-foot {
  font-family: var(--pixel); font-size: 7px;
  color: rgba(240,234,255,0.35);
  margin-top: 24px;
  letter-spacing: 2px;
}

/* =================================================================
   FOOTER
================================================================= */
footer {
  background: rgba(8,4,26,0.98);
  border-top: 2px solid rgba(106,44,158,0.4);
  padding: 48px 40px 30px;
  text-align: center;
}
.footer-logo {
  font-family: var(--pixel); font-size: 14px;
  color: var(--ouro); text-shadow: 0 0 10px var(--ouro);
  margin-bottom: 8px;
  letter-spacing: 3px;
}
.footer-tagline {
  font-family: var(--pixel); font-size: 7px;
  color: rgba(240,234,255,0.4); letter-spacing: 3px;
  margin-bottom: 28px;
}
.footer-links {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 12px; color: rgba(240,234,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--neon); }
.footer-copy {
  font-family: var(--pixel); font-size: 7px;
  color: rgba(240,234,255,0.25);
  letter-spacing: 2px;
}

/* =================================================================
   FLOATING WHATSAPP + STICKY MOBILE OFFER
================================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  background: #25D366; color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4), 4px 4px 0 rgba(0,0,0,0.5);
  border: 2px solid #08041a;
  transition: all 0.2s;
  cursor: none;
}
.whatsapp-float:hover {
  transform: translate(-2px, -2px);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6), 6px 6px 0 rgba(0,0,0,0.5);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: currentColor; }
.wa-tooltip {
  position: absolute; right: 76px;
  background: rgba(8,4,26,0.95);
  border: 1px solid #25D366;
  color: #25D366;
  padding: 10px 14px;
  font-family: var(--pixel); font-size: 8px;
  white-space: nowrap;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
  transform: translateX(10px);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
  letter-spacing: 1px;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1; visibility: visible; transform: translateX(0);
}

/* mobile sticky offer bar */
.sticky-offer {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(8,4,26,0.97);
  border-top: 2px solid var(--ouro);
  padding: 12px 14px;
  z-index: 998;
  box-shadow: 0 -8px 32px rgba(229,181,13,0.18);
  backdrop-filter: blur(6px);
}
.sticky-offer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-offer-text {
  font-family: var(--pixel); font-size: 8px;
  color: var(--verde); letter-spacing: 1px; line-height: 1.5;
}
.sticky-offer-text strong { color: var(--ouro); display: block; font-size: 9px; margin-bottom: 2px; }
.sticky-offer .btn-primary {
  padding: 12px 14px; font-size: 8px;
  box-shadow: 3px 3px 0 #7a5f00;
  flex-shrink: 0;
}

/* =================================================================
   FADE-IN
================================================================= */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* =================================================================
   RESPONSIVE
================================================================= */
@media (max-width: 760px) {
  .hero { min-height: 0; padding: 40px 28px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone-wrap { transform: scale(0.92); margin-top: 8px; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .cta-group { justify-content: center; }
  .price-pill { margin-left: auto; margin-right: auto; }
  .trust-strip { justify-content: center; }
  .planos-grid { grid-template-columns: 1fr; }
}

@media (min-width: 761px) and (max-width: 980px) {
  .hero-grid { gap: 32px; }
  .hero-title { font-size: clamp(18px, 3vw, 28px); }
  .phone { width: 280px; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display: none; }
  * { cursor: auto !important; }
  a, button { cursor: pointer !important; }

  nav.main-nav { padding: 12px 18px; }
  .nav-links { display: none; }
  .btn-nav-app { display: none; }

  section { padding: 64px 20px; }
  .hero { padding: 40px 20px 80px; }
  .trust-bar { padding: 24px 20px; }
  .trust-bar-inner { justify-content: center; text-align: center; }
  .trust-stack { justify-content: center; gap: 18px; }

  .phone { width: 280px; }
  .duck-orbital { width: 84px; height: 84px; top: -32px; right: -24px; }
  .phone-tag.top-left { left: -4px; }
  .phone-tag.bottom-right { right: -10px; }

  .quest-step:not(:last-child)::after { display: none; }
  .quest-map { flex-direction: column; align-items: stretch; gap: 12px; }
  .quest-step { max-width: none; }

  .whatsapp-float { bottom: 80px; right: 18px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .wa-tooltip { display: none; }

  .sticky-offer { display: block; }

  .cta-final { padding: 64px 20px 90px; }
  footer { padding: 36px 20px 24px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 18px; line-height: 1.55; }
  .price-pill { font-size: 8px; gap: 8px; padding: 10px 12px; }
  .btn-primary, .btn-secondary { font-size: 9px; padding: 14px 18px; }
  .phone { width: 100%; max-width: 280px; }
}
