/* apply a natural box layout model to all elements, but allowing components to change */
@font-face {
  font-family: "AvenirLTStd-Black";
  src: url("AvenirLTStd-Black.woff2") format("woff2"),
    /* Para navegadores modernos */ url("AvenirLTStd-Black.woff") format("woff"); /* Respaldo para navegadores más antiguos */
  font-weight: normal;
  font-style: normal;
}

html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-size: 62.5%;
  font-family: "termina", sans-serif;
}
h1 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.8rem;
}
h1,
h2,
h3 {
  color: #fff;
  text-align: center;
}
li {
  color: #f17222;
  font-size: 1.5rem;
}
li > span {
  color: #5e1eff;
}
p {
  color: #fff;
  font-size: 1.2rem;
}
.instrucciones {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 2rem;
}

/* Animación de deslizamiento */
@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.fade.show .modal-dialog {
  animation: slideDown 0.3s;
}

.modal-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  width: 100%;
}


.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}

.hvr-bob:active,
.hvr-bob:focus,
.hvr-bob:hover {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

.modal {
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  color: white;
  position: relative;
  overflow: hidden;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  z-index: -1;
  border-radius: 15px;
}

.close-btn {
  display: block;
  margin: 30px auto 0;
  background: linear-gradient(45deg, #5e1eff, #8a4fff);
  border: none;
  color: #fff;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(94, 30, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.close-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f17222, #ff9a5a);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 25px;
}

.close-btn:hover::before {
  opacity: 1;
}

.close-btn:hover {
  background-color: #f17222;
}




li > span {
  color: #f8f8f8;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

li > span:hover {
  color: #f17222;
  text-shadow: 0 0 10px rgba(241, 114, 34, 0.5);
}

li > span a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

li > span a:hover {
  color: #f17222;
  text-decoration: underline;
}

p
.btn_to_dashboard {
  color: #ffffff;
  background-color: #a12a86;
  font-size: 19px;
  border-radius: 15px;
  padding: 15px 50px;
  cursor: pointer;
}
