.mundo-cartaz {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: #fff;
  text-align: center;
  font-family: var(--font-display, Georgia, serif);
  font-weight: 800;
  font-size: clamp(24px, 6vw, 56px);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 10px rgb(0 0 0 / 0.85), 0 0 40px rgb(0 0 0 / 0.6);
  animation: mundo-cartaz-fade 2.2s ease forwards;
}

@keyframes mundo-cartaz-fade {
  0% { opacity: 0; }
  15% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; }
}
