document.querySelectorAll('button').forEach(function(button) {
button.addEventListener('click', function() {
const valorDinamico = this.getAttribute('data-valor');
setTimeout(function() {
document.querySelector('#dados input[name="id"]').value = valorDinamico;
}, 500); // Ajuste o tempo se necessário
});
});