/* Splash nativo até o React montar — evita flash branco */
html,
body {
  margin: 0;
  background: #000;
  min-height: 100%;
}

#mova-boot {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}

#mova-boot.is-out {
  opacity: 0;
  pointer-events: none;
}

#mova-boot .mark {
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.92);
  animation: movaBootIn 1.05s cubic-bezier(0.32, 0.72, 0, 1) 0.12s forwards;
}

@keyframes movaBootIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
