/* ================================
   CONTAINER RESPONSIVO
================================ */
.vturb-player-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.vturb-player-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
	border-radius: 5px;
}

/* ================================
   SHIELD
================================ */
.vturb-shield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
}

/* ================================
   POSTER
================================ */
.vturb-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.vturb-iframe,
.vturb-iframe iframe {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    border: none;
    z-index: 2;
}


/* ================================
   OVERLAY DE PAUSA
================================ */
.vturbeplay-pause-overlay {
  position: absolute;
  inset: 0;
  background: var(--vturb-color, #ff0000);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 900;
}

.vturbeplay-pause-message {
  color: var(--vslturb-text-color, white);
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  padding: 0 20px;
}

.vturbeplay-pause-options {
  display: flex;
  gap: 160px;
}

.vturbeplay-pause-button {
  background-color: transparent;
  color: var(--vslturb-pause-text-color, white);
  border: 2px solid var(--vslturb-pause-text-color, white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
  padding: 0;
}

.vturbeplay-button-label {
  position: absolute;
  bottom: -30px;
  color: var(--vslturb-text-color, white);
  white-space: nowrap;
  width: 140px;
  text-align: center;
}

@media (max-width: 480px) {
  .vturbeplay-pause-options {
    gap: 100px;
  }
}

/* ================================
   BOTÃO DE PLAY INICIAL
================================ */
.vturb-play-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 10px;
  color: var(--vturb-color);
  width: 150px;
  height: 150px;
  border-radius: 10%;
  background: var(--vturb-color, #ff0000);
  position: relative;
  animation: vturb-pulse 1.5s infinite;
}

.vturb-play-button::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 26px solid #fff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  transform: translate(-50%, -50%);
}

.vslturb-initial-play-icon svg {
  width: 60px;
  height: 60px;
  fill: currentColor;
}

.vtplay-initial-play-title,
.vtplay-initial-play-text {
  color: white;
  font-size: 12px;
}

/* ================================
   BARRA DE PROGRESSO
================================ */
.vturb-controls {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  padding: 0 10px;
  z-index: 5;
}

.vturb-progress {
  background: rgba(255,255,255,0.3);
  height: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.vturb-progress-bar {
  background: var(--vturb-color, #ff0000);
  width: 0%;
  height: 100%;
  border-radius: 5px;
  transition: width 0.3s linear; /* suavidade */
}

/* ================================
   BOTÃO DE PAUSE
================================ */
.vturb-pause-btn {
  position: absolute;
  bottom: 20px;
  left: 5px;
  z-index: 3;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: sans-serif;
}

.vturb-continue {
  margin-top: 12px;
  font-size: 16px;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  display: none;
}

/* ================================
   ANIMAÇÃO PULSANTE
================================ */
@keyframes vturb-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
