.d-flex {
  display: -webkit-box !important;
  display: flex !important;
}

.flex-column {
  -webkit-box-direction: normal !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  flex-direction: column !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  align-items: center !important;
}

.h-100 {
  height: 100% !important;
}

#__layout,
#__nuxt {
  height: 100%;
  width: 100%;
}

section {
  min-height: 100%;
}

iframe {
  max-width: 100%;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#video-background[data-v-b4009248] {
  background: #000;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

#video-background[data-v-b4009248]:before {
  background: rgba(30, 30, 30, 0.6);
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
}

#video-background .imagem[data-v-b4009248] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

#video-background video[data-v-b4009248] {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

#video-background iframe[data-v-b4009248] {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.image-home {
  background-image: url("images/logo-home.png");
  background-repeat: no-repeat; /* Evita que a imagem se repita */
  background-size: contain;
  width: 400px; /* Define a largura do elemento em relação à largura da tela */
  height: 100px; /* Permite que a altura seja ajustada automaticamente */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .image-home {
    width: 90%; /* Reduz a largura do elemento para telas menores */
    left: 50%; /* Centraliza o elemento na tela */
    top: 45%;
    transform: translateX(-50%); /* Centraliza horizontalmente */
  }
}
