/* ============================================================
   vsl.css — Tela VSL (player + moldura)
   DS: preto puro, sem gradientes, sem sombras coloridas
   ============================================================ */

.video-eyebrow{
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.video-headline{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 6.5vw, 32px);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--sand);
}
.video-headline .foil{
  display: block;
  font-weight: 800;
  color: var(--gold);
}

.video-sub{
  text-align: center;
  font-size: 15px;
  color: var(--warm);
  font-style: italic;
  margin: 0 0 32px;
}

/* Stage */
.player-stage{
  position: relative;
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
}

.player{
  position: relative;
  width: 92vw;
  max-width: 640px;
  aspect-ratio: 720/360;
  max-height: 85vh;
  border-radius: var(--radius-card);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s var(--ease);
  z-index: 2;
}

.player:hover{
  border-color: var(--gold);
}

/* Sem grain overlay */
.player::before{ display: none; }

/* Player placeholder */
.player-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.play-btn{
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform .2s var(--ease);
}
.player:hover .play-btn{ transform: scale(1.05); }
.play-btn::after{
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid var(--bg-deep);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* Video real */
.vsl-video{
  position: absolute;
  inset: 0;
  z-index: 3;
}

.player-ambient{ display: none; }

/* Desktop */
@media (min-width: 640px){
  .player-stage{
    padding: 32px 0 24px;
    min-height: 480px;
  }
  .player{
    width: min(720px, 92vw);
    max-height: 80vh;
  }
}
