:root {
  --cor-escura: #1E1E1E;
  --cor-clara: #F2F2F2;
  --verde: #01722E;
  --vermelho: #E30016;
}

.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: bio-sans;
  color: var(--cor-escura);
}

h1,
h2,
h4 {
  font-weight: 900;
  font-family: azo-sans-web;
  text-transform: uppercase;
  line-height: 1.2em;
  text-align: center;
}

h1 {
  font-size: 5rem;
  line-height: 1.1em;
}

h2 {
  font-size: 3.75rem;
}

h3 {
  font-size: 1.5rem;
  font-family: azo-sans-web;
  text-transform: uppercase;
  text-align: center;
}

h4 {
  font-size: 1.25rem;
}

p {
  font-family: bio-sans;
  font-size: 1.25rem;
  text-align: center;
}

a {
  transition: 0.3s;
}

svg path {
  transition: .3s;
}

.guarda {
  background: url(/img/main-bg.webp) no-repeat center center;
  background-size: cover;
}
.guarda-verde {
  background: url(/img/bg-verde.webp) no-repeat center center;
  background-size: cover;
}

.btn,
.btn-2 {
  font-family: azo-sans-web, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: fit-content;
  padding: 10px 25px;
  border-radius: 10px;
  font-size: 1.125rem;
}

.btn {
  box-shadow: 0px 0px 40px 40px var(--verde) inset;
  color: var(--cor-clara) !important;
}

.btn:hover {
  color: var(--verde) !important;
  box-shadow: 0px 0px 2px 2px var(--verde) inset;
}

.btn:hover svg path {
  fill: var(--verde);
}

.btn-2 {
  box-shadow: 0px 0px 40px 40px var(--cor-clara) inset;
  color: var(--verde) !important;
}

.btn-2:hover {
  color: var(--cor-clara) !important;
  box-shadow: 0px 0px 2px 2px var(--cor-clara) inset;
}

.btn-2:hover svg path {
  fill: var(--cor-clara);
}



@media only screen and (min-width: 330px) and (max-width: 380px) {

  .btn,
  .btn-2 {
    gap: 10px;
    padding: 10px 15px;
    font-size: 1rem;
  }

}

@media only screen and (min-width: 0px) and (max-width: 329px) {

  .btn,
  .btn-2 {
    gap: 5px;
    padding: 10px 12px;
    font-size: .95rem;
    flex-direction: column;
  }

}