body {
  margin: 0;
  background: #323232;
}

/* Container do splash */
#splash {
  position: fixed;
  inset: 0;
  background: rgb(50, 50, 50);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .8s ease;
}

/* Fade out quando Flutter carregar */
#splash.fade-out {
  opacity: 0;
}

/* Logo */
#splash-logo {
  width: 180px;
  height: auto;
  animation: zoomIn 1.2s ease forwards;
}

/* Animação da logo */
@keyframes zoomIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
