
// Detecta si el dispositivo es móvil y muestra la imagen adecuada
function ajustarImagen() {
const isMobile = window.innerWidth <= 768;
document.getElementById('imagenPC').style.display = isMobile ? 'none' : 'block';
document.getElementById('imagenMobile').style.display = isMobile ? 'block' : 'none';
}
window.addEventListener('resize', ajustarImagen);
window.addEventListener('load', ajustarImagen);