/* ================================================================
   SMART SISTEMA JURÍDICO — Presentation Pages Stylesheet
   Padrão visual editorial premium (Playfair + Manrope, navy + gold)
   Usado em: modulos/*.html
   ================================================================ */

:root {
  --navy-900: #0A1F3D;
  --navy-800: #102A4C;
  --navy-700: #16355F;
  --navy-600: #1E4374;
  --navy-500: #2A5490;
  --navy-ink: #071730;

  --gold-600: #B08733;
  --gold-500: #C8A24A;
  --gold-400: #D9B865;
  --gold-300: #E6CE89;
  --gold-100: #F5EBCF;

  --bone: #FBF8F2;
  --ivory: #F5F1E8;
  --white: #FFFFFF;
  --mist: #EEF1F6;

  --ink: #0A1F3D;
  --muted: #6A7894;
  --muted-2: #94A0B5;

  --success: #1F7A4D;
  --danger: #B5384A;

  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, sans-serif;

  /* ═══ Aliases para compatibilidade com novas seções ═══ */
  --bone-100: #FBF8F2;
  --border: #E8E2D4;
  --ff-body: 'Manrope', -apple-system, sans-serif;
  --ff-display: 'Playfair Display', 'Times New Roman', serif;
  --gray-600: #6A7894;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--gold-300); color: var(--navy-900); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ======================================================
   NAVEGAÇÃO SUPERIOR (sticky)
   ====================================================== */
.topnav {
  position: sticky;
  top: 0;
  background: rgba(251,248,242,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10,31,61,0.06);
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topnav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy-900);
}

.topnav .brand-logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* legacy .brand-text (caso algum HTML ainda use) — oculto */
.topnav .brand-text { display: none; }

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--navy-900);
  border-radius: 2px;
  transition: all .25s;
  background: transparent;
  border: 1px solid transparent;
}

.nav-btn:hover {
  background: var(--white);
  border-color: rgba(10,31,61,0.1);
  box-shadow: 0 2px 8px rgba(10,31,61,0.05);
}

.nav-btn.primary {
  background: var(--navy-900);
  color: var(--white);
}

.nav-btn.primary:hover {
  background: var(--navy-700);
  color: var(--white);
}

.nav-btn i { font-size: 11px; }

/* ======================================================
   CAPA DO MÓDULO
   ====================================================== */
.cover {
  background: var(--navy-900);
  color: var(--white);
  padding: 120px 64px 140px;
  position: relative;
  overflow: hidden;
}

.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(200,162,74,0.15), transparent 50%),
    radial-gradient(circle at 85% 60%, rgba(30,67,116,0.6), transparent 55%);
  pointer-events: none;
}

.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.cover-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.cover-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cover-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold-500), transparent);
  max-width: 360px;
}

.cover-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-400);
  opacity: 0.7;
}

.cover-title {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 40px;
  animation: fadeSlideUp 1s cubic-bezier(.2,.8,.2,1) both;
}

.cover-title em {
  font-style: italic;
  color: var(--gold-400);
}

.cover-lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 28px);
  font-style: italic;
  line-height: 1.5;
  max-width: 820px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-bottom: 56px;
  animation: fadeSlideUp 1s .15s cubic-bezier(.2,.8,.2,1) both;
}

.cover-lede::before {
  content: """;
  font-size: 72px;
  color: var(--gold-500);
  line-height: 0;
  margin-right: 8px;
  vertical-align: -20px;
}

/* ======================================================
   SEÇÕES INTERNAS (estilo editorial)
   ====================================================== */
.section {
  padding: 120px 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section-eyebrow .chap {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--navy-900);
  font-weight: 500;
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold-500);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 32px;
  max-width: 1100px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-600);
}

.section-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 820px;
  margin-bottom: 64px;
  font-weight: 300;
}

.section-lede strong {
  color: var(--navy-900);
  font-weight: 600;
}

.section + .section { padding-top: 0; }
.section-alt { background: var(--white); padding: 120px 64px; margin: 0; max-width: none; }
.section-alt .section-inner { max-width: 1280px; margin: 0 auto; }

.section-dark {
  background: var(--navy-900);
  color: var(--white);
  padding: 140px 64px;
  margin: 0;
  max-width: none;
}

.section-dark .section-inner { max-width: 1280px; margin: 0 auto; }
.section-dark .section-title { color: var(--white); }
.section-dark .section-title em { color: var(--gold-400); }
.section-dark .section-lede { color: rgba(255,255,255,0.75); }
.section-dark .section-lede strong { color: var(--gold-300); }
.section-dark .section-eyebrow { color: var(--gold-400); }
.section-dark .section-eyebrow .chap { color: var(--white); }

/* ======================================================
   GRID DE ITEMS (recursos, funcionalidades)
   ====================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border-top: 1px solid rgba(10,31,61,0.1);
  padding: 40px 32px 32px;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-500);
}

.feature-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0.85;
}

.feature-title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.feature-desc strong {
  color: var(--navy-900);
  font-weight: 600;
}

/* ======================================================
   LISTA EDITORIAL NUMERADA (fluxo, passos)
   ====================================================== */
.editorial-list {
  margin-top: 48px;
  border-top: 2px solid var(--gold-500);
}

.editorial-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(10,31,61,0.08);
}

.editorial-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy-900);
  font-variant-numeric: tabular-nums;
}

.editorial-body h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}

.editorial-body h4 em {
  color: var(--gold-600);
  font-style: italic;
}

.editorial-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.editorial-body p strong { color: var(--navy-900); font-weight: 600; }

/* ======================================================
   COMPARATIVO (vs concorrentes)
   ====================================================== */
.compare {
  margin-top: 48px;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(10,31,61,0.04);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr;
  gap: 24px;
  padding: 22px 32px;
  border-bottom: 1px solid rgba(10,31,61,0.06);
  align-items: center;
}

.compare-row:last-child { border-bottom: none; }

.compare-row.header {
  background: var(--ivory);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--navy-900);
}

.compare-aspect {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-900);
}

.compare-them,
.compare-us {
  font-size: 13.5px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.compare-them {
  color: var(--muted);
}

.compare-us {
  color: var(--ink);
  font-weight: 500;
}

.compare-them::before { content: "—"; color: var(--muted-2); font-weight: 300; }
.compare-us::before { content: "+"; color: var(--gold-600); font-weight: 700; font-size: 16px; line-height: 1.3; }

.compare-us strong { color: var(--gold-600); font-weight: 700; }

/* ======================================================
   CENA (cenário do dia a dia)
   ====================================================== */
.scene {
  background: var(--white);
  padding: 56px 56px 48px;
  border-left: 3px solid var(--gold-500);
  margin-top: 32px;
  border-radius: 0 2px 2px 0;
  position: relative;
}

.scene-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 700;
  margin-bottom: 16px;
}

.scene h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  font-style: italic;
  color: var(--navy-900);
  margin-bottom: 24px;
}

.scene ol {
  counter-reset: scene;
  list-style: none;
  padding: 0;
}

.scene ol li {
  counter-increment: scene;
  padding: 12px 0 12px 48px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.scene ol li::before {
  content: counter(scene);
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  color: var(--gold-600);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.scene ol li strong { color: var(--navy-900); font-weight: 600; }

.scene-total {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px dashed rgba(10,31,61,0.15);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--gold-600);
}

.scene-total b { color: var(--navy-900); font-style: normal; font-weight: 600; }

/* ======================================================
   DESTAQUE / PULL QUOTE
   ====================================================== */
.pullquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.25;
  font-weight: 500;
  color: var(--white);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.02em;
}

.pullquote em {
  font-style: italic;
  color: var(--gold-400);
}

/* ======================================================
   SEÇÃO "FECHAMENTO" — CTA FINAL
   ====================================================== */
.closing {
  padding: 140px 64px;
  background: var(--ivory);
  text-align: center;
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.closing-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 24px;
}

.closing-title em { font-style: italic; color: var(--gold-600); }

.closing-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--navy-900);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
}

.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(10,31,61,0.25);
}

.btn-primary i { transition: transform .3s; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: transparent;
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(10,31,61,0.2);
  border-radius: 2px;
  transition: all .3s;
  margin-left: 12px;
}

.btn-secondary:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
}

/* ======================================================
   NAVEGAÇÃO ENTRE MÓDULOS (rodapé)
   ====================================================== */
.module-nav {
  padding: 56px 64px;
  background: var(--white);
  border-top: 1px solid rgba(10,31,61,0.08);
}

.module-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.mod-prev,
.mod-next {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border: 1px solid rgba(10,31,61,0.1);
  border-radius: 2px;
  transition: all .3s;
}

.mod-prev { text-align: left; }
.mod-next { text-align: right; justify-content: flex-end; grid-column: 3; }

.mod-prev:hover,
.mod-next:hover {
  border-color: var(--gold-500);
  background: var(--ivory);
}

.mod-prev .mod-label,
.mod-next .mod-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.mod-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.mod-center {
  text-align: center;
}

.mod-center a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: var(--navy-900);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--navy-900);
  border-radius: 2px;
  transition: all .3s;
}

.mod-center a:hover {
  background: var(--navy-900);
  color: var(--white);
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 64px 48px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { max-width: 380px; }
.footer-brand .brand {
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: none;
}
.footer-brand .brand-logo {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.footer-brand .brand-text { display: none; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.55); }

.footer-contact { font-size: 13px; }
.footer-contact a { color: var(--gold-400); text-decoration: none; display: inline-block; margin-top: 4px; }
.footer-contact a:hover { color: var(--gold-300); }

.footer-bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ======================================================
   ANIMAÇÕES
   ====================================================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   RESPONSIVO
   ====================================================== */
@media (max-width: 900px) {
  .topnav { padding: 14px 24px; flex-wrap: wrap; }
  .nav-btn { padding: 8px 14px; font-size: 11px; }

  .cover { padding: 72px 28px 96px; }
  .cover-title { font-size: clamp(48px, 12vw, 96px); margin-bottom: 28px; }
  .cover-lede { font-size: 18px; }
  .cover-eyebrow::after { max-width: 120px; }

  .section, .section-alt, .section-dark, .closing, .module-nav {
    padding: 72px 28px;
  }

  .section-title { font-size: clamp(30px, 7vw, 48px); }

  .editorial-item {
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 28px 0;
  }

  .editorial-num { font-size: 22px; }
  .editorial-body h4 { font-size: 20px; }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }

  .compare-row.header { display: none; }

  .compare-aspect {
    padding-bottom: 4px;
    border-bottom: 1px dashed rgba(10,31,61,0.1);
    margin-bottom: 8px;
  }

  .scene { padding: 32px 24px; }
  .scene h3 { font-size: 22px; }

  .module-nav-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mod-next { grid-column: 1; justify-content: flex-start; text-align: left; }

  .site-footer { padding: 56px 28px 32px; }
}

@media (max-width: 480px) {
  .cover-lede::before { font-size: 48px; vertical-align: -12px; }
  .closing-title { font-size: 36px; }
  .btn-secondary { margin-left: 0; margin-top: 12px; }
}

@media print {
  .topnav, .module-nav { display: none; }
  .cover { break-inside: avoid; }
  .section { break-inside: avoid; }
  .floating-actions { display: none !important; }
}


/* ══════════════════════════════════════════════════════════
   BOTÕES FLUTUANTES — Teste Grátis + WhatsApp
   Aparecem em todas as 29 páginas.
   ══════════════════════════════════════════════════════════ */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(10,31,61,0.35), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s ease, filter 0.22s ease;
  cursor: pointer;
  border: none;
}

.float-btn i {
  font-size: 18px;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(10,31,61,0.45), 0 4px 12px rgba(0,0,0,0.22);
  filter: brightness(1.05);
}

.float-btn.testar {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

@media (max-width: 768px) {
  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }
  .float-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
  .float-btn .label-long {
    display: none;
  }
  .float-btn .label-short {
    display: inline;
  }
}
@media (min-width: 769px) {
  .float-btn .label-short { display: none; }
  .float-btn .label-long { display: inline; }
}


/* ══════════════════════════════════════════════════════════
   SEÇÃO ACESSO IMEDIATO (teste-gratis) — navy + grid
   ══════════════════════════════════════════════════════════ */
.conversion {
  background: var(--navy-900);
  color: var(--white);
  padding: 120px 56px 140px;
  position: relative;
  overflow: hidden;
}

.conversion::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,162,74,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,162,74,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.conversion::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,162,74,0.08), transparent 65%);
  pointer-events: none;
}

.conversion-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.conv-left .conv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,162,74,0.35);
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.conv-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--white);
}

.conv-left h2 em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 500;
}

.conv-left p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 560px;
}

.conv-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px 28px;
  max-width: 560px;
}

.conv-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}

.conv-feat::before {
  content: "✓";
  color: #4ade80;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.conv-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(200,162,74,0.04));
  border: 1.5px solid rgba(200,162,74,0.45);
  border-radius: 20px;
  padding: 42px 38px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
  text-align: center;
  position: relative;
}

.conv-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.35);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}

.conv-card h3 {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.conv-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.conv-card-cta {
  display: block;
  width: 100%;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  border-radius: 12px;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 8px 24px rgba(200,162,74,0.25);
  margin-bottom: 20px;
}

.conv-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(200,162,74,0.42);
}

.conv-card-confirm {
  font-size: 13px;
  color: #4ade80;
  line-height: 1.55;
}

.conv-card-confirm strong { color: rgba(255,255,255,0.82); font-weight: 600; }


/* ══════════════════════════════════════════════════════════
   SEÇÃO PLANOS E PREÇOS
   ══════════════════════════════════════════════════════════ */
.pricing {
  background: var(--bone-100);
  padding: 140px 56px;
}

.pricing-head {
  max-width: 780px;
  margin: 0 auto 80px;
  text-align: center;
}

.pricing-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 18px;
}

.pricing-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 22px;
}

.pricing-title em {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 500;
}

.pricing-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
}

.plans-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
}

.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(10,31,61,0.1);
  border-color: rgba(200,162,74,0.4);
}

.plan-card.featured {
  border-color: var(--gold-500);
  background: linear-gradient(165deg, #fff, #fffcf2);
  box-shadow: 0 16px 48px rgba(200,162,74,0.15);
}

.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(200,162,74,0.3);
}

.plan-name {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 18px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.plan-price .currency {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-700);
}

.plan-price .amount {
  font-family: var(--ff-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-cycle {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.plan-saver {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(34,197,94,0.1);
  color: #16a34a;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 28px;
  margin-top: 8px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy-900);
}

.plan-features li::before {
  content: "✓";
  color: var(--gold-500);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-features li.star::before {
  content: "✦";
  color: var(--gold-500);
}

.plan-cta {
  display: block;
  width: 100%;
  padding: 16px 28px;
  text-align: center;
  border-radius: 12px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.22s ease;
  border: none;
}

.plan-card .plan-cta {
  background: var(--navy-900);
  color: var(--white);
}
.plan-card .plan-cta:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}
.plan-card.featured .plan-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 6px 18px rgba(200,162,74,0.28);
}
.plan-card.featured .plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200,162,74,0.45);
}

.plan-notes {
  max-width: 920px;
  margin: 56px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-600);
}
.plan-notes span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


/* ══════════════════════════════════════════════════════════
   SEÇÃO AFILIADOS
   ══════════════════════════════════════════════════════════ */
.affiliates {
  background: var(--navy-900);
  color: var(--white);
  padding: 140px 56px;
  position: relative;
  overflow: hidden;
}
.affiliates::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,162,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,162,74,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.aff-head {
  max-width: 780px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.aff-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
}

.aff-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 22px;
}

.aff-title em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 500;
}

.aff-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  margin: 0 auto;
}

.aff-steps {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.aff-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.aff-step:hover {
  transform: translateY(-4px);
  border-color: rgba(200,162,74,0.35);
  background: rgba(200,162,74,0.04);
}

.aff-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.aff-step h4 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.aff-step p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

.aff-commission {
  max-width: 900px;
  margin: 0 auto 80px;
  background: linear-gradient(135deg, rgba(200,162,74,0.08), rgba(200,162,74,0.02));
  border: 1px solid rgba(200,162,74,0.3);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.aff-commission-num {
  font-family: var(--ff-display);
  font-size: 96px;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.aff-commission-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.aff-commission-values {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.aff-commission-values > div {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.aff-commission-values strong {
  color: var(--gold-300);
  font-weight: 700;
}

.aff-commission-hint {
  display: inline-block;
  padding: 12px 22px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50px;
  color: #86efac;
  font-size: 14px;
  font-weight: 600;
}

.aff-panel-title {
  max-width: 1100px;
  margin: 0 auto 40px;
  text-align: center;
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.aff-panel-grid {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.aff-panel-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 26px;
  transition: all 0.3s ease;
}
.aff-panel-item:hover {
  border-color: rgba(200,162,74,0.35);
  transform: translateY(-3px);
}

.aff-panel-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.aff-panel-item h5 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.aff-panel-item p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.aff-closing {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.aff-closing-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 16px;
}

.aff-closing h3 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.aff-closing h3 em {
  color: var(--gold-400);
  font-style: italic;
}

.aff-closing p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

.aff-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  border-radius: 12px;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 10px 28px rgba(200,162,74,0.3);
  margin-bottom: 20px;
}

.aff-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(200,162,74,0.45);
}

.aff-perks {
  display: flex;
  justify-content: center;
  gap: 18px 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}


/* ══════════════════════════════════════════════════════════
   SEÇÃO FAQ
   ══════════════════════════════════════════════════════════ */
.faq {
  background: var(--bone-100);
  padding: 140px 56px;
}

.faq-head {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 18px;
}

.faq-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 22px;
}

.faq-title em {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 500;
}

.faq-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 28px;
}

.faq-head-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s ease;
}

.faq-head-cta:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(200,162,74,0.4);
  box-shadow: 0 8px 24px rgba(10,31,61,0.06);
}

.faq-item summary {
  list-style: none;
  padding: 24px 28px;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.22s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--gold-500); }

.faq-item summary::after {
  content: "+";
  font-size: 26px;
  color: var(--gold-500);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 4px 28px 28px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
}

.faq-answer strong { color: var(--navy-900); }


/* ══════════════════════════════════════════════════════════
   FOOTER — links legais + logo reduzido no mobile
   ══════════════════════════════════════════════════════════ */
.footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px 18px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--gold-400);
}

.footer-legal .sep {
  color: rgba(255,255,255,0.2);
}


/* Hero — botão secundário */
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px;
  margin-bottom: 64px;
}

.hero-cta-row .hero-cta {
  margin-top: 0;
  margin-bottom: 0;
}

.hero-cta.secondary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: 1.5px solid #10b981;
  box-shadow: 0 8px 24px rgba(16,185,129,0.28), 0 0 0 4px rgba(16,185,129,0.12);
  position: relative;
  overflow: hidden;
}

.hero-cta.secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.hero-cta.secondary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(16,185,129,0.4), 0 0 0 6px rgba(16,185,129,0.14);
}

.hero-cta.secondary:hover::before {
  transform: translateX(100%);
}

.hero-cta.secondary i {
  color: #fff;
  animation: pulse-bolt 2s infinite;
}

@keyframes pulse-bolt {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.85; }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVO — novas seções + logo footer menor no mobile
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .conversion { padding: 80px 24px 100px; }
  .conversion-inner { grid-template-columns: 1fr; gap: 56px; }
  .conv-features { grid-template-columns: 1fr; gap: 10px; max-width: 100%; }
  .conv-card { padding: 32px 24px; }

  .pricing { padding: 90px 24px; }
  .plans-grid { grid-template-columns: 1fr; gap: 24px; max-width: 540px; }
  .plan-card { padding: 36px 28px; }
  .plan-price .amount { font-size: 52px; }

  .affiliates { padding: 90px 24px; }
  .aff-steps { grid-template-columns: 1fr; gap: 18px; }
  .aff-commission { padding: 36px 24px; }
  .aff-commission-num { font-size: 72px; }
  .aff-commission-values { gap: 16px 24px; }

  .faq { padding: 90px 24px; }
  .faq-item summary { padding: 20px 22px; font-size: 16px; }
  .faq-answer { padding: 0 22px 22px; font-size: 14px; }

  /* Logo do rodapé menor no mobile */
  .footer-brand .brand-logo { height: 32px; max-width: 160px; }
  .footer-legal { padding: 0 24px 16px; font-size: 11px; gap: 12px; }
}

@media (max-width: 480px) {
  .conv-left h2 { font-size: 34px; }
  .conv-card h3 { font-size: 26px; }
  .plan-price .amount { font-size: 44px; }
  .aff-commission-num { font-size: 60px; }

  /* Logo do rodapé ainda menor em telas muito pequenas */
  .footer-brand .brand-logo { height: 28px; max-width: 140px; }
  .floating-actions { right: 10px; bottom: 10px; }
  .float-btn { padding: 10px 14px; font-size: 12px; gap: 8px; }
  .float-btn i { font-size: 16px; }
}


/* ══════════════════════════════════════════════════════════
   PÁGINAS LEGAIS (Termos + Privacidade)
   ══════════════════════════════════════════════════════════ */
.legal-page {
  background: var(--bone-100);
  color: var(--navy-900);
  min-height: 100vh;
}

.legal-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: 100px 56px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,162,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,162,74,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.legal-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.legal-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
}

.legal-title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 18px;
}

.legal-title em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 500;
}

.legal-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 32px 120px;
  font-family: var(--ff-body);
}

.legal-body h2 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-900);
  margin-top: 56px;
  margin-bottom: 16px;
  padding-top: 16px;
  line-height: 1.3;
}

.legal-body h2:first-of-type { margin-top: 0; padding-top: 0; }

.legal-body h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-700);
  margin-top: 32px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.legal-body p strong { color: var(--navy-900); font-weight: 600; }

.legal-body ul {
  margin: 14px 0 24px 0;
  padding: 0;
  list-style: none;
}

.legal-body ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.legal-body ul li::before {
  content: "•";
  color: var(--gold-500);
  font-weight: 900;
  position: absolute;
  left: 4px;
  top: 0;
  font-size: 20px;
  line-height: 1;
}

.legal-body ul li strong { color: var(--navy-900); }

.legal-contact-card {
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold-500);
  border-radius: 12px;
  padding: 28px 32px;
}

.legal-contact-card h3 {
  margin-top: 0;
  font-size: 18px;
  color: var(--navy-900);
}

.legal-back {
  max-width: 820px;
  margin: 0 auto 40px;
  padding: 32px 32px 0;
}

.legal-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gold-600);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.22s ease;
}

.legal-back a:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  transform: translateX(-3px);
}

@media (max-width: 768px) {
  .legal-hero { padding: 72px 24px 56px; }
  .legal-body { padding: 56px 22px 80px; }
  .legal-body h2 { font-size: 22px; margin-top: 40px; }
  .legal-body h3 { font-size: 15px; }
  .legal-body p, .legal-body ul li { font-size: 14px; }
  .legal-back { padding: 22px 22px 0; }
  .legal-contact-card { padding: 22px 24px; }
}


/* ══════════════════════════════════════════════════════════
   PROTEÇÃO RESPONSIVA GLOBAL — adicionado em 28/04/2026
   Garante zero overflow horizontal em qualquer dispositivo
   ══════════════════════════════════════════════════════════ */

/* Trava global: nenhum scroll horizontal em qualquer largura de tela */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* Imagens, vídeos, iframes nunca passam da largura do container */
img, video, iframe, embed, object, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* Iframes especificamente (vídeos, mapas) */
iframe {
  max-width: 100%;
}

/* Tabelas: scroll interno ao invés de quebrar layout */
table {
  max-width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Containers genéricos: garantia extra */
section, header, footer, main, article, aside, nav, div {
  max-width: 100vw;
}

/* Quebra de palavras longas (URLs, e-mails, hashtags) */
p, li, a, h1, h2, h3, h4, h5, h6, span, strong, em, td, th {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* URLs e e-mails dentro de prosa: quebrar onde precisar */
a {
  word-break: break-word;
}

/* PRE e CODE: scroll interno em vez de overflow */
pre, code {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* ════════════════ BREAKPOINT 768px ════════════════
   Cobre o vão entre 481px e 900px que estava sem
   tratamento adequado no CSS original
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Topnav - garantir que não estoura */
  .topnav {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .topnav-left { flex: 1 1 auto; min-width: 0; }
  .nav-actions {
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }
  .nav-btn {
    padding: 7px 12px;
    font-size: 11px;
    flex: 1 1 auto;
    text-align: center;
    min-width: 0;
  }

  /* Cover (capa do módulo) */
  .cover {
    padding: 56px 18px 72px;
  }
  .cover-title {
    font-size: clamp(36px, 9vw, 64px);
    line-height: 1.05;
    word-break: break-word;
  }
  .cover-lede {
    font-size: 16px;
    line-height: 1.55;
  }
  .cover-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  /* Sections */
  .section, .section-alt, .section-dark, .closing, .module-nav {
    padding: 56px 18px;
  }
  .section-title {
    font-size: clamp(26px, 6.5vw, 40px);
    line-height: 1.15;
    word-break: break-word;
  }
  .section-eyebrow {
    font-size: 11px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .section-lede {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Feature grid - 1 coluna sempre */
  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .feature-card {
    padding: 22px 20px;
  }
  .feature-title {
    font-size: 17px;
  }
  .feature-desc {
    font-size: 13.5px;
    line-height: 1.55;
  }

  /* Editorial list - garante alinhamento */
  .editorial-list {
    gap: 0;
  }
  .editorial-item {
    grid-template-columns: 48px 1fr !important;
    gap: 16px;
    padding: 22px 0;
  }
  .editorial-num {
    font-size: 18px;
  }
  .editorial-body h4 {
    font-size: 17px;
    line-height: 1.3;
  }
  .editorial-body p {
    font-size: 13.5px;
    line-height: 1.55;
  }

  /* Compare row (tabela comparativa) - vira blocos verticais */
  .compare {
    border-radius: 12px;
  }
  .compare-row {
    grid-template-columns: 1fr !important;
    gap: 6px;
    padding: 16px 18px;
  }
  .compare-row.header {
    display: none !important;
  }
  .compare-aspect {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 4px;
    border-bottom: 1px dashed rgba(10,31,61,0.12);
    margin-bottom: 8px;
    color: var(--muted);
  }
  .compare-them, .compare-us {
    font-size: 13.5px;
    line-height: 1.5;
  }

  /* Scene cards */
  .scene {
    padding: 24px 18px;
  }
  .scene h3 {
    font-size: 19px;
    line-height: 1.3;
  }
  .scene ol, .scene ul {
    padding-left: 18px;
    font-size: 13.5px;
  }

  /* Module navigation footer */
  .module-nav-inner {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .mod-prev, .mod-next {
    grid-column: 1;
    text-align: left;
    justify-content: flex-start;
  }

  /* Site footer */
  .site-footer {
    padding: 40px 18px 24px;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 0 18px 12px;
    font-size: 11px;
  }

  /* Floating actions (whatsapp/chat) */
  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 6px;
  }
  .float-btn {
    padding: 9px 12px;
    font-size: 12px;
    gap: 6px;
  }
  .float-btn i {
    font-size: 15px;
  }

  /* Catalog (catálogo de módulos na index) */
  .catalog .module-card {
    padding: 22px 18px;
  }
  .catalog .module-name {
    font-size: 16px;
  }
  .catalog .module-desc {
    font-size: 13px;
  }

  /* Conversion (área de conversão na index) */
  .conversion {
    padding: 56px 18px 72px;
  }
  .conversion-inner {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .conv-features {
    grid-template-columns: 1fr !important;
    gap: 8px;
    max-width: 100%;
  }
  .conv-card {
    padding: 24px 18px;
  }
  .conv-left h2 {
    font-size: 32px;
    line-height: 1.15;
    word-break: break-word;
  }
  .conv-card h3 {
    font-size: 22px;
  }

  /* Pricing (planos) */
  .pricing {
    padding: 56px 18px;
  }
  .plans-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
    max-width: 100%;
  }
  .plan-card {
    padding: 28px 22px;
  }
  .plan-price .amount {
    font-size: 42px;
  }

  /* Affiliates */
  .affiliates {
    padding: 56px 18px;
  }
  .aff-steps {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin-bottom: 56px;
  }
  .aff-step {
    padding: 26px 22px;
  }
  .aff-commission {
    padding: 28px 22px;
  }
  .aff-commission-num {
    font-size: 56px;
  }

  /* FAQ */
  .faq {
    padding: 56px 18px;
  }
  .faq-item summary {
    padding: 16px 18px;
    font-size: 14px;
  }
  .faq-answer {
    padding: 0 18px 18px;
    font-size: 13.5px;
  }

  /* Closing */
  .closing-title {
    font-size: clamp(28px, 7vw, 44px);
    line-height: 1.15;
  }

  /* Logo do rodapé proporcional */
  .footer-brand .brand-logo {
    height: 30px;
    max-width: 150px;
  }
}

/* ════════════════ BREAKPOINT 480px ════════════════
   Telas muito pequenas (smartphones antigos / iPhone SE)
   ════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .topnav {
    padding: 10px 14px;
  }
  .nav-btn {
    padding: 6px 10px;
    font-size: 10px;
  }

  .cover {
    padding: 44px 14px 60px;
  }
  .cover-title {
    font-size: clamp(30px, 9vw, 48px);
  }
  .cover-lede {
    font-size: 15px;
  }

  .section, .section-alt, .section-dark, .closing, .module-nav {
    padding: 44px 14px;
  }
  .section-title {
    font-size: clamp(22px, 7vw, 32px);
  }

  .feature-card {
    padding: 18px 16px;
  }
  .feature-num {
    font-size: 14px;
  }
  .feature-title {
    font-size: 16px;
  }

  .editorial-item {
    grid-template-columns: 40px 1fr !important;
    gap: 12px;
    padding: 18px 0;
  }

  .compare-row {
    padding: 14px 14px;
  }

  .scene {
    padding: 20px 14px;
  }

  .conv-left h2 {
    font-size: 28px;
  }
  .conv-card h3 {
    font-size: 20px;
  }

  .plan-card {
    padding: 24px 18px;
  }
  .plan-price .amount {
    font-size: 36px;
  }

  .aff-step {
    padding: 22px 18px;
  }
  .aff-commission-num {
    font-size: 48px;
  }

  .closing-title {
    font-size: clamp(24px, 8vw, 36px);
  }

  .floating-actions {
    right: 10px;
    bottom: 10px;
  }
  .float-btn {
    padding: 8px 11px;
    font-size: 11px;
  }
  .float-btn span {
    display: none;
  }

  .footer-brand .brand-logo {
    height: 26px;
    max-width: 130px;
  }
}

/* ════════════════ BREAKPOINT 360px ════════════════
   Telas extremamente pequenas (raríssimas, mas existem)
   ════════════════════════════════════════════════════ */
@media (max-width: 360px) {

  .cover-title {
    font-size: 28px;
  }
  .section-title {
    font-size: 22px;
  }
  .feature-title {
    font-size: 15px;
  }
  .editorial-body h4 {
    font-size: 15px;
  }
  .topnav-left .brand-logo {
    height: 24px;
  }
}
