.container {
  max-width: 1400px;
  padding-left: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 10px;
}

html {
  font-family: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Lexend", sans-serif;
  color: #fff;
}

.btn {
  background: #0200f9;
  border-radius: 20px;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 1.25rem;
  transition: 0.2s;
}

.btn:hover {
  transform: scale(1.05);
}

h3 {
  text-transform: uppercase;
  font-size: 2rem;
  color: #000000;
  font-weight: 700;
}

.link {
  color: #0200f9;
  text-decoration: underline;
  font-weight: 600;
  display: block;
}

.title-link {
  font-weight: 600;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 10px;
}

.strong {
  font-weight: 700;
  color: #0200f9;
}

.whats-fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
  animation: move 3s infinite;
  z-index: 200000;
  max-width: 70px;
}

@keyframes move {
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}

.maquinas {
  padding: 0 10px 80px;
}
.maquinas-grid {
  display: grid;
  gap: 30px;
  justify-items: center;
}

.maquinas-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  gap: 60px;
}
.uma-maquina {
  max-width: 412px;
  display: grid;
  gap: 20px;
}
.maquinas-content h2 {
  min-height: 61px;
  padding-left: 20px;
  box-shadow: 10px 0 0 #0200f9 inset;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3em;
}
