/* =========================================
   SPLASH SCREEN
   ========================================= */

#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999; /* Stay above everything, including menu */
  background-color: #000; /* Fundo totalmente preto */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  width: clamp(150px, 60vw, 360px); /* 60% do tamanho da tela (40% menor) */
  height: auto;
  opacity: 0;
  animation: splash-intro 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes splash-intro {
  0% {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(0px) drop-shadow(0 0 5px var(--color-blue));
  }
  15% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px) drop-shadow(0 0 20px var(--color-blue)) drop-shadow(0 0 40px var(--color-blue));
  }
  85% {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0px) drop-shadow(0 0 25px var(--color-blue)) drop-shadow(0 0 50px var(--color-blue));
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
    filter: blur(25px) drop-shadow(0 0 10px var(--color-blue));
  }
}
