/* ==========================================
   GUARDIÃO — Landing VSL
   Paleta: preto / dourado / verde
   Modelado em AIVA / Elida
   ========================================== */

:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-2: #1c1c1c;
  --gold: #FFD700;
  --gold-dim: #c9a300;
  --green: #00d96d;
  --red: #ff3b3b;
  --text: #f3f3f3;
  --text-dim: #9a9a9a;
  --border: #2a2a2a;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   HERO — sempre visível
   ========================================== */
.hero {
  padding: 28px 0 60px;
  background: radial-gradient(ellipse at top, #1a1a0a 0%, #0a0a0a 70%);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.25));
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--gold);
}

.headline {
  font-size: clamp(19px, 4.4vw, 28px);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.headline .highlight {
  color: var(--gold);
}

.sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 18px;
}

.sub strong {
  color: var(--gold);
}

/* ═══ Pattern Interrupt (PI) — toma a headline aos 1:48 do vídeo por 6s ═══ */
.headline-wrap {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 2px 4px;
  transition: opacity .6s ease;
}
.headline-wrap.pi-active {
  background: #0a0a0a;
  border-color: var(--gold);
  box-shadow: 0 0 26px rgba(255, 215, 0, 0.20);
  padding: 14px 16px 12px;
  animation: pi-enter .45s ease;
}
.headline-wrap.pi-active .headline { color: var(--gold); margin-bottom: 8px; }
.headline-wrap.pi-active .headline strong { color: #fff; }
.headline-wrap.pi-active .sub { color: #fff; font-weight: 600; margin-bottom: 0; }
.headline-wrap.pi-fading { opacity: 0; }
.pi-ico { width: 17px; height: 17px; vertical-align: -3px; margin-right: 5px; }
@keyframes pi-enter {
  0%   { transform: scale(.97); opacity: 0; }
  60%  { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}

/* Player */
.video-wrapper {
  width: 100%;
  max-width: 400px;        /* vídeo vertical: limita largura no desktop */
  margin: 0 auto 16px;     /* centralizado */
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 — vídeo vertical */
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.08);
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#panda-placeholder {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-dim);
  width: 80%;
}

#panda-placeholder p { font-size: 18px; margin-bottom: 8px; }
#panda-placeholder small { font-size: 13px; opacity: 0.6; }

.under-video {
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 12px;
}

/* ==========================================
   REVEAL ZONE — controlada por JS
   ========================================== */
/* Gate por display (sem animar max-height = sem reflow/jank).
   A entrada suave acontece por seção via IntersectionObserver (anim.js). */
.reveal-zone { display: none; }
body.revealed .reveal-zone { display: block; }

/* Quando revelado, esconde a mensagem de "aguardando" */
body.revealed #reveal-status {
  display: none;
}

body.revealed .under-video::after {
  content: 'Acesso liberado — role para baixo e garanta sua vaga.';
  color: var(--green);
  font-weight: 600;
}

/* ==========================================
   BENEFÍCIOS
   ========================================== */
.benefits {
  padding: 60px 0 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.benefits h2 {
  text-align: center;
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 28px;
  color: var(--gold);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}

.benefits-mockup img {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 40px rgba(255, 215, 0, 0.18));
}

.benefit-list {
  list-style: none;
}

@media (max-width: 720px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 24px; }
  .benefits-mockup img { max-width: 240px; }
}

.benefit-list li {
  padding: 14px 18px;
  margin-bottom: 8px;
  background: var(--bg-card-2);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: 16px;
}

.benefit-list li strong {
  color: var(--gold);
}

/* ==========================================
   SELOS
   ========================================== */
.seals {
  padding: 40px 0;
  background: var(--bg);
}

.seals .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.seal {
  text-align: center;
  padding: 24px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.seal-icon {
  margin: 0 auto 14px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gold);
}

.seal-icon svg { width: 28px; height: 28px; }

/* Ícones inline (relógio sob vídeo, cadeado no risk-free) */
.inline-ico {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  opacity: 0.7;
  margin-right: 4px;
}

.under-video, .risk-free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.seal h3 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 6px;
}

.seal p {
  color: var(--text-dim);
  font-size: 14px;
}

/* ==========================================
   PROVA SOCIAL — PRINTS DE WHATSAPP
   ========================================== */
.proof {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.proof h2 {
  text-align: center;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--gold);
  margin-bottom: 6px;
}

.proof-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 28px;
}

.proof-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 20px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
}

/* No desktop, centraliza se couber tudo */
@media (min-width: 1280px) {
  .proof-grid { justify-content: center; }
}

.proof-phone {
  position: relative;
  flex: 0 0 auto;
  width: 220px;
  aspect-ratio: 9 / 19.5;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.proof-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* esconde a barra de scroll mas mantém funcional */
.proof-grid::-webkit-scrollbar { height: 6px; }
.proof-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ==========================================
   OFERTA + CTA
   ========================================== */
.offer {
  padding: 50px 0;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a0a 100%);
}

.offer.offer-final {
  background: linear-gradient(180deg, #1a1a0a 0%, #0a0a0a 100%);
}

.offer h2 {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 28px;
  color: var(--text);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.price-label {
  color: var(--text-dim);
  margin-bottom: 4px;
  font-size: 14px;
}

.price-new {
  color: var(--gold);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.price-installment {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 28px;
}

/* ---- Banner de prêmio / desconto ---- */
.prize-banner {
  max-width: 460px;
  margin: 0 auto 22px;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,217,109,0.14), rgba(255,215,0,0.13));
  border: 1px solid rgba(255,215,0,0.45);
  box-shadow: 0 0 32px rgba(255,215,0,0.13);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.prize-top { font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--green); }
.prize-big { font-size: clamp(22px, 5vw, 28px); font-weight: 900; color: var(--gold); line-height: 1.1; }
.prize-sub { font-size: 12px; color: var(--text-dim); margin-top: 3px; }

.price-prev {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-right: 10px;
  vertical-align: middle;
}
.price-off {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  background: var(--red, #ff3b3b);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 8px;
  letter-spacing: 0.3px;
}
.price-label s { color: var(--text-dim); }

.offer-urgency {
  margin-top: 16px;
  color: #ff9a9a;
  font-size: 13px;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #00f57a 0%, #00b85a 100%);
  color: #001a08;
  padding: 18px 36px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 217, 109, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
  animation: pulse 1.4s ease-in-out infinite;
  text-align: center;
  will-change: transform, box-shadow;
  transform-origin: center;
}

.cta-button small {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.1px;
  margin-top: 6px;
  opacity: 0.95;
}

.cta-button small .cta-clock {
  display: inline-block;
  background: rgba(0, 0, 0, 0.18);
  padding: 1px 8px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  margin: 0 2px;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 217, 109, 0.6);
}

/* Pulse forte: scale + glow + ondulação expansiva (visível mesmo em mobile lento) */
@keyframes pulse {
  0% {
    box-shadow: 0 8px 24px rgba(0, 217, 109, 0.45),
                0 0 0 0 rgba(0, 217, 109, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 18px 44px rgba(0, 217, 109, 0.95),
                0 0 0 20px rgba(0, 217, 109, 0);
    transform: scale(1.04);
  }
  100% {
    box-shadow: 0 8px 24px rgba(0, 217, 109, 0.45),
                0 0 0 0 rgba(0, 217, 109, 0);
    transform: scale(1);
  }
}

/* Estado "desconto expirado" — pulse some, cor abafa, texto fica neutro */
.cta-button.cta-expired {
  background: linear-gradient(180deg, #6b6b6b 0%, #4a4a4a 100%);
  color: #f5f5f5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  animation: none;
}
.cta-button.cta-expired:hover {
  transform: translateY(-1px) scale(1.0);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* CTA logo abaixo do vídeo — aparece junto com o reveal da página */
.cta-video { display: none; }
body.revealed .cta-video { display: block; width: 100%; max-width: 520px; margin: 20px auto 0; }

.risk-free {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 13px;
}

/* ==========================================
   DEPOIMENTOS
   ========================================== */
.testimonials {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.testimonials h2 {
  text-align: center;
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 28px;
  color: var(--gold);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.testi {
  padding: 20px;
  background: var(--bg-card-2);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
}

.testi p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.testi span {
  color: var(--text-dim);
  font-size: 13px;
}

/* ==========================================
   FAQ
   ========================================== */
.faq {
  padding: 60px 0;
}

.faq h2 {
  text-align: center;
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 28px;
  color: var(--gold);
}

details {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  outline: none;
  user-select: none;
}

details[open] summary {
  border-bottom: 1px solid var(--border);
  color: var(--gold);
}

details p {
  padding: 16px 20px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  padding: 40px 0 30px;
  background: #050505;
  border-top: 1px solid var(--border);
}

footer .disclaimer {
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  margin-bottom: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

footer .copyright {
  text-align: center;
  color: #555;
  font-size: 12px;
}

/* ==========================================
   MOBILE
   ========================================== */
@media (max-width: 600px) {
  .hero { padding: 24px 0 40px; }
  .price-new { font-size: 44px; }
  .cta-button { font-size: 17px; padding: 16px 24px; width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════
   REDESIGN — Fase 1 (visual) + Fase 3 (movimento). Só visual, copy intacta.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Tipografia premium (Sora títulos / Inter texto) ── */
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.headline, .brand-name, h1, h2, h3,
.price-new, .price-prev, .prize-big, .seal h3 { font-family: 'Sora', 'Inter', sans-serif; }

/* ── Check dourado nos benefícios (no lugar do emoji ✓) ── */
.benefit-list li { position: relative; padding-left: 48px; list-style: none; }
.benefit-list li::before {
  content: ''; position: absolute; left: 13px; top: 50%; margin-top: -11px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255, 215, 0, 0.10); border: 1px solid rgba(255, 215, 0, 0.45);
}
.benefit-list li::after {
  content: ''; position: absolute; left: 21px; top: 50%; margin-top: -7px;
  width: 5px; height: 10px; border: solid var(--gold); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* CTA — feedback tátil no toque (mantém o pulse principal vivo) */
.cta-button:active { transform: scale(0.99); }

/* ── Movimento: reveal-on-scroll + stagger (acionado por anim.js via IntersectionObserver) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
  .stagger > * { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
  .stagger.is-visible > * { opacity: 1; transform: none; }
  .stagger.is-visible > *:nth-child(2) { transition-delay: .07s; }
  .stagger.is-visible > *:nth-child(3) { transition-delay: .14s; }
  .stagger.is-visible > *:nth-child(4) { transition-delay: .21s; }
  .stagger.is-visible > *:nth-child(5) { transition-delay: .28s; }
  .stagger.is-visible > *:nth-child(6) { transition-delay: .35s; }
}

/* ═══════════════════════════════════════════════════════════════════
   REDESIGN — Fase 4 (refino premium) + Fase 5 (seções novas)
   ═══════════════════════════════════════════════════════════════════ */

.section-sub { text-align: center; color: var(--text-dim); font-size: 15px; margin: 0 auto 28px; max-width: 620px; }

/* Fio dourado discreto nos cards (toque premium) */
.seal, .testi, details, .how-step, .support-item { border-color: rgba(255, 215, 0, 0.14); }

/* ── Depoimentos: avatar + estrelas ── */
.testi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 215, 0, 0.4); flex: 0 0 auto; }
.testi-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }

/* ── Trust bar ── */
.trustbar { background: var(--bg); padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: center; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: 13px; font-weight: 600; }
.trust-item svg { width: 18px; height: 18px; opacity: .7; }

/* ── Como funciona em 3 passos ── */
.how { padding: 60px 0; background: var(--bg); border-top: 1px solid var(--border); }
.how h2 { text-align: center; font-size: clamp(20px, 3vw, 26px); color: var(--gold); margin-bottom: 8px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.how-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; text-align: center; }
.how-num { width: 44px; height: 44px; margin: 0 auto 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px; color: #1a1400; background: linear-gradient(180deg, var(--gold), var(--gold-dim)); }
.how-step h3 { color: var(--text); font-size: 17px; margin-bottom: 8px; }
.how-step p { color: var(--text-dim); font-size: 14px; }

/* ── Quem está por trás ── */
.founder { padding: 60px 0; background: var(--bg); border-top: 1px solid var(--border); }
.founder-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 36px; align-items: center; max-width: 820px; margin: 0 auto; }
.founder-photo img { width: 100%; max-width: 340px; display: block; margin: 0 auto; border-radius: 16px; border: 1px solid rgba(255, 215, 0, 0.2); box-shadow: 0 14px 50px rgba(0, 0, 0, 0.5); }
.founder-eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
.founder-text h2 { font-size: clamp(20px, 3vw, 28px); color: var(--text); margin-bottom: 14px; line-height: 1.25; }
.founder-text p { color: var(--text-dim); font-size: 15px; margin-bottom: 12px; }
.founder-kicker { color: var(--text) !important; font-weight: 600; border-left: 3px solid var(--gold); padding-left: 14px; }

/* ── Por que R$147 ── */
.why-price { padding: 60px 0; background: var(--bg-card); border-top: 1px solid var(--border); text-align: center; }
.why-price h2 { font-size: clamp(19px, 3vw, 25px); color: var(--gold); margin: 0 auto 18px; max-width: 640px; }
.why-price p { color: var(--text-dim); font-size: 15px; max-width: 640px; margin: 0 auto 12px; line-height: 1.6; }
.why-price strong { color: var(--text); }
.why-price-kicker { color: var(--text) !important; font-weight: 600; font-size: 16px !important; }

/* ── Você não fica sozinho ── */
.support { padding: 60px 0; background: var(--bg); border-top: 1px solid var(--border); }
.support h2 { text-align: center; font-size: clamp(20px, 3vw, 26px); color: var(--gold); margin-bottom: 28px; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-item { background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--green); border-radius: var(--radius); padding: 22px; }
.support-item h3 { color: var(--text); font-size: 16px; margin-bottom: 8px; }
.support-item p { color: var(--text-dim); font-size: 14px; }

/* ── Responsivo (seções novas) ── */
@media (max-width: 720px) {
  .how-grid, .support-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 22px; }
  .founder-text { text-align: center; }
  .founder-kicker { text-align: left; }
}

/* ── Mockup 3D flutuante (corrige o fundo feio do dashboard) ── */
.benefits-mockup { perspective: 1200px; }
.benefits-mockup img {
  max-width: 250px;
  border-radius: 36px;
  filter: none;
  transform: rotateY(-9deg) rotateX(2deg);
  box-shadow: 26px 28px 60px rgba(0, 0, 0, 0.6), 0 0 55px rgba(255, 215, 0, 0.10);
  transition: transform .5s ease;
}
.benefits-mockup img:hover { transform: rotateY(0deg) rotateX(0deg); }
@media (max-width: 720px) {
  .benefits-mockup img { max-width: 220px; transform: rotateY(-6deg); }
}

/* ════════════════════════════════════════════════════════════
   MOCKUPS DO APP (WebP, fundo transparente) — só posicionamento.
   Aditivo: NÃO altera copy, fonte nem ordem das seções.
   ════════════════════════════════════════════════════════════ */
@keyframes mockfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* fade sutil na base — elimina qualquer vestígio de sombra do recorte */
.how-mock, .support-mock, .benefits-rank, .benefits-main {
  -webkit-mask-image: linear-gradient(to bottom, #000 97%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 97%, transparent 100%);
}

/* 3 passos — um mockup de celular por card */
.how-step .how-mock {
  display:block; width:auto; max-height:340px; margin:24px auto 0;
  filter:drop-shadow(0 26px 42px rgba(0,0,0,.6));
  animation:mockfloat 6s ease-in-out infinite;
}
.how-step:nth-child(2) .how-mock { animation-delay:.5s; }
.how-step:nth-child(3) .how-mock { animation-delay:1s; }

/* suporte / comunidade — mockup de WhatsApp por card */
.support-item .support-mock {
  display:block; width:auto; max-height:360px; margin:20px auto 0;
  filter:drop-shadow(0 24px 40px rgba(0,0,0,.55));
}

/* ranking — flutua no canto do painel dos benefícios */
.benefits-mockup { position:relative; }
.benefits-mockup .benefits-rank {
  position:absolute; right:-6px; bottom:-16px; width:148px; max-width:148px;
  transform:none; border-radius:22px; box-shadow:none;
  filter:drop-shadow(0 22px 40px rgba(0,0,0,.7));
  animation:mockfloat 7s ease-in-out infinite .4s; z-index:3;
}
.benefits-mockup .benefits-rank:hover { transform:none; }
/* painel principal dos benefícios (substitui o dashboard antigo do gráfico) */
.benefits-mockup .benefits-main { max-width:280px; width:auto; height:auto; border-radius:0; transform:none; box-shadow:none; filter:drop-shadow(0 26px 46px rgba(0,0,0,.6)); }
.benefits-mockup .benefits-main:hover { transform:none; }
@media (max-width:760px) {
  .benefits-mockup .benefits-rank { position:static; width:190px; max-width:190px; margin:18px auto 0; right:auto; bottom:auto; }
}

