document.addEventListener('DOMContentLoaded', function() { const teclas = document.querySelectorAll('.teclado input[type="button"]'); const telefoneInput = document.querySelector('input[type="tel"]');
teclas.forEach(function(tecla) {
tecla.addEventListener('click', function() {
const valorTecla = this.value;
telefoneInput.value += valorTecla;
console.log(`Valor da tecla clicada: ${valorTecla}`);
});
});
});