it seems that, on pages like this:
https://proyectopiranha.com/editorial/
your overlay shows up and thus, the overlay background,
but you hide the overlay using css.
but you didnt hide the overlay background using css.
thats why on pages like that, you cant scroll or click anything, unless you click once to hide the transparent overlay background.
you could use this css:
body:not(.home) #lay-overlays{
display: none;
}
this will hide the overlays and overlay backgrounds on all pages except for home.
add this in:
lay options -> custom css & html -> custom css for desktop
now for mobile if you want to hide the overlay and the bg, everywhere, simply use:
#lay-overlays{
display: none;
}
add this in:
lay options -> custom css & html -> custom css for phone