/* ============================================
   PAULINHO DOS LEILÕES — Assessor de Leilões
   Tela única · Sem rolagem · Transmissão ao vivo
   ============================================ */

/* ─── Tokens ─── */
:root {
  /* superfície */
  --bg:        #06080d;
  --bg-lift:   #0b0f18;

  /* tinta */
  --ink:       #eaf0fa;
  --ink-2:     #afbdd2;
  --ink-3:     #8a99b3;

  /* linhas */
  --line:      rgba(150, 185, 240, 0.14);
  --line-2:    rgba(150, 185, 240, 0.07);

  /* cor de sistema */
  --signal:    #3b9bff;
  --signal-2:  #8ec5ff;
  --signal-dim: rgba(59, 155, 255, 0.12);

  /* cor de ação (exclusiva do CTA) */
  --action:    #15a34a;
  --action-2:  #0f8b3f;

  /* tipografia */
  --ff: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* movimento */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* profundidade */
  --z-media:  0;
  --z-scrim:  1;
  --z-grid:   2;
  --z-chrome: 10;
  --z-bar:    20;
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff);
  font-variation-settings: 'wdth' 100;
  background: var(--bg);
  color: var(--ink);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ═══════════════════════════════════
   TELA
   ═══════════════════════════════════ */
.screen {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: var(--app-h, 100svh);   /* medida real, cravada por JS */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Malha técnica sobre o vídeo — textura, não decoração */
.screen::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: var(--z-grid);
  pointer-events: none;
  background-image:
    linear-gradient(to right,  rgba(120, 170, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(120, 170, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 95% 55% at 50% 26%, #000, transparent 78%);
  mask-image: radial-gradient(ellipse 95% 55% at 50% 26%, #000, transparent 78%);
}

/* ─── Vídeo de fundo ─── */
.bg-photo {
  position: absolute;
  inset: 0;
  z-index: var(--z-media);
  overflow: hidden;
  background: var(--bg);
}

.bg-photo__img {
  display: block;
  width: 100%;
  height: 68vh;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.28) contrast(1.02) brightness(0.5);
  -webkit-mask-image: linear-gradient(to top, transparent 2%, #000 30%);
  mask-image: linear-gradient(to top, transparent 2%, #000 30%);
}

@media (min-width: 640px) {
  .bg-photo__img {
    width: min(100%, calc(100dvh * 0.5625));
    height: 100%;
    margin-inline: auto;
    object-position: center 50%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 78%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 78%, transparent 100%);
  }
}

/* Scrim — existe para o texto passar em contraste, não para enfeitar */
.bg-photo__overlay {
  position: absolute;
  inset: 0;
  z-index: var(--z-scrim);
  background:
    linear-gradient(to top,
      rgba(6, 8, 13, 0.985) 0%,
      rgba(6, 8, 13, 0.96)  18%,
      rgba(6, 8, 13, 0.84)  32%,
      rgba(6, 8, 13, 0.52)  46%,
      rgba(6, 8, 13, 0.18)  60%,
      transparent           76%
    ),
    linear-gradient(to right,
      rgba(6, 8, 13, 0.55) 0%,
      transparent 24%,
      transparent 76%,
      rgba(6, 8, 13, 0.55) 100%
    ),
    linear-gradient(to bottom,
      rgba(6, 8, 13, 0.62) 0%,
      rgba(6, 8, 13, 0.34) 22%,
      transparent 44%
    ),
    radial-gradient(ellipse 70% 40% at 50% 8%, rgba(59, 155, 255, 0.10), transparent 70%);
}

/* ─── Barra de aviso ─── */
.announcement-bar {
  position: relative;
  z-index: var(--z-bar);
  width: 100%;
  padding: max(env(safe-area-inset-top, 9px), 9px) 16px 9px;
  background: var(--bg-lift);
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  text-align: center;
  font-size: clamp(0.53rem, 2.1vw, 0.63rem);
  font-weight: 600;
  font-variation-settings: 'wdth' 92;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── Indicador ao vivo ─── */
.top-bar {
  position: relative;
  z-index: var(--z-chrome);
  display: flex;
  justify-content: space-between;
  padding: 14px 16px 0;
}

@media (max-width: 639px) {
  .top-bar { display: none; }

  .bg-photo__img {
    object-position: center 6%;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(6, 8, 13, 0.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.badge--live {
  border-color: rgba(59, 155, 255, 0.28);
}

.badge__dot {
  position: relative;
  width: 6px;
  height: 6px;
  background: var(--signal);
  border-radius: 50%;
  flex-shrink: 0;
}

.badge__dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--signal);
  border-radius: 50%;
  animation: transmit 2s var(--ease) infinite;
}

@keyframes transmit {
  0%        { transform: scale(0.7); opacity: 0.9; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}

/* ═══════════════════════════════════
   CONTEÚDO — ancorado na base
   ═══════════════════════════════════ */
.content {
  position: relative;
  z-index: var(--z-chrome);
  margin-top: auto;
  padding: 0 20px max(env(safe-area-inset-bottom, 18px), 22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 440px;
  width: 100%;
  align-self: center;
}

/* ─── Kicker ─── */
.eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  font-variation-settings: 'wdth' 90;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 12px;
  text-indent: 0.16em;
}

/* Mantém o kicker em uma linha nos aparelhos estreitos */
@media (max-width: 420px) {
  .eyebrow { font-size: 0.5rem; letter-spacing: 0.11em; text-indent: 0.11em; }
}

/* ─── Título ─── */
.title {
  font-size: clamp(2rem, 8.4vw, 3.4rem);
  font-weight: 700;
  font-variation-settings: 'wdth' 114;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 14px;
  text-wrap: balance;
}

/* ─── Subtítulo ─── */
.subtitle {
  font-size: clamp(0.78rem, 3vw, 0.9rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 38ch;
  margin-bottom: 18px;
  text-wrap: pretty;
}

.subtitle__highlight {
  font-weight: 650;
  color: var(--ink);
  box-shadow: inset 0 -1px 0 rgba(59, 155, 255, 0.55);
}

/* ─── Data e hora ─── */
.info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: rgba(11, 15, 24, 0.5);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.info-item strong {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-item svg {
  color: var(--signal);
  flex-shrink: 0;
}

.info-sep {
  width: 1px;
  height: 13px;
  background: var(--line);
  font-size: 0;
  color: transparent;
}

/* ═══════════════════════════════════
   CONTADOR — o protagonista
   ═══════════════════════════════════ */
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(6px, 2.4vw, 12px);
  width: 100%;
  margin-bottom: 20px;
  padding: 14px 0 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cd {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 46px;
}

.cd__n {
  font-size: clamp(2rem, 9.2vw, 2.9rem);
  font-weight: 700;
  font-variation-settings: 'wdth' 108;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.cd__l {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--signal);
  margin-top: 8px;
  text-indent: 0.22em;
}

.cd__sep {
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink-3);
  margin-top: 0.14em;
  animation: tick 1s steps(2, jump-none) infinite;
}

@keyframes tick {
  50% { opacity: 0.22; }
}

/* ─── CTA ─── */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(180deg, var(--action) 0%, var(--action-2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 30px rgba(15, 139, 63, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 38px rgba(15, 139, 63, 0.34);
}

.cta:active { transform: scale(0.985); }

.cta__icon { width: 19px; height: 19px; flex-shrink: 0; }

/* ─── Reforço ─── */
.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-3);
}

.trust svg { color: var(--ink-3); flex-shrink: 0; }

/* ═══════════════════════════════════
   ENTRADA — uma orquestração, no load
   ═══════════════════════════════════ */
@keyframes enter {
  from { opacity: 0; transform: translateY(9px); }
  to   { opacity: 1; transform: translateY(0); }
}

.eyebrow,
.title,
.subtitle,
.info-row,
.countdown,
.cta,
.trust {
  animation: enter 0.62s var(--ease) both;
}

.eyebrow   { animation-delay: 0.04s; }
.title     { animation-delay: 0.10s; }
.subtitle  { animation-delay: 0.18s; }
.info-row  { animation-delay: 0.26s; }
.countdown { animation-delay: 0.32s; }
.cta       { animation-delay: 0.40s; }
.trust     { animation-delay: 0.48s; }

/* ═══════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════ */

/* Telas baixas */
@media (max-height: 680px) {
  .title { font-size: clamp(1.75rem, 7.4vw, 2.3rem); margin-bottom: 10px; }
  .subtitle { font-size: 0.75rem; line-height: 1.45; margin-bottom: 12px; }
  .eyebrow { margin-bottom: 8px; }
  .info-row { margin-bottom: 11px; padding: 6px 12px; }
  .countdown { margin-bottom: 13px; padding: 10px 0 9px; }
  .cd__n { font-size: clamp(1.6rem, 7.4vw, 2.1rem); }
  .cd__l { margin-top: 6px; }
  .cta { min-height: 48px; padding: 12px 20px; font-size: 0.88rem; }
  .trust { margin-top: 8px; }
}

/* Paisagem curta */
@media (max-height: 520px) {
  .subtitle { display: none; }
  .eyebrow { margin-bottom: 6px; }
  .title { margin-bottom: 10px; }
  .countdown { padding: 8px 0 7px; margin-bottom: 10px; }
  .cd__n { font-size: 1.5rem; }
  .bg-photo__img { object-position: center 32%; }
}

/* Telas altas */
@media (min-height: 780px) {
  .content { padding-bottom: max(env(safe-area-inset-bottom, 28px), 30px); }
  .title { font-size: clamp(2.3rem, 9.4vw, 3.8rem); margin-bottom: 18px; }
  .subtitle { font-size: 0.92rem; margin-bottom: 24px; }
  .info-row { margin-bottom: 20px; }
  .countdown { margin-bottom: 26px; padding: 18px 0 16px; }
  .cd { min-width: 54px; }
  .cd__n { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .cta { min-height: 56px; max-width: 380px; }
}

/* Tablet+ */
@media (min-width: 640px) {
  .content { max-width: 500px; }
  .screen::after { background-size: 72px 72px; }
}

/* Desktop */
@media (min-width: 1024px) {
  .content { max-width: 540px; }
  .title { font-size: 3.5rem; }
  .subtitle { font-size: 0.96rem; }
  .cta { max-width: 400px; font-size: 1rem; }
}

/* ═══════════════════════════════════
   OFERTA — atendimento 1:1
   Interrompe o CTA, não a marca
   ═══════════════════════════════════ */
.offer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* sem bottom: com top e bottom juntos o height é ignorado, e o modal
     voltaria a se medir pelo viewport grande (barra do navegador escondida) */
  height: 100svh;
  height: var(--app-h, 100svh);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(env(safe-area-inset-top, 14px), 14px) 14px max(env(safe-area-inset-bottom, 14px), 14px);
}

.offer[hidden] { display: none; }

.offer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 9, 0.82);
  backdrop-filter: blur(14px) saturate(0.7);
  -webkit-backdrop-filter: blur(14px) saturate(0.7);
  opacity: 0;
  transition: opacity 0.42s var(--ease);
}

.offer.is-open .offer__scrim { opacity: 1; }

/* ─── Painel ─── */
.offer__panel {
  position: relative;
  width: 100%;
  max-width: 400px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;        /* nada rola: o conteúdo se ajusta à altura */
  padding: 26px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(59, 155, 255, 0.10), transparent 62%),
    var(--bg-lift);
  box-shadow:
    inset 0 1px 0 rgba(150, 185, 240, 0.09),
    0 30px 80px rgba(0, 0, 0, 0.6);
  text-align: center;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.46s var(--ease), transform 0.46s var(--ease);
}

.offer.is-open .offer__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Régua de sinal no topo — marca o painel como parte do sistema */
.offer__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22%;
  right: 22%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--signal), transparent);
  opacity: 0.55;
}

/* ─── Fechar ─── */
.offer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.offer__close:hover { color: var(--ink); background: rgba(150, 185, 240, 0.08); }

/* ─── Conteúdo ─── */
.offer__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px 5px 10px;
  border: 1px solid rgba(59, 155, 255, 0.3);
  border-radius: 4px;
  background: var(--signal-dim);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal-2);
  margin-bottom: 14px;
}

.offer__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}

.offer__title {
  font-size: clamp(1.5rem, 6.6vw, 1.85rem);
  font-weight: 700;
  font-variation-settings: 'wdth' 112;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 10px;
  text-wrap: balance;
}

.offer__lead {
  font-size: 0.79rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 16px;
  text-wrap: pretty;
}

.offer__lead strong {
  font-weight: 650;
  color: var(--ink);
}

/* ─── Urgência — presa ao contador real da aula ─── */
.offer__urgency {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(59, 155, 255, 0.26);
  border-radius: 6px;
  background: var(--signal-dim);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-2);
}

.offer__urgency svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--signal); }

.offer__urgency strong {
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

/* ─── O que entra ─── */
.offer__list {
  list-style: none;
  text-align: left;
  padding: 14px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  display: grid;
  gap: 9px;
}

.offer__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--ink-2);
}

.offer__list svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--signal);
}

/* ─── Preço ─── */
.offer__price {
  margin-bottom: 16px;
}

.offer__price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--ink);
}

.offer__price-cur {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
}

.offer__price-num {
  font-size: clamp(2.4rem, 11vw, 3rem);
  font-weight: 700;
  font-variation-settings: 'wdth' 110;
  line-height: 0.9;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.offer__price-note {
  display: block;
  margin-top: 9px;
  font-size: 0.62rem;
  line-height: 1.45;
  color: var(--ink-3);
}

/* ─── Ação principal ─── */
.offer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 52px;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(180deg, var(--signal) 0%, #1f7ee0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 30px rgba(59, 155, 255, 0.26);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.offer__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 38px rgba(59, 155, 255, 0.32);
}

.offer__cta:hover .offer__cta-arrow { transform: translateX(3px); }
.offer__cta:active { transform: scale(0.985); }

.offer__cta-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

/* ─── Caminho gratuito — verde continua sendo o WhatsApp ─── */
.offer__alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-2);
  background: transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.offer__alt:hover {
  color: var(--ink);
  border-color: rgba(21, 163, 74, 0.42);
  background: rgba(21, 163, 74, 0.07);
}

.offer__alt-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--action);
}

.offer__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 13px;
  font-size: 0.6rem;
  line-height: 1.4;
  color: var(--ink-3);
}

.offer__trust svg { flex-shrink: 0; }

/* ═══ Passo 2 — apresentação da assessoria ═══ */

/* O passo do vídeo é uma coluna flexível: tudo que tem altura fixa
   (badge, headline, barra, botões) fica, e o player absorve o resto.
   Assim cabe em qualquer altura de tela sem nunca gerar rolagem. */
.offer__step[data-step="video"] {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.offer__step[hidden] { display: none; }

/* Headline longa: menor, respiro entre linhas e medida controlada.
   Dupla classe para vencer .offer__title, que vem depois nos media queries. */
.offer__title.offer__title--video {
  font-size: clamp(1rem, 4.3vw, 1.22rem);
  line-height: 1.16;
  letter-spacing: -0.022em;
  max-width: 24ch;
  margin-inline: auto;
  margin-bottom: 13px;
}

/* ─── Player vertical ─── */
.offer__player {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  width: auto;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  margin: 0 auto 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.offer__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Único controle: um botão azul, e só quando o vídeo não está rodando.
   Com o vídeo tocando, nada se sobrepõe à imagem. */
.offer__start {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(3, 5, 9, 0.5);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.offer__player.is-paused .offer__start { display: flex; }

.offer__start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--signal) 0%, #1f7ee0 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 10px 30px rgba(59, 155, 255, 0.34);
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.offer__start:hover .offer__start-btn { filter: brightness(1.08); transform: translateY(-1px); }
.offer__start:active .offer__start-btn { transform: scale(0.98); }

.offer__start svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ─── Progresso — leitura, não controle ─── */
.offer__progress {
  width: min(100%, 214px);
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 2px;
  background: rgba(150, 185, 240, 0.14);
  overflow: hidden;
}

.offer__progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 2px;
  background: var(--signal);
  transition: width 0.25s linear;
}

/* ─── Portão do checkout ─── */
.offer__gate-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 9px;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  transition: opacity 0.3s var(--ease);
}

/* Ao destravar, a linha não some: passa a dizer o que os R$ 197 compram */
.offer__gate.is-unlocked .offer__gate-msg { color: var(--ink-2); }

/* Trancado: presente, mas claramente inativo */
.offer__gate .offer__cta {
  filter: grayscale(1);
  opacity: 0.4;
  pointer-events: none;
  transform: scale(0.985);
  transition: filter 0.5s var(--ease), opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.offer__gate.is-unlocked .offer__cta {
  filter: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  animation: unlock 0.6s var(--ease);
}

@keyframes unlock {
  0%   { box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 0 0 0 rgba(59, 155, 255, 0.5); }
  100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 0 0 16px rgba(59, 155, 255, 0); }
}

/* O CTA do passo 1 é <button> — herda a tipografia */
button.offer__cta {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

/* ─── Entrada escalonada — só na abertura ─── */
.offer__badge,
.offer__title,
.offer__lead,
.offer__list,
.offer__price,
.offer__cta,
.offer__alt,
.offer__trust {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.44s var(--ease), transform 0.44s var(--ease);
}

.offer.is-open .offer__badge,
.offer.is-open .offer__title,
.offer.is-open .offer__lead,
.offer.is-open .offer__list,
.offer.is-open .offer__price,
.offer.is-open .offer__cta,
.offer.is-open .offer__alt,
.offer.is-open .offer__trust {
  opacity: 1;
  transform: translateY(0);
}

.offer.is-open .offer__badge { transition-delay: 0.10s; }
.offer.is-open .offer__title { transition-delay: 0.15s; }
.offer.is-open .offer__lead  { transition-delay: 0.20s; }
.offer.is-open .offer__list  { transition-delay: 0.25s; }
.offer.is-open .offer__price { transition-delay: 0.30s; }
.offer.is-open .offer__cta   { transition-delay: 0.35s; }
.offer.is-open .offer__alt   { transition-delay: 0.41s; }
.offer.is-open .offer__trust { transition-delay: 0.46s; }

/* ─── Troca de passo ─── */
@keyframes stepIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: none; }
}

.offer__step.is-entering { animation: stepIn 0.44s var(--ease) both; }

/* ─── Telas baixas ─── */
@media (max-height: 700px) {
  .offer__panel { padding: 20px 18px 16px; }
  .offer__title.offer__title--video { font-size: 0.95rem; line-height: 1.14; margin-bottom: 9px; }
  .offer__player { margin-bottom: 8px; }
  .offer__progress { margin-bottom: 11px; }
  .offer__urgency { margin-bottom: 10px; padding: 6px 10px; font-size: 0.64rem; }
  .offer__badge { margin-bottom: 10px; }
  .offer__title { font-size: 1.4rem; margin-bottom: 8px; }
  .offer__lead { font-size: 0.74rem; line-height: 1.45; margin-bottom: 12px; }
  .offer__list { padding: 11px 0; margin-bottom: 12px; gap: 7px; }
  .offer__list li { font-size: 0.71rem; }
  .offer__price { margin-bottom: 12px; }
  .offer__price-num { font-size: 2.1rem; }
  .offer__price-note { margin-top: 7px; }
  .offer__cta { min-height: 48px; padding: 13px 18px; font-size: 0.85rem; }
  .offer__trust { margin-top: 10px; }
}

@media (max-height: 560px) {
  .offer__lead { display: none; }
  .offer__panel { text-align: left; }
  .offer__price-main { justify-content: flex-start; }
  .offer__trust, .offer__cta, .offer__alt { justify-content: center; }
}

@media (min-height: 800px) {
  .offer__panel { padding: 32px 26px 24px; }
  .offer__lead { font-size: 0.84rem; margin-bottom: 20px; }
  .offer__list { padding: 18px 0; margin-bottom: 20px; gap: 11px; }
  .offer__list li { font-size: 0.78rem; }
  .offer__cta { min-height: 56px; }
}

/* ─── Movimento reduzido ─── */
@media (prefers-reduced-motion: reduce) {
  .eyebrow, .title, .subtitle, .info-row, .countdown, .cta, .trust {
    animation: none;
  }

  .badge__dot::after { animation: none; opacity: 0.35; transform: scale(1.4); }
  .cd__sep { animation: none; }

  .offer__scrim,
  .offer__panel,
  .offer__badge, .offer__title, .offer__lead, .offer__list,
  .offer__price, .offer__cta, .offer__alt, .offer__trust {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .offer__step.is-entering { animation: none; }
  .offer__gate.is-unlocked .offer__cta { animation: none; }
  .offer__progress-fill { transition: none; }

  /* o portão continua legível: trancado sem depender de movimento */
  .offer__gate .offer__cta { transform: none; }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ─────────────────────────────────────────────
   Uma tela no mobile, em qualquer aparelho.
   Antes: .screen usava 100dvh e só o body
   travava a rolagem — no iOS o html continuava
   rolando, e com a barra do navegador visível
   dava para arrastar a página.
   svh é o menor viewport: sempre cabe.
   ───────────────────────────────────────────── */
@media (max-width: 768px) {
  html, body {
    height: 100svh;
    height: var(--app-h, 100svh);
    overflow: hidden;
    overscroll-behavior: none;
  }

  .screen { height: var(--app-h, 100svh); }
}

/* ─── Aviso vermelho da VSL ─── */
.offer__alerta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* dentro do passo do vídeo isto é um item de flex column: sem o
     align-self ele estica na largura toda e o texto encosta à esquerda */
  align-self: center;
  gap: 8px;
  margin: 0 auto 12px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 82, 82, 0.42);
  border-radius: 6px;
  background: rgba(255, 82, 82, 0.12);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ff8a8a;
}

.offer__alerta svg { width: 14px; height: 14px; flex-shrink: 0; color: #ff5252; }

@media (max-height: 700px) {
  .offer__alerta { margin-bottom: 9px; padding: 6px 11px; font-size: 0.58rem; }
}
