:root {
  --roxo:       #4A2C6B;
  --roxo-med:   #7B4F9E;
  --roxo-clar:  #C9A8E0;
  --roxo-fundo: #1C0E32;
  --ambar:      #D4A843;
  --ambar-clar: #F5E6C0;
  --ambar-dark: #A8832E;
  --branco:     #FFFFFF;
  --off-white:  #FAF8FF;
  --cinza:      #F0EDF7;
  --cinza-txt:  #6B6080;
  --preto:      #0E0620;
  --verde:      #1B5E20;
  --verde-clar: #E8F5E9;
  --verm:       #B71C1C;
  --verm-clar:  #FFEBEE;

  --fonte-titulo: 'Inter', sans-serif;
  --fonte-corpo:  'Inter', sans-serif;

  --raio: 12px;
  --raio-lg: 20px;
  --sombra: 0 8px 40px rgba(74,44,107,0.15);
  --sombra-lg: 0 20px 60px rgba(74,44,107,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte-corpo);
  background: var(--off-white);
  color: var(--preto);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Utilitários ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

.tag {
  display: inline-block;
  background: var(--ambar);
  color: var(--roxo);
  font-family: var(--fonte-corpo);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.tag-roxo {
  background: var(--roxo);
  color: var(--ambar-clar);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--roxo-fundo);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(123,79,158,0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px 56px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero-marca {
  font-family: var(--fonte-titulo);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 3px;
  color: var(--ambar);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-marca::before,
.hero-marca::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--ambar);
  opacity: 0.5;
}

.hero-titulo {
  font-family: var(--fonte-titulo);
  font-size: clamp(38px, 8vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--branco);
  margin-bottom: 12px;
}

.hero-titulo em {
  font-style: italic;
  color: var(--ambar);
}

.hero-sub {
  font-family: var(--fonte-corpo);
  font-size: 16px;
  font-weight: 300;
  color: var(--roxo-clar);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-destaque {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: var(--raio);
  padding: 24px;
  margin-bottom: 36px;
  text-align: left;
}

.hero-destaque p {
  color: var(--roxo-clar);
  font-size: 19px;
  line-height: 1.7;
  font-style: italic;
  font-family: var(--fonte-titulo);
  font-weight: 400;
}

.hero-destaque strong {
  color: var(--ambar);
  font-style: normal;
}

.hero-cta {
  display: block;
  background: linear-gradient(135deg, var(--ambar) 0%, var(--ambar-dark) 100%);
  color: var(--roxo-fundo);
  font-family: var(--fonte-corpo);
  font-size: 17px;
  font-weight: 600;
  padding: 18px 32px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 30px rgba(212,168,67,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 14px;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212,168,67,0.5);
}

.hero-cta-sub {
  font-size: 12px;
  color: var(--roxo-clar);
  opacity: 0.8;
}

.hero-price-strip {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,224,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.price-de {
  color: var(--roxo-clar);
  font-size: 14px;
  text-decoration: line-through;
  opacity: 0.7;
}

.price-por {
  font-family: var(--fonte-titulo);
  font-size: 52px;
  font-weight: 700;
  color: var(--ambar);
  line-height: 1;
}

.price-por sup { font-size: 24px; vertical-align: super; }
.price-por span { font-family: var(--fonte-corpo); font-size: 14px; font-weight: 400; }

.price-badge {
  background: var(--ambar);
  color: var(--roxo-fundo);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.price-strip-sub {
  font-size: 12px;
  color: var(--roxo-clar);
  margin-top: 6px;
}

/* ── DORES ────────────────────────────────────────────────── */
.section-dores {
  background: var(--cinza);
  padding: 64px 20px;
}

.section-label {
  text-align: center;
  margin-bottom: 10px;
}

.section-titulo {
  font-family: var(--fonte-titulo);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 700;
  color: var(--roxo);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 12px;
}

.section-label + .section-titulo { margin-top: 12px; }

.section-titulo em { font-style: italic; color: var(--roxo-med); }

.section-sub {
  font-size: 15px;
  color: var(--cinza-txt);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.dores-grid {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.dor-item {
  background: var(--branco);
  border-radius: var(--raio);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-left: 4px solid var(--verm);
  box-shadow: 0 2px 12px rgba(74,44,107,0.06);
}

.dor-emoji { font-size: 22px; flex-shrink: 0; margin-top: 1px; }

.dor-item p {
  font-size: 15px;
  color: var(--preto);
  line-height: 1.5;
}

.dor-item strong { color: var(--roxo); }

.dores-virada {
  margin-top: 40px;
  background: var(--roxo);
  border-radius: var(--raio-lg);
  padding: 32px 24px;
  text-align: center;
}

.dores-virada p {
  font-family: var(--fonte-titulo);
  font-size: 22px;
  font-style: italic;
  color: var(--branco);
  line-height: 1.5;
  margin-bottom: 8px;
}

.dores-virada strong { color: var(--ambar); font-style: normal; }

/* ── O QUE VOCÊ RECEBE ────────────────────────────────────── */
.section-recebe {
  background: var(--branco);
  padding: 72px 20px;
}

.entrega-card {
  background: var(--off-white);
  border-radius: var(--raio-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
  margin-bottom: 20px;
}

.entrega-header {
  background: var(--roxo);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.entrega-icon {
  width: 44px; height: 44px;
  background: rgba(212,168,67,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.entrega-header-txt h3 {
  font-family: var(--fonte-titulo);
  font-size: 20px;
  font-weight: 600;
  color: var(--branco);
  line-height: 1.2;
}

.entrega-header-txt span {
  font-size: 12px;
  color: var(--ambar);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.entrega-body {
  padding: 24px;
}

.entrega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(74,44,107,0.06);
}

.entrega-item:last-child { border-bottom: none; }

.check {
  width: 22px; height: 22px;
  background: var(--roxo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check::after {
  content: '✓';
  color: var(--ambar);
  font-size: 12px;
  font-weight: 700;
}

.entrega-item p {
  font-size: 14px;
  color: var(--preto);
  line-height: 1.5;
}

.entrega-item p strong {
  color: var(--roxo);
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

/* ── AULAS ────────────────────────────────────────────────── */
.section-aulas {
  background: var(--roxo-fundo);
  padding: 72px 20px;
  position: relative;
  overflow: hidden;
}

.section-aulas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212,168,67,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.section-aulas .section-titulo { color: var(--branco); }
.section-aulas .section-titulo em { color: var(--ambar); }
.section-aulas .section-sub { color: var(--roxo-clar); }

.aulas-lista {
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.aula-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,224,0.15);
  border-radius: var(--raio);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s, border-color 0.2s;
}

.aula-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(212,168,67,0.3);
}

.aula-num {
  width: 36px; height: 36px;
  background: var(--ambar);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-titulo);
  font-size: 16px;
  font-weight: 700;
  color: var(--roxo-fundo);
  flex-shrink: 0;
}

.aula-txt strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 2px;
}

.aula-txt span {
  font-size: 12px;
  color: var(--roxo-clar);
}

/* ── PLANILHA ─────────────────────────────────────────────── */
.section-planilha {
  background: var(--cinza);
  padding: 72px 20px;
}

.planilha-grid {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.planilha-card {
  background: var(--branco);
  border-radius: var(--raio-lg);
  padding: 24px;
  box-shadow: var(--sombra);
  position: relative;
  overflow: hidden;
}

.planilha-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--ambar);
}

.planilha-card-emoji {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.planilha-card h3 {
  font-family: var(--fonte-titulo);
  font-size: 20px;
  font-weight: 700;
  color: var(--roxo);
  margin-bottom: 8px;
}

.planilha-card p {
  font-size: 14px;
  color: var(--cinza-txt);
  line-height: 1.6;
}

.planilha-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.mini-tag {
  background: var(--roxo);
  color: var(--ambar-clar);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ── PARA QUEM ────────────────────────────────────────────── */
.section-paraquem {
  background: var(--branco);
  padding: 72px 20px;
}

.paraquem-grid {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.paraquem-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cinza);
  padding: 18px 20px;
  border-radius: var(--raio);
}

.paraquem-emoji {
  font-size: 24px;
  flex-shrink: 0;
}

.paraquem-item p {
  font-size: 15px;
  color: var(--preto);
  font-weight: 500;
}

.nao-paraquem {
  margin-top: 32px;
  padding: 24px;
  background: var(--roxo-fundo);
  border-radius: var(--raio);
}

.nao-paraquem p {
  font-size: 14px;
  color: var(--roxo-clar);
  line-height: 1.6;
}

.nao-paraquem strong { color: var(--ambar); }

/* ── DEPOIMENTOS ──────────────────────────────────────────── */
.section-depo {
  background: linear-gradient(160deg, var(--roxo-fundo) 0%, var(--roxo) 100%);
  padding: 72px 20px;
}

.section-depo .section-titulo { color: var(--branco); }
.section-depo .section-titulo em { color: var(--ambar); }

.depo-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.depo-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,224,0.2);
  border-radius: var(--raio-lg);
  padding: 24px;
  position: relative;
}

.depo-aspas {
  font-family: var(--fonte-titulo);
  font-size: 60px;
  color: var(--ambar);
  line-height: 0.5;
  display: block;
  margin-bottom: 12px;
  opacity: 0.6;
}

.depo-card blockquote {
  font-family: var(--fonte-titulo);
  font-size: 17px;
  font-style: italic;
  color: var(--branco);
  line-height: 1.6;
  margin-bottom: 16px;
}

.depo-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ambar);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--roxo-fundo);
  font-size: 16px;
  flex-shrink: 0;
}

.depo-autor-txt strong {
  display: block;
  font-size: 14px;
  color: var(--ambar);
  font-weight: 600;
}

.depo-autor-txt span {
  font-size: 12px;
  color: var(--roxo-clar);
}

/* ── PREÇO ────────────────────────────────────────────────── */
.section-preco {
  background: var(--off-white);
  padding: 80px 20px;
}

.preco-card {
  background: var(--roxo-fundo);
  border-radius: var(--raio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-lg);
  position: relative;
}

.preco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ambar), var(--ambar-dark));
}

.preco-header {
  padding: 36px 28px 28px;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,224,0.15);
}

.preco-badge {
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--ambar);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

.preco-titulo {
  font-family: var(--fonte-titulo);
  font-size: 26px;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 6px;
  line-height: 1.2;
}

.preco-sub {
  font-size: 13px;
  color: var(--roxo-clar);
  margin-bottom: 28px;
}

.preco-de {
  font-size: 16px;
  color: var(--roxo-clar);
  text-decoration: line-through;
  opacity: 0.7;
  margin-bottom: 4px;
}

.preco-por {
  font-family: var(--fonte-titulo);
  font-size: 72px;
  font-weight: 700;
  color: var(--ambar);
  line-height: 1;
  margin-bottom: 6px;
}

.preco-por sup { font-size: 30px; vertical-align: super; }
.preco-por-label {
  font-family: var(--fonte-corpo);
  font-size: 14px;
  color: var(--roxo-clar);
  margin-bottom: 8px;
}

.preco-economia {
  display: inline-block;
  background: rgba(27,94,32,0.3);
  border: 1px solid rgba(27,94,32,0.5);
  color: #81C784;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
}

.preco-corpo {
  padding: 28px;
}

.preco-inclui {
  margin-bottom: 28px;
}

.preco-inclui h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ambar);
  margin-bottom: 16px;
}

.preco-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,224,0.1);
}

.preco-item:last-child { border-bottom: none; }

.preco-item-check {
  width: 20px; height: 20px;
  background: var(--ambar);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: var(--roxo-fundo);
  font-weight: 700;
}

.preco-item-txt {
  font-size: 14px;
  color: var(--roxo-clar);
  line-height: 1.5;
}

.preco-item-txt strong {
  color: var(--branco);
  display: block;
  font-size: 15px;
}

.preco-cta {
  display: block;
  background: linear-gradient(135deg, var(--ambar) 0%, var(--ambar-dark) 100%);
  color: var(--roxo-fundo);
  font-family: var(--fonte-corpo);
  font-size: 17px;
  font-weight: 700;
  padding: 20px 32px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 32px rgba(212,168,67,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
}

.preco-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,168,67,0.55);
}

.preco-garantias {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.garantia-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--roxo-clar);
}

.garantia-item span { font-size: 14px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.section-faq {
  background: var(--branco);
  padding: 72px 20px;
}

.faq-lista {
  margin-top: 40px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(74,44,107,0.12);
  border-radius: var(--raio);
  overflow: hidden;
}

.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--fonte-corpo);
  font-size: 15px;
  font-weight: 600;
  color: var(--roxo);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
}

.faq-pergunta:hover { background: var(--cinza); }

.faq-seta {
  width: 24px; height: 24px;
  background: var(--roxo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ambar);
  font-size: 14px;
  transition: transform 0.25s;
}

.faq-item.aberto .faq-seta { transform: rotate(180deg); }

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.aberto .faq-resposta { max-height: 300px; }

.faq-resposta-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--cinza-txt);
  line-height: 1.7;
  border-top: 1px solid rgba(74,44,107,0.08);
  padding-top: 14px;
}

/* ── URGÊNCIA ─────────────────────────────────────────────── */
.section-urgencia {
  background: var(--roxo);
  padding: 56px 20px;
  text-align: center;
}

.urgencia-titulo {
  font-family: var(--fonte-titulo);
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  margin-bottom: 12px;
}

.urgencia-titulo em { font-style: italic; color: var(--ambar); }

.urgencia-sub {
  font-size: 15px;
  color: var(--roxo-clar);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--roxo-fundo);
  padding: 40px 20px;
  text-align: center;
}

.footer-marca {
  font-family: var(--fonte-titulo);
  font-size: 22px;
  font-style: italic;
  color: var(--ambar);
  margin-bottom: 10px;
}

.footer-txt {
  font-size: 13px;
  color: var(--roxo-clar);
  opacity: 0.7;
  line-height: 1.6;
}

/* ── STICKY CTA MOBILE ────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--roxo-fundo);
  border-top: 2px solid var(--ambar);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 100;
  box-shadow: 0 -4px 24px rgba(74,44,107,0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visivel { transform: translateY(0); }

.sticky-preco {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.sticky-de {
  font-size: 10px;
  color: var(--roxo-clar);
  text-decoration: line-through;
}

.sticky-por {
  font-family: var(--fonte-titulo);
  font-size: 22px;
  font-weight: 700;
  color: var(--ambar);
}

.sticky-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--ambar), var(--ambar-dark));
  color: var(--roxo-fundo);
  font-family: var(--fonte-corpo);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
}

/* ── ANIMAÇÕES ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }

/* ── BONUS / VARIANTES ────────────────────────────────────── */
.entrega-card-bonus {
  border: 2px solid var(--ambar);
}

.entrega-header-bonus {
  background: linear-gradient(135deg, #2a1845, var(--roxo));
}

.aula-item-bonus {
  border-color: rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.06);
}


/* ── URGÊNCIA CTA ─────────────────────────────────────────── */
.urgencia-cta {
  max-width: 440px;
  margin: 0 auto 12px;
  display: block;
}

.urgencia-cta-sub {
  font-size: 12px;
  color: var(--roxo-clar);
  text-align: center;
  opacity: 0.8;
}

/* ── PREÇO titulo espaçamento ─────────────────────────────── */
.section-preco .section-titulo {
  margin-bottom: 32px;
}

/* ── DESKTOP ──────────────────────────────────────────────── */
@media (min-width: 640px) {
  .paraquem-grid { grid-template-columns: 1fr 1fr; }
  .planilha-grid { grid-template-columns: 1fr 1fr; }
  .depo-grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: none; }
}

@media (min-width: 720px) {
  .hero-inner { padding: 80px 20px 72px; }
}