@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 32px;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
  color: #131413;
  text-decoration: none;
}
body {
  background: #ededed;
  height: auto;
  padding: 60px 0;
}
.container {
  width: 1140px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 30px;
}
footer {
  margin-top: 40px;
  background: #7b8aa8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}
footer span {
  font-size: 14px;
}
.links a {
  padding: 0 10px;
  transition: 0.5s;
}
h1 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 40px;
}
h2 {
  font-size: 14px;
  font-weight: 300;
}
.pergunta {
  font-weight: 500;
  margin-bottom: 40px;
}
.butons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.btn {
  cursor: pointer;
  width: 100%;
  min-width: 200px;
  height: 46px;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #051df6;
}
.btn:hover {
  filter: brightness(80%);
}
.active {
  display: none;
}
.etapa {
  animation: show 0.7s forwards;
}
@keyframes show {
  from {
    transform: translate3d(-60px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.steps {
  display: flex;
}
.step {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.152);
  opacity: 0.2;
  margin: 10px;
  border-radius: 50%;
  font-weight: bold;
}
.foi {
  background: #000;
  color: #fff;
}
.progre {
  background: linear-gradient(270deg, #f01002 0%, #d17305 47.4%, #b6bd08 100%);
  height: 100%;
  transition: 0.5s;
  width: 0%;
}

@media (max-width: 1140px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 660px) {
  h1 {
    font-size: 24px;
    line-height: 30px;
  }
  .pergunta {
    font-size: 18px;
  }
  .butons {
    grid-template-columns: 1fr;
  }
  .steps {
    flex-wrap: wrap;
    justify-content: center;
  }
}
