* {
  margin: 0;
  padding: 0;
  font-family: "Oxygen", sans-serif;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  font-size: 18px;
  color: #525253;
}
body {
  background: #ebedef;
}
.etapas {
  display: flex;
  margin: 50px auto;
  justify-content: center;
}
.etapa {
  background: #72757a;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 90px;
  position: relative;
  transition: 0.4s;
}
.etapa.ativo {
  background: #dac106;
  cursor: pointer;
}
.etapa.ativo span {
  color: #fff;
}
.etapa.clickavel {
  background: #738d8d;
  cursor: pointer;
}
.etapa svg {
  position: absolute;
  top: 0;
  right: 0;
}
.svg2 {
  left: 0;
}
.etapa span {
  color: #050505;
  font-weight: bold;
  font-size: 14px;
}
.container {
  width: 800px;
  margin: 0 auto;
  text-align: center;
}
h1.titulo {
  font-size: 24px;
  line-height: 29px;
  font-weight: 500;
  margin: 0 auto 50px auto;
  padding: 0 80px;
}
h2 {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  background: #f49125;
  padding: 15px 20px;
  margin-bottom: 30px;
  width: 100%;
}
.radio {
  opacity: 0;
  z-index: 0;
  position: absolute;
}
.pergunta {
  display: grid;
  animation: slide 0.4s forwards;
}
@keyframes slide {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.card_resposta {
  background: #030700;
  display: block;
  border: none;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  font-weight: 500;
  padding: 10px;
  cursor: pointer;
  transition: 0.5s;
  color: #fff;
  border-radius: 5px;
}
.card_resposta:hover {
  filter: brightness(80%);
}
.card_resposta span,
a.card_resposta {
  color: #fff;
}
footer {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #53595a;
  margin-top: 60px;
}
footer span {
  color: #fff;
  font-size: 14px;
}
.oculto {
  display: none;
}

@media (max-width: 800px) {
  .container {
    width: 90%;
  }
  h1.titulo {
    padding: 0;
  }
}
@media (max-width: 550px) {
  .card_resposta {
    width: 100%;
  }
  .mob {
    display: none;
  }
  .etapa svg {
    display: none;
  }
  .etapas {
    margin: 20px auto;
  }
  h1 {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
  }
  .etapa {
    width: 40px;
    border-radius: 50%;
    margin: 5px;
  }
  .etapa:last-child {
    width: 90px;
    border-radius: 0;
  }
}
