.animacao__degrade {
  animation: backgroundAnimateTopo 16s linear alternate infinite;
  background-size: 400% !important;
  background-repeat: no-repeat !important;
}

.banner {
  position: relative;
}
.banner .animacao__degrade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background-size: 400% 100%;
  opacity: 0.4;
}
.banner figure {
  z-index: -1;
  position: relative;
}

.rotate-animation {
  transition: transform 0.1s linear;
}

.carrossel-setas_horizontal {
  position: absolute;
  display: flex;
  gap: 20px;
  top: 0;
  right: 0;
  height: 100%;
}
.carrossel-setas > div {
  display: flex;
  height: 100%;
  align-items: center;
}
.carrossel-setas > div .seta {
  font-size: 2rem;
  color: black;
  height: 100%;
  right: -130px;
  position: relative;
}
.carrossel-setas > div .seta img {
  height: 100%;
}

@keyframes transition {
  to {
    --angle-sd: 82.41deg;
  }
}
@keyframes dots {
  0%, 20% {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    color: white;
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  60% {
    text-shadow: 0.25em 0 0 white, 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  80%, 100% {
    text-shadow: 0.25em 0 0 white, 0.5em 0 0 white;
  }
}
@keyframes dots-black {
  0%, 20% {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0.25em 0 0 rgba(255, 255, 255, 0), 0.5em 0 0 rgba(255, 255, 255, 0);
  }
  40% {
    color: white;
    text-shadow: 0.25em 0 0 rgba(255, 255, 255, 0), 0.5em 0 0 rgba(255, 255, 255, 0);
  }
  60% {
    text-shadow: 0.25em 0 0 black, 0.5em 0 0 rgba(255, 255, 255, 0);
  }
  80%, 100% {
    text-shadow: 0.25em 0 0 black, 0.5em 0 0 black;
  }
}
@keyframes borderAnimate {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 300%;
  }
}
@keyframes backgroundAnimate {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 100%;
  }
}
@keyframes backgroundAnimateTopo {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes moverSeta {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(200px);
    opacity: 0;
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flipRightOut {
  0% {
    opacity: 1;
    transform: rotateY(0deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(90deg);
  }
}

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