const svgImage = document.getElementById('svg-image');
svgImage.addEventListener('mouseover', function() {
this.style.fill = '#7EF862';
});
svgImage.addEventListener('mouseout', function() {
this.style.fill = ''; // Restaura el color original del SVG al dejar de hacer hover
});