.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 {
  --maincor: #A98F71;
  --segcor: #0A2239;
  --branco: #f2f2f2;
  background-color: var(--branco);
  font-size: 16px;
  font-family: "ofelia-display", sans-serif;
  color: var(--segcor);
}
a {
  transition: 0.3s;
}
.guarda {
  background: url(/img/fundo-main.webp) no-repeat center center;
  background-size: cover;
}

.btn {
  color: var(--branco);
  background-color: var(--maincor);
  padding: 25px 40px;
  padding-bottom: 22px;
  border: 1px solid var(--maincor);
  box-shadow: 0px 0px 0px 10px var(--branco) inset;
  max-width: fit-content;
  text-transform: uppercase;
}
.btn:hover {
  box-shadow: 0px 0px 0px 4px var(--branco) inset;
}
.btn2 {
  background-color: var(--segcor);
  border: 1px solid var(--segcor);
}
h1 {
  font-size: 6rem;
  text-align: center;
  max-width: 700px;
  line-height: 1.1em;
  font-family: 'margaret';
}
.title-destaq {
  color: var(--maincor);
}

.title {
  max-width: fit-content;
  display: grid;
  gap: 15px;
  justify-items: center;
  text-align: center;
}
.title h5 {
  font-size: 1rem;
  font-weight: 350;
}
.title h4 {
  font-size: 3rem;
  color: var(--maincor);
  line-height: 1em;
  font-family: 'margaret';
}
.esq {
  justify-items: left;
  text-align: left;
  margin-right: auto;
}
.dir {
  justify-items: right;
  text-align: right;
  margin-left: auto;
}
