@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}

body {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #000;
}

nav {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-item: center;
  justify-content: space-between;
  height: 100%;
}

.container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

header {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 750px;
  margin-top: 50px;
}

@media only screen and (max-width: 1080px) {
  header {
    margin-top: 30px;
  }
}

header h2 {
  color: #f78f08;
  font-size: 30px;
}

@media only screen and (max-width: 1080px) {
  header h2 {
    font-size: 22px;
  }
}

label {
  color: #fff;
  font-size: 15px;
  margin-top: 5px;
}

@media only screen and (max-width: 1080px) {
  label {
    font-size: 13px;
    margin-top: 10px;
  }
}

main {
  background-color: #2b2b2b;
  padding: 37px 30px 50px 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  box-shadow: 5px 8px 10px -3px rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 1080px) {
  main {
    padding: 30px 20px;
    width: 90%;
  }
}

main .content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

main .content .spnQtd {
  text-align: end;
  color: #fff;
  font-size: 18px;
}

@media only screen and (max-width: 1080px) {
  main .content .spnQtd {
    display: none;
  }
}

main .content .question {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
  border-left: 4px solid #f78f08;
  padding-left: 15px;
}

@media only screen and (max-width: 1080px) {
  main .content .question {
    margin-top: 10px;
    font-size: 16px;
  }
}

main .content .answers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#button1,
.proposta {
  width: 100%;
  text-align: start;
  padding: 12px;
  border: 2px solid #ebe9e8;
  border-radius: 6px;
  cursor: pointer;
  background-color: #f7f6f5;
  color: #000;
  transition: 0.4s;
  text-decoration: none;
  margin-top: 5px;
  font-size: 14px;
}

@media only screen and (max-width: 1080px) {
  #button1,
  .proposta {
    font-size: 13px;
  }
}

#button1:hover,
.proposta:hover {
  border: 2px solid #f78f08;
}

#button2 {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  height: 120px;
  justify-content: center;
  border: 2px solid #ebe9e8;
  border-radius: 6px;
  cursor: pointer;
  background-color: #f7f6f5;
  color: #2b2b2b;
  transition: 0.4s;
  text-decoration: none;
  margin-top: 5px;
  font-size: 14px;
}

@media only screen and (max-width: 1080px) {
  #button2 {
    font-size: 13px;
    width: 130px;
    height: 90px;
  }
}

#button2:hover {
  border: 2px solid #f78f08;
}

.icon {
  width: 40px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1080px) {
  .icon {
    width: 24px;
    margin-bottom: 5px;
  }
}

.progress {
  height: 10px;
  background-color: #cecece;
  border-radius: 30px;
  position: relative;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1080px) {
  .progress {
    margin-bottom: 10px;
  }
}

.progress .progress-bar {
  position: absolute;
  height: 100%;
  background-color: #f78f08;
  border-radius: 30px;
  width: 0%;
  transition: 0.8s;
}

main .finish {
  display: none;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  font-size: 22px;
  align-items: center;
}

@media only screen and (max-width: 1080px) {
  main .finish {
    font-size: 16px;
  }
}

.box {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 12px;
}

@media only screen and (max-width: 1080px) {
  .box {
    flex-direction: column;
  }
}

.finish button,
a {
  text-align: center !important;
  width: 222px !important;
}

@media only screen and (max-width: 1080px) {
  .finish button,
  a {
    margin: 5px 0 10px 0 !important;
    width: 100% !important;
  }
}

.contentInfo {
  background-color: #2b2b2b;
  padding: 37px 30px 50px 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 750px;
  display: flex;
  margin-top: 35px;
  box-shadow: 5px 8px 10px -3px rgba(255, 255, 255, 0.2);
  margin-bottom: 80px;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media only screen and (max-width: 1080px) {
  .contentInfo {
    padding: 20px;
    width: 90%;
  }
}

.contentInfoWrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  transition: scroll-left 0.6s;
}

.boxCard {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media only screen and (max-width: 1080px) {
  .boxCard {
    align-items: center;
  }
}

button#prevBtn,
button#nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 1;
}

button#prevBtn {
  left: 10px;
}

button#nextBtn {
  right: 10px;
}

.contentInfo h1 {
  color: #fff;
  font-size: 21px;
  border-left: 4px solid #f78f08;
  padding-left: 15px;
  width: 100%;
}

.contentInfo h2 {
  color: #00cf9b;
  font-size: 23px;
  margin-top: 10px;
  width: 100%;
}

.contentInfo p {
  color: #fff;
  font-size: 15px;
  margin-top: 10px;
  width: 100%;
}

.contentInfo img {
  width: 320px;
  margin-top: 12px;
}

@media only screen and (max-width: 1080px) {
  .contentInfo h1 {
    font-size: 18px;
  }

  .contentInfo h2 {
    font-size: 19px;
  }

  .contentInfo p {
    font-size: 14px;
  }

  .contentInfo img {
    width: 240px;
    margin-top: 12px;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  background-color: #2b2b2b;
}

footer .content-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 750px;
}

footer .content-footer text {
  font-size: 14px;
  color: #f1f1f1;
}

@media only screen and (max-width: 1080px) {
  footer .content-footer text {
    font-size: 12px;
  }
}

footer .content-footer div {
  display: block;
  margin-top: 7px;
}

footer .content-footer div .link {
  font-size: 14px;
  color: #b0aeae;
  margin-top: 10px;
  text-decoration: none;
  transition: 0.2s;
}

@media only screen and (max-width: 1080px) {
  footer .content-footer div .link {
    font-size: 12px;
  }
}

footer .content-footer a:hover {
  text-decoration: underline;
  color: #f1f1f1;
}