/* =========================================================
   WORKSHOP IA PARA ADVOGADOS — STYLE
   v2: tipografia reduzida, spacing compacto, hero portrait sem container
   ========================================================= */

:root {
  /* Backgrounds */
  --bg-dark: #0a0a0a;
  --bg-dark-2: #111111;
  --bg-cream: #ECE6D3;
  --bg-cream-2: #E2DCC8;

  /* Brand */
  --lime: #D4F060;
  --lime-glow: rgba(212, 240, 96, 0.35);
  --lime-soft: #E8F5A0;
  --sage: #7E8260;
  --sage-soft: #C5C896;
  --pink-soft: #F0CFE0;
  --yellow-soft: #F4F0A8;
  --highlight-mark: #F2F2A8;

  /* Top bar */
  --top-bar-bg: #C62828;
  --top-cta-bg: #F5A623;
  --top-cta-text: #0a0a0a;

  /* Text */
  --text-light: #F5F1E6;
  --text-light-2: #C9C5B8;
  --text-dark: #0F0F0F;
  --text-dark-2: #4A4A42;
  --text-muted: #8A8676;

  /* Fonts */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --pad-y-section: clamp(48px, 6vw, 96px);
  --container-max: 1180px;
  --container-narrow: 800px;
  --radius-card: 16px;
  --radius-cta: 999px;
}

/* =========================================================
   RESET + BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 40px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

mark {
  background: var(--highlight-mark);
  color: var(--text-dark);
  padding: 0.05em 0.25em;
  border-radius: 3px;
}

.mk-lime    { background: var(--lime-soft); }
.mk-yellow  { background: var(--yellow-soft); }
.mk-pink    { background: var(--pink-soft); }
.mk-sage    { background: var(--sage-soft); color: var(--text-dark); }

em.subtle-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

.dark em.subtle-italic { color: var(--text-light-2); }

.block { display: block; }
.italic { font-style: italic; }

/* =========================================================
   TOP MARQUEE BAR
   ========================================================= */
.top-bar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 40px;
  background: var(--top-bar-bg);
  color: #fff;
  display: flex;
  align-items: center;
  z-index: 100;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.top-cta {
  background: var(--top-cta-bg);
  color: var(--top-cta-text);
  height: 100%;
  padding: 0 22px;
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  transition: filter 0.2s ease;
  flex-shrink: 0;
}

.top-cta:hover { filter: brightness(1.08); }

/* =========================================================
   GENERIC LAYOUT
   ========================================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow { max-width: var(--container-narrow); }

.pad-y { padding-block: var(--pad-y-section); }

.dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.center        { text-align: center; }
.center-tight  { text-align: center; max-width: 820px; margin: 0 auto; }
.center-block  { text-align: center; }

.mt-sm   { margin-top: 10px; }
.mt-md   { margin-top: 18px; }
.mt-lg   { margin-top: 26px; }
.mt-xl   { margin-top: 40px; }
.mt-xxl  { margin-top: 60px; }

.light       { color: var(--text-light); }
.sage-text   { color: var(--sage); }
.lime-text   { color: var(--lime); }

/* =========================================================
   TYPOGRAPHY (display)
   ========================================================= */
.display-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.huge-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  font-style: italic;
  color: var(--text-dark);
  max-width: 720px;
  margin: 0 auto;
}

.word-display {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(48px, 10vw, 140px);
  letter-spacing: 0.16em;
  line-height: 1;
  margin-top: 28px;
}

.mega-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--text-light);
}

.medium-promise {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
}

.sub {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--text-dark-2);
  max-width: 680px;
  margin-inline: auto;
}

.dark .sub { color: var(--text-light-2); }

.narrow-text { max-width: 620px; }

.lead {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.dark .lead { color: var(--text-light); }

.mini-rule {
  border: 0;
  width: 70px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(0,0,0,0.25);
}

/* =========================================================
   CTA BUTTONS
   ========================================================= */
.cta-lime {
  display: inline-block;
  background: var(--lime);
  color: var(--text-dark);
  padding: 16px 32px;
  border-radius: var(--radius-cta);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 0 40px var(--lime-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-lime:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--lime-glow), 0 10px 24px rgba(0,0,0,0.2);
}

.cta-hero {
  display: inline-block;
  min-width: 280px;
  text-align: center;
  margin-top: 28px;
}

.cta-md  { padding: 15px 28px; font-size: 13px; }
.cta-xl  { padding: 19px 40px; font-size: 15px; min-width: 300px; text-align: center; }

.cta-dark {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--lime);
  padding: 16px 32px;
  border-radius: var(--radius-cta);
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--lime);
  transition: background 0.2s ease, color 0.2s ease;
}

.cta-dark:hover {
  background: var(--lime);
  color: var(--text-dark);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--bg-dark);
  color: var(--text-light);
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: 70vh;
}

.hero-left { padding-block: 40px; }

.hero-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 36px;
  font-family: var(--font-display);
  color: var(--text-light);
}

.logo-eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.32em;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light-2);
}

.logo-main {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1;
  letter-spacing: -0.01em;
}

.logo-main em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-light-2);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.022em;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-light-2);
}

.hero-sub {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--text-light-2);
  margin-top: 26px;
  max-width: 480px;
}

.hero-progress {
  margin-top: 30px;
  max-width: 380px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light-2);
}

.progress-percent { color: var(--lime); }

.progress-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 999px;
}

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  padding-block: 40px;
}

.hero-date {
  font-family: var(--font-display);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.date-main {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
}

.date-time {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--text-light-2);
  font-weight: 300;
}

/* HERO PORTRAIT — background-image, sem <img>, sem chance de alt text */
.hero-portrait {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 896 / 1191;          /* proporção real da herodesktop.png */
  background-image: url('herodesktop.png');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

/* sticker bar abaixo do hero */
.sticker-bar {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  padding: 16px 0;
}

.sticker-track {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-light-2);
}

.sticker-track i {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-light-2);
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.two-col,
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gap-xl { gap: 44px; }

/* =========================================================
   CALLOUTS
   ========================================================= */
.callout {
  padding: 22px 26px;
  border-radius: 10px;
  margin: 22px 0;
  font-size: 15px;
  line-height: 1.45;
}

.callout p + p { margin-top: 10px; }

.callout-lime { background: var(--lime-soft); }
.callout-pink { background: var(--pink-soft); }
.callout-sage {
  background: var(--sage);
  color: var(--text-light);
}

.callout-sage strong { color: var(--text-light); }
.callout-sage .italic { color: rgba(255,255,255,0.85); }

/* =========================================================
   NUM CARDS (grid 3x2)
   ========================================================= */
.num-card {
  background: rgba(212, 240, 96, 0.04);
  border: 1px solid rgba(212, 240, 96, 0.16);
  border-radius: var(--radius-card);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.num-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 240, 96, 0.4);
}

.num-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.num-card .num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  color: var(--text-light);
}

.num-card .check {
  width: 24px;
  height: 24px;
  border: 1.2px solid var(--lime);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 12px;
}

.num-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-light);
}

.num-card p {
  font-size: 13.5px;
  color: var(--text-light-2);
  line-height: 1.55;
}

/* =========================================================
   CREAM INTRO + URGÊNCIA
   ========================================================= */
.cream-intro {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.4;
  color: var(--text-dark);
}

/* =========================================================
   BIG WORD
   ========================================================= */
.big-word {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin: 32px 0;
}

.big-word .italic {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  color: var(--text-light-2);
}

.lime-word {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 130px);
  font-weight: 400;
  color: var(--lime);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.lime-word-inline {
  font-family: var(--font-display);
  color: var(--lime);
}

/* =========================================================
   SITUATION CARDS
   ========================================================= */
.situation-card {
  border-radius: var(--radius-card);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
}

.sit-white  { background: #F7F2E2; color: var(--text-dark); }
.sit-yellow { background: #E5E69B; color: var(--text-dark); }
.sit-sage   { background: #97987A; color: var(--text-light); }
.sit-cream  { background: #EAE599; color: var(--text-dark); }

.sit-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sit-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: rgba(0,0,0,0.2);
  line-height: 1;
}

.sit-sage .sit-num { color: rgba(255,255,255,0.28); }

.sit-icon {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.08);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.sit-sage .sit-icon { background: rgba(255,255,255,0.18); color: #fff; }

.situation-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.18;
}

.situation-card p {
  font-size: 13.5px;
  line-height: 1.6;
  opacity: 0.88;
}

/* =========================================================
   PROGRAM CARDS
   ========================================================= */
.program-card {
  background: rgba(212, 240, 96, 0.03);
  border: 1px solid rgba(212, 240, 96, 0.2);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.program-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 6px;
}

.program-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--lime);
  text-transform: uppercase;
}

.program-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 12px;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 999px;
  text-transform: uppercase;
}

.program-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  color: var(--text-light);
  margin: 6px 0 8px;
}

.program-card > p {
  color: var(--text-light-2);
  font-size: 14px;
  line-height: 1.6;
}

.program-subhead {
  margin-top: 20px;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--lime);
  text-transform: uppercase;
}

.program-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(212, 240, 96, 0.12);
}

.program-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--text-light-2);
  line-height: 1;
}

.program-item h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.program-item p {
  color: var(--text-light-2);
  font-size: 13px;
  line-height: 1.55;
}

/* =========================================================
   CRONOGRAMA
   ========================================================= */
.schedule {
  border: 1px solid rgba(212, 240, 96, 0.22);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  text-align: left;
}

.schedule-date {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-light-2);
  letter-spacing: 0.04em;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.schedule-item {
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--lime);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-label {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-light);
}

.schedule-time {
  font-size: 12px;
  color: var(--text-light-2);
  letter-spacing: 0.08em;
}

/* =========================================================
   BÔNUS VMA+
   ========================================================= */
.bonus-section {
  background: radial-gradient(ellipse at top, #181818 0%, var(--bg-dark) 70%);
  border-top: 1px solid rgba(212, 240, 96, 0.1);
  border-bottom: 1px solid rgba(212, 240, 96, 0.1);
}

.vma-brand {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--lime);
  position: relative;
}

.vma-plus {
  font-weight: 400;
  font-size: 0.7em;
  vertical-align: super;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  background: rgba(212, 240, 96, 0.06);
  border: 1px solid rgba(212, 240, 96, 0.22);
  border-radius: var(--radius-card);
  padding: 30px 24px;
}

.bonus-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.bonus-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.18;
  margin-bottom: 12px;
}

.bonus-card p {
  color: var(--text-light-2);
  font-size: 13.5px;
  line-height: 1.6;
}

.bonus-tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: var(--text-light);
}

/* =========================================================
   DEPOIMENTOS — marquee infinito
   ========================================================= */
.testi-section { padding-bottom: calc(var(--pad-y-section) + 12px); }

.small-note {
  font-size: 13px;
  color: var(--text-muted);
}

.testi-marquee {
  width: 100%;
  overflow: hidden;
  /* fade nas pontas pra dar a sensação de "passando" */
  -webkit-mask-image: linear-gradient(
    90deg, transparent 0%, #000 6%, #000 94%, transparent 100%
  );
          mask-image: linear-gradient(
    90deg, transparent 0%, #000 6%, #000 94%, transparent 100%
  );
}

.testi-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testi-scroll 70s linear infinite;
  padding: 4px 0;       /* respiro pro hover lift */
}

.testi-marquee:hover .testi-track {
  animation-play-state: paused;
}

@keyframes testi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-card {
  flex: 0 0 300px;
  height: 440px;
  border-radius: 14px;
  overflow: hidden;
  background: #0e1418;          /* combina com prints de WhatsApp dark */
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}

.testi-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* =========================================================
   OFERTA — single workshop + order bump
   ========================================================= */
.single-offer {
  max-width: 720px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.offer-main {
  background: rgba(212, 240, 96, 0.04);
  border-color: rgba(212, 240, 96, 0.35);
}

.offer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.offer-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--lime);
}

.offer-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-light-2);
}

.offer-pill {
  display: inline-block;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  text-transform: uppercase;
  flex-shrink: 0;
}

.offer-pill-lime {
  background: var(--lime);
  color: var(--text-dark);
}

.offer-desc {
  color: var(--text-light-2);
  font-size: 14px;
  line-height: 1.55;
}

.offer-price {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-light-2);
  font-weight: 300;
  margin-top: 14px;
}

.price-value {
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 80px);
  font-weight: 300;
  line-height: 0.85;
  color: var(--text-light);
  display: inline-flex;
  align-items: baseline;
}

.price-value small {
  font-size: 0.42em;
  font-weight: 400;
  color: var(--text-light-2);
  margin-left: 2px;
}

.price-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 14px;
}

.price-meta span:first-child {
  font-size: 15px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-light);
}

.price-installments {
  font-size: 12px;
  color: var(--text-light-2);
}

.offer-progress { margin-top: 4px; }

.offer-progress-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-light-2);
  margin-bottom: 6px;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.offer-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: flex-start;
}

.check-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.offer-list strong {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 3px;
}

.offer-list span {
  display: block;
  font-size: 12.5px;
  color: var(--text-light-2);
}

.offer-cta {
  display: inline-block;
  text-align: center;
  padding: 18px;
  border-radius: var(--radius-cta);
  font-weight: 700;
  font-size: 15px;
  margin-top: 10px;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.offer-cta-main {
  background: var(--lime);
  color: var(--text-dark);
  box-shadow: 0 0 32px var(--lime-glow);
}

.offer-cta:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* ORDER BUMP — replay */
.bump-card {
  background: repeating-linear-gradient(
    -45deg,
    rgba(245, 166, 35, 0.06),
    rgba(245, 166, 35, 0.06) 12px,
    rgba(245, 166, 35, 0.10) 12px,
    rgba(245, 166, 35, 0.10) 24px
  );
  border: 1.5px dashed rgba(245, 166, 35, 0.45);
  border-radius: 14px;
  padding: 22px 26px;
}

.bump-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background: var(--top-cta-bg);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.16em;
  border-radius: 4px;
  margin-bottom: 14px;
}

.bump-icon {
  display: inline-block;
  font-size: 9px;
}

.bump-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.bump-content h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--text-light);
  margin-bottom: 6px;
  line-height: 1.2;
}

.bump-content p {
  font-size: 13.5px;
  color: var(--text-light-2);
  line-height: 1.5;
}

.bump-content strong { color: var(--text-light); }

.bump-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
  flex-shrink: 0;
}

.bump-plus {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--top-cta-bg);
  line-height: 1;
}

.bump-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1;
}

.bump-note {
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--text-light-2);
  margin-top: 4px;
}

/* =========================================================
   ANCORAGEM
   ========================================================= */
.anchor-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.anchor-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-light);
}

.anchor-tagline {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--lime);
}

/* =========================================================
   BIO VICTÓRIA (dark version)
   ========================================================= */
.bio-section { padding-bottom: 36px; }

.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 48px;
  align-items: center;
}

.bio-photo { display: flex; flex-direction: column; gap: 16px; }

.bio-img {
  width: 100%;
  aspect-ratio: 896 / 1191;
  background-image: url('herodesktop.png');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.bio-img.hero-img-desktop { display: block; }
.bio-img.hero-img-mobile  { display: none;  }

.bio-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-light-2);
  font-size: 13px;
}

.bio-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}

.bio-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  color: var(--text-light);
}

.bio-body {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--text-light);
}

/* NÚMEROS (mesma seção dark) */
.bio-numbers-section {
  padding-top: 0;
  padding-bottom: var(--pad-y-section);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  background: rgba(212, 240, 96, 0.04);
  border: 1px solid rgba(212, 240, 96, 0.18);
  border-radius: var(--radius-card);
  padding: 36px 24px;
  color: var(--text-light);
}

.num-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 0 10px;
}

.num-box:last-child { border-right: none; }

.num-big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 44px);
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.02em;
}

.num-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light-2);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid rgba(0,0,0,0.18);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.18);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  text-align: left;
  color: var(--text-dark);
  gap: 18px;
  transition: opacity 0.2s ease;
}

.faq-q:hover { opacity: 0.7; }

.faq-plus {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 400;
  font-family: var(--font-body);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
  background: var(--lime);
  border-color: var(--lime);
}

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

.faq-a p {
  padding: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-dark-2);
  max-width: 620px;
}

.faq-item.open .faq-a { max-height: 400px; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta { padding-block: 80px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 56px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
}

.logo-main-sm {
  font-size: 20px;
  letter-spacing: -0.01em;
}

.logo-main-sm em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-light-2);
}

.footer-meta {
  font-size: 13px;
  color: var(--text-light-2);
}

.footer-credits {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox.open {
  display: flex;
  animation: lbfade 0.2s ease;
}

@keyframes lbfade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(5, 1fr); padding: 28px 16px; gap: 4px; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */
@media (max-width: 768px) {
  body { padding-top: 36px; }
  .top-bar { height: 36px; font-size: 10px; }
  .top-cta { font-size: 10px; padding: 0 14px; }

  .hero { padding-top: 24px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }

  .hero-left { padding-block: 20px 0; order: 2; }
  .hero-right {
    order: 1;
    align-items: center;
    padding-block: 12px 0;
    flex-direction: column-reverse;
    gap: 14px;
  }
  .hero-right .hero-date {
    text-align: center;
    width: 100%;
  }
  .hero-portrait {
    max-width: 280px;
    margin: 0 auto;
    background-image: url('heromobile.png');
    aspect-ratio: 360 / 480;
  }

  .bio-img {
    background-image: url('heromobile.png');
    aspect-ratio: 360 / 480;
  }

  .hero-logo { margin-bottom: 20px; gap: 0; }
  .logo-main { font-size: 22px; }

  .hero-headline { font-size: clamp(28px, 8vw, 36px); }
  .hero-sub { margin-top: 18px; font-size: 14px; }

  .cta-hero { width: 100%; min-width: 0; padding: 16px; margin-top: 22px; }
  .cta-xl { width: 100%; min-width: 0; padding: 17px; }
  .cta-lime, .cta-dark, .cta-md { padding: 14px 22px; font-size: 13px; }

  .hero-progress { margin-top: 22px; max-width: 100%; }

  .two-col,
  .grid-2,
  .grid-3,
  .bio-grid,
  .bonus-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* marquee — cards menores no mobile */
  .testi-card { flex: 0 0 240px; height: 340px; border-radius: 12px; }
  .testi-track { gap: 14px; animation-duration: 50s; }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 26px 16px;
  }
  .num-box {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 16px;
  }
  .num-box:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  .num-box:last-child { grid-column: span 2; }

  .display-h2 { font-size: clamp(24px, 7vw, 34px); }
  .word-display { font-size: clamp(40px, 14vw, 80px); letter-spacing: 0.1em; margin-top: 18px; }
  .mega-display { font-size: clamp(32px, 10vw, 48px); }
  .medium-promise { font-size: 16px; }
  .huge-display { font-size: clamp(20px, 6vw, 28px); }

  .big-word { flex-direction: column; gap: 4px; margin: 24px 0; }
  .lime-word { font-size: clamp(52px, 16vw, 90px); }

  .program-card,
  .offer-card,
  .bonus-card,
  .num-card,
  .situation-card { padding: 22px 18px; }

  .num-card .num { font-size: 32px; }
  .num-card h3 { font-size: 18px; }

  .situation-card { min-height: auto; }

  .schedule { padding: 22px 18px; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .schedule-item { padding: 12px 14px; }

  .pad-y { padding-block: 48px; }

  .container,
  .container.narrow { padding: 0 18px; }

  .callout { padding: 18px 18px; font-size: 14px; margin: 16px 0; }

  .program-item { grid-template-columns: 40px 1fr; gap: 10px; padding: 12px 0; }
  .program-num { font-size: 20px; }
  .program-item h4 { font-size: 15px; }
  .program-item p { font-size: 12.5px; }

  .program-title { font-size: 20px; }
  .program-card > p { font-size: 13.5px; }

  .price-value { font-size: 56px; }
  .price-meta span:first-child { font-size: 14px; }
  .price-installments { font-size: 11px; }

  .single-offer { gap: 14px; margin-top: 36px; }

  .offer-card { padding: 26px 22px; gap: 14px; }
  .offer-title { font-size: 20px; }
  .offer-list strong { font-size: 13.5px; }
  .offer-list span { font-size: 12px; }

  .bump-card { padding: 18px 18px; }
  .bump-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bump-price {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }
  .bump-plus { font-size: 16px; }
  .bump-value { font-size: 26px; }
  .bump-note { width: 100%; margin-top: 2px; }
  .bump-content h4 { font-size: 17px; }
  .bump-content p { font-size: 13px; }

  .bonus-tagline { font-size: 17px; }

  .bio-grid { gap: 28px; }
  .bio-photo { max-width: 280px; margin: 0 auto; }
  .bio-caption { text-align: center; }
  .bio-headline { font-size: clamp(22px, 6vw, 28px); }
  .bio-body { font-size: 14px; }

  .faq-q { font-size: 15px; padding: 18px 0; }
  .faq-a p { padding-bottom: 18px; font-size: 13.5px; }

  .final-cta { padding-block: 56px; }
}

@media (max-width: 420px) {
  .hero-headline { font-size: 26px; }
  .display-h2 { font-size: 22px; }
  .word-display { font-size: 44px; }
  .lime-word { font-size: 52px; }
  .price-value { font-size: 48px; }
}
