* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  font-size: 1rem;
  color: #010101;
}
body {
  background: #3f8fcb;
}
.passos {
  display: flex;
  margin: 5rem auto;
  justify-content: center;
  gap: 0.75rem;
}
.passo {
  background: #9da0d4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 8rem;
  position: relative;
  transition: 0.4s;
  border-radius: 0.8rem;
}
.passo.ativo {
  background: #313159;
  cursor: pointer;
}
.passo.ativo span {
  color: #ffff;
}
.passo.clickavel {
  background: #72757a;
  cursor: pointer;
  display: none;
}
.passo svg {
  position: absolute;
  top: 0;
  right: 0;
}
.svg2 {
  left: 0;
}
.passo span {
  color: #222a35;
  font-weight: bold;
  font-size: 0.9rem;
}
.container {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #010101;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
}
.btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 500;
  color: #fff;
  margin: 0 auto 20px auto;
  padding: 0 20px;
}
h2 {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}
.radio {
  opacity: 0;
  z-index: 0;
  position: absolute;
}
.pergunta {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: slide 0.4s forwards;
}
@keyframes slide {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.btn {
  background: #9da0d4;
  display: block;
  border: none;
  text-align: center;
  width: 100%;
  font-weight: bold;
  padding: 10px 40px;
  cursor: pointer;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #010101;
  border-radius: 0.5rem;
}
.btn:hover {
  transform: scale(1.1);
}

footer {
  height: 40px;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #186eb6;
  margin-top: 30px;
  position: fixed;
  bottom: 0;
}
footer span {
  color: #fff;
  font-size: 12px;
}
.oculto {
  display: none;
}

@media (max-width: 800px) {
  .container {
    width: 90%;
  }
  h1 {
    padding: 0;
  }
}
@media (max-width: 550px) {
  .btns {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .btn {
    width: 100%;
  }
  .mob {
    display: none;
  }
  .passo svg {
    display: none;
  }
  .passos {
    margin: 20px auto;
  }
  h1 {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
  }
  .passo {
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    margin: 5px;
  }
  .passo:last-child {
    width: 90px;
    border-radius: 0;
  }
}
