i'm trying to use background-image to add gradient on text but the transition to another gradient on hover is not working.
#footer .footer-newsletter .footer-top .contato {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  background-image: linear-gradient(90deg, #ffc746 20%, #f3bb3a 40%, #e7b02e 60%, #daa520 80%, #cd9a0e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: background-image 0.5s ease-in-out;
  transition: background-image 0.5s ease-in-out;
}
#footer .footer-newsletter .footer-top .contato:hover {
  background-image: linear-gradient(90deg, #cd9a0e 20%, #daa520 40%, #e7b02e 60%, #f3bb3a 80%, #ffc746 100%);
  -webkit-transition: background-image 0.5s ease-in-out;
  transition: background-image 0.5s ease-in-out;
} 
 
    