¿Cuál es la capital de España?
document.addEventListener('DOMContentLoaded', () => {
// Crear botón flotante
const boton = document.createElement('button');
boton.innerText = '🔊 Test TTS';
boton.id = 'tts-flotante';
boton.style.cssText = `
position: fixed;
bottom: 20px;
right: 20px;
padding: 10px 15px;
background: #0073aa;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
z-index: 9999;
box-shadow: 0 4px 6px rgba(0,0,0,0.2);
`;
// Acción al pulsar
boton.onclick = () => {
alert('¡JS cargado correctamente!');
};
document.body.appendChild(boton);
});