/* ============================================================
   Formação Closer Pro — Landing Page
   ============================================================ */

:root {
  /* Cores base */
  --bg-dark: #0d0a17; /* fundo escuro principal */
  --bg-darker: #08060f; /* fundo quase preto */
  --bg-light: #f5f5f5; /* seções claras */
  --purple-deep: #1b1030; /* roxo profundo */
  --purple: #6d28d9; /* roxo vibrante */
  --purple-2: #4c1d95;
  --magenta: #c026d3; /* magenta/fúcsia */
  --pink: #d946ef;

  /* Gradientes */
  --grad-hero: radial-gradient(
    125% 105% at 50% -5%,
    #5b3ba8 0%,
    #3d2578 40%,
    #241748 72%,
    #17102f 100%
  );
  --grad-cta: linear-gradient(90deg, #7c3aed 0%, #c026d3 100%);
  --grad-purple:
    radial-gradient(
      110% 120% at 90% 6%,
      rgba(139, 74, 255, 0.55) 0%,
      rgba(124, 58, 237, 0) 55%
    ),
    linear-gradient(
      107deg,
      #140b28 0%,
      #241059 30%,
      #45199a 56%,
      #6626cf 80%,
      #7c3aed 100%
    );
  --grad-banner: linear-gradient(90deg, #2a1550 0%, #6d28d9 55%, #d946ef 110%);

  /* Texto */
  --text-on-dark: #ffffff;
  --text-muted-dark: #b7b2c9; /* texto secundário em fundo escuro */
  --text-on-light: #17122b;
  --text-muted-light: #5b5670;

  /* UI */
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1120px;
  --pad-x: 24px;

  --font-display: "Raleway", system-ui, sans-serif;
  --font-body: "Raleway", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-on-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
p {
  margin: 0 0 1em;
  text-wrap: pretty;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* quebra de linha só no desktop (mantém mobile fluido) */
.brk {
  display: none;
}
@media (min-width: 768px) {
  .brk {
    display: inline;
  }
}

/* ---------- Sections ---------- */
.section {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.section--dark {
  background: var(--bg-dark);
}
.section--darker {
  background: var(--bg-darker);
}
.section--light {
  background: var(--bg-light);
  color: var(--text-on-light);
}
.section--purple {
  background: var(--grad-purple);
}

.rule {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  margin-bottom: 22px;
}

.eyebrow {
  display: inline-block;
  color: var(--pink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.section--light .eyebrow {
  color: var(--magenta);
}

.grad-text {
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: 0;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(192, 38, 211, 0.6);
}
.btn--lg {
  padding: 17px 44px;
  font-size: 15px;
}
.btn--pill {
  background: var(--grad-cta);
  color: #fff;
  text-transform: none;
  padding: 10px 22px;
  font-size: 13px;
}

/* ---------- Brand ---------- */
.brand {
  display: inline-flex;
  align-items: center;
}
.brand__img {
  height: 22px;
  width: auto;
  display: block;
}
.brand--lg .brand__img {
  height: 30px;
}
/* logo "vendas Pro" pequeno inline no badge/eyebrow */
.badge__logo {
  height: 13px;
  width: auto;
  display: inline-block;
  vertical-align: -1px;
}

/* ---------- Header sticky ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(93, 44, 204, 0.92);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.site-header.is-visible {
  transform: translateY(0);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 56px;
}
.site-header .brand__img {
  height: 18px;
}
.site-header__eyebrow {
  font-size: 11px;
  color: #e8def8;
}
.site-header__eyebrow b {
  color: #fff;
}
.site-header__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  margin-left: auto;
  opacity: 0.95;
}
.site-header__cta {
  margin-left: 8px;
  white-space: nowrap;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--grad-hero);
  padding-top: 64px;
}
.hero__top {
  grid-area: top;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 0;
}
.badge {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  color: #e8def8;
}
.badge b {
  color: #fff;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  column-gap: 40px;
  row-gap: 36px;
  align-items: end;
  grid-template-areas:
    "top   top"
    "title lead"
    "media media"
    "proof proof"
    "cta   cta";
}
.hero__title {
  grid-area: title;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero__lead {
  grid-area: lead;
  color: var(--text-muted-dark);
  font-size: 16px;
  margin: 0;
}
.hero__lead b {
  color: #fff;
}

.hero__media {
  grid-area: media;
  margin: 0;
  display: flex;
  justify-content: center;
}
/* player VTurb (VSL vertical) centralizado, arredondado e com sombra */
.hero__media vturb-smartplayer {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}

.hero__proof {
  grid-area: proof;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
  font-size: 14px;
}
.hero__proof b {
  color: #fff;
}
.avatars {
  display: inline-flex;
}
.avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--purple-deep);
  margin-left: -8px;
  object-fit: cover;
}
.avatars img:first-child {
  margin-left: 0;
}
.hero__cta {
  grid-area: cta;
  text-align: center;
}

/* ============================================================
   PROVA SOCIAL
   ============================================================ */
.proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.proof__intro h2 {
  font-size: clamp(26px, 3.4vw, 34px);
}
.h2-strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 30px);
  color: #fff;
  margin: 8px 0 0;
}
.proof__lead {
  color: var(--text-muted-dark);
  font-size: 15px;
  align-self: center;
}

.proof__columns {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.chat-col {
  flex: 1 1 0;
  min-width: 0;
  max-width: 380px;
}
.chat-col__title {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 600;
}
/* janela com rolagem vertical automática dos prints */
.chat-window {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c0f14;
  height: 640px;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 90px,
    #000 calc(100% - 90px),
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 90px,
    #000 calc(100% - 90px),
    transparent 100%
  );
}
.chat-track {
  display: flex;
  flex-direction: column;
  padding: 8px;
  will-change: transform;
}
.chat-track img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
}
.chat-track--a {
  animation: chatScroll 46s linear infinite;
}
.chat-track--b {
  animation: chatScroll 54s linear infinite;
}
/* pausa ao passar o mouse, pra dar tempo de ler */
.chat-window:hover .chat-track {
  animation-play-state: paused;
}
@keyframes chatScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .chat-track {
    animation: none !important;
  }
}
.proof__cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   PITCH (dor / solução) — genérico p/ várias seções
   ============================================================ */
.pitch__title,
.qualify__title,
.apply__title,
.formacao__title,
.team__title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 32px;
}
.pitch__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
/* Formação: corpo em coluna única (como no Figma) */
.formacao .pitch__cols {
  display: block;
}
.formacao .pitch__cols > div + div {
  margin-top: 1em;
}
/* títulos com <br> manual: desliga o balance (que brigava com a quebra fixa) */
.formacao__title,
.apply__title,
.team__title,
.faq__intro h2 {
  text-wrap: normal;
}
.section--dark .pitch__cols,
.section--darker .pitch__cols {
  color: var(--text-muted-dark);
}
.section--dark .pitch__cols b,
.section--darker .pitch__cols b {
  color: #fff;
}
.section--light .pitch__cols {
  color: var(--text-muted-light);
}
.section--light .pitch__cols b {
  color: var(--text-on-light);
}

.banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--grad-banner);
  border-radius: var(--radius-lg);
  padding: 26px 34px;
  margin: 8px 0 40px;
  box-shadow: 0 20px 60px -25px rgba(109, 40, 217, 0.7);
}
.banner__img {
  width: 210px;
  flex: none;
}
.banner__text {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
}
.banner__text b {
  font-weight: 700;
}

.callout {
  border: 1px solid rgba(217, 70, 239, 0.5);
  border-radius: var(--radius-lg);
  padding: 28px 34px;
  margin: 8px 0 36px;
  background: rgba(217, 70, 239, 0.05);
}
.callout p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 2.2vw, 22px);
}
.pitch__cta,
.compare__cta,
.apply__cta {
  text-align: center;
}

/* ============================================================
   FORMAÇÃO / FEATURE LIST
   ============================================================ */
.formacao__head {
  text-align: center;
  margin: 64px 0 10px;
}
.formacao__sub {
  font-size: clamp(26px, 3.4vw, 36px);
}
.formacao__note {
  color: var(--text-muted-light);
  margin-top: 12px;
}
.devices {
  margin: 24px auto 44px;
  max-width: 760px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e7e6ee;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 15px;
}
.feature-list b {
  color: var(--text-on-light);
  font-family: var(--font-display);
  font-weight: 600;
}
.feature-list em {
  color: var(--text-muted-light);
  font-style: normal;
  margin-left: auto;
  text-align: right;
  font-size: 14px;
}
.check {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 50%;
  background: #ede6ff;
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

/* ============================================================
   CARDS
   ============================================================ */
.cards {
  padding-top: 0;
}
.cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fcard {
  background: #fff;
  border: 1px solid #e7e6ee;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding-bottom: 24px;
}
.fcard__media {
  aspect-ratio: 16/10;
  margin-bottom: 20px;
}
.fcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fcard h3 {
  font-size: 20px;
  margin: 0 24px 12px;
  color: var(--text-on-light);
}
.fcard p {
  margin: 0 24px;
  color: var(--text-muted-light);
  font-size: 14px;
}

/* ============================================================
   COMPARATIVO
   ============================================================ */
.compare__head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 44px;
}
.compare__head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
}
.compare__head p {
  color: #e6ddfb;
  margin: 0;
  font-size: 15px;
}

.compare__table {
  background: rgba(10, 6, 20, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ctable__head,
.ctable__row {
  display: grid;
  grid-template-columns: 1fr 150px 150px;
  align-items: center;
}
.ctable__head {
  padding: 22px 28px;
}
.ctable__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbb8f5;
}
.ctable__col {
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  color: #d9ccf7;
}
.ctable__col--pro {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  background: rgba(124, 58, 237, 0.55);
  padding: 14px 0;
  border-radius: 12px 12px 0 0;
}
.ctable__rows {
  background: #fff;
  border-radius: var(--radius-lg);
}
.ctable__row {
  padding: 16px 28px;
  border-bottom: 1px solid #eee;
}
.ctable__row:last-child {
  border-bottom: 0;
}
.ctable__row div b {
  display: block;
  color: var(--text-on-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.ctable__row div em {
  font-style: normal;
  color: var(--text-muted-light);
  font-size: 13px;
}
.mark {
  justify-self: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.mark--pro {
  background: var(--purple);
  color: #fff;
}
.mark--yes {
  background: #dcfce7;
  color: #16a34a;
}
.mark--no {
  background: #fee2e2;
  color: #dc2626;
}
/* coluna PRO destacada verticalmente */
.ctable__rows .ctable__row .mark--pro {
  position: relative;
}

.compare__callout {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 34px;
  background: rgba(0, 0, 0, 0.15);
}
.compare__callout h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.compare__callout p {
  margin: 0;
  color: #ece4fc;
  font-size: 15px;
}
.compare__callout img {
  width: 140px;
  flex: none;
}
.compare__cta {
  margin-top: 40px;
}

/* ============================================================
   QUALIFICAÇÃO
   ============================================================ */
.qualify__lead {
  color: var(--text-muted-dark);
  max-width: 520px;
  margin-bottom: 40px;
}
.qualify__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.qcard {
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.qcard--yes {
  background: linear-gradient(
    160deg,
    rgba(124, 58, 237, 0.25),
    rgba(20, 14, 35, 0.4)
  );
}
.qcard--no {
  background: rgba(255, 255, 255, 0.03);
}
.qcard h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  margin-bottom: 22px;
}
.qcard__sub {
  color: var(--text-muted-dark);
  font-size: 14px;
  margin-bottom: 20px;
}
.qicon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.qicon--yes {
  background: #16351f;
  color: #4ade80;
  border: 1px solid #22c55e;
}
.qicon--no {
  background: #3a1620;
  color: #f87171;
  border: 1px solid #ef4444;
}
.qcard ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qcard li {
  position: relative;
  padding: 16px 18px 16px 44px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  color: #ded9ec;
}
.qcard li::before {
  position: absolute;
  left: 16px;
  top: 16px;
  font-weight: 700;
}
.qcard--yes li::before {
  content: "✓";
  color: #4ade80;
}
.qcard--no li::before {
  content: "✕";
  color: #f87171;
}

/* ============================================================
   TIMELINE 7 PASSOS
   ============================================================ */
.steps__head,
.testi__head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.steps__head h2 {
  font-size: clamp(28px, 4vw, 40px);
}
.steps__head p {
  color: var(--text-muted-light);
  margin: 0;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.timeline__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 20px;
  padding-bottom: 18px;
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 34px;
  bottom: -4px;
  width: 2px;
  background: #d9d5e6;
}
.timeline__item:last-child::before {
  display: none;
}
.timeline__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  z-index: 1;
  background: #fff;
  border: 2px solid #d0cbe0;
  color: var(--text-muted-light);
}
.timeline__item--active .timeline__num {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
}
.timeline__card {
  background: #fff;
  border: 1px solid #e7e6ee;
  border-radius: 14px;
  padding: 18px 24px;
}
.timeline__card h3 {
  font-size: 18px;
  color: var(--text-on-light);
  margin-bottom: 4px;
}
.timeline__card p {
  color: var(--text-muted-light);
  font-size: 14px;
  margin: 0 0 12px;
}
.timeline__item--active .timeline__card {
  background: var(--grad-cta);
  border: 0;
  color: #fff;
}
.timeline__item--active .timeline__card h3,
.timeline__item--active .timeline__card p {
  color: #fff;
}
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f1eefb;
  color: var(--purple);
}
.timeline__item--active .tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ============================================================
   APLICAÇÃO / ESCASSEZ
   ============================================================ */
.apply__lead {
  color: var(--text-muted-light);
  max-width: 70ch;
  margin-bottom: 28px;
}
.apply__box,
.apply__warn {
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin-bottom: 40px;
}
.apply__box {
  background: #fff;
  border: 1px solid #e7e6ee;
  color: var(--text-muted-light);
}
.apply__box b {
  color: var(--text-on-light);
}
.apply__sub {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-on-light);
  margin-bottom: 20px;
}
.apply__warn {
  border: 1px solid var(--purple);
  background: #f3effe;
  color: var(--text-on-light);
}
.apply__warn b {
  color: var(--purple);
}

.progress {
  max-width: 720px;
  margin: 0 auto 36px;
}
.progress__bar {
  height: 12px;
  border-radius: 999px;
  background: #e2def0;
  position: relative;
  overflow: visible;
}
.progress__fill {
  height: 100%;
  border-radius: 999px;
  background: var(--purple);
  position: relative;
}
.progress__you {
  position: absolute;
  right: -10px;
  top: -30px;
  white-space: nowrap;
  font-size: 11px;
  background: var(--purple-deep);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}
.progress__you::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--purple-deep);
}
.progress__pct {
  text-align: center;
  color: var(--magenta);
  font-weight: 700;
  margin: 20px 0;
}
.progress__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat {
  background: #fff;
  border: 1px solid #e7e6ee;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted-light);
}
.stat b {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-on-light);
  margin-right: 4px;
}
.stat--hot {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.stat--hot b {
  color: #fff;
}
.apply__note {
  text-align: center;
  color: var(--text-muted-light);
  font-size: 14px;
  margin-top: 18px;
}

/* ============================================================
   EQUIPE
   ============================================================ */
.team__photo {
  margin: 40px 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testi__head h2 {
  font-size: clamp(28px, 4vw, 40px);
}
.testi__head p {
  color: var(--text-muted-dark);
  margin: 0;
}
.testi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vcard {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/12;
}
.vcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vcard figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.vcard__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  opacity: 0.8;
}
.play {
  position: absolute;
  left: 16px;
  bottom: 58px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--purple-deep);
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* ============================================================
   GARANTIA
   ============================================================ */
.guarantee__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.guarantee__grid h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}
.guarantee__grid > div:first-child p {
  color: var(--text-muted-dark);
}
.guarantee__badge {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  background: linear-gradient(
    90deg,
    rgba(60, 20, 90, 0.6),
    rgba(160, 40, 180, 0.5)
  );
  border: 1px solid rgba(217, 70, 239, 0.4);
}
.guarantee__text h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.guarantee__text p {
  margin: 0;
  color: #eaddf6;
  font-size: 14px;
}
.guarantee__badge img {
  width: 88px;
  flex: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.faq__intro h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 20px;
}
.faq__intro p {
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}
.faq__item {
  border-bottom: 1px solid rgba(217, 70, 239, 0.3);
  padding: 20px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 500;
  font-size: 16px;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: transform 0.2s;
}
.faq__item[open] summary::after {
  content: "–";
  border-color: var(--pink);
  color: var(--pink);
}
.faq__item p {
  color: var(--text-muted-dark);
  font-size: 14px;
  margin: 14px 0 0;
  padding-right: 46px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--bg-darker);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
}
.site-footer__tagline {
  display: block;
  color: var(--text-muted-dark);
  font-size: 13px;
  margin: 8px 0 20px;
}
/* wordmark "vendas Pro" grande sangrando na base do rodapé */
.footer__wordmark {
  display: block;
  width: 100%;
  margin-top: clamp(56px, 8vw, 104px);
  margin-bottom: -1.7%; /* sangra ~12% na base */
  pointer-events: none;
  user-select: none;
}
.site-footer__brand > p {
  color: var(--text-muted-dark);
  font-size: 14px;
  max-width: 60ch;
}
.site-footer__meta {
  color: #6f6a83;
  font-size: 13px;
  margin: 4px 0;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.site-footer__links a {
  color: var(--text-muted-dark);
  font-size: 14px;
}
.site-footer__links a:hover {
  color: #fff;
}
.site-footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.site-footer__social a {
  color: var(--pink);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
  .section {
    padding: 60px 0;
  }
  .proof__grid,
  .proof__columns,
  .pitch__cols,
  .compare__head,
  .compare__callout,
  .qualify__cols,
  .steps__head,
  .testi__head,
  .guarantee__grid,
  .faq__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cards__grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi__grid {
    grid-template-columns: 1fr 1fr;
  }
  /* hero: coluna única, VSL logo após o título (primeira dobra) */
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "title"
      "media"
      "lead"
      "proof"
      "cta";
    row-gap: 24px;
  }
  .hero__title {
    max-width: none;
  }
  .site-header__eyebrow,
  .site-header__title {
    display: none;
  }
  .banner {
    flex-direction: column;
    text-align: center;
  }
  .feature-list em {
    margin-left: 0;
    text-align: left;
  }
  .ctable__head,
  .ctable__row {
    grid-template-columns: 1fr 64px 64px;
  }
  .ctable__col,
  .ctable__col--pro {
    font-size: 10px;
  }
}
@media (max-width: 560px) {
  .cards__grid,
  .testi__grid {
    grid-template-columns: 1fr;
  }
  .progress__stats {
    grid-template-columns: 1fr;
  }
  .hero__top {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .site-header__cta {
    width: auto;
  }
  /* hero mais compacto + player VSL menor pra caber no mobile */
  .hero {
    padding-top: 24px;
  }
  .hero__grid {
    row-gap: 20px;
  }
  .hero__media vturb-smartplayer {
    max-width: 300px !important;
  }
  /* avatares acima do texto (evita truncar ao lado) */
  .hero__proof {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  /* prova social: empilha as duas colunas de prints (leitura melhor) */
  .proof__columns {
    flex-direction: column;
    align-items: center;
  }
  .chat-col {
    max-width: 420px;
    width: 100%;
  }
  /* callout "A leitura é simples": ícone acima, texto em largura total */
  .compare__callout {
    flex-direction: column-reverse;
    gap: 18px;
  }
  .compare__callout img {
    align-self: center;
  }
}
@media (max-width: 380px) {
  .hero__media vturb-smartplayer {
    max-width: 240px !important;
  }
}
/* Mobile: parágrafos maiores para leitura (16–17px) */
@media (max-width: 600px) {
  .hero__lead,
  .pitch__cols,
  .qualify__lead,
  .apply__lead,
  .apply__box p,
  .faq__intro p,
  .guarantee__grid > div:first-child p {
    font-size: 17px;
  }
  .proof__lead,
  .feature-list li,
  .fcard p,
  .compare__head p,
  .compare__callout p,
  .qcard li,
  .timeline__card p,
  .apply__note,
  .guarantee__text p,
  .faq__item p,
  .site-footer__brand > p {
    font-size: 16px;
  }
}
