/* Estilo para o vídeo de transição em tela cheia */
#transition-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.7s;
}
#transition-video-container.hide {
  opacity: 0;
  pointer-events: none;
}
#transition-video-container video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
#skip-intro-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  z-index: 10000;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
#skip-intro-btn:hover {
  background: rgba(0,0,0,0.9);
}
