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

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Quicksand';
}

body {
  background-color: #d2b9ed82;
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: 'Quicksand';
}

.sect-con {
  width: 50%;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
  display: flex;
}

.cont {
  width: auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
  background-color: white;
}

.link-logo {
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.30);
  background: white;
  -webkit-backdrop-filter: blur(5px);
  transition: all 300ms;
}

.logo-container {
  align-items: flex-end;
  justify-content: center;
  display: flex;
  width: 100%;
  padding: 1rem;
}

.logo {
  width: 10%;
}

.contenedor {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container__background-triangle {
  max-width: 1200px;
  height: 600px;
  margin: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.triangle {
  width: 300px;
  height: 300px;
  background: red;
  position: absolute;
}

.triangle1 {
  border-radius: 100rem;
  width: 250px;
  height: 250px;
  background: #d2b9ed;
  right: 208px;
  top: 100px;
  animation: t1 8s ease infinite;
}

.triangle2 {
  border-radius: 100rem;
  width: 200px;
  height: 200px;
  background: #d2b9ed;
  top: 483px;
  left: 200px;
  animation: t2 9s ease infinite;
}

.triangle3 {
  border-radius: 100rem;
  width: 300px;
  height: 300px;
  background: #d2b9ed;
  left: 200px;
  animation: t3 7s ease infinite;
}

@keyframes t1 {
  0% {
    transform: rotate(45deg) translateY(0px);
  }

  50% {
    transform: rotate(45deg) translateY(20px);
  }

  100% {
    transform: rotate(45deg) translateY(0px);
  }
}

@keyframes t2 {
  0% {
    transform: rotate(65deg) translateY(0px);
  }

  50% {
    transform: rotate(65deg) translateY(20px);
  }

  100% {
    transform: rotate(65deg) translateY(0px);
  }
}

@keyframes t3 {
  0% {
    transform: rotate(45deg) translateY(0px);
  }

  50% {
    transform: rotate(45deg) translateY(20px);
  }

  100% {
    transform: rotate(45deg) translateY(0px);
  }
}

/* fin prueba*/



.encabezado {
  width: 100%;
  padding: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  /* background: rgba(255, 255, 255, 0.1); */
  background-color: white;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 300ms;
}

.contieneBlanco {
  /* background-color: #BCE7EE; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}

.tituloPreg {
  margin-bottom: 0.3rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  text-align: center;
}

.instrucciones {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.cuenta {
  opacity: 0;
  height: 0;
}

.marcador {
  margin-top: 2rem;
  flex-direction: row;
  width: 100%;
  height: auto;
  background-color: white;
  justify-content: center;
  display: flex;
  align-items: center;
  color: black;
  font-weight: 600;
}


.contieneMarcador {
  background: #d2b9ed;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 10px;
}


.loguito {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 3px;
}

.link-logo {
  width: 100%;
}


.marcador .nombre {
  color: black;
  line-height: 1;
  padding: 0.5rem;
  border-radius: 0.5rem;
  width: 100%;
}



.marcador .puntos {
  font-size: 1.6rem;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.elegi-tu-arma {
  width: 100%;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.elegi-tu-arma h2 {
  font-size: 1.2rem;
  font-weight: 400;
}

.armas {
  padding-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}

.arma {
  font-size: 2rem;
  background-color: white;
  border: 0;
  border: 1px solid black;
  border-radius: 0.5rem;
  cursor: pointer;
}

.arma:hover {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.arma:hover {
  transform: scale(1.05);
}

.arma {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -o-transition: all .7s ease;
  -ms-transition: all .7s ease;
  width: 80%;
}



.arma:hover {
  background-color: #c2f1d4;
}

.mensaje {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mensaje .eleccion {
  color: black;
  background-color: #fff7a9;
  border-radius: .25rem;
  padding-inline: 0.25rem;
}

.mensaje {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divPuntaje {
  padding: 4px;
  width: 50%;
}


.b {
  background: white;
  border: none;
}


.botones {
  gap: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#reservar {
  background: white;
  border: 1px solid;
}

.palabra {
  color: black;
  font-size: 1rem;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

.btn {
  width: 30%;
  color: black;
  border: 1px solid;
  line-height: 1;
  background-color: white;
  color: black;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.btn {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -o-transition: all .7s ease;
  -ms-transition: all .7s ease;
}

.btn:hover {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.btn:hover {
  transform: scale(1.05);
}


.disabled {
  display: none;
}

.container-pic {
  position: absolute;
  width: 100%;
  display: flex;
  gap: 40%;
  justify-content: space-evenly;
}

#volver {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
}





.swal2-confirm {
  border: 1px solid black !important;
  line-height: 1;
  background-color: white !important;
  color: black !important;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 0.6rem;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  width: 50%;
  height: 3rem;
}

.swal2-image {
  height: 250px !important;
}

.swal2-title {
  color: #363838 !important;
}

.swal2-html-container {
  margin: 1em 6em 1em !important;
}


.swal2-actions {
  display: flex !important;
  width: 100% !important;
  justify-content: center;
  margin: 0 !important;
}

.swal2-close {
  color: #f29592 !important;
}

.swal2-close:hover {
  color: #d77370 !important;
}

.swal2-styled.swal2-confirm {
  font-weight: 800;
  text-transform: none !important;
  width: 50% !important;
  display: flex;
  z-index: 1;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding: 0;
  border-radius: 10px !important;
}

.swal2-styled:hover {
  background-color: white !important;
}

.swal2-confirm:hover {
  background-color: white;
}

.swal2-styled.swal2-confirm {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -o-transition: all .7s ease;
  -ms-transition: all .7s ease;
  width: 100%;
}

.swal2-styled.swal2-confirm:hover {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.swal2-styled.swal2-confirm:hover {
  transform: scale(1.05);
}




/* BOTON FOOTER*/

.cont-f {
  background: #fff7a9;
  height: 15vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compra-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  margin-top: 10px;
  width: 100%;
}


.botonC .jugarA {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -o-transition: all .7s ease;
  -ms-transition: all .7s ease;
  width: 100%;
}

.jugarA:hover {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.jugarA:hover {
  transform: scale(1.05);
}


.botonC {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.promoC {
  width: 40%;
}

.jugarA {
  cursor: pointer;
  width: auto;
  height: auto;
  border-radius: 8px;
  line-height: normal;
  padding: 10px;
  font-size: 1rem;
  font-weight: 700;
  background-color: white;
  border: 1px solid black;
}

.jugarA:hover {
  background-color: white;
}





/* LOGO */
.img-aa {
  width: 30%;
}

.linkeado {
  width: 100%;
  display: contents;
}

.cont-logo {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.img-logo {
  z-index: 1;
  align-items: center;
  display: flex;
  flex-direction: row;
}

/* FLECHA */
.bt {
  justify-content: center;
  display: flex;
  align-items: center;
  width: auto;
}

.flechita {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flec {
  width: 10%;
  transform: rotate(90deg);
}








@keyframes flechita {
  from {
    transform: translateX(20px);
  }

  to {
    transform: translateX(0px);
  }
}

.flechita {
  transition: ease;
  animation-duration: .5s;
  animation-name: flechita;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.btn {
  height: auto;
  border: 1px solid black;
  width: 40%;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  background-color: white;
  transform: scale(1);
}






@media screen and (min-width: 768px) and (max-width: 1024px) {
  .logo {
    width: 20%;
  }

  .sect-con {
    width: 80%;
    margin-bottom: 2rem;
  }

  .cont {
    height: auto;
  }


}


@media screen and (min-width: 481px) and (max-width: 767px) {
  .logo {
    width: 35%;
  }

  .container__background-triangle {
    display: none;
  }

  .encabezado {
    padding-bottom: 2rem;
    position: relative;
    background-color: white;
    min-width: 300px;
    width: 70%;
    max-width: 0;
    padding-top: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
  }

  .tituloPreg {
    font-size: 1rem;
  }

  .contieneMarcador {
    width: 100%;
  }

  .mensaje {
    margin-bottom: 1rem;
    margin-top: 0;
  }
  .divPuntaje {
    width: 100%;
  }

  .marcador {
    margin-top: 0;
  }

  .marcador .puntos {
    display: flex;
    flex-direction: row;
    font-size: 1.3rem;
    padding: 5px;
    width: 100%;
  }

  .marcador .nombre {
    width: 100%;
    font-size: .8rem;
  }

  .instrucciones {
    font-size: .9rem;
  }

  .elegi-tu-arma h2 {
    font-size: 1rem;
  }

  .elegi-tu-arma {
    margin-bottom: 0;
  }

  .sp {
    position: absolute;
    border-radius: 100%;
    width: 100%;
    background-color: #d2b9ed;
    height: 59vh;
    padding: 0;
    margin-right: -156px;
    margin-top: 38rem;
  }

  .promoC {
    z-index: 1;
  }

  .btn {
    width: 60%;
    margin-top: 10%;
  }

  .swal2-image {
    height: 215px !important;
    margin: 3em auto 1em !important;
  }

  .swal2-title {
    font-size: 1.5rem !important;
    padding: 0 1em 0 !important;
  }

  .swal2-html-container {
    margin: 1em 1em 1em !important;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .logo {
    width: 35%;
  }

  .container__background-triangle {
    display: none;
  }

  .encabezado {
    padding-bottom: 2rem;
    position: relative;
    background-color: white;
    min-width: 300px;
    width: 70%;
    max-width: 0;
    padding-top: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
  }

  .tituloPreg {
    font-size: 1rem;
  }

  .contieneMarcador {
    width: 100%;
  }

  .mensaje {
    margin-bottom: 1rem;
    margin-top: 0;
  }
  .divPuntaje {
    width: 100%;
  }

  .marcador {
    margin-top: 0;
  }

  .marcador .puntos {
    display: flex;
    flex-direction: row;
    font-size: 1.3rem;
    padding: 5px;
    width: 100%;
  }

  .marcador .nombre {
    width: 100%;
    font-size: .8rem;
  }

  .instrucciones {
    font-size: .9rem;
  }

  .elegi-tu-arma h2 {
    font-size: 1rem;
  }

  .elegi-tu-arma {
    margin-bottom: 0;
  }

  .sp {
    position: absolute;
    border-radius: 100%;
    width: 100%;
    background-color: #d2b9ed;
    height: 59vh;
    padding: 0;
    margin-right: -156px;
    margin-top: 38rem;
  }

  .promoC {
    z-index: 1;
  }

  .arma {
    padding: 5px;
    font-size: 1.7rem;
  }

  .btn {
    width: 60%;
    margin-top: 10%;
  }

  .swal2-image {
    height: 215px !important;
    margin: 3em auto 1em !important;
  }

  .swal2-title {
    font-size: 1.5rem !important;
    padding: 0 1em 0 !important;
  }

  .swal2-html-container {
    margin: 1em 1em 1em !important;
  }
}


