Ir directamente al contenido
document.querySelectorAll('.scroll-link').forEach(function(anchor) {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const target = document.querySelector(targetId);
const offset = 120;
const position = target.getBoundingClientRect().top + window.pageYOffset - offset;
window.scrollTo({
top: position,
behavior: 'smooth'
});
});
});