$(document).ready(function(){

    $('.subir-topo').click(function(event){
    
    
        $('html, body').animate({
            scrollTop: $("#geral").offset().top
        }, 1800);
        return false;
		event.preventDefault(event);
    });
});
