<script>
document.addEventListener('DOMContentLoaded', () => {
const url = window.location.href;
if (url.includes('/responde-mail-ia')) {
// Permitir scroll solo en páginas que contienen "/tienda"
document.body.style.overflow = 'auto';
document.body.style.height = 'auto';
document.body.style.touchAction = 'auto';
} else {
// Bloquear scroll en todas las demás páginas
document.body.style.overflow = 'hidden';
document.body.style.height = '100vh';
document.body.style.touchAction = 'none';
}
});
</script>