/* Quiz */
.pregunta-container {
  background-image: url(../assets/img/bg-pregunta.webp);
  background-position: 100% center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-top: 100px;
}

.pregunta .elementos { position: absolute;}

.pregunta .elemento1 { left: 15%; top: 150px; max-width: 50px;}
.pregunta .elemento2 { right: 15%; top: 150px; max-width: 70px;}
.pregunta .elemento4 { right: 15%; bottom: 150px; max-width: 80px;}
.pregunta .elemento3 { left: 15%; bottom: 150px; max-width: 70px;}


.contenedor-pregunta {
  max-width: 600px;
  text-align: center;
}

.pregunta--titulo {
  font-size: 3.3rem;
  font-family: 'zar';
  color: #2B2135;
  max-width: 420px;
}

/* Formulario */
.formulario-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: -50px;
  min-height: 800px;
}

.formulario .elementos { position: absolute;}

.formulario .elemento1 { left: 50%; top: 0px; max-width: 50px; transform: translate(-50%, 0);transition: all 1.3s ease-in-out;}

.formulario .elemento2 { left: 50%; top: -80px; max-width: 80px; transform: translate(-50%, 0); transition: all 1.3s ease-in-out;}

.contenedor-formulario {
  max-width: 600px;
  text-align: center;
  transition: all 1.3s ease-in-out;
}

.formulario--titulo {
  font-size: 1.3rem;
  font-family: 'athelas-b';
  color: #2B2135;
  max-width: 500px;
}

.formulario-a {
  background-color: #2B2135;
  color: #fff;
  border-radius: 20px;
  padding: 10px  20px;
  display: block;
  max-width: 200px;
  margin: 0 auto;
  margin-top: 30px;
}

.formulario-a__explorar {
  background-color: #2B2135;
  color: #fff;
  border-radius: 20px;
  padding: 10px  20px;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 10px;
}

.formulario-a__reiniciar {
  color: #000;
  border-radius: 20px;
  padding: 10px  20px;
  display: block;
  margin: 0 auto;
  text-decoration: underline;
  font-family: 'athelas';
}

.formulario--titulo__pregunta {
  font-size: 1.8rem;
  font-family: 'athelas-b';
  color: #2B2135;
  max-width: 700px;
  text-align: center;
}

.contenedor-preguntas {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
  transition: all 1.3s ease-in-out;
  position: absolute;
  left: -100%;
  opacity: 0;
}

.contenedor-respuestas {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 25px;
}

.contenedor-respuestas p {
  margin-bottom: 0;
  font-family: 'athelas';
  font-size: 1.3rem;
  cursor: pointer;
  position: relative;
}

.contenedor-respuestas p:hover .img-respuesta{
  opacity: 1;
}

.contenedor-respuestas span {
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
}

.img-respuesta {
  position: absolute;
  left: -30px;
  top: -25px;
  width: 100px;
  transition: all .6s ease-in-out;
  opacity: 0;
  max-width: 85px;
}

.contenedor-resultado {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: all 1.3s ease-in-out;
  position: absolute;
  left: -100%;
  top: 0;
  opacity: 0;
  width: 100%;
  background-image: url(../assets/img/quiz/bg-resultado.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.formulario--titulo__resultado {
  font-family: 'zar';
  transform: rotate(-15deg);
  line-height: 1;
  margin-top: 30px;
}

.formulario--titulo__resultado span {
  display: block;
}

.formulario--titulo__resultado span.title {
  color: #4D475C
}

.formulario--titulo__resultado span.highlight {
  color: #BA4C29;
  font-size: 3.3rem;
}

.img-resultado {
  max-width: 250px;
  margin-bottom: 50px;
}

.logo-tiendas {
  width: 100%;
  max-width: 600px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.logo-tiendas img{
  width: 100%;
  max-width: 110px;
}