window.addEventListener('scroll', function () { const blanco = document.getElementById('header-blanco'); const verde = document.getElementById('header-verde'); if (window.scrollY > 80) { if (blanco) { blanco.style.opacity = '0'; blanco.style.pointerEvents = 'none'; } if (verde) { verde.style.zIndex = '9999'; } } else { if (blanco) { blanco.style.opacity = '1'; blanco.style.pointerEvents = 'auto'; } if (verde) { verde.style.zIndex = '1'; } } });