/* splash.css — loading 0.5s mínimo no boot */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #07080a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 240ms ease;
}
#splash-screen.hide {
  opacity: 0;
  pointer-events: none;
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.splash-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #f5f5f5;
  letter-spacing: -0.02em;
}
.splash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff2a3c;
  box-shadow: 0 0 16px rgba(255,42,60,0.6);
  animation: splashPulse 1.2s ease-in-out infinite;
}
@keyframes splashPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.4); opacity: 0.6; }
}
.splash-spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.12);
  border-top-color: #ff2a3c;
  border-radius: 50%;
  animation: splashSpin 0.8s linear infinite;
}
@keyframes splashSpin {
  to { transform: rotate(360deg); }
}
