@font-face {
  font-family: "IBM Plex Sans";
  src: url(../fonts/IBMPlexSans-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url(../fonts/IBMPlexSans-BoldItalic.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Nexa";
  src: url(../fonts/Nexa\ Bold.otf);
  font-weight: 700;
}
body {
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Sans", sans-serif;
  counter-reset: chapter;
}

button {
  cursor: pointer;
}

.home {
  background-image: url(../img/bg-index.png);
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-title {
  text-align: center;
  color: #ff5ec9;
  font-weight: 700;
  font-size: 84pt;
  margin: 64px auto 0;
}

.home-text {
  text-align: center;
  color: white;
  font-weight: 400;
  font-size: 48px;
  margin: 0 auto 100px;
}
.home-text span {
  color: #ff5ec9;
  font-weight: 700;
}

.home-atencao {
  outline: 5px solid #264fec;
  border-radius: 30px;
  padding: 32px 32px 24px;
  margin: 64px auto;
  position: relative;
}
.home-atencao p {
  color: white;
  font-size: 31px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
}
.home-atencao p span {
  color: #ff5ec9;
  font-weight: 700;
}

.atencao {
  position: absolute;
  top: -18%;
  left: 10%;
}

.asterisco {
  margin: 0;
  font-size: 24px !important;
}

.btn-comecar {
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: auto;
}
.btn-comecar h2 {
  color: white;
  text-transform: uppercase;
  text-align: left;
  font-size: 40pt;
  font-family: "IBM Plex Sans";
  font-weight: 400 !important;
  line-height: 1.1;
  margin: 0;
}
.btn-comecar h2 span {
  font-size: 70pt;
  color: #ff5ec9;
  font-weight: 700;
}
.btn-comecar:focus {
  outline: none;
  border: none;
}

.quiz {
  background-image: url(../img/bg-perguntas.png);
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.btn-sair {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 5%;
  right: 5%;
}

.container {
  max-width: 800px;
}

.logo {
  display: block;
  margin: 120px auto;
  max-width: 100%;
}

.progress-bar {
  display: grid;
  grid-template-columns: 7fr 1fr;
  gap: 24px;
  justify-items: center;
  align-items: center;
  margin: 64px 0 24px;
}

.bar {
  outline: 3px solid #ff5ec9;
  border-radius: 10px;
  height: 8px;
  width: 100%;
}

.progress {
  width: 0%;
  height: 10px;
  background-color: #ff5ec9;
  border-radius: 10px;
}

.porcent {
  color: white;
  text-align: center;
  font-size: 32px;
  margin: 0;
}

.question-box {
  border: 5px solid #ff5ec9;
  border-radius: 30px;
  padding: 64px;
  margin: 24px 0 64px;
}

.question-number {
  font-size: 52pt;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  color: #ff5ec9;
  margin: 0;
}

.question-text {
  font-size: 26pt;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  text-align: justify;
  color: white;
  margin: 0;
}

.answers {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin: auto;
}

.btn-answers {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 24px;
}
.btn-answers:focus {
  outline: none;
  border: none;
}

.answer-letter {
  background-color: #264fec;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.answer-letter h2 {
  color: white;
  margin: 0;
  line-height: 1;
  font-size: 40pt;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  padding-left: 8px;
}
.answer-letter h2::before {
  counter-increment: chapter;
  content: counter(chapter, lower-alpha) ")";
}

.answer-text {
  margin: 0;
  color: white;
  text-align: left;
  font-size: 24pt;
}

.right .answer-letter {
  background-color: #8dbf43;
}
.right .answer-text {
  color: #8dbf43;
}

.wrong .answer-letter {
  background-color: #c70e0e;
}
.wrong .answer-text {
  color: #c70e0e;
}

.btn-confirmar {
  display: block;
  margin: 48px 0 0 auto;
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
  font-size: 32pt;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.btn-confirmar span {
  color: #ff5ec9;
  font-family: "Nexa", sans-serif;
  font-size: 40px;
  margin-left: 10px;
}
.btn-confirmar:focus {
  border: none;
  outline: none;
}

.resultados {
  background-image: url(../img/bg-resultados.png);
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-resultados {
  position: absolute;
  top: 5%;
  right: 0;
  left: 0;
  margin: auto;
}

.resultado-title {
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 95px;
}

.btn-resultado {
  background-color: #ff5ec9;
  display: block;
  padding: 24px 64px;
  margin: auto;
  border-radius: 30px;
  outline: none;
  border: none;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.ganhou img, .perdeu img {
  display: block;
  margin: 0 auto 56px;
}
.ganhou h2, .perdeu h2 {
  color: #ff5ec9;
  text-align: center;
  font-size: 90px;
  margin: 0;
}
.ganhou .btn-resultado, .perdeu .btn-resultado {
  margin: 120px auto 0;
}

.m-0 {
  margin: 0 !important;
}

.resultado-subtitle {
  color: white;
  text-align: center;
  font-weight: 400;
  font-size: 66px;
  line-height: 1;
  margin: 0;
}

.aviso {
  color: whitesmoke;
  text-align: center;
  font-size: 36px;
  margin: 0 auto 120px;
  margin-top: 48px;
}/*# sourceMappingURL=style.css.map */