/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #000000;
  --amarelo: #ffd23f;
  --vermelho: #e23b3b;
  --verde-cta: #16a34a;
  --verde-cta-hover: #128a3c;
  --texto: #f5f5f5;
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--texto);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 18px 48px 18px;
  text-align: center;
}

/* ============ HEADLINE ============ */
.headline {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 6px;
}
.headline .amarelo { color: var(--amarelo); }
.headline .maiusc { text-transform: uppercase; }

.subheadline {
  font-size: 21px;
  font-weight: 700;
  color: var(--amarelo);
  line-height: 1.3;
  margin-bottom: 16px;
}

.aviso-urgencia {
  font-size: 14px;
  font-weight: 700;
  color: var(--vermelho);
  margin-bottom: 22px;
}

@media (max-width: 480px) {
  .headline { font-size: 22px; }
  .subheadline { font-size: 18px; }
  .aviso-urgencia { font-size: 12px; }
}

/* ============ PLAYER VERTICAL ============ */
.video-container {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.video-container .player-box {
  position: relative;
  width: 100%;
  max-width: 400px;       /* vertical 9:16, estilo Reels/Shorts */
  aspect-ratio: 9/16;
  border-radius: 6px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 16px;
  background: linear-gradient(160deg, #1a1a1a, #000);
}
.video-placeholder strong { font-size: 16px; margin-bottom: 6px; }
.video-placeholder span { font-size: 12px; opacity: 0.6; }

/* contador de espectadores (prova social honesta) */
.viewers {
  margin: 14px auto 4px auto;
  font-size: 14px;
  color: #cfcfcf;
  font-weight: 600;
}
.viewers .dot {
  display: inline-block;
  width: 9px; height: 9px;
  background: var(--verde-cta);
  border-radius: 50%;
  margin-right: 5px;
  animation: blink 1.4s infinite;
  vertical-align: middle;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* ============ CTA NO PITCH FINAL ============ */
.cta-wrapper { margin: 22px auto 4px auto; }
.cta {
  display: none; /* aparece via JS após o delay */
  font-weight: 700;
  color: #fff;
  background-color: var(--verde-cta);
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 10px;
  font-size: 19px;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.45);
  transition: background 0.3s ease, transform 0.2s ease;
  animation: pulse 1.8s infinite;
}
.cta:hover { background-color: var(--verde-cta-hover); transform: scale(1.04); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
.cta small { display: block; font-weight: 400; font-size: 12px; margin-top: 4px; opacity: 0.9; }

/* ============ RODAPÉ ============ */
.footer {
  text-align: center;
  font-size: 11px;
  color: #888;
  padding: 34px 16px 0 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.footer a { color: #aaa; }
