.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.whats-fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
  animation: move 3s infinite;
  z-index: 1222;
  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: transat-text, sans-serif;
  font-weight: 400;
}
a {
  transition: 0.3s;
}

.box {
  background: url(/img/main.webp) no-repeat center center;
  background-size: cover;
}
.amb {
  background: url(/img/bg-amb.webp) no-repeat center center;
  background-size: cover;
}
.serv {
  background: url(/img/bg-servicos.webp) no-repeat center center;
  background-size: cover;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  box-shadow: 0px 0px 10px 40px #bc8034 inset;
  padding: 10px 40px;
  max-width: fit-content;
  color: #f2f2f2;
  font-size: 1.25rem;
}
.btn > span {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  max-width: 30px;
  min-width: 30px;
  background-color: #f2f2f2;
  transition: 0.3s;
}

.btn:hover {
  box-shadow: 0px 0px 0px 2px #bc8034 inset;
  color: #bc8034;
}
.btn:hover > span {
  background-color: #bc8034;
}

.sec {
  box-shadow: 0px 0px 10px 40px #f2f2f2 inset;
  color: #bc8034;
}
.sec > span {
  background-color: #bc8034;
}
.sec:hover > span {
  background-color: #f2f2f2;
}
.sec:hover {
  box-shadow: 0px 0px 0px 2px #f2f2f2 inset;
  color: #fff;
}

.menu-atual {
  color: #bc8034;
}
.menu-atual:after {
  content: "";
  display: block;
  width: 100% !important;
  height: 1px;
  background-color: #bc8034;
  transition: 0.3s;
}
.guarda {
  background: url(/img/guarda.webp) repeat-y center center;
  background-size: cover;
  background-color: #000;
}
.guarda-amb {
  padding: 80px 0px;
}
