// Navegación sticky con blur ligero, fondo blanco const Nav = ({ current = 'home' }) => { const items = [ { key: 'producto', label: 'Producto', href: 'producto.html' }, { key: 'arquitectura', label: 'Arquitectura', href: 'arquitectura.html' }, { key: 'ias', label: 'IAs propietarias', href: 'ias-propietarias.html' }, { key: 'transferencia',label: 'Transferencia', href: 'transferencia.html' }, { key: 'seguridad', label: 'Seguridad', href: 'seguridad.html' }, { key: 'industrias', label: 'Industrias', href: 'industrias.html' }, ]; const [scrolled, setScrolled] = React.useState(false); React.useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 8); window.addEventListener('scroll', onScroll, { passive: true }); return () => window.removeEventListener('scroll', onScroll); }, []); return ( ); }; Object.assign(window, { Nav });