function scrollToPlanos() { if ($('.section-planos').length != 0) { $("html, body").animate({ scrollTop: $('.section-planos').offset().top }, 1000); } } function scrollToHome() { if ($('.section-home').length != 0) { $("html, body").animate({ scrollTop: $('.section-home').offset().top }, 1000); } } function scrollToContato() { if ($('.section-contato').length != 0) { $("html, body").animate({ scrollTop: $('.section-contato').offset().top }, 1000); } } function scrollToSobre() { if ($('.section-sobre').length != 0) { $("html, body").animate({ scrollTop: $('.section-sobre').offset().top }, 1000); } } function scrollToCobertura() { if ($('.section-cobertura').length != 0) { $("html, body").animate({ scrollTop: $('.section-cobertura').offset().top }, 1000); } }