:root {
  --verde: #00A551;
}
.container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.whats-fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
  animation: move 3s infinite;
  z-index: 222;
}

@keyframes move {
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}

html {
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: #fff;
}
a {
  transition: 0.3s;
}
body {
  background-color: #0F110D;
}
.guarda {
  background: url(/img/bg.png) no-repeat center center;
  background-size: cover;
}

.direitos {
  padding: 100px 10px 20px;
}
.direitos-grid {
  display: grid;
  justify-items: center;
  font-weight: 300;
}
.direitos-grid a:hover {
  color: var(--verde);
}