/* Splash anti-FOUC — sumirá assim que o React renderizar o App e substituir o conteúdo do #root */
.__splash {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-color: #fdf8f4;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: __splash_in 0.25s ease-out both;
}
.__splash img {
  width: min(240px, 60vw);
  height: auto;
  opacity: 0.92;
  animation: __splash_pulse 1.6s ease-in-out infinite;
}
@keyframes __splash_in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes __splash_pulse {
  0%, 100% { opacity: 0.75; transform: scale(1);    }
  50%      { opacity: 1;    transform: scale(1.02); }
}
@media (prefers-reduced-motion: reduce) {
  .__splash img { animation: none; opacity: 1; }
}
