@charset "UTF-8";
header {
  background: rgb(90, 66, 152);
  background: linear-gradient(301deg, rgba(90, 66, 152, 0.924) 0%, rgba(50, 107, 181, 0.947) 63%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px); /* Desenfoque del fondo */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  position: fixed;
  width: 100%;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 100;
  color: white; /* Color del texto */
  padding: 10px 20px; /* Espaciado interno */
  -webkit-backdrop-filter: blur(15px) brightness(90%);
          backdrop-filter: blur(15px) brightness(90%); /* Añadir desenfoque y ajuste de brillo */
  transition: transform 0.3s ease; /* Transición suave */
}

.glass {
  width: 100%;
  transition: transform 0.3s ease; /* Transición suave */
}

.header {
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease; /* Transición suave */
}
.header .logo--img {
  width: 9.6vw;
  pointer-events: none;
}
.header .navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.08vw;
  transition: 0.3s;
}
.header .link__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.5rem;
  transition: 0.3s;
  gap: 0.5rem;
}
.header .link__span,
.header .links {
  color: white;
  font-size: 0.9vw;
  transition: 0.3s;
}
.header .link__span {
  font-size: 0.7vw;
}
.header .links {
  transition: 0.3s;
  font-weight: bold;
}
.header .logIn {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header .logIn .login_in {
  color: black;
  font-weight: bold;
  background-color: #35cde4;
  padding: 0.68vw 2.76vw;
  border-radius: 1rem;
  transition: 0.3s;
  font-size: 0.89vw;
}

.bx-menu {
  font-size: 4rem;
  color: white;
  display: none;
}

/* MEDIA QUERY FOR TABLETS */
@media (max-width: 767px) {
  .bx-menu {
    display: block;
  }
  .header .logo--img {
    width: 20vw;
  }
  .header .logIn {
    gap: 1rem;
  }
  .header .logIn .login_in {
    font-size: 4vw;
    border-radius: 1rem;
    padding: 2vw;
  }
  .header .navbar {
    padding: 2rem 0;
    gap: 0.5rem;
    position: absolute;
    transform: scale(0.8);
    top: 3vw;
    right: -100%;
    width: 310px;
    border: 2px solid #574e7a;
    border-radius: 2rem;
    height: 56 0px;
    flex-direction: column;
    transition: right 0.3s ease, transform 0.3s ease;
    justify-content: space-around;
    overflow: hidden;
  }
  .header .navbar .link__span,
  .header .navbar .links {
    color: black;
    font-size: 2.2rem;
    align-items: flex-start;
  }
  .header .navbar .link__span {
    font-size: 1.8rem;
  }
  .header .navbar .links {
    font-weight: 700;
    font-size: 2rem;
  }
  .header .link__container {
    align-items: flex-start;
    width: 100%;
    padding: 1rem 0 1rem 7rem;
  }
  .header .navbar.open {
    right: -3%;
    transition: right 0.3s ease;
    background-color: white;
  }
}
/* MEDIA QUERY FOR LARGE SCREENS */
@media (min-width: 1024px) {
  .links:hover,
  .link__span:hover ~ .link {
    transform: scale(1.2);
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, margin-bottom 0.3s ease;
  }
  .header .logIn .login_in:hover {
    background-color: white;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 10px 10px 99px 12px rgba(0, 0, 0, 0.75);
  }
}/*# sourceMappingURL=header.css.map */