/* ============================================================
   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(
      120% 130% at 92% 2%,
      rgba(128, 88, 255, 0.5) 0%,
      rgba(102, 51, 224, 0) 54%
    ),
    linear-gradient(
      113deg,
      #12091f 0%,
      #1c1046 28%,
      #331a92 54%,
      #4c23c6 78%,
      #5c2be6 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;
  }
  .timeline__num,
  .timeline__card,
  .timeline__card::before,
  .timeline__card h3,
  .timeline__card p,
  .timeline__card .tag {
    transition: 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 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 108px;
  background: var(--grad-banner);
  border-radius: var(--radius-lg);
  padding: 26px 34px 26px 250px;
  margin: 8px 0 48px;
  box-shadow: 0 20px 60px -25px rgba(109, 40, 217, 0.7);
}
/* capacete transborda o topo/base do banner (breakout, igual ao Figma) */
.banner__img {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 230px;
  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 {
  --ct-pad: 28px; /* recuo horizontal das linhas */
  --ct-col: 176px; /* largura das colunas Pro / Comuns */
  --ct-lift: 14px; /* o quanto a faixa Pro sobe acima da tabela */
  position: relative;
  isolation: isolate; /* contexto de empilhamento próprio da tabela */
  background: #fff;
  border-radius: var(--radius-lg);
}
/* faixa roxa em destaque sobre a coluna Pro — parte da MESMA tabela branca */
.ctable__band {
  position: absolute;
  top: calc(-1 * var(--ct-lift));
  bottom: 0;
  right: calc(var(--ct-pad) + var(--ct-col));
  width: var(--ct-col);
  background: linear-gradient(180deg, #7c3aed 0%, #6423cf 100%);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 18px 40px rgba(76, 22, 160, 0.4);
  z-index: 2;
}
.ctable__head,
.ctable__row {
  display: grid;
  grid-template-columns: 1fr var(--ct-col) var(--ct-col);
  align-items: center;
}
.ctable__head {
  padding: 22px var(--ct-pad);
}
.ctable__label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-light);
}
.ctable__col {
  text-align: center;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--text-muted-light);
}
/* cabeçalho da coluna Pro fica ACIMA da faixa (z-index) */
.ctable__col--pro {
  position: relative;
  z-index: 3;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ctable__row {
  padding: 18px var(--ct-pad);
  border-bottom: 1px solid #ececf1;
}
.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: 700;
  font-size: 17px;
}
.ctable__row div em {
  font-style: normal;
  color: var(--text-muted-light);
  font-size: 14px;
}
.mark {
  justify-self: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}
/* selos da coluna Pro ficam ACIMA da faixa roxa */
.mark--pro {
  position: relative;
  z-index: 3;
  background: #fff;
  color: var(--purple);
}
.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 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 150px;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 230px 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;
}
/* alvo transborda a direita do card (breakout, igual ao Figma) */
.compare__callout img {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 216px;
  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);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}
.timeline__item--active .timeline__num {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
}
.timeline__card {
  position: relative;
  isolation: isolate;
  background: #fff;
  border: 1px solid #e7e6ee;
  border-radius: 14px;
  padding: 18px 24px;
  transition: border-color 0.35s ease;
}
/* camada do gradiente: fica sempre montada pra transição ficar suave */
.timeline__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--grad-cta);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.timeline__card h3 {
  font-size: 18px;
  color: var(--text-on-light);
  margin-bottom: 4px;
  transition: color 0.35s ease;
}
.timeline__card p {
  color: var(--text-muted-light);
  font-size: 14px;
  margin: 0 0 12px;
  transition: color 0.35s ease;
}
.timeline__item--active .timeline__card {
  border-color: transparent;
  color: #fff;
}
.timeline__item--active .timeline__card::before {
  opacity: 1;
}
.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);
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
}
.timeline__item--active .tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ============================================================
   APLICAÇÃO
   ============================================================ */
.apply__lead {
  color: var(--text-muted-light);
  max-width: 70ch;
  margin-bottom: 28px;
}
.apply__box {
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin-bottom: 40px;
  background: #fff;
  border: 1px solid #e7e6ee;
  color: var(--text-muted-light);
}
.apply__box b {
  color: var(--text-on-light);
}

.apply__note {
  text-align: center;
  color: var(--text-muted-light);
  font-size: 14px;
  margin-top: 18px;
}

/* ============================================================
   EQUIPE
   ============================================================ */
.team__photo {
  margin: 40px 0 0;
}
/* A foto tem fundo preto chapado: o blend "screen" faz o preto sumir
   dentro do fundo da seção, e a máscara dissolve as bordas do retângulo. */
.team__photo img {
  width: 100%;
  mix-blend-mode: screen;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0,
      #000 4%,
      #000 62%,
      rgba(0, 0, 0, 0.6) 84%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0,
      #000 6%,
      #000 94%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0,
      #000 4%,
      #000 62%,
      rgba(0, 0, 0, 0.6) 84%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0,
      #000 6%,
      #000 94%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* ============================================================
   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(3, 1fr);
  gap: 20px;
}
.vcard {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Área do vídeo: mantém o 16:9 e recorta thumbnail/iframe */
.vcard__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
/* Botão-fachada: só a thumbnail carrega no load; o iframe entra no clique */
.vcard__play {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  cursor: pointer;
  background: none;
}
/* Selo "Assistir": deixa claro que é vídeo clicável (visível no mobile também) */
.vcard__play::after {
  content: "▶ Assistir";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(10, 6, 20, 0.62);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.vcard__play:hover::after,
.vcard__play:focus-visible::after {
  background: var(--magenta, #d946ef);
  transform: scale(1.06);
}
.vcard__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vcard__play:hover img {
  transform: scale(1.04);
}
.vcard__play:focus-visible {
  outline: 3px solid var(--magenta, #d946ef);
  outline-offset: 3px;
}
.vcard__media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Frase de destaque (citação real do depoimento) */
.vcard__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.45;
  color: #eaddf6;
  padding-left: 12px;
  border-left: 2px solid var(--magenta, #d946ef);
}

/* ============================================================
   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: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(192, 38, 211, 0.4);
  transition:
    transform 0.25s ease,
    box-shadow 0.2s ease;
}
.faq__item summary:hover::after {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(192, 38, 211, 0.6);
}
.faq__item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}
.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 na base do rodapé (sangra só nas laterais) */
.footer__wordmark {
  display: block;
  width: 100%;
  margin-top: clamp(56px, 8vw, 104px);
  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 {
    position: static;
    flex-direction: column;
    text-align: center;
    min-height: 0;
    padding: 24px;
    gap: 16px;
  }
  .banner__img {
    position: static;
    transform: none;
    width: 220px;
    margin: 0 auto;
  }
  .feature-list em {
    margin-left: 0;
    text-align: left;
  }
  .compare__table {
    --ct-col: 96px;
    --ct-pad: 20px;
  }
  .ctable__col {
    font-size: 13px;
  }
  .ctable__row div b {
    font-size: 15px;
  }
  .ctable__row div em {
    font-size: 13px;
  }
}
@media (max-width: 560px) {
  .cards__grid,
  .testi__grid {
    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 {
    position: static;
    flex-direction: column-reverse;
    gap: 18px;
    min-height: 0;
    padding: 28px 24px;
  }
  .compare__callout img {
    position: static;
    transform: none;
    width: 200px;
    align-self: center;
  }
  /* tabela comparativa no celular: colunas estreitas pra sobrar largura ao texto */
  .compare__table {
    --ct-col: 58px;
    --ct-pad: 14px;
    --ct-lift: 10px;
  }
  .ctable__head {
    padding: 16px var(--ct-pad);
  }
  .ctable__label {
    font-size: 11px;
  }
  .ctable__col,
  .ctable__col--pro {
    font-size: 10px;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }
  .ctable__col--pro {
    letter-spacing: 0.03em;
  }
  .ctable__row {
    padding: 14px var(--ct-pad);
  }
  .ctable__row div b {
    font-size: 14px;
    line-height: 1.25;
  }
  .ctable__row div em {
    font-size: 12px;
  }
  .mark {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .ctable__band {
    box-shadow: 0 12px 26px rgba(76, 22, 160, 0.4);
  }
}
@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;
  }
}

/* ============================================================
   PÁGINAS LEGAIS (Termos de Uso / Política de Privacidade)
   ============================================================ */
.legal-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(93, 44, 204, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-topbar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 60px;
}
.legal-topbar .brand__img {
  height: 20px;
}
.legal-topbar__cta {
  margin-left: auto;
  white-space: nowrap;
}

.legal {
  padding: 56px 0 80px;
}
.legal__wrap {
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 18px;
}
.legal__updated {
  color: var(--text-muted-light);
  font-size: 14px;
  margin: 0 0 24px;
}
.legal__lead {
  font-size: 18px;
  color: var(--text-on-light);
  margin-bottom: 8px;
}
.legal h2 {
  font-size: clamp(19px, 3vw, 25px);
  margin: 40px 0 12px;
}
.legal p,
.legal li {
  color: #2a2440;
  font-size: 16px;
  line-height: 1.75;
}
.legal ul {
  margin: 0 0 1.25em;
  padding-left: 1.25em;
}
.legal li {
  margin-bottom: 0.5em;
}
.legal a {
  color: var(--magenta);
  text-decoration: underline;
}
.legal a:hover {
  color: var(--purple);
}
.legal__sep {
  border: 0;
  height: 1px;
  background: rgba(23, 18, 43, 0.12);
  margin: 40px 0 24px;
}
.legal__foot {
  font-size: 14px;
  color: var(--text-muted-light);
}
.legal__foot b {
  color: var(--text-on-light);
}
@media (max-width: 560px) {
  .legal {
    padding: 36px 0 56px;
  }
  .legal-topbar__cta {
    padding: 9px 16px;
    font-size: 12px;
  }
}
