How to remove title from page and keep the title of the post

I wanted to know how can I remove the title from the page without changing the title of the post?

I used a code to remove the title. But it also removes the title from the post. Which is not interesting because it’s a blog page

This is my site: http://www.magnitudetarot.com/pagina-exemplo/blog/

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the title by going to Appearance > Customize > Other > Additional CSS and pasting it there.


/*Hide post title*/
.entry-title a {
    display: none;
}

Best Regards,
Support