/* ── Tokens ──────────────────────────────────────── */
:root {
  --green:    #16A34A;
  --green-d:  #14532D;
  --green-l:  #22C55E;
  --black:    #0A0A0A;
  --gray-d:   #1C1C1C;
  --gray-m:   #374151;
  --gray-l:   #F5F5F5;
  --white:    #FFFFFF;
  --gold:     #CA8A04;
  --red:      #DC2626;
  --border:   rgba(255,255,255,.08);

  --font: 'Inter', system-ui, sans-serif;
  --r: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,.1);
  --shadow-m: 0 8px 40px rgba(0,0,0,.18);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { font-family: var(--font); background: var(--white); color: var(--black); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }
ul { list-style: none; }

/* ── Utilities ───────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.surface-dark { background: var(--black); }
.surface-gray { background: var(--gray-l); }
.surface-green-dark { background: var(--green-d); }
.br-d { display: none; }

/* ── Scroll progress ─────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--green);
  z-index: 9999;
  transition: width .1s;
}

/* ── FRAMEUP bar ─────────────────────────────────── */
#fb {
  background: #0f0f0f;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 8px 24px;
  font-size: .72rem; color: rgba(255,255,255,.65);
  text-align: center;
}
#fb strong { color: #fff; }
#fb a { color: #60a5fa; text-decoration: underline; }

/* ── Sticky header ───────────────────────────────── */
.sticky-header {
  position: sticky; top: 0; z-index: 500;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}

/* ── Urgency bar ─────────────────────────────────── */
#urgency-bar {
  background: #7F1D1D;
  padding: 0 24px;
}
.ub-inner {
  max-width: 1200px; margin: 0 auto;
  height: 52px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}
.ub-text { font-size: .82rem; color: rgba(255,255,255,.9); font-weight: 500; white-space: nowrap; }

#countdown {
  display: flex; align-items: center; gap: 4px;
}
.cd-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,.3);
  padding: 3px 8px; border-radius: 4px;
  min-width: 40px;
}
.cd-block span { font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1; }
.cd-block small { font-size: .58rem; color: rgba(255,255,255,.6); letter-spacing: .06em; margin-top: 1px; }
.cd-sep { color: rgba(255,255,255,.6); font-weight: 700; font-size: 1rem; padding-bottom: 10px; }

.ub-btn {
  display: inline-flex; align-items: center;
  background: var(--green); color: var(--white);
  font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  padding: 7px 16px; border-radius: 6px;
  white-space: nowrap;
  transition: background .2s;
}
.ub-btn:hover { background: var(--green-l); }

/* ── Navbar ──────────────────────────────────────── */
#nav {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  height: 60px;
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.logo-icon { display: flex; }
.logo-text { font-size: 1.25rem; font-weight: 900; color: var(--white); letter-spacing: -.02em; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1;
}
.nav-links li a {
  display: block;
  padding: 8px 14px;
  font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.7);
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-links li a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-cta { flex-shrink: 0; }

/* ── Hamburger ───────────────────────────────────── */
.ham {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; margin-left: auto;
}
.ham span { display: block; width: 22px; height: 1.5px; background: #fff; transition: transform .25s, opacity .2s; }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile nav ──────────────────────────────────── */
.mob-nav {
  display: none;
  flex-direction: column;
  background: #111;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 12px 24px 20px;
  gap: 4px;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  padding: 12px 0;
  font-size: .9rem; color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mob-nav a:last-child { border-bottom: none; }
.mob-nav-cta { margin-top: 12px; padding: 14px !important; text-align: center; border-radius: 8px; border-bottom: none !important; }

/* ── Buttons ─────────────────────────────────────── */
.btn-green {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff;
  font-size: .85rem; font-weight: 700; letter-spacing: .05em;
  padding: 13px 28px; border-radius: 8px;
  transition: background .2s, transform .15s;
}
.btn-green:hover { background: #15803D; }
.btn-lg { padding: 16px 36px; font-size: .95rem; }
.btn-xl { padding: 18px 40px; font-size: 1rem; letter-spacing: .07em; border-radius: 10px; }
.btn-outline-green {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--green);
  font-size: .88rem; font-weight: 600;
  padding: 14px 32px; border-radius: 8px;
  border: 2px solid var(--green);
  transition: background .2s, color .2s;
}
.btn-outline-green:hover { background: var(--green); color: #fff; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,.6); } 70% { box-shadow: 0 0 0 16px rgba(22,163,74,0); } }
.btn-pulse { animation: pulse 2s infinite; }

/* ── Section shared ──────────────────────────────── */
section { padding: 80px 0; }
.section-head { margin-bottom: 48px; }
.section-title { font-size: 2.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.eyebrow-green { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.eyebrow-gold { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }

/* ── Hero ────────────────────────────────────────── */
/*
  IMAGEM DE FUNDO DA HERO:
  Adicione o arquivo 'hero-bg.jpg' (ou .webp) na mesma pasta
  e descomente a linha background-image abaixo.
  Recomendado: 1920×1080px, formato escuro ou com sobreposição.
*/
#hero {
  background:
    linear-gradient(135deg, rgba(4,13,6,.92) 0%, rgba(10,31,13,.88) 50%, rgba(5,16,8,.94) 100%),
    url('hero-bg.jpg') center / cover no-repeat;
  padding: 80px 0;
  min-height: calc(100vh - 120px);
  display: flex; align-items: center;
  position: relative;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22,163,74,.12);
  border: 1px solid rgba(22,163,74,.25);
  color: var(--green-l); font-size: .8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 20px;
}
h1 {
  font-size: 3rem; font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
  letter-spacing: -.02em;
}
.h1-green { color: var(--green-l); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 28px; }
.promises { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.promises li { font-size: .95rem; color: rgba(255,255,255,.85); display: flex; align-items: flex-start; gap: 8px; }
.cta-micro { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 14px; text-align: center; }

/* ── Laptop mockup ───────────────────────────────── */
.hero-visual { position: relative; }
.laptop { width: 100%; max-width: 420px; margin: 0 auto; filter: drop-shadow(0 24px 48px rgba(22,163,74,.2)); }
.laptop-screen {
  background: #1E293B;
  border-radius: 10px 10px 0 0;
  border: 2.5px solid #334155;
  overflow: hidden;
}
.ls-topbar {
  background: #0F172A;
  padding: 8px 12px;
  display: flex; align-items: center; gap: 8px;
}
.ls-dots { display: flex; gap: 5px; }
.ls-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.ls-url {
  flex: 1; text-align: center;
  font-size: 10px; color: #64748B;
  background: #1E293B;
  padding: 3px 10px; border-radius: 4px;
}
.ls-header {
  background: var(--green);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.ls-course-title { color: #fff; font-size: 12px; font-weight: 700; }
.ls-badge-pill {
  background: rgba(255,255,255,.2); color: #fff;
  font-size: 9px; font-weight: 600; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 20px;
}
.ls-body { padding: 10px; display: flex; flex-direction: column; gap: 5px; }
.ls-lesson {
  padding: 9px 12px; border-radius: 6px;
  font-size: 11px; color: #64748B;
  background: #0F172A;
}
.ls-done { color: #4ADE80; background: rgba(74,222,128,.07); }
.ls-active { color: #fff; background: var(--green); font-weight: 600; }
.ls-lock { color: #334155; background: #0A1628; }
.ls-footer { padding: 10px 14px; background: #0F172A; }
.ls-prog-label { font-size: 10px; color: #475569; margin-bottom: 5px; }
.ls-prog-bar { background: #1E293B; height: 5px; border-radius: 3px; overflow: hidden; }
.ls-prog-fill { height: 100%; background: var(--green); border-radius: 3px; transition: width 1s ease; }
.ls-prog-pct { font-size: 10px; color: var(--green); text-align: right; margin-top: 4px; }
.laptop-chin { height: 10px; background: #293548; border-left: 2.5px solid #334155; border-right: 2.5px solid #334155; }
.laptop-base {
  height: 20px;
  background: linear-gradient(180deg, #374151 0%, #1F2937 100%);
  border-radius: 0 0 12px 12px;
  border: 2px solid #334155; border-top: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.laptop-kb { width: 55%; height: 2.5px; background: rgba(255,255,255,.06); border-radius: 2px; }
.laptop-tp { width: 22%; height: 2.5px; background: rgba(255,255,255,.1); border-radius: 2px; }

/* Floating badges */
.badge {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: .78rem; font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  white-space: nowrap;
  animation: floatBadge 3s ease-in-out infinite;
}
.badge-1 { top: -16px; right: -12px; animation-delay: 0s; }
.badge-2 { bottom: 30px; left: -12px; animation-delay: 1.5s; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── Numbers ─────────────────────────────────────── */
#numeros { padding: 60px 0; }
.numeros-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.num-card {
  text-align: center; padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.num-card:last-child { border-right: none; }
.num-val { font-size: 2.4rem; font-weight: 900; color: var(--green-l); line-height: 1; margin-bottom: 8px; }
.num-lbl { font-size: .82rem; color: rgba(255,255,255,.5); }

/* ── Dores ───────────────────────────────────────── */
#sobre { padding: 80px 0; }
#sobre .section-title { margin-bottom: 40px; }
.dores-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 36px;
}
.dor-item {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: .9rem; line-height: 1.5;
  color: #374151;
  box-shadow: var(--shadow);
}
.dores-bold {
  font-size: 1rem; line-height: 1.6;
  text-align: center; margin-bottom: 28px;
  color: #374151;
}

/* ── Módulos ─────────────────────────────────────── */
#modulos { background: var(--white); padding: 80px 0; }
.modulos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mod-card {
  background: var(--gray-l);
  border: 1px solid #E5E7EB;
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.mod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.mod-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 2.2rem; font-weight: 900;
  color: rgba(22,163,74,.15);
  line-height: 1;
}
.mod-icon { font-size: 1.8rem; margin-bottom: 10px; }
.mod-title { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--black); }
.mod-topics { display: flex; flex-direction: column; gap: 6px; }
.mod-topics li { font-size: .82rem; color: #6B7280; padding-left: 12px; position: relative; line-height: 1.4; }
.mod-topics li::before { content: '—'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ── Bônus ───────────────────────────────────────── */
#bonus { padding: 80px 0; }
#bonus .section-title { margin-bottom: 40px; }
.bonus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 32px;
}
.bonus-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 28px;
  transition: transform .2s;
}
.bonus-card:hover { transform: translateY(-3px); }
.bonus-tag {
  display: inline-block;
  background: var(--gold); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 14px;
}
.bonus-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.bonus-desc { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 16px; }
.bonus-valor { font-size: .82rem; color: rgba(255,255,255,.5); }
.bonus-valor strong { color: var(--gold); font-weight: 700; }
.bonus-total { text-align: center; font-size: 1rem; color: rgba(255,255,255,.75); }
.bonus-total strong { color: var(--gold); }

/* ── Instrutor ───────────────────────────────────── */
#instrutor { padding: 80px 0; background: #FAFAFA; }
.inst-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 60px; align-items: start;
}
.inst-esq { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.inst-avatar {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-d), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; font-weight: 900; color: #fff;
  letter-spacing: .05em;
  border: 4px solid rgba(22,163,74,.3);
  box-shadow: 0 0 60px rgba(22,163,74,.2);
}
.inst-tags { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.inst-tag {
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.2);
  color: var(--green-d); font-size: .78rem; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; text-align: center;
}
.inst-nome { font-size: 2rem; font-weight: 800; margin: 8px 0 4px; color: var(--black); }
.inst-cargo { font-size: .85rem; color: #6B7280; margin-bottom: 20px; }
.inst-bio { font-size: .92rem; color: #4B5563; line-height: 1.7; margin-bottom: 14px; }
.inst-destaque { font-style: italic; font-size: 1rem; color: var(--green-d); font-weight: 500; border-left: 3px solid var(--green); padding-left: 16px; }
.inst-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.inst-cred {
  background: var(--gray-l); border: 1px solid #E5E7EB;
  font-size: .78rem; font-weight: 600; color: #374151;
  padding: 7px 14px; border-radius: 6px;
}

/* ── Depoimentos ─────────────────────────────────── */
#depoimentos { padding: 80px 0; }
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dep-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.dep-stars { font-size: .95rem; margin-bottom: 12px; letter-spacing: 1px; }
.dep-text {
  font-size: .88rem; color: #374151; line-height: 1.7;
  flex: 1; margin-bottom: 20px; font-style: italic;
}
.dep-autor { display: flex; align-items: center; gap: 12px; }
.dep-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: #fff;
}
.dep-nome { font-size: .83rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.dep-info { font-size: .74rem; color: #9CA3AF; }

/* ── Comparativo ─────────────────────────────────── */
#comparativo { padding: 80px 0; background: #FAFAFA; }
#comparativo .section-title { margin-bottom: 36px; }
.table-wrap { overflow-x: auto; border-radius: var(--r); box-shadow: var(--shadow); }
.comp-table { width: 100%; border-collapse: collapse; background: var(--white); }
.comp-table th {
  padding: 16px 20px; font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-align: left;
  background: var(--black); color: #fff;
}
.comp-table .col-sem { background: rgba(220,38,38,.15); color: #FCA5A5; }
.comp-table .col-com { background: rgba(22,163,74,.15); color: #4ADE80; }
.comp-table td {
  padding: 14px 20px; font-size: .88rem;
  border-bottom: 1px solid #F3F4F6; color: #374151;
}
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover td { background: #F9FAFB; }
.comp-table tbody .col-sem { color: var(--red); font-size: .85rem; }
.comp-table tbody .col-com { color: var(--green-d); font-weight: 600; font-size: .85rem; }

/* ── Oferta ──────────────────────────────────────── */
#oferta { padding: 80px 0; }
.oferta-wrap { max-width: 680px; margin: 0 auto; }
.preco-card {
  background: #111;
  border: 1px solid rgba(22,163,74,.3);
  border-radius: 20px;
  padding: 44px 48px;
  text-align: center;
  box-shadow: 0 0 60px rgba(22,163,74,.1);
}
.preco-de { font-size: .95rem; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.preco-por { font-size: 4rem; font-weight: 900; color: var(--green-l); line-height: 1; margin-bottom: 8px; }
.preco-parc { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 32px; }
.preco-incluso {
  text-align: left;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 24px 0; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.preco-incluso li { font-size: .88rem; color: rgba(255,255,255,.8); display: flex; align-items: flex-start; gap: 8px; flex-wrap: wrap; }
.bonus-pill {
  background: rgba(202,138,4,.15); color: var(--gold);
  font-size: .72rem; font-weight: 600;
  padding: 2px 8px; border-radius: 4px; white-space: nowrap;
}
.preco-valor-total {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 28px; font-size: .88rem;
  color: rgba(255,255,255,.5);
}
.preco-voce { font-size: 1.1rem; color: var(--white); font-weight: 600; }
.preco-voce strong { color: var(--green-l); }
.preco-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.preco-seg {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  font-size: .74rem; color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.preco-cakto {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: .72rem; color: rgba(255,255,255,.25);
  margin-top: 4px;
}
.preco-cakto strong { color: rgba(255,255,255,.4); font-weight: 600; }

/* ── Garantia ────────────────────────────────────── */
#garantia { padding: 70px 0; background: #F0FDF4; }
.garantia-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.garantia-shield { margin-bottom: 20px; }
.garantia-titulo { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; color: var(--green-d); }
.garantia-texto { font-size: .95rem; color: #374151; line-height: 1.7; }

/* ── FAQ ─────────────────────────────────────────── */
#faq { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid #E5E7EB; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 0;
  font-size: .95rem; font-weight: 600; color: var(--black);
  text-align: left; gap: 16px;
}
.faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--green); }
.faq-q.open svg { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 0 20px;
  font-size: .88rem; color: #6B7280; line-height: 1.7;
}
.faq-a.open { display: block; }

/* ── CTA final ───────────────────────────────────── */
#cta-final { padding: 100px 0; }
.cta-final-wrap { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-final-h2 {
  font-size: 2.4rem; font-weight: 900; line-height: 1.2;
  color: var(--white); margin-bottom: 16px;
}
.cta-final-sub { font-size: 1rem; color: rgba(255,255,255,.65); margin-bottom: 44px; line-height: 1.6; }
.opcoes {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.opcao { flex: 1; min-width: 180px; max-width: 240px; padding: 20px; border-radius: var(--r); text-align: center; }
.opcao-nao { background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.2); }
.opcao-sim { background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.2); }
.opcao-icon { font-size: 2rem; margin-bottom: 8px; }
.opcao p { font-size: .83rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.opcao-ou { font-size: 1.4rem; font-weight: 900; color: rgba(255,255,255,.3); }
.cta-final-micro { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 16px; }

/* ── Footer ──────────────────────────────────────── */
footer { background: #050505; padding: 48px 0 32px; }
.foot-inner { text-align: center; }
.foot-logo { font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 20px; }
.foot-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.foot-links a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color .15s; }
.foot-links a:hover { color: rgba(255,255,255,.7); }
.foot-cnpj { font-size: .75rem; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.foot-aviso { font-size: .72rem; color: rgba(255,255,255,.25); max-width: 700px; margin: 0 auto 20px; line-height: 1.6; }
.foot-copy { font-size: .75rem; color: rgba(255,255,255,.2); }
.foot-copy a { color: rgba(255,255,255,.35); text-decoration: underline; }

/* ── Demo disclaimer ─────────────────────────────── */
.demo-disclaimer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 14px 0; margin: 16px 0;
  text-align: center;
}
.demo-disclaimer p { font-size: .72rem; color: rgba(255,255,255,.25); line-height: 1.6; max-width: 800px; margin: 0 auto; }
.demo-disclaimer strong { color: rgba(255,255,255,.4); font-weight: 600; }

/* ── Back to top ─────────────────────────────────── */
#back-top {
  display: none;
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--green); color: #fff;
  font-size: 1.2rem; font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(22,163,74,.4);
  z-index: 400;
  transition: transform .2s;
}
#back-top:hover { transform: translateY(-3px); }
#back-top.visible { display: flex; align-items: center; justify-content: center; }

/* ── Scroll reveal ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive 1024px ───────────────────────────── */
@media(max-width:1024px) {
  h1 { font-size: 2.4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .promises { align-items: flex-start; }
  .hero-cta-group { display: flex; flex-direction: column; align-items: center; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .num-card:nth-child(2) { border-right: none; }
  .num-card:nth-child(1), .num-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .dep-grid { grid-template-columns: 1fr 1fr; }
  .inst-layout { grid-template-columns: 1fr; }
  .inst-esq { flex-direction: row; gap: 24px; justify-content: flex-start; }
  .inst-avatar { width: 120px; height: 120px; font-size: 2rem; flex-shrink: 0; }
  .ham { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .br-d { display: inline; }
}

/* ── Responsive 768px ────────────────────────────── */
@media(max-width:768px) {
  .section-title { font-size: 1.7rem; }
  .dores-grid { grid-template-columns: 1fr; }
  .modulos-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .preco-card { padding: 28px 24px; }
  .preco-por { font-size: 3rem; }
  .cta-final-h2 { font-size: 1.8rem; }
  .ub-text { display: none; }
}

/* ── Responsive 480px ────────────────────────────── */
@media(max-width:480px) {
  h1 { font-size: 2rem; }
  .wrap { padding: 0 16px; }
  section { padding: 60px 0; }
  .btn-xl { padding: 16px 20px; font-size: .88rem; width: 100%; }
  .btn-lg { width: 100%; }
  .opcoes { flex-direction: column; align-items: center; }
  .inst-esq { flex-direction: column; }
  .ub-inner { height: auto; padding: 10px 16px; gap: 8px; }
  .ub-btn { display: none; }
  .preco-card { padding: 24px 16px; }
  .laptop { max-width: 300px; }
  .badge-1 { right: 0; top: -20px; font-size: .7rem; padding: 7px 10px; }
  .badge-2 { left: 0; font-size: .7rem; padding: 7px 10px; }
}

/* ── Touch & accessibility ─────────────────────────── */
button, a { touch-action: manipulation; }
.ham { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
