Hi carlucci,
You can use the following CSS code.
.top-large {
padding-top: 4rem;
}
However, this code will change for all the pages on your site.
If you want to change only for the home page/ this section, you can go to the Backend > Site Modules > Seleccionar recetas and add the custom Class here:
And use the following code:
@media (min-width: 768px) {
h3.section-title.margin-top-small {
margin-top: -4rem;
}
}
NOTE: Remove the previous CSS code that you used.
Hope this help!