.modalUN{
  width: 400px;
  display: flex;
  flex-direction: column;
  z-index: 11;
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 533px) {
  .modalUN{
    width: 350px;
    top: 65%;
  }
  .modalUN .logoUN{
    top: -80px !important;
    left: 100px !important;
  }
}

@media screen and (max-width: 375px) {
  .modalUN{
    width: 300px;
    top: 65%;
  }
  .modalUN .logoUN{
    top: -80px !important;
    left: 120px !important;
    height: 150px !important;
  }
}
.modalUN .logoUN{
  height: 200px;
  display: flex;
  top: 40px;
  position: absolute;
  top: -80px;
  left: 200px;
  z-index: 1040;
}

.modalUN .modalHeader{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 140px;
  background-image: linear-gradient(180deg, #FFFFFF, #00D2E9);
  position: relative;
  border-top-left-radius: 3px;
  text-align: center;
}

.modalUN .modalHeader::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(180deg, rgb(0 0 0 / 7%), rgb(0 0 0 / 22%));
}

.modalUN .modalHeader h2{
  margin-top: 0;
  margin-bottom: 0;
  color: white;
  font-weight: 900;
  display: flex;
  z-index: 3;
  text-shadow: 2px 0px 10px rgba(0, 0, 0, 0.497), -2px 0px 10px rgba(0, 0, 0, 0.497);
}

.modalUN .modalBody{
  background-color: white;
  padding: 3rem;
  padding-top: 2.5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;

  p{
    text-shadow: 2px 3px 10px black;
  }
  /* border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px; */
}


/* .modalUN .modalBody button{
  margin-top: 2rem;
  background-color: #2c929e;
  color: white;
  border: none;
  width: 50%;
  border-radius: 4px;
  padding: 0.3rem;
  transition: 0.4s;
  text-shadow: 2px 0px 10px rgba(0, 0, 0, 0.30), -2px 0px 10px rgba(0, 0, 0, 0.30);
  font-weight: 600;
  font-size: 0.9rem;
} */

/* .modalUN .modalBody button:hover{
  box-shadow: 3px 2px 15px black;
  color: #15afc1;
  background-color: white;
  border-color: #15afc1;
  border-style: solid;
  border-width: 1px;
  text-shadow: none;
  letter-spacing: 0.1rem;
} */

.btn4{
  margin-top: 1rem;
}

.btnn{
  color: rgb(255, 255, 255);
  display: flex;
  z-index: 1;
  position: relative;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  transition: all 0.4s ease;
  height: 100%;
  text-shadow: 2px 0px 10px rgba(0, 0, 0, 0.497), -2px 0px 10px rgba(0, 0, 0, 0.497);
}

.btnn:hover{
  scale: 1.1;
}

.btnn:hover{
  color: white;
}

.btnn::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(90deg, rgb(4 29 33), rgb(19, 227, 255), rgb(0 34 71), rgb(0 138 127));
  background-size: 300%;
  border-radius: 5px;
  z-index: -1;
  transition: all 0.4s ease;
  
}

.btnn:hover::after{
  background-position: 100%;
  filter: blur(15px);
  scale: 1;
}

.btnn::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-image: linear-gradient(90deg, rgb(4 29 33), rgb(19, 227, 255), rgb(0 34 71), rgb(0 138 127));
  background-size: 300%;
  border-radius: 5px;
  z-index: -1;
}

.btnn:hover::before{
  background-position: 100%;
  scale: 1.1;
}


.btn4{
  width: 50%;
  position: relative;
  height: 35px;
  margin-top: 30px;
}

.close{
  display: flex;
  width: 100%;
  cursor: pointer;
}

.close img{
  left: 10px;
  top: -10px;
  position: relative;
}

@keyframes desaparecer {
  from {
    scale:  1; /* El elemento es completamente opaco al inicio */
     /* El elemento está en su posición original */
  }
  to {
    scale: 0; /* El elemento se vuelve completamente transparente al final */
     /* El elemento se mueve 500px hacia la izquierda */
  }
}

@keyframes entrada {
  from {
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}
.desaparecer {
  animation: desaparecer 600ms forwards; /* Aplica la animación desaparecer con una duración de 1 segundo */
}

.entrada{
  animation: entrada 1s forwards;
}

#prueba{
  transition: filter 0.6s ease; /* Ajusta la duración y el tipo de transición según tus necesidades */
}

#navbar{
  transition: filter 0.6s ease;
}