/* Estilos para splash screen */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00bfff, #0078ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

#splash img {
  width: 120px;
  animation: pop 1.2s ease-in-out infinite alternate;
}

@keyframes pop {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

#splash h1 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}
