/* Container do fogo */
.fire-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* não interfere nos cliques */
  overflow: hidden;
  z-index: 1;
}

/* Partícula de fogo */
.fire-particle {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 25px;
  background: linear-gradient(
    to top,
    rgba(255, 80, 0, 0.9),
    rgba(255, 200, 0, 0.6),
    rgba(255, 255, 255, 0)
  );
  border-radius: 50%;
  filter: blur(0.5px);
  animation: fire-rise linear forwards;
}

/* Animação do fogo subindo */
@keyframes fire-rise {
  from {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateY(-250px) scale(0.5);
    opacity: 0;
  }
}
