Hi @mairaaboleda,
Thank you for contacting us.
I checked your site in smaller screen. To reduce spaces between widgets in your site’s footer in smaller screen, you’d add this CSS code to Appearance > Customize > Additional CSS from dashboard.
@media only screen and (max-width: 991px) {
.footer-widgets .widget {
margin-bottom: 10px;
}
.footer-widgets .widget-title {
display: none;
}
.footer-widgets .widget {
margin-top: -20px;
}
}
Also, you may need to delete the empty widget in second column if you still see an odd space there.
Hope this reply helps.