/* Estilos base para efecto glass */
.navbar.sticky-top-2 {
  /* background: rgba(255, 255, 255, 0.02) !important; */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card.loading .image,
.card.loading .content * {
  background-color: #ededed0f;
  background: linear-gradient(100deg, #ffffff00 40%, #ffffff12 50%, #ffffff00 60%) #ededed0f;
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 3s Shine ease-in-out infinite;
}

@keyframes Shine {
    to {
      background-position-x: -20%;
    }
  }

/* Aquí irían los estilos que implementaste */

@media (max-width: 768px) {
  .language-selector {
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .navbar-toggler {
    position: relative;
    z-index: 1;
    margin-right: 20px;
  }

  .navbar > .container {
    position: relative;
    padding: 10px 15px;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-brand {
    margin-left: 15px;
    padding: 5px 0;
  }

  .navbar-brand img {
    height: 35px;
    width: auto;
  }
}

@media (min-width: 992px) {
  .navbar-collapse.animate__fadeIn {
      display: flex !important;
      transition: opacity 0.3s ease;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .language-selector {
      position: absolute;
      right: 70px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1;
  }

  .navbar-toggler {
      position: relative;
      z-index: 1;
      margin-right: 15px;
  }

  .navbar > .container {
      position: relative;
      padding: 12px 20px;
      justify-content: space-between;
      align-items: center;
  }

  .navbar-brand {
      margin-left: 20px;
  }
}