html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  overflow: hidden;
}

.video-js {
  width: 100%;
  height: 100%;
}

.video-js video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* PC - Vertical centralizado */
@media (min-width: 769px) {
  body.vertical-video .video-js {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  body.vertical-video .video-js video {
    width: 400px;                    /* 👈 Largura do vídeo vertical (300px-500px) */
    height: 100%;
    margin: 0 auto;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    display: block;
  }
  
  body.vertical-video .vjs-control-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}