/* animacion de links, principalmente para los que estan en el footer */

.link-animado a {
  position: relative;
  color: #FFF;
  text-decoration: none;
}

.link-animado a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  /* EFECTO QUE REBOTA */
  /*transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);*/
}

.link-animado a:hover::after {
  transform: scaleX(1);
}