/* ============================================================
   RESET & VARIÁVEIS GLOBAIS — VSL
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:       #c0392b;
  --red-dark:  #96281b;
  --orange:    #e67e22;
  --orange-dk: #d35400;
  --navy:      #1a2a4a;
  --gray-bg:   #f4f5f7;
  --gray-line: #dde1e8;
  --text:      #1e1e1e;
  --muted:     #555;
  --white:     #ffffff;
  --max-w:     740px;
  --serif:     Georgia, 'Times New Roman', serif;
  --sans:      'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.78;
  color: var(--text);
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   SEÇÃO 00 — BARRA SUPERIOR
   ============================================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.60);
  font-size: 11px;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-bar strong {
  color: #fff;
}

/* ============================================================
   SEÇÃO 01 — HERO DA VSL
   ============================================================ */
.vsl-hero {
  background: linear-gradient(160deg, #0b1828 0%, #1a2a4a 55%, #1e3058 100%);
  color: #fff;
  padding: 52px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vsl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(192, 57, 43, 0.18) 0%, transparent 60%);

