@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');
:root{
  --primary-color: #240a37;
  --secundary-color:#7875b6;
  --alternative-color:#ee5e79;
  --light-color:#ffd985;
  --white-color:#f6f6f6;
  --red-color:#901428;
  --white-color:#f6f6f6;
  --success-color:#10aa8d;
  --success-color-dark:#0c937a;
  --success-color-ultra-dark:#106b5a;
  --dark-color:var(--alternative-color)
}

*{
  margin: 0;
  padding: 0;
}

body{
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
    font-family: 'Dosis', sans-serif;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Dosis';
  font-weight: 600;
  color: #000;
  text-align: center;
}

canvas{
  width: 100% !important;
}
.header-home{
  width: 100%;
  display: flex;
  gap:20px;
  justify-content:center;
  align-items: center;
  padding: 20px;
}

.container{
  display: block;
  height: 100vh;
  position: fixed;
  top: 0;
  background: transparent;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  pointer-events: auto;
}
#contador{
  position: absolute;
  z-index: 100;
  background-color: var(--success-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  right: 10px;
  top: 10px;
  font-size: 1.1em;
}


.panorama-container{
  display: block;
  height: 100vh;
  position: fixed;
  top: 0;
  background: transparent;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  pointer-events: auto;
}

.form-container{
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px)
}
.form-container button{
  background-color: var(--alternative-color);
  color: white;
  border: none;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
}

.d-none{
    display: none !important;
}
span.ayuda{
  display: none;
}

.preguntas{
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 75vh;
}
.containerVideo{
    overflow: hidden;
    position: absolute;
    height: 90vh;
    
  }

.containerVideo video{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.pantalla-inicio, .container-placas{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(44, 10, 95, 0.5);
  backdrop-filter: blur(4px);
  position: absolute;
  top: 0;
}
.p-relative{
  position: relative;
}
.hotspot{
  display: flex;
  justify-content: center;
  padding: 2em;
  border-radius: 0.5em;
  max-width: 60%;
  background-color: var(--primary-color);
  background-image: url(../assets/iconos/textura.png);
  background-size: cover;
  background-position: center bottom;
  border: 4px solid #c3e1a2;
  backdrop-filter: blur(10px);
  text-align: center;
  margin: auto;
}

.hotspot-imagen{
  display: flex;
  max-height:350px;
  border-radius: 10px;
}
.img-hotspot{
  max-width: 280px;
  margin:0.5em 0;
}
.img-pan{
  max-width: 100%;
  margin:0.5em 0;
  opacity: 1;
  transition: 0.5s;
  transform: scale(1);
  cursor: pointer;
}
.img-pan:hover{
  opacity: 0.7;
  transform: scale(1.05);
}
.d-flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-start{
  justify-content: start;
  gap: 35px;
}
.respuestas.flex-start{
  margin-left: 20px;
}
.logos{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 1em;
}
.logos img:nth-child(1){
  width: 200px;
  filter: invert();
}
.logos img:nth-child(2){
  width: 150px;
  margin-top: 3px;
  filter: invert();
}
.inicio, .placa{
  text-align: center;
  background-color: #240a37c9;
  padding: 1em;
  border-radius: 0.5em;
  color: #fff;
  max-width: 80%;
}
.placa{
  background-color: transparent;
  margin: auto;
  max-width: 100%;
}
.container-placa{
  width: 90%;
  margin: auto;
}
.inicio h1{
  padding: 0.5em;
  display: inline-block;
  color: var(--alternative-color);
  margin-bottom: 0.3em;
  font-size: 1.6em;
  font-weight: 600;
}
.inicio h3{
  font-size: 1.2em;
  color: #fff;
  font-weight: 400;
}
.inicio h4{
  color: #fff;
}
.contenido{
  max-width: 90%;
  margin: auto;
  font-size: 1em;
}
.inicio .contenido{
  font-size: 1.1em;
}
.img-fluid{
  max-width: 100%;
}
.mt-4{
  margin-top: 1.5em;
}
.mt-1{
  margin-top: 0.5em;
}
.mt-2{
  margin-top: 1em;
}
.mb-2{
  margin-bottom: 1em;
}
.btn{
  font-family: 'Dosis';
  font-size: 1em;
  padding-right: 50px!important;
  margin-top: 1em;
}
.btn.btn-primary{
  background-color: var(--alternative-color);
  color: var(--white-color);
  border: none;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  background-image: url(../assets/iconos/1x/iconos-next.png)!important;
  background-repeat: no-repeat;
  background-position: 85% center;
  transition: 0.5s;
}
.btn.btn-secondary{
  background-color: var(--secundary-color);
  border: none;
  padding: 0.3em 1em;
  border-radius: 0.5em;
  text-transform: uppercase;
  font-weight: 400;
  font-size:0.8em;
  cursor: pointer;
  padding-right: 1em!important;
}
.btn:hover{
  background-position: 90% center;
}
.texto-placa{
  color: #fff;
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 0.3em;
}
.img-placa{
  max-width: 40%;
  border-radius: 0.5em;
}
.form-container h3{
  color: var(--alternative-color);
  font-size: 1.2em;
  text-transform: uppercase;
}
.form-container > div{
  background-color: #240a37c9;
  padding: 1em;
  border-radius: 0.5em;
  color: #fff;
  font-size: 1.1em;
  font-weight: 400;
}
.correcto, .incorrecto{
  background-color: var(--success-color-dark);
  color:#fff;
  border-radius: 0.3em;
  padding: 0.3em 0.5em;
  margin: 1em auto;
  border: 2px solid white;
  text-align: center;
  width: fit-content;
}
.incorrecto{
  background-color: var(--red-color);
}
.form-container > div.actividad{
  padding: 1em 2em;
}
.consigna-ampliada{
  font-size: 1.2em;
  margin: 1em 0;
}
.consigna{
  font-size: 1.2em;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--primary-color);
  font-weight: 500;
  padding: 0.5em;
  border-radius: 0.3em;
  margin-bottom: 1em;
  text-align: center;
}
.justify-start{
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
}
.mb-4{
  margin-bottom: 1.5em;
}
.form-control{
  padding: 0.3em 0.5em;
  font-size: 1em;
}
.incorrecto ul{
  margin-left: 1.5em;
  margin-top: 0.5em;
}
.text-center{
  text-align: center;
}
.superindice{
  font-size: 0.7em;
  position: relative;
  top: -8px;
  left: -3px;
}
#resolucion-completa{
  max-height: 30vh;
  overflow-y: scroll;
  width: 90%;
  margin: 1em auto;
}
#resolucion-completa ol{
  margin-left: 1em;
}
#resolucion-completa li{
  margin: 1em 0;
  line-height: 1.5em;
}
sub{
  font-size: 0.6em;
  position: relative;
  top:-1px;
  margin: 2px ;
}
.ml-2{
  margin-left: 1em;
}
@media screen and (min-width:60em) {
  .d-flex-desk{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
  }
  .actividad{
    max-width: 60%;
    margin: auto;
    word-break: break-word;
  }
  .container-placa{
    width: auto;
  }
  .container-placa.big-text{
    width: 90%;
  }
}