Account details will be confirmed via email.

/* INÍCIO: Código personalizado para Lightbox da Veltter */ document.addEventListener('DOMContentLoaded', function() { var images = document.querySelectorAll('a[href$=".jpg"], a[href$=".png"], a[href$=".jpeg"]'); images.forEach(function(link) { link.addEventListener('click', function(e) { e.preventDefault(); var modal = document.createElement('div'); modal.style.position = 'fixed'; modal.style.top = '0'; modal.style.left = '0'; modal.style.width = '100vw'; modal.style.height = '100vh'; modal.style.background = 'rgba(0, 0, 0, 0.8)'; modal.style.display = 'flex'; modal.style.justifyContent = 'center'; modal.style.alignItems = 'center'; modal.style.zIndex = '9999'; var img = document.createElement('img'); img.src = link.href; img.style.maxWidth = '90%'; img.style.maxHeight = '90%'; modal.appendChild(img); document.body.appendChild(modal); modal.addEventListener('click', function() { document.body.removeChild(modal); }); }); }); }); /* FIM: Código personalizado para Lightbox da Veltter */