/* ===================== */
/* TERMINOS Y CONDICIONES LINK */
/* ===================== */

.legal-info a.legal-terms{
  color:white;
  text-decoration:none;
  display:inline-block;
  transition:all 0.35s ease;
}

/* HOVER (pasar el cursor) */

.legal-info a.legal-terms:hover{
  color:yellow !important;
  transform:scale(1.2);
  text-shadow:
  0 0 5px rgba(255,255,0,0.6),
  0 0 10px rgba(255,255,0,0.4),
  0 0 20px rgba(255,255,0,0.3);
  cursor:pointer;
}

/* EVITA QUE EL CLICK CAMBIE EL COLOR */

.legal-info a.legal-terms:focus{
  color:white;
}

/* ===================== */
/* CONTROL GENERAL LEGAL */
/* ===================== */

.legal-info a.legal-data{
  color:white;
  text-decoration:none;
}

.legal-email{
  color:#9ecbff;
  text-decoration:none;
  display:inline-block;
}

/* ===================== */
/* VENTANA TERMINOS Y CONDICIONES */
/* ===================== */

#legalWindow{
  position:fixed;
  inset:0;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(0,0,0,0.4);

  opacity:0;
  pointer-events:none;
  transition:0.3s;

  overflow-y:hidden;

  box-sizing:border-box;
  padding:20px 0;
  z-index:9999;
}

#legalWindow.show{
  opacity:1;
  pointer-events:auto;
}

#legalWindow .legal-content{
  position:relative;

  background:url("../assets/img/fondo.png");
  background-size:cover;
  background-position:center;

  width:90%;
  max-width:800px;

  min-height:520px;
  max-height: 90vh;

  border-radius:10px;

  padding:40px;

  overflow-y:auto;

  color:white;

  margin:auto;
  box-sizing:border-box;
}

/* ===================== */
/* LOGO VENTANA LEGAL */
/* ===================== */

#legalWindow .legal-logo{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:320px;
  opacity:0.1;
  pointer-events:none;
}

/* ===================== */
/* TITULO */
/* ===================== */

#legalWindow .legal-title{
  font-size:30px;
  color:white;
  font-weight:bold;
  text-align:center;
  margin:20px 0 30px;
}

/* ===================== */
/* TEXTO */
/* ===================== */

#legalWindow .legal-text{
  width:100%;
  max-width:620px;
  margin:0 auto;
  font-size:20px;
  line-height:1.7;
  color:white;
}

/* PARRAFOS */

#legalWindow .legal-text p{
  margin-bottom:15px;
  font-size:18px;
  line-height:1.7;
}

/* ===================== */
/* RESPONSIVE LEGAL */
/* ===================== */

/* 📱 CELULAR */

@media (max-width:768px){

  .legal-info{
    bottom:20px;
    left:30px;
  }

  .legal-terms{
    font-size:15px;
  }

  .legal-email{
    font-size:14px;
    margin-top:8px;
  }

  #legalWindow .legal-content{
    width:92%;
    padding:25px;
  }

  #legalWindow .legal-title{
    font-size:22px;
  }

  #legalWindow .legal-text{
    font-size:16px;
  }

}

/* 💻 ESCRITORIO */

@media (min-width:769px){

  .legal-info{
    bottom:50px;
    left:70px;
  }

  .legal-terms{
    font-size:28px;
  }

  .legal-email{
    font-size:22px;
    margin-top:12px;
  }

}