/* Splash overlay enquanto o app carrega */
#splash-screen {
  position: fixed;
  inset: 0;
  background: #D9D8D6;          /* mesmo do manifest */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .8s ease, visibility .8s ease;
}

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

.splash-inner {
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.splash-logo {
  width: 128px;
  height: 128px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  display: block;
  margin: 0 auto;
}

.splash-title {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: #101820;
  font-size: 1.35rem;
  margin-top: 16px;
  letter-spacing: .5px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .splash-inner { animation: none; }
  #splash-screen { transition: none; }
}
