@keyframes bounce {
  0%,20%,6%,100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  } 
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.scrollspySite {
  position: relative;
  overflow: auto;
  height: 320px;
}

.scrollspySite {
  position: relative;
  overflow: auto;
  height: 320px;
}

/*# sourceMappingURL=style.css.map */
.btns {
  text-align: center;
  margin-top: 58px;
}

.efeito {
  border: none;
  color: #ffffff;
  padding: 20px;
  margin: 10px;
  font-size: 24px;
  line-height: 24px;
  border-radius: 10px;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms ease;
}

.efeito-1 {
  background-color: #28348a;
}

.efeito-1:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 64px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  transition: all 2s ease;
}

.efeito-1:hover:before {
  width: 100%;
}

.efeito-2 {
  background-color: #772158;
}
.efeito-2:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  transition: all 2s ease;
}

.efeito-2:hover:before {
  height: 64px;
}

.efeito-3 {
  background: #000c3d;
}

.efeito-3:hover {
  background: rgba(0,0,0,0);
  color: #000c3d;
  box-shadow: inset 0 0 0 3px #000c3d;
}
.efeito-4 {
  background: #f18f81;
}

.efeito-4:hover {
  animation: bounce 1s;
}

.efeito-5 {
  background: #db3a34;
}

.efeito-5:hover {
  transform: skew(-10deg);
}

.efeito-6 {
  background: #376693;
  transform-style: preserve-3d;
}

.efeito-6:after {
  top: -100%;
  left: 8px;
  width: 100%;
  padding: 20px;
  position: absolute;
  background: #3a9999;

  box-sizing: border-box;
  content: 'Mudei';
  transform-origin: left bottom;
  transform: rotateX(90deg);
}

.efeito-6:hover {
  transform-origin: center bottom;
  transform: rotatex(-90deg) translateY(100%);
}


/*# sourceMappingURL=style.css.map */
