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

:root {
  --bg:      #080d1a;
  --bg2:     #0d1528;
  --bg3:     #111d38;
  --accent:  #3b82f6;
  --accent2: #06b6d4;
  --glow:    rgba(59,130,246,.32);
  --text:    #e8edf8;
  --muted:   #7b90b8;
  --border:  rgba(255,255,255,.07);
  --card:    rgba(255,255,255,.04);
  --fh:      'Syne', sans-serif;
  --fb:      'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

/* ── UTILS ── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--fh); line-height: 1.15; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.28);
  color: var(--accent2); font-family: var(--fh); font-size: .72rem;
  font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
}
.tag::before { content: '●'; font-size: .45rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fh); font-size: .93rem; font-weight: 700;
  padding: 13px 26px; border-radius: 10px;
  cursor: pointer; text-decoration: none; transition: all .22s; border: none;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 0 24px var(--glow); }
.btn-primary:hover { background: #5b9cf8; box-shadow: 0 0 44px var(--glow); transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent2); transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 0 20px rgba(37,211,102,.28); }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(8,13,26,.82);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.logo {
  font-family: var(--fh); font-size: 1.2rem; font-weight: 800;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.logo span { color: var(--accent2); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .88rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.blob-1 {
  width: 560px; height: 560px; top: -80px; left: -160px;
  background: radial-gradient(circle, rgba(59,130,246,.17) 0%, transparent 70%);
}
.blob-2 {
  width: 380px; height: 380px; bottom: 0; right: -100px;
  background: radial-gradient(circle, rgba(6,182,212,.13) 0%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; letter-spacing: -.025em; margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { color: var(--muted); font-size: 1.05rem; font-weight: 300; margin-bottom: 32px; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.trial-note { margin-top: 18px; color: var(--muted); font-size: .82rem; display: flex; align-items: center; gap: 6px; }
.trial-note::before { content: '🔓'; }

/* ── SECTION ── */
section { padding: 96px 0; position: relative; }
.sec-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; margin: 14px 0; letter-spacing: -.02em; }
.sec-head p { color: var(--muted); font-size: 1rem; }

/* ── FEATURES ── */
.feat-bg { background: var(--bg2); }
.feat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--border); border-radius: 18px; overflow: hidden;
}
.feat-row2 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--border); border-radius: 18px; overflow: hidden;
  margin-top: 2px;
}
.fc { background: var(--bg2); padding: 32px 26px; transition: background .22s; }
.fc:hover { background: var(--bg3); }

.fc-hl { background: linear-gradient(140deg, rgba(59,130,246,.08), var(--bg2)); border-left: 2px solid var(--accent); }
.fc-hl:hover { background: linear-gradient(140deg, rgba(59,130,246,.13), var(--bg3)); }
.fc-hl h3 { color: var(--accent2); }

.fc-wa { background: linear-gradient(140deg, rgba(37,211,102,.07), var(--bg2)); border-left: 2px solid #25d366; }
.fc-wa:hover { background: linear-gradient(140deg, rgba(37,211,102,.12), var(--bg3)); }
.fc-wa h3 { color: #25d366; }

.fc-yellow { background: linear-gradient(140deg, rgba(251,191,36,.07), var(--bg2)); border-left: 2px solid #fbbf24; }
.fc-yellow:hover { background: linear-gradient(140deg, rgba(251,191,36,.12), var(--bg3)); }
.fc-yellow h3 { color: #fbbf24; }

.fc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.fc h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.fc p { color: var(--muted); font-size: .87rem; line-height: 1.7; }
.fc ul { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; list-style: none; }
.fc ul li { color: var(--muted); font-size: .83rem; display: flex; align-items: center; gap: 7px; }
.fc ul li::before { content: '✓'; color: var(--accent2); font-weight: 700; flex-shrink: 0; }

/* ── INTEGRAÇÕES ── */
.int-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.int-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 20px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.int-card:hover { border-color: rgba(59,130,246,.35); transform: translateY(-3px); }
.int-icon { font-size: 2rem; margin-bottom: 10px; }
.int-name { font-family: var(--fh); font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.int-desc { color: var(--muted); font-size: .8rem; }

/* ── PLANOS ── */
.plans-bg { background: var(--bg2); }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1080px; margin: 0 auto; }
.plan {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 18px; padding: 30px 22px;
  position: relative; transition: transform .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.plan:hover { transform: translateY(-4px); }
.plan.hot { border-color: var(--accent); background: linear-gradient(150deg, rgba(59,130,246,.09), var(--bg3)); box-shadow: 0 0 36px rgba(59,130,246,.14); }
.plan.full { border-color: var(--accent2); background: linear-gradient(150deg, rgba(6,182,212,.09), var(--bg3)); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--fh); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap; color: #fff;
}
.b-blue { background: linear-gradient(90deg, var(--accent), #60a5fa); }
.b-cyan  { background: linear-gradient(90deg, var(--accent2), #22d3ee); }
.plan-name  { font-family: var(--fh); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: 10px; }
.plan-price { font-family: var(--fh); font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.plan-price sup { font-size: 1rem; vertical-align: super; }
.plan-price sub { font-size: .85rem; color: var(--muted); font-weight: 400; }
.plan-desc  { color: var(--muted); font-size: .82rem; margin-bottom: 20px; line-height: 1.6; }
.plan-items { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; margin-bottom: 22px; }
.plan-items li { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--muted); }
.plan-items li::before { content: '✓'; color: var(--accent2); font-weight: 700; flex-shrink: 0; }
.plan-items li.no { opacity: .3; }
.plan-items li.no::before { content: '✕'; color: var(--muted); }

/* ── CTA ── */
.cta-sec {
  background: linear-gradient(140deg, rgba(59,130,246,.11), rgba(6,182,212,.07));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-inner { text-align: center; max-width: 580px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; margin: 14px 0; }
.cta-inner p  { color: var(--muted); font-size: 1rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-fine { color: var(--muted); font-size: .8rem; margin-top: 14px; }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 36px; }
.footer-brand p { color: var(--muted); font-size: .85rem; max-width: 240px; margin-top: 10px; }
.footer-contact h4 { font-family: var(--fh); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.wa-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.25);
  color: #25d366; text-decoration: none; padding: 10px 18px;
  border-radius: 10px; font-weight: 600; font-size: .88rem; transition: all .2s;
}
.wa-link:hover { background: rgba(37,211,102,.18); }
.footer-bottom { padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: var(--muted); font-size: .8rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp .6s .1s both; }
.hero h1      { animation: fadeUp .6s .2s both; }
.hero-sub     { animation: fadeUp .6s .3s both; }
.hero-actions { animation: fadeUp .6s .4s both; }
.trial-note   { animation: fadeUp .6s .5s both; }
.mockup       { animation: fadeUp .8s .3s both; }

/* ── NAV BUTTONS SMALL ── */
.nav-btn-sm { padding: 9px 18px !important; font-size: .83rem !important; }

/* ── HAMBURGER ── */
.nav-ham {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: 8px;
}
.nav-ham span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s;
}
.nav-ham.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.active span:nth-child(2) { opacity: 0; }
.nav-ham.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO IMAGE ── */
.hero-img {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}

/* ── VIDEO SECTION ── */
.video-section { padding: 0 0 80px; background: var(--bg); }
.video-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 60px rgba(59,130,246,.08);
  max-width: 480px; margin: 0 auto;
}
.video-glow-top {
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 1;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
}
.video-player {
  width: 100%; display: block; background: #000;
  max-height: 360px; object-fit: cover;
}

/* ── FEATURE HIGHLIGHT ROWS ── */
.feat-hl-wrap {
  margin-top: 2px; background: var(--border);
  border-radius: 18px; overflow: hidden;
}
.feat-hl-inner {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  padding: 28px 32px;
}
.feat-hl-purple { background: linear-gradient(100deg, rgba(139,92,246,.1), var(--bg2)); border-left: 2px solid #a78bfa; }
.feat-hl-yellow { background: linear-gradient(100deg, rgba(251,191,36,.07), rgba(245,158,11,.05), var(--bg2)); border-left: 2px solid #f59e0b; }
.feat-hl-blue   { background: linear-gradient(100deg, rgba(59,130,246,.08), rgba(6,182,212,.05), var(--bg2)); border-left: 2px solid var(--accent); }
.feat-hl-emoji  { font-size: 2.4rem; flex-shrink: 0; }
.feat-hl-content { flex: 1; min-width: 200px; }
.feat-hl-title  { font-family: var(--fh); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feat-hl-desc   { color: var(--muted); font-size: .87rem; line-height: 1.7; }
.feat-hl-list   { display: flex; flex-direction: column; gap: 7px; flex-shrink: 0; min-width: 200px; }
.feat-hl-item   { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .84rem; }

/* ── BACKUP ── */
.backup-header { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.backup-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}
.backup-card {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 18px;
}
.backup-card-accent {
  background: rgba(59,130,246,.08); border-color: rgba(59,130,246,.25);
}
.backup-card-icon  { font-size: 1.3rem; margin-bottom: 7px; }
.backup-card-title { font-family: var(--fh); font-weight: 700; font-size: .88rem; margin-bottom: 4px; }
.backup-card-desc  { color: var(--muted); font-size: .8rem; line-height: 1.6; }
.backup-alert {
  margin-top: 14px; padding: 11px 14px;
  background: rgba(251,191,36,.07); border: 1px solid rgba(251,191,36,.2);
  border-radius: 10px; display: flex; align-items: flex-start; gap: 10px;
}
.backup-alert p { color: var(--muted); font-size: .81rem; line-height: 1.5; }

/* ── INDICAÇÃO ── */
.indicacao-sec { background: var(--bg); }
.indicacao-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  max-width: 900px; margin: 0 auto 32px;
}
.indicacao-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 22px; text-align: center;
  transition: transform .2s;
}
.indicacao-card:hover { transform: translateY(-4px); }
.indicacao-icon { font-size: 2rem; margin-bottom: 12px; }
.indicacao-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.indicacao-card p  { color: var(--muted); font-size: .87rem; line-height: 1.7; }
.indicacao-highlight {
  background: linear-gradient(100deg, rgba(52,211,153,.08), rgba(59,130,246,.08), var(--bg2));
  border: 1px solid rgba(52,211,153,.25);
  border-radius: 20px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.indicacao-highlight-title { font-family: var(--fh); font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.indicacao-highlight-desc  { color: var(--muted); font-size: .9rem; max-width: 460px; line-height: 1.7; }
.indicacao-highlight-items { display: flex; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.indicacao-highlight-item  { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .84rem; }
.ind-check { color: #34d399; font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-ham   { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(8,13,26,.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0; z-index: 99;
  }
  .nav-links.open li a {
    display: block; padding: 12px 24px; font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  /* Hero */
  .hero-grid  { grid-template-columns: 1fr; text-align: center; }
  .hero-sub   { max-width: 100%; }
  .hero-actions  { justify-content: center; }
  .trial-note    { justify-content: center; }
  /* Features */
  .feat-grid, .feat-row2 { grid-template-columns: 1fr 1fr; }
  .feat-hl-list { min-width: unset; width: 100%; }
  /* Integrations */
  .int-grid  { grid-template-columns: 1fr 1fr; }
  /* Plans */
  .plans-grid { grid-template-columns: 1fr 1fr; max-width: 680px; }
  /* Indicação */
  .indicacao-grid { grid-template-columns: 1fr 1fr; }
  .indicacao-highlight { padding: 24px 28px; }
  /* Backup */
  .backup-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  /* Nav buttons */
  .nav-btn-sm.btn-wa { display: none; }
  /* Sections */
  section { padding: 56px 0; }
  .video-section { padding: 0 0 56px; }
  /* Hero */
  .hero { padding: 100px 0 56px; }
  /* Features */
  .feat-grid, .feat-row2 { grid-template-columns: 1fr; }
  .feat-hl-inner { flex-direction: column; gap: 20px; padding: 22px 20px; }
  .feat-hl-emoji { font-size: 2rem; }
  /* Backup */
  .backup-grid  { grid-template-columns: 1fr; }
  .backup-header { flex-direction: column; }
  /* Integrations */
  .int-grid { grid-template-columns: 1fr; }
  /* Plans */
  .plans-grid { grid-template-columns: 1fr; max-width: 380px; }
  /* Indicação */
  .indicacao-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .indicacao-highlight { flex-direction: column; padding: 22px 20px; }
  .indicacao-highlight-items { gap: 10px; }
  .indicacao-highlight .btn { width: 100%; justify-content: center; }
  /* Exit modal */
  .exit-benefits { grid-template-columns: 1fr; }
  #exit-modal { padding: 24px 20px; }
  /* Footer */
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  /* Video */
  .video-wrap { max-width: 100%; }
}

@media (max-width: 400px) {
  .nav-btn-sm { display: none; }
  .nav-ham { display: flex; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}

/* ── WHATSAPP POPUP ── */
#wa-popup {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
#wa-bubble {
  background: #fff; border-radius: 16px 16px 0 16px;
  padding: 14px 16px; max-width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  position: relative; cursor: pointer;
}
.wa-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.wa-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.wa-name {
  font-weight: 700; font-size: .88rem; color: #111;
  font-family: 'DM Sans', sans-serif;
}
.wa-status {
  font-size: .72rem; color: #25d366;
  display: flex; align-items: center; gap: 4px;
}
.wa-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #25d366; display: inline-block;
}
.wa-close-btn {
  margin-left: auto; color: #aaa; font-size: 1rem;
  line-height: 1; cursor: pointer; padding: 2px 4px;
}
.wa-message {
  background: #dcf8c6; border-radius: 10px 10px 10px 0;
  padding: 10px 12px; margin-bottom: 6px;
  font-size: .84rem; color: #111; line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}
.wa-timestamp {
  text-align: right; font-size: .68rem; color: #999;
}
.wa-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px; background: #25d366; color: #fff;
  text-decoration: none; border-radius: 10px; padding: 10px;
  font-weight: 700; font-size: .88rem;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}
.wa-cta-btn:hover { background: #1ebe5d; }

/* FAB */
#wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 9998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
}
#wa-fab:hover { transform: scale(1.1); }
.wa-fab-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #ff3b30; border: 2px solid var(--bg);
  font-size: .6rem; color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
}

/* ── EXIT INTENT MODAL ── */
#exit-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
#exit-modal {
  background: #0d1528;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  max-width: 520px; width: 100%;
  padding: 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(59,130,246,.15);
  transform: scale(.94) translateY(16px);
  transition: transform .35s;
}
.exit-close-btn {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.07); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  color: #7b90b8; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.exit-close-btn:hover { background: rgba(255,255,255,.14); }
.exit-emoji { font-size: 2.2rem; margin-bottom: 10px; }
.exit-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.3);
  color: #06b6d4; font-size: .72rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.exit-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800; color: #e8edf8;
  line-height: 1.2; margin-bottom: 10px;
}
.exit-title span {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.exit-subtitle {
  color: #7b90b8; font-size: .88rem; line-height: 1.6;
  margin-bottom: 18px; max-width: 380px;
  margin-left: auto; margin-right: auto;
}
.exit-benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 18px; text-align: left;
}
.exit-benefit-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; padding: 9px 12px;
  display: flex; align-items: center; gap: 8px;
}
.exit-benefit-check { color: #06b6d4; font-weight: 700; }
.exit-benefit-text  { color: #7b90b8; font-size: .8rem; }
.exit-cta-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #3b82f6; color: #fff; text-decoration: none;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem;
  padding: 12px 24px; border-radius: 12px; margin-bottom: 8px;
  box-shadow: 0 0 28px rgba(59,130,246,.35);
  transition: background .2s, transform .2s;
}
.exit-cta-primary:hover { background: #5b9cf8; transform: translateY(-2px); }
.exit-cta-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.25);
  color: #25d366; text-decoration: none;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: .88rem;
  padding: 10px 24px; border-radius: 12px; margin-bottom: 12px;
  transition: background .2s;
}
.exit-cta-wa:hover { background: rgba(37,211,102,.18); }
.exit-close-link {
  background: none; border: none; cursor: pointer;
  color: #7b90b8; font-size: .8rem; text-decoration: underline;
  font-family: 'DM Sans', sans-serif;
}

/* ── PARA QUEM É ── */
.forwho-sec { background: var(--bg2); }
.forwho-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.forwho-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 0;
  transition: border-color .2s, transform .2s;
}
.forwho-card:hover { border-color: rgba(52,211,153,.35); transform: translateY(-5px); }
.forwho-card-featured {
  border-color: rgba(59,130,246,.3);
  background: linear-gradient(160deg, rgba(59,130,246,.08), var(--bg3));
  box-shadow: 0 0 32px rgba(59,130,246,.1);
}
.forwho-card-featured:hover { border-color: var(--accent); }
.forwho-icon { font-size: 3rem; margin-bottom: 16px; }
.forwho-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.forwho-card p  { color: var(--muted); font-size: .87rem; line-height: 1.7; margin-bottom: 18px; }
.forwho-badges  { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; }
.forwho-badge {
  font-size: .72rem; font-weight: 700; padding: 4px 12px;
  border-radius: 100px; font-family: var(--fh);
}
.forwho-badge-green { background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.3); color: #34d399; }
.forwho-badge-blue  { background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.3); color: var(--accent); }
.forwho-dl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 11px 16px; border-radius: 10px; margin-top: auto;
  background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.25);
  color: #34d399; text-decoration: none;
  font-family: var(--fh); font-weight: 700; font-size: .82rem;
  transition: background .2s, transform .2s;
}
.forwho-dl-btn:hover { background: rgba(52,211,153,.2); transform: translateY(-2px); }
.forwho-dl-btn-blue {
  background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.3); color: var(--accent);
}
.forwho-dl-btn-blue:hover { background: rgba(59,130,246,.2); }

/* ── GUARANTEE SEAL ── */
.guarantee-seal {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(52,211,153,.07); border: 1px solid rgba(52,211,153,.2);
  border-radius: 14px; padding: 14px 22px;
  margin-top: 24px; text-align: left; max-width: 480px;
}
.guarantee-icon { font-size: 1.6rem; flex-shrink: 0; }
.guarantee-text { display: flex; flex-direction: column; gap: 3px; }
.guarantee-text strong { color: #34d399; font-size: .92rem; }
.guarantee-text span   { color: var(--muted); font-size: .82rem; line-height: 1.5; }

/* ── FAQ ── */
.faq-sec { background: var(--bg); }
.faq-grid { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  transition: border-color .2s;
  margin-bottom: 6px;
}
.faq-item:hover { border-color: rgba(59,130,246,.3); }
.faq-item.open  { border-color: var(--accent); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; font-weight: 600; font-size: .95rem;
  user-select: none;
}
.faq-arrow {
  color: var(--muted); font-size: 1.1rem; flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  color: var(--muted); font-size: .9rem; line-height: 1.7;
  transition: max-height .35s ease, padding .3s;
  padding: 0 20px;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 16px;
}

/* ── RESPONSIVE extras ── */
@media (max-width: 1024px) {
  .forwho-grid { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
}
@media (max-width: 680px) {
  .forwho-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .guarantee-seal { flex-direction: column; text-align: center; }
  .faq-q { font-size: .88rem; padding: 14px 16px; }
  .faq-a { font-size: .85rem; }
  .faq-item.open .faq-a { padding: 0 16px 14px; }
}

/* ══════════════════════════════════════
   DOWNLOAD PAGE
   ══════════════════════════════════════ */

.dl-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.dl-blob-1 {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: 500px; height: 500px; top: -80px; left: -100px;
  background: radial-gradient(circle, rgba(59,130,246,.18) 0%, transparent 70%);
  filter: blur(80px);
}
.dl-blob-2 {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: 380px; height: 380px; bottom: 0; right: -80px;
  background: radial-gradient(circle, rgba(6,182,212,.13) 0%, transparent 70%);
  filter: blur(80px);
}
.dl-hero-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 700px; margin: 0 auto;
}
.dl-hero-inner .tag { margin-bottom: 20px; display: inline-flex; }
.dl-hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  letter-spacing: -.025em; margin-bottom: 16px; line-height: 1.15;
}
.dl-hero-inner h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.dl-hero-inner > p {
  color: var(--muted); font-size: 1.05rem; font-weight: 300;
  margin-bottom: 56px; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ── DOWNLOAD CARDS ── */
.dl-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 780px; margin: 0 auto;
}
.dl-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px 32px;
  text-align: center; position: relative; overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.dl-card:hover { transform: translateY(-6px); }
.dl-card-windows {
  border-color: rgba(59,130,246,.25);
  background: linear-gradient(150deg, rgba(59,130,246,.07), var(--bg2));
}
.dl-card-windows:hover { border-color: var(--accent); }
.dl-card-android {
  border-color: rgba(52,211,153,.25);
  background: linear-gradient(150deg, rgba(52,211,153,.07), var(--bg2));
}
.dl-card-android:hover { border-color: #34d399; }
.dl-card::before {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  top: -60px; left: 50%; transform: translateX(-50%);
  filter: blur(60px); pointer-events: none; opacity: .4;
}
.dl-card-windows::before { background: var(--accent); }
.dl-card-android::before { background: #34d399; }
.dl-platform-icon {
  font-size: 4rem; margin-bottom: 20px;
  display: block; position: relative; z-index: 1;
}
.dl-card h2 {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.dl-card-sub {
  color: var(--muted); font-size: .88rem; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.dl-version {
  display: inline-block;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 12px;
  font-size: .72rem; color: var(--muted); margin-bottom: 28px;
  position: relative; z-index: 1;
}
.dl-specs {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px; text-align: left;
  position: relative; z-index: 1;
}
.dl-spec {
  display: flex; align-items: center; gap: 8px;
  font-size: .83rem; color: var(--muted);
}
.dl-spec-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.dot-blue  { background: var(--accent); }
.dot-green { background: #34d399; }
.dl-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 20px; border-radius: 12px;
  font-family: var(--fh); font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: all .22s;
  position: relative; z-index: 1; border: none; cursor: pointer;
}
.dl-btn-windows {
  background: var(--accent); color: #fff;
  box-shadow: 0 0 28px rgba(59,130,246,.35);
}
.dl-btn-windows:hover { background: #5b9cf8; box-shadow: 0 0 44px rgba(59,130,246,.4); transform: translateY(-2px); }
.dl-btn-android {
  background: #34d399; color: #064e3b;
  box-shadow: 0 0 28px rgba(52,211,153,.3);
}
.dl-btn-android:hover { background: #6ee7b7; box-shadow: 0 0 44px rgba(52,211,153,.4); transform: translateY(-2px); }
.dl-size {
  margin-top: 12px; color: var(--muted); font-size: .76rem;
  position: relative; z-index: 1;
}

/* ── INSTRUÇÕES ── */
.dl-info {
  max-width: 780px; margin: 56px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.dl-info-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
}
.dl-info-card h4 {
  font-family: var(--fh); font-size: .9rem; font-weight: 700;
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.dl-info-card ol {
  list-style: none; display: flex; flex-direction: column;
  gap: 8px; counter-reset: steps;
}
.dl-info-card ol li {
  counter-increment: steps; display: flex; align-items: flex-start;
  gap: 10px; color: var(--muted); font-size: .85rem; line-height: 1.5;
}
.dl-info-card ol li::before {
  content: counter(steps); flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: .72rem; font-weight: 700;
  background: rgba(59,130,246,.15); color: var(--accent);
}

/* ── SUPORTE ── */
.dl-support {
  text-align: center; margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.dl-support p { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }

/* ── DOWNLOAD ANIMATIONS ── */
.dl-hero-inner > * { animation: fadeUp .6s both; }
.dl-hero-inner .tag { animation-delay: .1s; }
.dl-hero-inner h1   { animation-delay: .2s; }
.dl-hero-inner > p  { animation-delay: .3s; }
.dl-cards           { animation: fadeUp .7s .35s both; }

/* ── DOWNLOAD RESPONSIVE ── */
@media (max-width: 680px) {
  .dl-cards { grid-template-columns: 1fr; }
  .dl-info  { grid-template-columns: 1fr; }
  .dl-card  { padding: 28px 22px; }
}