/* ═══════════════════════════════════════════════════════════════
   GGBOT — Folha de estilos única
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ── Variáveis ───────────────────────────────────────────────── */
:root {
  --bg:          #07101d;
  --bg2:         #0c1929;
  --bg3:         #111f36;
  --cyan:        #00c8f5;
  --cyan2:       #0099be;
  --cyan-glow:   rgba(0,200,245,.14);
  --cyan-border: rgba(0,200,245,.22);
  --green:       #1fd47a;
  --green-dim:   rgba(31,212,122,.12);
  --white:       #eef4ff;
  --text:        #c2d4ed;
  --muted:       #647ea0;
  --border:      rgba(255,255,255,.07);
  --font:        'Plus Jakarta Sans', sans-serif;
  --r:           14px;
  --r-lg:        20px;
  --t:           .22s ease;
  --shadow:      0 20px 48px rgba(0,0,0,.35);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
strong { font-weight: 700; }
p { line-height: 1.7; }

/* ── Grade de fundo ──────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,200,245,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,245,.022) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ════════════════════════════════════════════════════════════════
   UTILITÁRIOS
   ════════════════════════════════════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.section { width: 100%; padding: 84px 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg2); }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .73rem; font-weight: 800; color: var(--cyan);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 10px;
}
.tag::before {
  content: ''; width: 18px; height: 2px;
  background: var(--cyan); border-radius: 2px; flex-shrink: 0;
}
.section-title {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 900; color: var(--white);
  line-height: 1.12; margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 520px; line-height: 1.72;
}
.center-text { text-align: center; }
.center-text .section-sub { margin: 0 auto; }
.center-text .tag { justify-content: center; }

/* ── Botão CTA ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 800; font-size: .95rem;
  color: #07101d !important; background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border: none; border-radius: var(--r); padding: 13px 26px;
  cursor: pointer; white-space: nowrap; letter-spacing: .01em;
  box-shadow: 0 4px 18px rgba(0,200,245,.26);
  transition: transform var(--t), box-shadow var(--t), filter var(--t);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,200,245,.38); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.btn-ghost {
  background: transparent !important;
  color: var(--text) !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: none !important;
}
.btn-ghost:hover { border-color: var(--cyan) !important; color: var(--cyan) !important; filter: none; }

.btn-green {
  background: linear-gradient(135deg, var(--green), #14a55e) !important;
  box-shadow: 0 4px 18px rgba(31,212,122,.2) !important;
}
.btn-green:hover { box-shadow: 0 8px 28px rgba(31,212,122,.35) !important; }

/* ── Reveal ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

/* ════════════════════════════════════════════════════════════════
   TOP BANNER
   ════════════════════════════════════════════════════════════════ */
.top-banner {
  background: linear-gradient(90deg, var(--bg2), rgba(0,200,245,.1), var(--bg2));
  border-bottom: 1px solid var(--cyan-border);
  padding: 9px 20px; text-align: center;
  font-size: .78rem; font-weight: 700; color: var(--cyan);
  letter-spacing: .03em; z-index: 1000; position: relative;
}
.top-banner a { color: var(--white); text-decoration: underline; margin-left: 8px; font-weight: 800; }

/* ════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 900; width: 100%;
  background: rgba(7,16,29,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 66px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.navbar-logo img { height: 34px; width: auto; }
.navbar-links { display: flex; align-items: center; gap: 4px; }
.navbar-links a {
  font-size: .88rem; font-weight: 600; color: var(--text);
  padding: 7px 13px; border-radius: 9px;
  transition: color var(--t), background var(--t);
}
.navbar-links a:hover { color: var(--cyan); background: var(--cyan-glow); }
.nav-icon img { width: 22px; height: 22px; object-fit: contain; opacity: .7; transition: opacity var(--t); }
.nav-icon:hover { background: none !important; }
.nav-icon:hover img { opacity: 1; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }

.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(7,16,29,.98); border-bottom: 1px solid var(--border);
  padding: 14px 24px 20px; gap: 2px; position: relative; z-index: 899;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: .95rem; font-weight: 600; color: var(--text);
  padding: 11px 14px; border-radius: var(--r);
  transition: color var(--t), background var(--t);
  display: flex; align-items: center; gap: 10px;
}
.nav-mobile a:hover { color: var(--cyan); background: var(--cyan-glow); }
.nav-socials { display: flex; gap: 10px; padding: 10px 14px 0; }
.nav-socials a { padding: 0 !important; background: none !important; }
.nav-socials img { width: 26px; height: 26px; object-fit: contain; opacity: .75; }

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: calc(100vh - 103px);
  display: flex; align-items: center; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(7,16,29,.94) 0%, rgba(7,16,29,.78) 55%, rgba(7,16,29,.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; padding: 80px 28px; width: 100%;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,245,.1); border: 1px solid rgba(0,200,245,.2);
  border-radius: 100px; padding: 5px 14px;
  font-size: .76rem; font-weight: 700; color: var(--cyan); letter-spacing: .03em;
}

.hero-title {
  font-size: clamp(2rem, 4.8vw, 3.6rem); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 20px; max-width: 780px;
}
.hero-title .accent {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.05rem; color: rgba(194,212,237,.85); max-width: 560px; margin-bottom: 34px; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.stat-num { font-size: 1.9rem; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -.02em; }
.stat-num em { font-style: normal; color: var(--green); }
.stat-label { font-size: .7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }

/* ════════════════════════════════════════════════════════════════
   O QUE É — Seção centrada com vídeo retrato
   ════════════════════════════════════════════════════════════════ */
.section-about { background: var(--bg2); }

.about-header { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.about-header .section-sub { margin: 0 auto; }

/* Container do vídeo portrait */
.portrait-wrap {
  max-width: 320px; margin: 0 auto 52px;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 0 1px var(--cyan-border);
}
.portrait-wrap lite-youtube {
  width: 100%; aspect-ratio: 9 / 16; display: block;
}

/* Cards de argumento */
.args { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.arg-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px 22px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.arg-card:hover { border-color: var(--cyan-border); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.arg-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--cyan-glow); border-radius: var(--r); border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center; padding: 10px;
}
.arg-icon img { width: 28px; height: 28px; object-fit: contain; }
.arg-text h3 { font-size: .97rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.arg-text p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════════
   DEPOIMENTOS — limpo, sem embeds do Instagram
   ════════════════════════════════════════════════════════════════ */
.depo-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px;
}
.depo-video {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
}
.depo-video:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(0,0,0,.45); }
.depo-video lite-youtube { width: 100%; aspect-ratio: 16/9; display: block; }

/* Cards de depoimento texto */
.depo-quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 40px; }
.quote-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 22px;
  transition: border-color var(--t), transform var(--t);
}
.quote-card:hover { border-color: var(--cyan-border); transform: translateY(-2px); }
.quote-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.quote-text { font-size: .88rem; color: var(--text); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.quote-author { font-size: .78rem; font-weight: 700; color: var(--cyan); }

.depo-cta { text-align: center; }
.depo-cta p { color: var(--muted); margin-bottom: 18px; font-size: .95rem; }

/* ════════════════════════════════════════════════════════════════
   FUNCIONALIDADES
   ════════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(248px,1fr));
  gap: 14px; margin-bottom: 56px;
}
.feature-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.feature-card:hover { border-color: var(--cyan-border); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.feature-icon { width: 42px; height: 42px; object-fit: contain; }
.feature-card h3 { font-size: .94rem; font-weight: 800; color: var(--white); }
.feature-card p { font-size: .81rem; color: var(--muted); line-height: 1.58; }

/* Bloco Telegram */
.tg-block {
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 1px solid var(--cyan-border); border-radius: 24px;
  padding: 52px 48px; display: flex; align-items: center; gap: 52px;
}
.tg-img { flex-shrink: 0; width: 220px; }
.tg-img img { width: 100%; border-radius: var(--r); filter: drop-shadow(0 8px 24px rgba(0,200,245,.1)); }
.tg-text h3 { font-size: 1.45rem; font-weight: 900; color: var(--white); margin-bottom: 14px; line-height: 1.25; }
.tg-text p { color: var(--muted); line-height: 1.72; margin-bottom: 24px; }

/* ════════════════════════════════════════════════════════════════
   BARRA DE URGÊNCIA
   ════════════════════════════════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(135deg, #040f1c, #071826, #040f1c);
  border-top: 1px solid var(--cyan-border); border-bottom: 1px solid var(--cyan-border);
  padding: 18px 20px; position: relative; z-index: 1;
}
.urgency-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.timer-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.timer-label { font-size: .88rem; font-weight: 700; color: var(--white); }
.timer { display: flex; align-items: center; gap: 5px; }
.timer-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,200,245,.1); border: 1px solid rgba(0,200,245,.25);
  border-radius: 9px; padding: 7px 13px; min-width: 52px;
}
.t-num { font-size: 1.45rem; font-weight: 900; color: var(--cyan); line-height: 1; font-variant-numeric: tabular-nums; }
.t-lbl { font-size: .58rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }
.timer-sep { font-size: 1.35rem; font-weight: 900; color: rgba(0,200,245,.3); padding-bottom: 11px; }
.live-badge { display: flex; align-items: center; gap: 9px; font-size: .85rem; font-weight: 600; color: var(--text); }
.dot-live { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(31,212,122,.5); animation: pulse 1.6s infinite; flex-shrink: 0; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(31,212,122,.5)} 70%{box-shadow:0 0 0 9px rgba(31,212,122,0)} 100%{box-shadow:0 0 0 0 rgba(31,212,122,0)} }

/* ════════════════════════════════════════════════════════════════
   PLANOS — com tabs Mensalidades | Créditos
   ════════════════════════════════════════════════════════════════ */
.plans-tabs {
  display: flex; gap: 0; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 12px; padding: 4px;
  margin: 0 auto 44px; width: fit-content;
}
.plan-tab {
  font-family: var(--font); font-size: .88rem; font-weight: 700;
  color: var(--muted); background: none; border: none; border-radius: 9px;
  padding: 9px 24px; cursor: pointer; transition: all var(--t); white-space: nowrap;
}
.plan-tab.active { background: linear-gradient(135deg, var(--cyan), var(--cyan2)); color: #07101d; }

.plans-panel { display: none; }
.plans-panel.active { display: block; }

/* Grid de planos */
.plans-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: start; }
.plans-grid.credits-grid { grid-template-columns: repeat(3,1fr); max-width: 820px; margin: 0 auto; }

.plan-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 20px;
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.plan-card:hover { transform: translateY(-5px); border-color: var(--cyan-border); box-shadow: 0 20px 48px rgba(0,0,0,.38); }
.plan-card.featured {
  border-color: var(--cyan); transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 0 1px var(--cyan), 0 24px 56px rgba(0,200,245,.12);
  background: linear-gradient(160deg, rgba(0,200,245,.07) 0%, var(--bg3) 60%);
}
.plan-card.featured:hover { transform: translateY(-10px) scale(1.02); }

.plan-badge-top {
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  color: #07101d; font-size: .7rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .08em;
  text-align: center; padding: 7px 0;
}

.plan-body { padding: 24px 24px 0; flex: 1; }
.plan-period {
  display: inline-flex; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 12px;
  font-size: .72rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px;
}

.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 3px; }
.plan-price .cur { font-size: .92rem; font-weight: 700; color: var(--muted); align-self: flex-start; margin-top: 8px; }
.plan-price .amt { font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -.03em; }
.plan-price .cents { font-size: 1.5rem; font-weight: 900; color: var(--white); }
.plan-price .freq { font-size: .78rem; color: var(--muted); font-weight: 500; align-self: flex-end; margin-bottom: 3px; }
.plan-saving { font-size: .78rem; color: var(--green); font-weight: 700; margin-bottom: 3px; min-height: 19px; }
.plan-note { font-size: .76rem; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }

.plan-divider { height: 1px; background: var(--border); margin: 0 0 0; }
.plan-duration { padding: 12px 24px; font-size: .85rem; font-weight: 800; color: var(--cyan); }

.plan-features { padding: 4px 24px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 9px; font-size: .85rem; color: var(--text); line-height: 1.45; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 900; font-size: .88rem; flex-shrink: 0; margin-top: 1px; }
.plan-features .hi { color: var(--cyan); font-weight: 800; }
.plan-features .hi::before { content: '⚡'; color: var(--cyan); }

.plan-btn {
  display: block; margin: 0 24px 24px;
  font-family: var(--font); font-weight: 800; font-size: .97rem; color: #07101d;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border: none; border-radius: var(--r); padding: 14px;
  cursor: pointer; transition: transform var(--t), box-shadow var(--t), filter var(--t);
  box-shadow: 0 4px 16px rgba(0,200,245,.22);
  width: calc(100% - 48px);
}
.plan-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,200,245,.36); filter: brightness(1.07); }
.plan-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.plan-btn.loading::after { content: ' ⏳'; }

/* Créditos — explicação */
.credits-info {
  background: var(--cyan-glow); border: 1px solid var(--cyan-border);
  border-radius: var(--r-lg); padding: 20px 24px; margin-bottom: 32px; text-align: center;
}
.credits-info p { font-size: .9rem; color: var(--text); line-height: 1.65; }
.credits-info strong { color: var(--cyan); }

/* Selos */
.trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 22px; padding-top: 32px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 700; color: var(--muted); }

/* ════════════════════════════════════════════════════════════════
   PÓS-COMPRA
   ════════════════════════════════════════════════════════════════ */
.poscompra-wrap {
  max-width: 580px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.poscompra-wrap p { color: var(--muted); font-size: .93rem; }

/* ════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item input[type=checkbox] { display: none; }
.faq-label {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r);
  padding: 17px 22px; font-size: .93rem; font-weight: 700; color: var(--text);
  cursor: pointer; transition: border-color var(--t), color var(--t), border-radius var(--t);
}
.faq-label::after { content: '+'; font-size: 1.3rem; color: var(--cyan); flex-shrink: 0; line-height: 1; transition: transform var(--t); }
.faq-label:hover { border-color: var(--cyan-border); color: var(--white); }
.faq-item input:checked + .faq-label { border-color: var(--cyan-border); color: var(--cyan); border-bottom-color: transparent; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.faq-item input:checked + .faq-label::after { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item input:checked ~ .faq-body { max-height: 500px; }
.faq-body-inner {
  background: rgba(0,200,245,.04); border: 1px solid var(--cyan-border);
  border-top: none; border-radius: 0 0 var(--r) var(--r);
  padding: 17px 22px; margin-bottom: 0;
}
.faq-body-inner p { font-size: .88rem; color: var(--muted); line-height: 1.72; }
.faq-body-inner a { color: var(--cyan); font-weight: 700; }
.faq-body-inner a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════
   DISCLAIMER (compliance Google/Facebook)
   ════════════════════════════════════════════════════════════════ */
.disclaimer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 20px 28px; text-align: center;
  font-size: .72rem; color: var(--muted); line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 20px 28px; text-align: center;
  font-size: .74rem; color: var(--muted); line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════
   WHATSAPP — versão premium clean (estilo SaaS)
   ════════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 22px;
  z-index: 800;
}

.wa-float a {
  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(15, 23, 42, 0.85); /* fundo dark glass */
  backdrop-filter: blur(8px);

  border: 1px solid rgba(34, 197, 94, 0.25); /* verde bem sutil */
  border-radius: 50px;

  padding: 10px 16px 10px 12px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);

  transition: all 0.25s ease;
  text-decoration: none;
}

/* Hover elegante (sem glow verde) */
.wa-float a:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

/* Ícone */
.wa-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* Texto */
.wa-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wa-float-text strong {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
}

.wa-float-text span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ════════════════════════════════════════════════════════════════
   STICKY CTA (mobile)
   ════════════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 850;
  background: rgba(7,16,29,.97); border-top: 1px solid var(--cyan-border);
  backdrop-filter: blur(16px); padding: 11px 20px;
  transform: translateY(100%); transition: transform .3s ease;
}
.sticky-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  max-width: 500px; margin: 0 auto;
}
.sticky-text { display: flex; flex-direction: column; line-height: 1.25; }
.sticky-text strong { color: var(--cyan); font-size: .93rem; }
.sticky-text span { color: var(--muted); font-size: .73rem; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ════════════════════════════════════════════════════════════════
   OVERLAYS — Popup saída e Checkout
   ════════════════════════════════════════════════════════════════ */
.overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(4,10,20,.92); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; padding: 20px;
}
.overlay.open { display: flex; }
.overlay-box {
  background: linear-gradient(145deg, var(--bg3), var(--bg2));
  border: 1px solid var(--cyan-border); border-radius: 22px;
  padding: 38px 34px; max-width: 440px; width: 100%;
  position: relative; text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
  animation: popIn .3s cubic-bezier(.34,1.4,.64,1);
}
@keyframes popIn { from{opacity:0;transform:scale(.88) translateY(-16px)} to{opacity:1;transform:scale(1) translateY(0)} }
.overlay-close {
  position: absolute; top: 14px; right: 16px;
  font-size: 1.2rem; color: var(--muted); padding: 4px 8px;
  transition: color var(--t); cursor: pointer;
}
.overlay-close:hover { color: var(--white); }
.overlay-icon { font-size: 2.6rem; margin-bottom: 12px; }
.overlay-box h3 { font-size: 1.35rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.overlay-box > p { font-size: .9rem; color: var(--muted); margin-bottom: 18px; line-height: 1.65; }

.exit-list { text-align: left; margin-bottom: 24px; }
.exit-list li { font-size: .87rem; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border); line-height: 1.45; }
.exit-list li:last-child { border: none; }
.exit-list strong { color: var(--white); }
.overlay-btn { display: block; width: 100%; padding: 15px; font-size: 1rem; }

/* Checkout overlay */
.checkout-overlay { z-index: 10000; }
.checkout-box { max-width: 460px; }
.checkout-spinner {
  width: 46px; height: 46px; border: 3px solid rgba(0,200,245,.18);
  border-top-color: var(--cyan); border-radius: 50%;
  animation: spin .8s linear infinite; margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.checkout-plan { font-size: .92rem; font-weight: 800; color: var(--cyan); margin-bottom: 10px; }
.checkout-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.btn-cancel {
  background: none; border: 1px solid var(--border); border-radius: var(--r);
  color: var(--muted); padding: 11px 20px; font-family: var(--font); font-size: .86rem;
  cursor: pointer; transition: border-color var(--t), color var(--t);
}
.btn-cancel:hover { border-color: var(--cyan); color: var(--cyan); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVO
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 960px) {
  .args { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .depo-quotes { grid-template-columns: 1fr 1fr; }
  .tg-block { flex-direction: column; padding: 36px 28px; gap: 28px; text-align: center; }
  .tg-img { width: 180px; margin: 0 auto; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .plan-card.featured { transform: none; order: -1; }
  .plan-card.featured:hover { transform: translateY(-5px); }
  .plans-grid.credits-grid { grid-template-columns: 1fr; max-width: 380px; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 60px 20px; }
  .hero-title { font-size: 2rem; }
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .depo-quotes { grid-template-columns: 1fr; }
  .timer-block { min-width: 46px; padding: 6px 10px; }
  .t-num { font-size: 1.28rem; }
  .urgency-inner { gap: 16px; }
  .tg-block { padding: 28px 20px; }
  .overlay-box { padding: 30px 22px; }
  .portrait-wrap { max-width: 260px; }
}
@media (max-width: 480px) {
  .hero-badges { display: none; }
  .hero-btns .btn-ghost { display: none; }
  .stat-num { font-size: 1.6rem; }
  .wa-float-text { display: none; }
  .wa-float a { padding: 10px; border-radius: 50%; }
  .hero-stats { gap: 20px; }
}
