document.addEventListener('DOMContentLoaded', function() {
const fileInputs = document.querySelectorAll('input[type="file"]');
fileInputs.forEach(function(fileInput) {
const label = fileInput.nextElementSibling;
if (label) {
fileInput.setAttribute('title', 'Select File'); // Cambia el texto emergente
}
});
});