/* ==========================================================================
   Pré-Lançamento — Variante B (rebuild #3)
   Referência: página de captura estilo "evento/imersão" (fundo claro, forte
   em autoridade e prova social, cronograma, garantia, FAQ), adaptada para
   a identidade verde da marca em vez do azul do original.
   Autocontida: só reaproveita de css/curso-2h/style.css o reset básico, o
   scroll-behavior e a .container — todo o resto (botões, cards, seções,
   badges) é definido aqui do zero, porque o tema de fundo claro não
   combina com os componentes escuros já existentes no site.
   A barra fixa do topo e o modal de lançamento continuam escuros de
   propósito: uma faixa/overlay escuro sobre uma página clara é um padrão
   comum em sales pages e não precisa ser redesenhado.
   ========================================================================== */

:root {
  /* Escala de espaçamento em múltiplos de 4px */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-30: 120px;

  --ease-confident: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-cinematic: 800ms;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Verdes da marca (mesmos hex de css/index/style.css), reaproveitados
     aqui para um fundo claro em vez do escuro que o resto do site usa. */
  --g-neon: #7dff5e;
  --g-900: #051a02;
  --g-800: #083302;
  --g-600: #11390c;
  --g-200: #86efac;
  --gold: #e8c97a;

  --bg: #ffffff;
  --bg-alt: #f2faf3;
  --bg-card: #f8fcf8;
  --border: rgba(5, 26, 2, 0.1);
  --border-strong: rgba(5, 26, 2, 0.2);

  /* Grafite com um toque de verde, usado nos cards do cronograma — a única
     superfície escura no meio de uma página clara, de propósito. */
  --graphite: #24291f;
  --graphite-border: rgba(255, 255, 255, 0.08);
  --graphite-text: #f2f4ef;
  --graphite-text-muted: rgba(242, 244, 239, 0.68);

  --text-heading: var(--g-900);
  --text-body: #3d4a3d;
  --text-muted: #55665a;
}

/* ===================== BASE ===================== */

html, body {
  overflow-x: hidden;
}

body {
  background: var(--bg);
  background-image: none;
  color: var(--text-body);
}

.pb {
  font-family: var(--font-sans);
}

/* Superfícies de navegador — seleção de texto e foco de teclado, temadas
   com a marca em vez de ficarem no azul padrão do sistema. */
.pb ::selection {
  background: var(--g-neon);
  color: var(--g-900);
}

.pb :focus-visible {
  outline: 2px solid var(--g-800);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.pb-topbar {
  padding-top: var(--space-8);
  display: flex;
  justify-content: center; /* Centraliza no mobile */
}

@media (min-width: 992px) {
  .pb-topbar {
    justify-content: flex-start; /* Alinha à esquerda no desktop */
  }
}

.pb-topbar__logo {
  height: 60px; /* 60px no mobile */
  width: auto;
  display: block;
}

@media (min-width: 992px) {
  .pb-topbar__logo {
    height: 120px; /* 120px no desktop */
  }
}

.pb-topbar__mark {
  font-family: var(--font-display);
  color: var(--g-900);
  font-size: 1.1rem;
}

.pb-section {
  padding: var(--space-16) 0;
}

.pb-section--alt {
  background: var(--bg-alt);
}

/* Sem padding embaixo — usada na seção que vem logo antes da onda
   decorativa, pra colar a foto do instrutor na onda sem espaço em branco. */
.pb-section--flush-bottom {
  padding-bottom: 0;
}

.timer-bar-btn {
  background: var(--g-neon);
  color: var(--g-900);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: none; /* Oculto no mobile de forma padrão */
  align-items: center;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

/* Barra fixa no topo do site (sempre ativa / fixed) */
.sticky-timer-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--g-900) !important;
  border-bottom: 2px solid var(--g-neon) !important;
  box-shadow: 0 4px 15px rgba(125, 255, 94, 0.25) !important;
  z-index: 10000;
  padding: 10px 16px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  transition: background-color 0.3s ease;
}

.timer-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .timer-bar-btn {
    display: inline-flex; /* Exibe a partir de tablets e desktops */
  }
}

.timer-bar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(125, 255, 94, 0.4);
}

/* Link da palavra Lista VIP no mobile estilizado como botão redondo verde */
.timer-bar-vip-link {
  background: var(--g-neon);
  color: var(--g-900);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin: 0 4px;
  box-shadow: 0 2px 8px rgba(125, 255, 94, 0.3);
  animation: pulse-glow-btn 2s infinite ease-in-out;
}

@keyframes pulse-glow-btn {
  0% { transform: scale(1); box-shadow: 0 2px 8px rgba(125, 255, 94, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 2px 14px rgba(125, 255, 94, 0.6); }
  100% { transform: scale(1); box-shadow: 0 2px 8px rgba(125, 255, 94, 0.3); }
}

@media (min-width: 768px) {
  .timer-bar-vip-link {
    background: transparent;
    color: var(--g-neon);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    animation: none;
    margin: 0;
    text-decoration: underline;
  }
}

.pb-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-10);
}

.pb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(125, 255, 94, 0.15);
  color: var(--g-800);
  border: 1px solid rgba(5, 26, 2, 0.15);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
  text-decoration: none;
}

.pb-hero__eyebrow--link {
  transition: transform var(--duration-fast) var(--ease-out), background-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

.pb-hero__eyebrow--link:hover {
  background: rgba(125, 255, 94, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(125, 255, 94, 0.2);
}

.pb-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: var(--space-3);
}

.pb-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Botões */
.pb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 52px;
  transition: transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.pb-btn--primary {
  background: var(--g-neon);
  color: var(--g-900);
  box-shadow: 0 10px 30px -8px rgba(125, 255, 94, 0.6);
}

.pb-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -8px rgba(125, 255, 94, 0.75);
}

.pb-btn--outline {
  background: transparent;
  border: 2px solid var(--g-800);
  color: var(--g-800);
}

.pb-btn--outline:hover {
  background: rgba(5, 26, 2, 0.05);
  transform: translateY(-2px);
}

.pb-btn--dark {
  background: var(--g-900);
  color: var(--g-neon);
  box-shadow: 0 10px 30px -10px rgba(5, 26, 2, 0.5);
}

.pb-btn--dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -10px rgba(5, 26, 2, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .pb-btn {
    transition: none;
  }
  .pb-btn:hover {
    transform: none;
  }
}

/* ===================== HERO ===================== */

.pb-hero {
  padding: var(--space-6) 0 var(--space-10);
  text-align: center;
}

@media (min-width: 992px) {
  .pb-hero {
    padding: var(--space-4) 0 var(--space-8);
  }
}

.pb-hero__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-8);
}

.pb-hero__text-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.pb-hero__text-col .pb-hero__eyebrow {
  margin-bottom: var(--space-4);
}

.pb-hero__text-col .pb-hero__title {
  text-align: center;
  margin: 0 auto var(--space-4);
  max-width: 100%;
}

.pb-hero__text-col .pb-hero__subtitle {
  text-align: center;
  margin: 0 auto var(--space-4);
  max-width: 100%;
}

/* Linha de texto rotativo (ex: "Seu programador agora é a IA.") */
.pb-hero__rotating-line {
  margin: 0 auto var(--space-6);
  text-align: center;
}

.js-rotating-text {
  display: inline-block;
  /* Menor no mobile: algumas frases da rotação são longas ("Sua presença
     online agora é feita com IA.") e quebravam linha em telas estreitas. */
  font-size: 0.95rem;
  font-weight: 700;
  color: #051a02;
  background-color: #7DFF5E;
  letter-spacing: -0.01em;
  padding: 4px 14px 5px;
  border-radius: 6px;
  transition: opacity 400ms ease, transform 400ms ease;
}

@media (min-width: 768px) {
  .js-rotating-text {
    font-size: 1.2rem;
  }
}

.js-rotating-text.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

@media (prefers-reduced-motion: reduce) {
  .js-rotating-text {
    transition: none;
  }
}

/* Palco Interativo (Notebook + Vídeo Mobile) */
.pb-hero__interactive-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: var(--space-4) auto 0;
}

.pb-hero__notebook {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

/* NO MOBILE: Vídeo do Douglas visível IMEDIATAMENTE no canto inferior (z-index: 10 fica POR CIMA do notebook quando ele surge por trás) */
.pb-hero__mobile-video {
  display: block;
  position: absolute;
  right: -4px;
  bottom: 6px;
  z-index: 10;
  width: 105px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(125, 255, 94, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(125, 255, 94, 0.25);
}

.pb-hero__mobile-video video {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .pb-hero__mobile-video {
    width: 135px;
    right: -8px;
    bottom: 8px;
  }
}

/* Vídeo grande no lado direito (Oculto no mobile, visível apenas no desktop) */
.pb-hero__media-col {
  display: none;
}

/* NO DESKTOP: Mantém o layout 2 colunas original (Texto + Notebook na esquerda, Vídeo na direita) */
@media (min-width: 992px) {
  .pb-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
      "text media"
      "notebook media";
    gap: var(--space-4) var(--space-10);
    align-items: start;
    text-align: left;
    margin-bottom: var(--space-8);
  }

  .pb-hero__text-col {
    grid-area: text;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    margin: 0;
  }

  .pb-hero__text-col .pb-hero__title {
    text-align: left;
    margin: 0 0 var(--space-4) 0;
  }

  .pb-hero__text-col .pb-hero__subtitle {
    text-align: left;
    margin: 0 0 var(--space-4) 0;
  }

  .pb-hero__media-col {
    display: flex;
    grid-area: media;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
  }

  .pb-hero__media-col .pb-hero__visual {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(125, 255, 94, 0.25);
    box-shadow: 0 25px 60px -15px rgba(5, 26, 2, 0.4), 0 0 30px rgba(125, 255, 94, 0.12);
  }

  .pb-hero__media-col .pb-hero__visual video {
    display: block;
    width: 100%;
    height: auto;
  }

  .pb-hero__interactive-stage {
    grid-area: notebook;
    margin: var(--space-4) 0 0 0;
    max-width: 580px;
  }

  .pb-hero__notebook {
    max-width: 580px;
  }

  /* Oculta o overlay mobile no desktop */
  .pb-hero__mobile-video {
    display: none;
  }
}



.pb-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(125, 255, 94, 0.15);
  color: var(--g-800);
  border: 1px solid rgba(5, 26, 2, 0.15);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-6);
}

.pb-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  max-width: 880px;
  margin: 0 auto var(--space-5);
}

.pb-hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto var(--space-8);
}

/* Faixa de fatos rápidos, tipo "data / formato / desconto" */
.pb-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

/* Só na variante C: faixa escura full-bleed atrás dos cards de fatos,
   ignorando o padding do .container (mesma técnica da faixa preta do
   nome do autor). Escopado por .pb-page-c pra não vazar pra variante B,
   que usa esta mesma folha de estilo. */
.pb-page-c .pb-facts {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: var(--space-8) var(--space-6);
  background: var(--g-900);
}

/* Evita barra de rolagem horizontal devido a margins negativas / 100vw em telas de tablets/médias */
@media (max-width: 991px) {
  .pb-page-c .pb-facts {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: var(--radius-md);
  }
}

.pb-fact {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-5);
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 600;
}

.pb-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.pb-hero__cta-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  padding: var(--space-2);
  min-height: 44px;
}

.pb-hero__cta-hint:hover {
  color: var(--text-heading);
}

.pb-hero__visual img,
.pb-hero__visual video {
  display: block;
  width: 100%;
  height: auto;
}

/* Notebook com prévia do site, revelado 5s após o load (script.js) */
.pb-hero__notebook {
  width: 100%;
  max-width: 580px;
  margin: var(--space-6) auto 0;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity var(--duration-cinematic) var(--ease-confident),
    transform var(--duration-cinematic) var(--ease-confident);
}

.pb-hero__notebook.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.notebook-mockup {
  width: 100%;
  position: relative;
}

.notebook-screen {
  background: #141915;
  border-radius: 16px 16px 4px 4px;
  padding: 10px 10px 0 10px;
  border: 1px solid rgba(125, 255, 94, 0.3);
  box-shadow: 0 25px 60px -15px rgba(5, 26, 2, 0.45), 0 0 35px rgba(125, 255, 94, 0.15);
}

.notebook-camera {
  width: 6px;
  height: 6px;
  background: #2a352a;
  border: 1px solid #4a5a4a;
  border-radius: 50%;
  margin: 0 auto 6px;
}

.notebook-viewport {
  width: 100%;
  height: 340px;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  position: relative;
  background: #081a05;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.notebook-browser-bar {
  height: 26px;
  background: #0b2207;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.notebook-browser-dots {
  display: flex;
  gap: 6px;
}

.notebook-browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.notebook-browser-dot--red { background: #ff5f56; }
.notebook-browser-dot--yellow { background: #ffbd2e; }
.notebook-browser-dot--green { background: #27c93f; }

.notebook-browser-url {
  flex: 1;
  max-width: 220px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  height: 16px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
}

.notebook-scroll-wrapper {
  width: 100%;
  height: calc(100% - 26px);
  overflow: hidden;
  position: relative;
}

.notebook-scroll-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  animation: pb-notebook-scroll 12s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.notebook-scroll-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@keyframes pb-notebook-scroll {
  0% { transform: translateY(0%); }
  10% { transform: translateY(0%); }
  85% { transform: translateY(calc(-100% + 314px)); }
  100% { transform: translateY(calc(-100% + 314px)); }
}

.notebook-base {
  height: 14px;
  background: linear-gradient(180deg, #1d261e 0%, #0d120e 100%);
  border-radius: 0 0 14px 14px;
  border: 1px solid rgba(125, 255, 94, 0.25);
  border-top: none;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.notebook-notch {
  width: 60px;
  height: 5px;
  background: #081a05;
  border-radius: 0 0 4px 4px;
  margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .pb-hero__notebook {
    transition: opacity var(--duration-fast) ease;
    transform: none;
  }
  .notebook-scroll-content {
    animation: none;
  }
}

/* ----- Entrada cinematográfica do hero -----
   O momento autoral da página: título revelado por uma cortina (clip-path
   varrendo da esquerda), imagem de capa entrando com escala + cortina em
   paralelo, resto do bloco subindo em cascata. Roda uma vez, no load —
   o hero já está acima da dobra, não depende de scroll nem de JS. */

@keyframes pb-curtain-wipe {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes pb-rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pb-scale-reveal {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.pb-hero__eyebrow {
  opacity: 0;
  animation: pb-rise-in var(--duration-slow) var(--ease-confident) 100ms both;
}

.pb-hero__title {
  /* Sem opacity aqui de propósito: o clip-path inset(0 100% 0 0) já
     esconde o título por completo (largura visível zero) até a cortina
     abrir. Um opacity:0 estático travaria o título invisível pra sempre,
     já que pb-curtain-wipe só anima clip-path, nunca opacity. */
  animation: pb-curtain-wipe var(--duration-cinematic) var(--ease-confident) 280ms both;
}

.pb-hero__subtitle {
  opacity: 0;
  animation: pb-rise-in var(--duration-slow) var(--ease-confident) 520ms both;
}

.pb-facts {
  opacity: 0;
  animation: pb-rise-in var(--duration-slow) var(--ease-confident) 700ms both;
}

.pb-hero__cta {
  opacity: 0;
  animation: pb-rise-in var(--duration-slow) var(--ease-confident) 880ms both;
}

.pb-hero__visual {
  opacity: 0;
  animation:
    pb-scale-reveal var(--duration-cinematic) var(--ease-confident) 560ms both,
    pb-curtain-wipe var(--duration-cinematic) var(--ease-confident) 560ms both;
}

@media (prefers-reduced-motion: reduce) {
  .pb-hero__eyebrow,
  .pb-hero__title,
  .pb-hero__subtitle,
  .pb-facts,
  .pb-hero__cta,
  .pb-hero__visual {
    animation: none;
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

/* Contador + captura de e-mail, revelado a partir do botão de e-mail */
.pb-email-form {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 380px;
  margin: 0 auto;
  text-align: left;
}

.pb-email-form.is-open {
  display: flex;
}

.pb-email-form label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pb-email-input {
  width: 100%;
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text-heading);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  min-height: 44px;
}

.pb-email-input::placeholder {
  color: var(--text-muted);
}

.pb-email-input:focus {
  outline: none;
  border-color: var(--g-800);
}

.pb-email-hidden {
  display: none !important;
}

.pb-email-success {
  color: var(--g-800);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===================== CONTADOR ===================== */
.pb-countdown-card {
  border: 2px solid var(--g-900);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  margin-top: var(--space-4);
  background: transparent;
  display: inline-block;
  text-align: center;
  position: relative;
  box-shadow: 0 0 0 0 rgba(5, 26, 2, 0.4);
  animation: border-glow-pulse 3s infinite ease-in-out;
}

@keyframes border-glow-pulse {
  0% {
    border-color: rgba(5, 26, 2, 1);
    box-shadow: 0 0 0 0 rgba(5, 26, 2, 0.2);
  }
  50% {
    border-color: rgba(125, 255, 94, 0.9);
    box-shadow: 0 0 15px 3px rgba(125, 255, 94, 0.35);
  }
  100% {
    border-color: rgba(5, 26, 2, 1);
    box-shadow: 0 0 0 0 rgba(5, 26, 2, 0.2);
  }
}

.pb-countdown__intro {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.pb-countdown {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-4);
}

.pb-hero__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-2);
}

.pb-countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.pb-countdown__value {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g-900);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--g-neon);
}

.pb-countdown__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Pulso a cada segundo — a mesma referência visual de um relógio de
   contagem regressiva de cinema, aplicado só no dígito dos segundos pra
   não chamar atenção demais a cada tick. */
@keyframes pb-tick-pulse {
  0% { transform: scale(1); }
  35% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.pb-countdown__value--tick {
  animation: pb-tick-pulse 500ms var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
  .pb-countdown__value--tick {
    animation: none;
  }
}

/* ===================== ESTATÍSTICAS (contadores animados) ===================== */

.pb-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.pb-stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--g-800);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.pb-stat__label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===================== O QUE MUDA (antes/depois) ===================== */

.pb-shift {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  max-width: 900px;
  margin: 0 auto;
}

.pb-shift__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.pb-shift__label--before {
  color: var(--text-muted);
}

.pb-shift__label--after {
  color: var(--g-800);
}

.pb-fit__icon--muted {
  background: rgba(5, 26, 2, 0.08);
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .pb-shift {
    grid-template-columns: 1fr 1fr;
  }
}

/* Fundo preto para a seção de antes/depois */
.pb-section--dark-before-after {
  background-color: var(--g-900);
  color: #ffffff;
}

.pb-section--dark-before-after .pb-title {
  color: #ffffff;
}

.pb-section--dark-before-after .pb-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.pb-section--dark-before-after .pb-shift__label--before {
  color: #ff4a4a;
}

.pb-section--dark-before-after .pb-shift__label--after {
  color: var(--g-neon);
}

.pb-section--dark-before-after .pb-fit__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pb-section--dark-before-after .pb-fit__item:hover {
  border-color: var(--g-neon);
  background: rgba(255, 255, 255, 0.05);
}

.pb-section--dark-before-after .pb-fit__text {
  color: rgba(255, 255, 255, 0.85);
}

.pb-section--dark-before-after .pb-fit__icon--muted {
  background: rgba(255, 74, 74, 0.15);
  color: #ff4a4a;
}


/* ===================== PRA QUEM É ===================== */

.pb-fit {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pb-fit__item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-normal) var(--ease-out),
    transform var(--duration-normal) var(--ease-out);
}

.pb-fit__item:hover {
  border-color: var(--g-neon);
  transform: translateX(6px);
}

.pb-fit__item::after,
.pb-schedule__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(125, 255, 94, 0.3), transparent);
  transform: skewX(-15deg);
  transition: left var(--duration-slow) var(--ease-out);
  pointer-events: none;
}

.pb-fit__item:hover::after,
.pb-schedule__item:hover::after {
  left: 125%;
}

@media (prefers-reduced-motion: reduce) {
  .pb-fit__item::after,
  .pb-schedule__item::after {
    display: none;
  }
}

.pb-fit__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--g-neon);
  color: var(--g-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.pb-fit__text {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.55;
}

/* ===================== CRONOGRAMA (módulos, em trilha) ===================== */

.pb-schedule {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* Trilha central curva — decorativa, só aparece a partir do breakpoint em
   que os cards passam a alternar de lado (abaixo disso não cabe). */
.pb-schedule__track {
  display: none;
}

.pb-schedule__item {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-5) var(--space-6);
  background: var(--graphite);
  border: 1px solid var(--graphite-border);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px -8px rgba(5, 26, 2, 0.3);
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

@media (max-width: 576px) {
  .pb-schedule__item {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  
  .pb-schedule__image-wrapper {
    width: 100%;
    margin-bottom: var(--space-2);
  }
}

.pb-schedule__image-wrapper {
  width: 90px;
  height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pb-schedule__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb-schedule__item:hover {
  box-shadow: 0 12px 28px -10px rgba(5, 26, 2, 0.45);
}

.pb-schedule__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--g-neon);
  color: var(--g-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.pb-schedule__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--graphite-text);
  margin-bottom: var(--space-2);
}

.pb-schedule__desc {
  color: var(--graphite-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================== CTA FAIXA (corte diagonal) ===================== */

.pb-cta-band {
  position: relative;
  background: var(--g-neon);
  padding: var(--space-16) 0 var(--space-20);
  clip-path: polygon(0 28px, 100% 0, 100% calc(100% - 28px), 0 100%);
  margin: var(--space-4) 0;
  overflow: hidden;
}

/* Brilho que varre a faixa uma única vez quando ela entra na tela — reforça
   o corte diagonal sem virar loop chamativo. */
.pb-cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-15deg);
  opacity: 0;
  pointer-events: none;
}

.pb-cta-band:has(.pb-cta-band__inner.is-revealed)::before {
  animation: pb-shine-sweep 1100ms var(--ease-out) 300ms 1;
}

@keyframes pb-shine-sweep {
  0% { left: -60%; opacity: 0; }
  15% { opacity: 0.9; }
  85% { opacity: 0.9; }
  100% { left: 130%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .pb-cta-band::before {
    display: none;
  }
}

.pb-cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
}

.pb-cta-band__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(5, 26, 2, 0.65);
  margin-bottom: var(--space-2);
}

.pb-cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--g-900);
  line-height: 1.25;
  margin-bottom: var(--space-3);
}

.pb-cta-band__text {
  color: rgba(5, 26, 2, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 460px;
}

/* ===================== AUTOR ===================== */

.pb-author {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
}

.pb-author__photo {
  width: 100%;
  max-width: 600px;
  /* A foto real (douglasbraz-perfil.jpg) é retrato alto (1285x1875), bem
     diferente do quadrado usado antes — mantém a proporção pra não mudar
     de tamanho, mas usa "contain" (não "cover") pra mostrar a foto
     inteira, sem cortar nada. O fundo branco da própria foto se mistura
     com o fundo da página, então a margem que sobra não aparece. */
  aspect-ratio: 4 / 5;
  background: var(--bg);
  flex-shrink: 0;
}

.pb-author__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pb-author__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-3);
}

.pb-author__bio {
  color: var(--text-body);
  font-size: 1.15rem;
  line-height: 1.7;
}

.pb-author__bio + .pb-author__bio {
  margin-top: var(--space-4);
}

/* Palavra/expressão de destaque dentro do texto, tipo grifo de marca-texto */
.pb-highlight {
  background: var(--g-neon);
  color: var(--g-900);
  font-weight: 700;
  padding: 0.05em 0.35em;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* ===================== ONDA DECORATIVA ===================== */

.pb-wave {
  position: relative;
  height: 40px;
  margin-top: -4px;
  overflow: visible;
}

.pb-wave__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 768px) {
  .pb-wave {
    height: 64px;
  }
}

/* ===================== GARANTIA ===================== */

.pb-guarantee {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-8);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.pb-guarantee__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--g-900);
  color: var(--g-neon);
  margin-bottom: var(--space-5);
}

.pb-guarantee__seal svg {
  width: 40px;
  height: 40px;
}

.pb-guarantee__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-3);
}

.pb-guarantee__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===================== FAQ (details/summary nativos) ===================== */

.pb-faq {
  max-width: 760px;
  margin: 0 auto;
}

.pb-faq__item {
  border-bottom: 1px solid var(--border);
}

.pb-faq__question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-heading);
  cursor: pointer;
  min-height: 44px;
}

.pb-faq__question::-webkit-details-marker {
  display: none;
}

.pb-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.pb-faq__icon::before,
.pb-faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--g-800);
  border-radius: 2px;
}

.pb-faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.pb-faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform var(--duration-fast) var(--ease-out);
}

.pb-faq__item[open] .pb-faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.pb-faq__answer {
  padding: 0 var(--space-2) var(--space-5);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .pb-faq__icon::after {
    transition: none;
  }
}

/* ===================== CTA FINAL ===================== */

.pb-final {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.pb-final__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-3);
}

.pb-final__sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-6);
}

.pb-final .pb-btn {
  width: 100%;
}

/* ===================== RODAPÉ (claro) ===================== */

.pb-footer {
  text-align: center;
  padding: var(--space-10) 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.pb-footer a {
  color: var(--g-800);
  text-decoration: none;
}

/* Link secundário do modal de lançamento (escuro, ver css/curso-2h/style.css) */
.modal-secondary-link {
  display: inline-block;
  margin-top: var(--space-4);
  color: rgba(245, 241, 232, 0.7);
  text-decoration: underline;
  font-size: 0.85rem;
  cursor: pointer;
}

.modal-secondary-link:hover {
  color: #fff;
}

/* ===================== MOTION (scroll reveal) ===================== */

[data-reveal-b] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-normal) var(--ease-out),
    transform var(--duration-normal) var(--ease-confident);
}

[data-reveal-b].is-revealed {
  opacity: 1;
  transform: none;
}

[data-reveal-b][data-delay-b="1"] { transition-delay: 100ms; }
[data-reveal-b][data-delay-b="2"] { transition-delay: 200ms; }
[data-reveal-b][data-delay-b="3"] { transition-delay: 300ms; }
[data-reveal-b][data-delay-b="4"] { transition-delay: 400ms; }

/* Cronograma entra alternando o lado (ímpar da esquerda, par da direita)
   em vez do mesmo "sobe e aparece" genérico do resto da página — dá
   cadência própria a essa lista sem repetir o efeito de outras seções. */
.pb-schedule__item:nth-child(odd):not(.is-revealed) {
  transform: translateX(-32px);
}

.pb-schedule__item:nth-child(even):not(.is-revealed) {
  transform: translateX(32px);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal-b] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pb-fit__item {
    transition: none;
  }
  .pb-fit__item:hover {
    transform: none;
  }
}

/* Faixa preta full-bleed atrás do nome, só no mobile (onde a seção de
   autor é empilhada em coluna única). Sai do layout em 768px, quando
   ".pb-author" vira linha com foto + texto lado a lado. */
@media (max-width: 767px) {
  .pb-author {
    gap: 0;
  }

  .pb-author__name {
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: var(--space-5);
    padding: var(--space-4) var(--space-6);
    background: #000000;
    color: #ffffff;
    text-align: center;
  }
}

/* ===================== RESPONSIVO (mobile-first, min-width) ===================== */

@media (min-width: 640px) {
  .pb-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .pb-hero {
    padding: var(--space-24) 0 var(--space-24);
  }

  .pb-cta-band__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .pb-cta-band__text {
    margin: 0;
  }

  .pb-author {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .pb-author__photo {
    max-width: 760px;
  }

  /* Trilha do cronograma: linha curva central + cards alternando de lado,
     em vez da pilha reta única do mobile. */
  .pb-schedule__track {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .pb-schedule__track svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  .pb-schedule__track path {
    fill: none;
    stroke: var(--g-600);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 2 14;
    opacity: 0.8;
  }

  .pb-schedule__item {
    max-width: 47%;
    grid-template-columns: auto 1fr;
  }

  .pb-schedule__item:nth-child(odd) {
    margin-right: auto;
  }

  .pb-schedule__item:nth-child(even) {
    margin-left: auto;
  }
}

/* ==========================================================================
   BANNER FINAL LISTA VIP COM IMAGEM DE FUNDO
   ========================================================================== */
.pb-vip-banner-section {
  padding: var(--space-16) 0;
  background: var(--bg);
}

.pb-vip-banner-link {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-image: linear-gradient(rgba(5, 26, 2, 0.45), rgba(5, 26, 2, 0.55)), url('../../assets/lista-vip-bg.webp');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(125, 255, 94, 0.2);
  box-shadow: 0 15px 45px -10px rgba(5, 26, 2, 0.45);
  transition: transform var(--duration-normal) var(--ease-confident), border-color var(--duration-normal) var(--ease-confident), box-shadow var(--duration-normal) var(--ease-confident);
}

.pb-vip-banner-link:hover {
  transform: translateY(-5px);
  border-color: var(--g-neon);
  box-shadow: 0 20px 50px -10px rgba(125, 255, 94, 0.3);
}

.pb-vip-banner-content {
  padding: var(--space-12) var(--space-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  backdrop-filter: blur(2px);
}

.pb-vip-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin: 0;
}

.pb-vip-banner-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.pb-vip-banner-btn {
  display: inline-flex;
  align-items: center;
  background: var(--g-neon);
  color: var(--g-900);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(125, 255, 94, 0.4);
  transition: transform var(--duration-fast) var(--ease-out), background-color var(--duration-fast) var(--ease-out);
}

.pb-vip-banner-link:hover .pb-vip-banner-btn {
  transform: scale(1.05);
  background: #ffffff;
}
