/* Faixa do topo + primeira dobra (headline, VSL, botão). */
.faixa {
  background: var(--marinho); color: #fff; font-size: 14px; text-align: center;
  padding: 10px 16px; padding-top: calc(10px + env(safe-area-inset-top));
}
.faixa strong { color: var(--limao); }
.faixa [data-contador-tempo] { font-variant-numeric: tabular-nums; font-weight: 700; margin-left: 6px; }

.hero {
  background: radial-gradient(120% 80% at 50% 0%, #ffffff 0%, var(--fundo) 70%);
  padding: 14px 0 40px;
}
.marca-topo {
  display: flex; width: fit-content; margin-left: auto; margin-right: auto; align-items: center; gap: 8px; font-family: var(--fonte-titulo); font-weight: 800;
  font-size: 19px; letter-spacing: -.02em; color: var(--marinho); text-decoration: none; margin-bottom: 4px; min-height: 32px;
}
.marca-topo img { width: 34px; height: 34px; }
.hero .rotulo { margin-bottom: 8px; }
.hero .titulo { font-size: 27px; line-height: 1.1; }
.hero-titulo { max-width: 900px; margin: 0 auto; }
.hero .subtitulo { margin-top: 8px; font-size: 15px; }
.hero-acao { margin-top: 16px; }
.hero .seguranca { margin-top: 10px; }
@media (min-width: 768px) {
  .hero { padding: 72px 0 88px; }
  .hero .titulo { font-size: 54px; }
  .hero .subtitulo { font-size: 20px; }
}

/* VSL: 16:9, cantos grandes, sombra. A capa aparece só quando não há arquivo. */
.vsl {
  position: relative; margin: 18px auto 0; max-width: 860px; aspect-ratio: 16 / 9;
  border-radius: 20px; overflow: hidden; background: #0e1116; box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}
.vsl video { width: 100%; height: 100%; object-fit: cover; }
.vsl-capa { position: absolute; inset: 0; }
.vsl-capa img { width: 100%; height: 100%; object-fit: cover; }
.vsl-capa-texto {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; padding: 20px; text-align: center; color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .55) 100%);
}
.vsl-play {
  width: 72px; height: 72px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .95); color: var(--marinho); display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}
.vsl-play svg { width: 30px; height: 30px; margin-left: 4px; }
.vsl-capa-texto p { font-size: 15px; font-weight: 600; text-shadow: 0 1px 6px rgba(0, 0, 0, .5); max-width: 420px; }
@media (min-width: 768px) { .vsl-capa-texto p { font-size: 17px; } }
