.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.whats-fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
  animation: move 3s infinite;
  z-index: 222;
  max-width: 65px;
}

@keyframes move {
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}

html {
  font-size: 16px;
  font-family: "Kanit", sans-serif;
  --cor: #00013a;
  color: #fff;
}
a {
  transition: 0.3s;
}
h1 {
  font-family: Brinnan;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.15em;
  text-transform: uppercase;
  max-width: 900px;
}

.btn {
  font-size: 1.25rem;
  box-shadow: 0px 0px 0px 1px #f2f2f2 inset;
  background: rgba(217, 217, 217, 0.15);
  backdrop-filter: blur(2px);
  padding: 11px 26px;
  max-width: fit-content;
}
.btn:hover {
  box-shadow: 0px 0px 10px 30px #f2f2f2 inset;
  color: var(--cor);
}
.btn-2 {
  color: #0001cf;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 1.25rem;
  border: 1px solid #0001cf;
  box-shadow: 0 0 0 #0001cf inset;
  padding: 8px 15px;
}
.btn-2:hover {
  box-shadow: 50px 0 0 #0001cf inset;
}
@media only screen and (max-width: 330px) {
  .btn-2:hover {
    box-shadow: none;
  }
  .btn-2 {
    font-size: 1.15rem;
  }
  .btn-2 img {
    display: none;
  }
}

.guarda {
  background: url(/img/bg.webp) no-repeat center center;
  background-size: cover;
}
.title {
  color: rgba(255, 255, 255, 0.5);
  font-family: Brinnan;
  font-size: 2.5rem;
  letter-spacing: 15px;
  font-weight: 300;
  text-align: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2em;
  padding: 20px 0px;
}

.floripa {
  opacity: 0;
  transform: translateY(200px);
  transition: 0.6s;
}
.guarda-floripa {
  overflow-y: hidden;
}
.ativo {
  opacity: 1;
  transform: translateY(0px);
}
.esquerda .bloco-img {
  transform: translate(-100%);
  opacity: 0;
}
.esquerda .bloco-content {
  transform: translate(100%);
  opacity: 0;
}
.direita .bloco-img {
  transform: translate(100%);
  opacity: 0;
}
.direita .bloco-content {
  transform: translate(-100%);
  opacity: 0;
}
.ativo .bloco-img {
  transform: translate(0px);
  opacity: 1;
}
.ativo .bloco-content {
  transform: translate(0px);
  opacity: 1;
}

.hold > a {
  opacity: 0;
  transform: translate(-40px);
  transition: 0s;
}
.ativo > a {
  opacity: 1;
  transform: translate(0px);
}
.hold > a:nth-child(1) {
  transition: transform 0.5s, opacity 0.5s;
}
.hold > a:nth-child(2) {
  transition: transform 1s, opacity 1s;
}
.hold > a:nth-child(3) {
  transition: transform 1.5s, opacity 1.5s;
}
.hold > a:nth-child(4) {
  transition: transform 2s, opacity 2s;
}
