:root {
  --main-cor: #FFE62B;
  --cor-escura: #0C0C0C;
}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.whats-fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
  animation: move 2.3s infinite;
  z-index: 222;
  max-width: 65px;
}

@keyframes move {
  
  50% {
    transform: scale(1.1);
  }

}

html {
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}
a {
  transition: 0.3s;
}
svg path {
  transition: .3s;
}

.btn {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  padding: 16px 40px;
  border-radius: 90px;
  font-size: 1.5rem;
  color: #15410A;
  text-align: center;
  background: linear-gradient(90deg, #49C829 0%, rgba(73, 200, 41, 0.73) 100%);
  animation: btn 2.3s infinite;
}
.btn:hover {
  color: #fff;
}

@keyframes btn {

  50% {
    box-shadow: 0px 0px 5px #fff;
    transform: scale(1.05);
  }
  
}

.btn2 {
  background-color: var(--cor-escura);
  color: #fff;
  max-width: fit-content;
  padding: 12px 30px;
  font-size: 1.25rem;
  border-radius: 90px;
}
.btn2:hover {
  color: var(--main-cor);
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  line-height: 1.2em;
}
h1 > span {
  color: var(--main-cor);
}

h2 {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.2em;
  color: #fff;
}

.guarda {
  background: url(/img/main-bg.webp) no-repeat center center;
  background-size: cover;
}