
@keyframes fill {
    from { width: 0%; }
    to   { width: 100%; }
}

@keyframes zoomOut {
  from {
    background-size: 110%;
    opacity: 0.7;
  }

  to {
    background-size: cover;
    opacity: 1;
  }
}

@keyframes subirFade {
  to {
    opacity: 1;
    transform: translateY(0);

    /* margin diminui suavemente */
    margin-top: 0px;
  }
}