/* Arquivo CSS para o efeito de véu animado (malha de pontinhos/linhas) */

.particles-veu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particles-veu-container {
  position: relative;
}

.particles-veu-content {
  position: relative;
  z-index: 2;
}

/* Animação dos pontos */
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

/* Animação das linhas */
.particle::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
  transform-origin: left;
  transform: rotate(calc(var(--rotation) * 1deg));
  opacity: 0.2;
}

/* Animação de movimento */
@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(10px) translateX(5px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.1;
  }
}

/* Media queries para responsividade */
@media (max-width: 768px) {
  .particle {
    width: 1.5px;
    height: 1.5px;
  }
  
  .particle::before {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .particle {
    width: 1px;
    height: 1px;
  }
  
  .particle::before {
    width: 40px;
  }
}
