/* # INICIO # Estilos para o video de entrada */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.fallback-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background-color: #000;
}

.fallback-container img {
  max-height: 200px;
}

.video-overlay {
  position: relative;
  z-index: 2;
  height: 100vh;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
}

.video-overlay h1,
.video-overlay p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.img-fallback {
    width: 10%;
    height: 10vh;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.6);
}

/* # FIM # Estilos para o video de entrada */

