@charset "utf-8";
/* CSS Document */













/* particulas de fogo */
#fire-sparks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, #ffea00, #ff6a00, transparent);
  border-radius: 50%;
  opacity: 0.9;
  animation: spark-fly linear forwards;
}

@keyframes spark-fly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0);
    opacity: 0;
  }
}
/* particulas de fogo */








/* linha piscando */
.linha-pispando-no{
	background-color:black;
	height: 8px;
}
.linha-piscando {
    width: 100%;
    height: 4px;
    background-color: #ff0000; /* cor da linha */
    animation: piscar 1s infinite;
}
@keyframes piscar {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}

/* linha piscando alternando cores */
.linha-piscando-alternando-cores {
    width: 100%;
    height: 4px;
    animation: piscarCor 1s infinite;
}

@keyframes piscarCor {
    0%   { background-color: red; }
    50%  { background-color: yellow; }
    100% { background-color: red; }
}


/* Linha estilo neon piscando */
.linha-piscando-neon {
    width: 100%;
    height: 4px;
    background: #00ffff;
    box-shadow: 0 0 10px #00ffff,
                0 0 20px #00ffff,
                0 0 40px #00ffff;
    animation: neonBlink 1s infinite alternate;
}
@keyframes neonBlink {
    from { opacity: 1; }
    to   { opacity: 0.4; }
}
/* linha piscando */
