@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: #3f3d3f;
  font-family: "Ubuntu", sans-serif;
}
body {
  background: #fff;
  height: 100vh;
}
.container {
  width: 700px;
  margin: 0 auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fffffe;
  text-align: center;
  margin-top: 80px;
  min-height: 500px;
}
footer {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: #3f3d3f;
  bottom: 0;
  width: 100%;
}
footer p {
  color: #fff;
}
h1 {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 40px;
}
.pergunta {
  animation: slide 0.7s forwards;
}
@keyframes slide {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.progress {
  height: 15px;
  width: 100%;
  margin-bottom: 30px;
}
.barra {
  background: #2a7c7b;
  height: 100%;
  transition: 0.5s;
  margin-top: 40px;
}
h2 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left;
}
.alternativas {
  display: grid;
  gap: 5px;
}
button,
.btn {
  width: 100%;
  height: 40px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.4s;
  color: #62bac0;
  border: #62bac0 1px solid;
  border-radius: 6px;
  font-weight: 500;
  background: #f8fbfb;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  min-width: 300px;
}
button:hover {
  background: #62bac0;
  color: #fff;
}
ol {
  margin: 20px auto;
  text-align: left;
  padding-left: 20px;
}
ol li {
  margin-bottom: 10px;
}
.pergunta5 .btn {
  margin: 30px auto;
}
svg path,
svg rect {
  fill: #ff6700;
}
.loading {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1500px) {
  footer {
    height: 40px;
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 900px) {
  .container {
    width: 90%;
    height: auto;
    min-height: none;
    margin-top: 40px;
  }
  .alternativas {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 425px) {
  button,
  .btn {
    font-size: 14px;
    max-width: 100%;
    min-width: 150px;
  }
  .container {
    padding: 20px 10px;
  }
  .loading {
    flex-direction: column;
  }
}
