/* Efeito Botão Líquido */
.containerBotoes {
  width: 250px;
  height: 70px;
  position: relative;
}

.botaoSuperior,
.botaoInferior {
  font-family: "Clash Display";
  font-weight: 500;
  width: 100%;
  height: 100%;
  letter-spacing: 1px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
}

.botaoSuperior {
  background: linear-gradient(130deg, #0038ff, #79dcff);
  mask: url("/img/nature-sprite.png");
  -webkit-mask: url("/img/nature-sprite.png");
  mask-size: 2300% 100%;
  mask-position: 0 0;
  -webkit-mask-size: 2300% 100%;
  z-index: 1;
  position: relative;
}

.botaoInferior {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 97%;
  height: 97%;
  background-color: white;
  color: black;
}

@keyframes mascara {
  to {
    mask-position: 100% 0;
  }
}

@keyframes mascaraReverse {
  from {
    mask-position: 100% 0;
  }
  to {
    mask-position: 0% 0;
  }
}

@media screen and (max-width: 684px) {
  .containerBotoes {
    width: 300px;
  }
}
