@keyframes flutuar {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes balancar {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(2deg);
  }
}

@keyframes brilho {
  0%,
  100% {
    opacity: 0.7;
    box-shadow: 0 0 0 rgba(255, 209, 92, 0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 28px rgba(255, 209, 92, 0.35);
  }
}

@keyframes aguaCorrendo {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 120px;
  }
}
