/**
 * Hero vídeo · fundo full-bleed (WebM/MP4 loop ou sequência).
 */
.mgm-hero-video {
  position: relative;
  overflow: hidden;
  background: #0b1f3a;
  color: #fff;
}

.mgm-hero-video__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mgm-hero-video__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mgm-hero-video.is-sequence .mgm-hero-video__el {
  opacity: 0;
  transition: opacity var(--mgm-hero-video-fade, 800ms) ease;
}

.mgm-hero-video.is-sequence .mgm-hero-video__el.is-active {
  opacity: 1;
}

.mgm-hero-video__fallback {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mgm-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(11, 31, 58, 0.35);
}

.mgm-hero-video .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .mgm-hero-video__el {
    display: none;
  }

  .mgm-hero-video__fallback {
    display: block;
  }
}
