:root {
  --bg-dark: #050403;
  --bg-dark-2: #120c09;
  --bg-light: #faf8f5;
  --bg-card-light: #ffffff;
  --text-on-dark: #ffffff;
  --text-on-light: #1a120e;
  --text-muted-dark: rgba(255, 255, 255, 0.72);
  --text-muted-light: #5c4f47;
  --accent: #e8620a;
  --accent-light: #ff8c2a;
  --accent-glow: rgba(232, 98, 10, 0.35);
  --gold: #d4a017;
  --gold-light: #f0c040;
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-glow: rgba(34, 197, 94, 0.4);
  --red: #dc2626;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(26, 18, 14, 0.1);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-py: clamp(3rem, 7vw, 5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-on-dark);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(920px, 92vw);
  margin: 0 auto;
}

.text-accent { color: var(--accent-light); }
.text-red { color: var(--red); }

/* ── Sections ── */
.vsl-section { padding: var(--section-py) 0; }
.vsl-section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.vsl-section--light { background: var(--bg-light); color: var(--text-on-light); }

.eyebrow {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.eyebrow--dark { color: var(--accent); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  text-wrap: balance;
  margin-bottom: 1rem;
}

.section-title--dark { color: var(--text-on-light); }
.section-title--left { text-align: left; }

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
}

.section-lead--dark { color: var(--text-muted-light); }
.section-lead strong { color: inherit; font-weight: 700; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-align: center;
}

.btn--green {
  background: linear-gradient(180deg, #5ee87a 0%, var(--green) 45%, #15803d 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 0 #15803d, 0 12px 32px var(--green-glow);
}

.btn--green:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #15803d, 0 8px 20px var(--green-glow);
}

.btn--green:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px var(--green-glow);
}

.btn--sm { padding: 0.75rem 1.25rem; font-size: 0.82rem; min-height: 46px; }
.btn--lg { padding: 1rem 2.25rem; font-size: 0.95rem; min-height: 54px; margin-top: 2rem; }
.btn--xl { padding: 1.15rem 2.5rem; font-size: 1rem; min-height: 58px; }
.btn--block { width: 100%; max-width: 480px; }

.btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* ── Sticky ── */
.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 8, 6, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-dark);
  padding: 0.65rem 1rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.sticky-bottom.visible { transform: translateY(0); }
.sticky-bottom__inner { max-width: 920px; margin: 0 auto; }
.sticky-bottom .btn--block { max-width: none; }

/* ── Hero (layout referência VSL) ── */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.hero--ref {
  text-align: left;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.hero__accent-bar {
  position: relative;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
}

.hero__brand {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(0.9rem, 2.5vw, 1.25rem) 1rem clamp(0.35rem, 1vw, 0.5rem);
}

.hero__logo {
  width: clamp(64px, 8vw, 80px);
  height: clamp(64px, 8vw, 80px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(232, 98, 10, 0.45);
  margin: 0;
  box-shadow: 0 8px 32px var(--accent-glow);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #060504;
  background-image:
    radial-gradient(ellipse 85% 95% at 78% 38%, rgba(232, 98, 10, 0.32) 0%, rgba(200, 75, 8, 0.14) 38%, transparent 68%),
    radial-gradient(ellipse 50% 45% at 12% 88%, rgba(232, 98, 10, 0.1) 0%, transparent 55%),
    linear-gradient(160deg, #050403 0%, #0f0906 45%, #080605 100%);
}

.hero__stage {
  --hero-pad-x: clamp(1rem, 3vw, 1.5rem);
  --hero-pad-y: clamp(1.75rem, 4vw, 2.85rem);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.22fr);
  gap: clamp(0.35rem, 1.5vw, 1rem);
  align-items: start;
  width: min(1200px, 96vw);
  margin: 0 auto;
  padding: var(--hero-pad-y) var(--hero-pad-x) clamp(1rem, 2.5vw, 1.75rem);
  min-height: clamp(540px, 76vh, 720px);
  overflow: visible;
}

.hero__col--left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  min-height: 0;
  padding-top: 0;
  position: relative;
  z-index: 3;
}

.hero__col--right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 0;
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-left: clamp(-2.5rem, -5vw, -1rem);
  padding-top: 0;
}

.hero__copy {
  flex-shrink: 0;
  max-width: 38rem;
}

.hero__col--left .hero__media {
  flex-shrink: 0;
  width: min(130%, 494px);
  max-width: 494px;
  margin-top: 0.25rem;
  margin-right: clamp(-4.5rem, -10vw, -2rem);
  position: relative;
  z-index: 5;
}

.hero__col--left .hero__media-caption {
  text-align: left;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 0.55rem;
}

.hero__professor {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  line-height: 0;
  overflow: visible;
}

.hero__professor-frame {
  position: relative;
  display: inline-block;
  max-width: 118%;
  margin-right: calc(var(--hero-pad-x) * -0.35);
  border-radius: 0 clamp(18px, 3vw, 26px) clamp(18px, 3vw, 26px) 0;
  border: none;
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.45),
    0 0 72px rgba(232, 98, 10, 0.14);
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

/* Borda só à direita, some em direção à esquerda (como a imagem) */
.hero__professor-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset -1px 0 0 rgba(232, 98, 10, 0.14);
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 18%, rgba(0, 0, 0, 0.55) 42%, #000 62%),
    linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 18%, rgba(0, 0, 0, 0.55) 42%, #000 62%),
    linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero__professor img {
  display: block;
  position: relative;
  z-index: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  min-width: min(380px, 88vw);
  max-height: min(92vh, 780px);
  object-fit: contain;
  object-position: right top;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 10%,
    rgba(0, 0, 0, 0.35) 20%,
    rgba(0, 0, 0, 0.65) 32%,
    rgba(0, 0, 0, 0.88) 44%,
    #000 54%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 10%,
    rgba(0, 0, 0, 0.35) 20%,
    rgba(0, 0, 0, 0.65) 32%,
    rgba(0, 0, 0, 0.88) 44%,
    #000 54%,
    #000 100%
  );
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

.hero__title {
  font-family: 'Inter', var(--font-body), sans-serif;
  font-size: clamp(1.28rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #ffffff;
  margin: 0 0 1.1rem;
  text-wrap: pretty;
}

.hero__title strong {
  font-weight: 700;
  color: #ffffff;
}

.hero__sub {
  font-family: 'Inter', var(--font-body), sans-serif;
  font-size: clamp(0.86rem, 1.5vw, 1rem);
  font-weight: 700;
  font-style: normal;
  color: #b8b4ad;
  max-width: 48ch;
  margin: 0;
  line-height: 1.55;
}

.hero__ba.ba-slider {
  border-radius: clamp(8px, 1.2vw, 12px);
  border: 1px solid rgba(232, 98, 10, 0.4);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(232, 98, 10, 0.12);
}

.hero__foot {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
}

.hero .btn--green { margin-bottom: 0.75rem; }

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted-dark);
}

/* Before/after */
.ba-slider {
  --ba-pos: 50%;
  position: relative;
  display: grid;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  border: 2px solid rgba(232, 98, 10, 0.35);
}

.ba-slider__img {
  display: block;
  width: 100%;
  height: auto;
}

.ba-slider__before {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
}

.ba-slider__after {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--ba-pos));
  pointer-events: none;
}

.ba-slider__after .ba-slider__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  z-index: 3;
  width: 44px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-slider__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(232, 98, 10, 0.45);
}

.ba-slider__knob {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.ba-slider__label {
  position: absolute;
  bottom: 1rem;
  z-index: 4;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  pointer-events: none;
}

.ba-slider__label--before {
  left: 1rem;
  background: rgba(220, 38, 38, 0.85);
  color: #fff;
}

.ba-slider__label--after {
  right: 1rem;
  background: rgba(34, 197, 94, 0.9);
  color: #052e14;
}

/* ── Product showcase ── */
.product-showcase { text-align: center; }

.product-showcase__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(2rem, 5vw, 2.75rem) auto;
  max-width: min(480px, 92vw);
}

.product-showcase__book {
  width: 100%;
  max-width: min(420px, 100%);
  height: auto;
  filter: drop-shadow(0 20px 48px rgba(26, 18, 14, 0.22));
}

.product-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-showcase__item {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(26, 18, 14, 0.06);
}

.product-showcase__item img {
  margin: 0 auto 0.65rem;
}

.product-showcase__item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-on-light);
  margin-bottom: 0.35rem;
}

.product-showcase__item p {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  line-height: 1.45;
}

.product-showcase .btn--green { margin-top: 0.5rem; }

/* ── Problem ── */
.problem { position: relative; }

.problem__clt-badge {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 800;
  color: rgba(220, 38, 38, 0.12);
  text-align: center;
  line-height: 0.85;
  letter-spacing: 0.05em;
  margin-bottom: -1.5rem;
  user-select: none;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.pain-card {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26, 18, 14, 0.06);
}

.pain-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.08);
}

.pain-card__icon .icon--pain { color: var(--red); }

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.pain-card p { font-size: 0.82rem; color: var(--text-muted-light); line-height: 1.45; }

.pain-card--dark {
  background: var(--bg-dark-2);
  border-color: var(--border-dark);
  box-shadow: none;
}

.pain-card--dark p { color: var(--text-muted-dark); }

.problem__story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
  background: var(--bg-card-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 32px rgba(26, 18, 14, 0.08);
}

.problem__story-text p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.problem__story-text p:last-child { margin-bottom: 0; }
.problem__story-text strong { color: var(--text-on-light); font-weight: 700; }

.problem.vsl-section--light .problem__clt-badge {
  color: rgba(220, 38, 38, 0.14);
}

.problem__stats { display: flex; flex-direction: column; gap: 0.75rem; }

.stat-pill {
  background: var(--bg-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  text-align: center;
}

.stat-pill--accent {
  border-color: var(--accent);
  background: rgba(232, 98, 10, 0.08);
}

.stat-pill__n {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-pill--accent .stat-pill__n { color: var(--accent); }

.stat-pill span:last-child {
  font-size: 0.78rem;
  color: var(--text-muted-light);
  margin-top: 0.25rem;
  display: block;
}

.stat-pill--dark {
  background: var(--bg-dark);
  border-color: var(--border-dark);
}

.stat-pill--dark span:last-child { color: var(--text-muted-dark); }

/* ── Transform ── */
.transform { text-align: center; }

.transform__promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.transform__promise {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.35rem 1rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(26, 18, 14, 0.06);
}

.icon--transform {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin: 0 auto 0.65rem;
}

.transform__promise h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-on-light);
  margin-bottom: 0.35rem;
}

.transform__promise p {
  font-size: 0.82rem;
  color: var(--text-muted-light);
  line-height: 1.45;
}

.compare-card--light {
  border-color: var(--border-light);
}

.compare-card--light.compare-card--bad {
  background: rgba(220, 38, 38, 0.06);
}

.compare-card--light.compare-card--good {
  background: rgba(34, 197, 94, 0.06);
}

.compare-card--light li { color: var(--text-muted-light); }

/* ── Authority ── */
.authority { background: var(--bg-dark-2); }

.authority__layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.authority__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.authority__seal {
  width: 140px;
  filter: drop-shadow(0 8px 24px rgba(212, 160, 23, 0.3));
}

.authority__logo {
  border-radius: 50%;
  border: 2px solid rgba(232, 98, 10, 0.4);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.authority__text {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.authority__text strong { color: var(--text-on-dark); }

.check-list--authority { margin-top: 1.25rem; }

/* ── Method ── */
.method { text-align: center; }

.method__brand {
  display: block;
  font-size: clamp(2rem, 6vw, 3.25rem);
  background: linear-gradient(135deg, #ffb347 0%, var(--accent) 50%, #c44d00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 12px var(--accent-glow));
}

.method__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  text-align: left;
  margin: 2rem 0;
}

.method__book {
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.5));
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.check-list li {
  padding-left: 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-left: 0;
}

.check-list li::before { display: none; }

.check-list .icon--check {
  width: 20px;
  height: 20px;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.check-list--brand .icon--check { color: var(--gold-light); }

.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.compare-card {
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border-dark);
}

.compare-card--bad {
  background: rgba(220, 38, 38, 0.08);
  border-top: 4px solid var(--red);
}

.compare-card--good {
  background: rgba(34, 197, 94, 0.08);
  border-top: 4px solid var(--green);
}

.compare-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.compare-card--bad h3 { color: #fca5a5; }
.compare-card--good h3 { color: #86efac; }

.compare-card ul { list-style: none; }

.compare-card li {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}

.compare-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: inherit;
  opacity: 0.6;
}

.method .btn--green { margin-top: 0.5rem; }

/* ── Modules ── */
.module-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.module-card-vsl {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.35rem 1.15rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(26, 18, 14, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.module-card-vsl:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(26, 18, 14, 0.1);
}

.module-card-vsl--highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff 0%, rgba(232, 98, 10, 0.06) 100%);
}

.module-card-vsl__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.65rem;
}

.icon-wrap--module {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  background: rgba(232, 98, 10, 0.1);
}

.module-card-vsl--highlight .icon-wrap--module {
  background: rgba(232, 98, 10, 0.18);
}

.module-card-vsl h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-on-light);
  margin-bottom: 0.4rem;
}

.module-card-vsl p {
  font-size: 0.82rem;
  color: var(--text-muted-light);
  line-height: 1.45;
}

/* ── Bonuses ── */
.bonus-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.bonus-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--bg-card-light);
  color: var(--text-on-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.bonus-row__media {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: var(--radius);
  color: var(--accent);
}

.bonus-row__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-dark);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

.bonus-row h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.bonus-row p { font-size: 0.88rem; color: var(--text-muted-light); }

.bonus-row__price {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.bonus-row__price s { color: var(--red); margin-right: 0.5rem; }
.bonus-row__price strong { color: var(--green-dark); font-size: 1.1rem; }

.bonus-row__value-label {
  font-size: 0.78rem;
  color: var(--text-muted-light);
  margin-right: 0.35rem;
}

.bonus-row--highlight {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #fff 0%, rgba(232, 98, 10, 0.06) 100%);
}

.bonus-row__media img { display: block; }

/* ── Content peek ── */
.content-peek { text-align: center; background: var(--bg-dark-2); }

.content-peek__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.content-peek__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--ease);
}

.content-peek__tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.icon--star {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  color: var(--gold);
  stroke: var(--gold);
}

.content-peek__item:hover { transform: translateY(-4px); }

.content-peek__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Testimonials ── */
.testimonials { text-align: center; position: relative; }

.testimonials__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.testimonials__nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card-light);
  color: var(--text-on-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.testimonials__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.testimonials__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.testimonials__track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 8px 24px rgba(26, 18, 14, 0.08);
}

.testimonial-card__quote {
  font-size: 0.92rem;
  color: var(--text-muted-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-on-light);
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--text-muted-light);
}

/* ── Urgency ── */
.vsl-section--accent {
  background: linear-gradient(135deg, #1a0f08 0%, #2d1a0a 50%, #1a0f08 100%);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.urgency__inner { text-align: center; }

.urgency__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.icon--urgency { width: 18px; height: 18px; }

.urgency__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.urgency__text {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.urgency__text strong { color: var(--text-on-dark); }

.urgency__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.urgency__timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  min-width: 72px;
}

.urgency__timer-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.urgency__timer-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-dark);
  margin-top: 0.2rem;
}

.urgency__timer-sep {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-light);
}

/* ── Offer ── */
.offer-vsl__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.offer-vsl__img {
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(26, 18, 14, 0.15);
}

.offer-vsl__box {
  background: var(--bg-card-light);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px var(--accent-glow);
}

.offer-vsl__list {
  list-style: none;
  padding: 1rem 1.25rem;
}

.offer-vsl__list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--text-on-light);
}

.offer-vsl__list li span:first-child {
  text-align: left;
}

.offer-vsl__list li span:last-child {
  color: var(--text-muted-light);
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}

.offer-vsl__list li.is-bonus span:first-child { color: var(--accent); font-weight: 600; }

.offer-vsl__total {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted-light);
  border-top: 1px dashed var(--border-light);
}

.offer-vsl__strike {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: var(--red);
}

.offer-vsl__today {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 1.5rem;
  text-align: center;
}

.offer-vsl__label { font-size: 0.85rem; color: var(--text-muted-dark); }

.offer-vsl__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  margin: 0.25rem 0;
}

.offer-vsl__install-prefix {
  font-size: clamp(0.95rem, 2.8vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted-dark);
}

.offer-vsl__amount {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12rem;
  color: var(--green);
}

.offer-vsl__currency {
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  opacity: 0.9;
}

.offer-vsl__value {
  font-size: clamp(2.85rem, 9vw, 4rem);
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px var(--green-glow);
}

.offer-vsl__cents {
  font-size: 0.92em;
}

.offer-vsl__install { font-size: 0.88rem; color: var(--text-muted-dark); }

.offer-vsl__cash {
  font-weight: 700;
  color: var(--text-on-dark);
}
.offer-vsl__roi { font-size: 0.82rem; color: var(--accent-light); margin: 0.75rem 0 1.25rem; }

.offer-vsl__today .btn--block { max-width: none; margin: 0 auto; }

.offer-vsl__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted-dark);
}

.offer-vsl__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.offer-vsl__trust .icon { color: var(--green); }

/* ── Lucide icons ── */
.icon {
  display: block;
  stroke-width: 2;
  flex-shrink: 0;
}

.icon--xs { width: 16px; height: 16px; }
.icon--pain { width: 26px; height: 26px; }
.icon--module { width: 32px; height: 32px; color: var(--accent); }
.icon--bonus { width: 36px; height: 36px; }
.icon--guarantee { width: 64px; height: 64px; stroke-width: 1.75; }

.hero__trust .icon { display: inline-block; vertical-align: -0.2em; color: var(--green); margin-right: 0.15rem; }

/* ── Guarantee ── */
.guarantee { background: var(--bg-dark-2); }

.guarantee-box {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: rgba(232, 98, 10, 0.1);
  border: 1px solid rgba(232, 98, 10, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
}

.guarantee-box__seal {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2) 0%, rgba(232, 98, 10, 0.15) 100%);
  border: 3px solid var(--gold);
  color: var(--gold-light);
}

.guarantee-box__days {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.guarantee-box__days-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.guarantee-box__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.guarantee-box p { font-size: 0.92rem; color: var(--text-muted-dark); line-height: 1.55; }

.faq-vsl__heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.25rem;
}

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

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.1rem 2rem 1.1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item__question:hover { color: var(--accent-light); }

.faq-item__question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent-light);
  flex-shrink: 0;
  transition: transform 0.25s;
}

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

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 200px;
  padding-bottom: 1rem;
}

.faq-item__answer p { font-size: 0.88rem; color: var(--text-muted-dark); line-height: 1.55; }

.faq-section { background: var(--bg-dark); padding-top: 0; }

.faq-section .section-lead { margin-bottom: 1.5rem; }

/* ── Final CTA ── */
.final-cta { text-align: center; }

.final-cta__logo {
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(232, 98, 10, 0.4);
}

.final-cta__recap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  background: var(--bg-card-light);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 1.5rem auto;
  max-width: 520px;
  font-size: 0.92rem;
  color: var(--text-on-light);
}

.final-cta__recap s {
  color: var(--red);
  margin-right: 0.35rem;
}

.final-cta__recap-price strong {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.final-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted-light);
  margin-top: 1rem;
}

.final-cta__trust .icon { color: var(--green-dark); display: inline-block; vertical-align: -0.2em; }

.final-cta .btn--block { margin: 0 auto; }

/* ── Footer ── */
.footer-vsl {
  padding: 2.5rem 0 6rem;
  text-align: center;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
}

.footer-vsl__logo {
  margin: 0 auto 1rem;
  border-radius: 50%;
  opacity: 0.9;
}

.footer-vsl__tagline {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  max-width: 420px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.footer-vsl__legal {
  font-size: 0.72rem;
  color: var(--text-muted-dark);
  opacity: 0.6;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.stagger-grid > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.stagger-grid.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-grid.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-grid.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-grid.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-grid.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-grid.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-grid.visible > * { opacity: 1; transform: translateY(0); }

/* ── Exit modal ── */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.exit-modal.is-open { opacity: 1; visibility: visible; }
.exit-modal[hidden] { display: none; }
.exit-modal:not([hidden]) { display: flex; }

.exit-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 6, 0.9);
  backdrop-filter: blur(6px);
}

.exit-modal__box {
  position: relative;
  width: min(440px, 100%);
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transform: scale(0.94);
  transition: transform 0.35s var(--ease);
}

.exit-modal.is-open .exit-modal__box { transform: scale(1); }

.exit-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--text-muted-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

.exit-modal__logo {
  margin: 0 auto 1rem;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.exit-modal__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.exit-modal__text {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  text-align: left;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.exit-modal__text strong { color: var(--text-on-dark); }

.exit-modal__cta { max-width: none; margin-bottom: 0.75rem; }

.exit-modal__dismiss {
  background: none;
  border: none;
  color: var(--text-muted-dark);
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.7;
}

/* ── Referência VSL: marca ACV ── */
.brand-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  text-align: left;
}

.brand-hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 28vw, 14rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, rgba(240, 192, 64, 0.22) 0%, rgba(212, 160, 23, 0.06) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
}

.brand-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.brand-hero__mockup {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.brand-hero__book {
  max-width: 200px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.55));
}

.brand-hero__kit {
  max-width: 280px;
  margin-left: -2rem;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
}

/* ── Membership cards (referência) ── */
.membership-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.membership-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 32px rgba(26, 18, 14, 0.1);
}

.membership-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.membership-card--clt .membership-card__header {
  background: linear-gradient(180deg, #991b1b 0%, #7f1d1d 100%);
  color: #fff;
}

.membership-card--acv .membership-card__header {
  background: linear-gradient(180deg, #166534 0%, #14532d 100%);
  color: #fff;
}

.membership-card__header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.icon--membership { width: 22px; height: 22px; }

.membership-card__list {
  list-style: none;
  padding: 1.15rem 1.25rem;
  background: var(--bg-card-light);
}

.membership-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--text-muted-light);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border-light);
}

.membership-card__list li:last-child { border-bottom: none; }

.icon--list { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 0.1rem; }
.icon--list-yes { color: var(--green-dark); }

/* ── Bônus empilhados (referência) ── */
.bonuses-vsl .container,
.bonus-stack-ref {
  overflow: visible;
}

.bonus-stack-ref {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 520px;
  margin: 0 auto;
  padding-top: 1.25rem;
}

.bonus-card-ref {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--text-on-light);
  border: 2px solid #c41e1e;
  border-radius: 12px;
  padding: 2.25rem 1.5rem 0;
  text-align: center;
  overflow: visible;
  box-shadow:
    0 4px 0 rgba(196, 30, 30, 0.15),
    0 16px 40px rgba(0, 0, 0, 0.4);
}

.bonus-card-ref__ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.15rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.45);
  white-space: nowrap;
}

.bonus-card-ref__body {
  flex: 1;
  padding-bottom: 1.25rem;
}

.bonus-card-ref__icon-wrap {
  width: 100%;
  margin: 0 auto 1.15rem;
  padding: 1.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #faf7f2 0%, #efe9e0 100%);
  border: 1px solid rgba(26, 18, 14, 0.06);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.bonus-card-ref__icon-wrap .icon--bonus-lg {
  width: 52px;
  height: 52px;
  stroke-width: 1.65;
  color: var(--accent);
  filter: drop-shadow(0 2px 8px rgba(232, 98, 10, 0.25));
}

.icon--bonus-lg { width: 52px; height: 52px; stroke-width: 1.65; }

.bonus-card-ref h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--text-on-light);
  margin-bottom: 0.55rem;
  padding: 0 0.25rem;
}

.bonus-card-ref__desc {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.55;
  max-width: 36ch;
  margin: 0 auto;
}

.bonus-card-ref__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 -1.5rem;
  padding: 0.85rem 1.25rem;
  background: #f3f1ed;
  border-top: 1px solid rgba(26, 18, 14, 0.08);
  border-radius: 0 0 10px 10px;
}

.bonus-card-ref__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bonus-card-ref__old {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.bonus-card-ref__free {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  text-transform: uppercase;
}

.bonus-card-ref__free--solo {
  font-size: 1.05rem;
  color: var(--accent);
  width: 100%;
}

.bonus-card-ref--highlight {
  border-color: var(--accent);
  box-shadow:
    0 4px 0 rgba(232, 98, 10, 0.2),
    0 16px 40px rgba(0, 0, 0, 0.4);
}

.bonus-card-ref--highlight .bonus-card-ref__ribbon {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.bonus-card-ref--highlight .bonus-card-ref__icon-wrap {
  background: linear-gradient(180deg, #fff8f0 0%, #ffedd5 100%);
  border-color: rgba(232, 98, 10, 0.15);
}

.bonus-card-ref--highlight .bonus-card-ref__footer--accent {
  background: rgba(232, 98, 10, 0.08);
  border-top-color: rgba(232, 98, 10, 0.2);
}

/* ── Oferta: headline ── */
.offer-vsl__headline {
  line-height: 1.25;
}

.offer-vsl__headline-strike {
  display: inline-block;
  font-size: 0.92em;
  color: var(--red);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--red);
  opacity: 0.95;
}

.offer-vsl__headline-today {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--text-muted-light);
}

.offer-vsl__headline-today strong {
  font-family: var(--font-display);
  font-size: 1.15em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-dark);
}

.offer-vsl__headline-or {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--text-on-light);
}

/* ── Oferta: stack + passos numerados ── */
.offer-vsl__stack {
  text-align: center;
  margin-bottom: 2rem;
}

.offer-vsl__stack-img {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(26, 18, 14, 0.18);
}

.offer-vsl__stack-caption {
  max-width: 36rem;
  margin: clamp(1rem, 2.5vw, 1.35rem) auto 0;
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  line-height: 1.55;
  color: var(--text-muted-light);
}

.offer-vsl__stack-caption strong {
  color: var(--text-on-light);
  font-weight: 700;
}

.offer-steps {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 4px 16px rgba(26, 18, 14, 0.06);
}

.offer-step__n {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
}

.offer-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-on-light);
  margin-bottom: 0.25rem;
}

.offer-step p {
  font-size: 0.86rem;
  color: var(--text-muted-light);
  line-height: 1.45;
}

.offer-vsl__box--full {
  max-width: 560px;
  margin: 0 auto;
}

.offer-vsl__box--full::before {
  content: 'OFERTA ESPECIAL';
  display: block;
  background: linear-gradient(90deg, var(--gold) 0%, var(--accent-light) 100%);
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 0.55rem;
}

.offer-vsl__layout:has(.offer-vsl__box--full) {
  grid-template-columns: 1fr;
}

/* ── Garantia faixa laranja ── */
.guarantee-banner {
  background: linear-gradient(90deg, #c2410c 0%, var(--accent) 50%, #ea580c 100%);
  padding: 2rem 0;
  color: #fff;
}

.guarantee-banner__inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.guarantee-banner__seal {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.guarantee-banner__days {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.guarantee-banner__label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.icon--banner-seal {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

.guarantee-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.guarantee-banner p {
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.95;
}

.guarantee-banner p strong { font-weight: 800; }

/* ── Ícones extras ── */
.icon-wrap--feature {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  background: rgba(232, 98, 10, 0.1);
}

.icon--feature { width: 28px; height: 28px; color: var(--accent); }

.icon--authority-seal {
  width: 56px;
  height: 56px;
  color: var(--gold-light);
}

.authority__seal {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.25) 0%, rgba(232, 98, 10, 0.12) 100%);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.authority__seal img { display: none; }

/* FAQ estilo referência */
.faq-item {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-item { border-bottom: none; }

.faq-list { max-width: 720px; }

.module-card-vsl__tag {
  background: var(--red);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .reveal, .stagger-grid > * { opacity: 1; transform: none; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__stage {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.25rem;
  }

  .hero__col--right {
    margin-left: 0;
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
  }

  .hero__professor {
    justify-content: center;
  }

  .hero__professor-frame {
    max-width: 100%;
    margin-right: 0;
    border-radius: clamp(14px, 3vw, 20px);
  }

  .hero__professor-frame::after {
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 25%, #000 55%),
      linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 25%, #000 55%),
      linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  }

  .hero__professor img {
    min-width: 0;
    max-height: min(58vh, 480px);
    object-position: center top;
  }


  .hero__col--left .hero__media {
    width: 100%;
    max-width: min(100%, 442px);
    margin-right: 0;
  }

  .hero__title {
    font-size: clamp(1.15rem, 4vw, 1.55rem);
  }

  .pain-grid,
  .product-showcase__grid,
  .transform__promises { grid-template-columns: repeat(2, 1fr); }
  .module-cards { grid-template-columns: repeat(2, 1fr); }
  .problem__story,
  .offer-vsl__layout,
  .membership-cards,
  .brand-hero__layout,
  .authority__layout { grid-template-columns: 1fr; }
  .authority__visual { flex-direction: row; justify-content: center; }
  .guarantee-banner__inner { flex-direction: column; text-align: center; }
  .section-title--left { text-align: center; }
  .brand-hero__mockup { min-height: auto; }
}

@media (max-width: 600px) {
  .hero__stage {
    padding-top: 1.25rem;
  }

  .hero__col--left {
    gap: 1rem;
  }

  .hero__col--left .hero__media {
    max-width: 100%;
    margin-right: 0;
  }

  .hero__professor-frame {
    border-radius: 14px;
  }

  .hero__professor img {
    max-height: min(50vh, 400px);
  }

  .pain-grid,
  .module-cards,
  .membership-cards,
  .product-showcase__grid,
  .transform__promises { grid-template-columns: 1fr; }
  .content-peek__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-showcase__visual,
  .brand-hero__mockup { flex-direction: column; align-items: center; }
  .brand-hero__kit { margin-left: 0; }
  .testimonials__controls { justify-content: center; }
}
