LOGO MAIS
Site em Manutenção
VOLTE DEPOIS • EM BREVE
// Update year automatically
document.getElementById('year').textContent = new Date().getFullYear();
// Create particles
const container = document.getElementById('bg-container');
const particleCount = 20;
for (let i = 0; i < particleCount; i++) {
const p = document.createElement('div');
p.className = 'particle';
// Random size
const size = Math.random() * 5 + 2 + 'px';
p.style.width = size;
p.style.height = size;
// Random position
p.style.left = Math.random() * 100 + 'vw';
p.style.top = Math.random() * 100 + 'vh';
// Random animation delay and duration
p.style.animationDelay = Math.random() * 15 + 's';
p.style.animationDuration = Math.random() * 10 + 10 + 's';
container.appendChild(p);
}