/* Scrollbar global */
::-webkit-scrollbar {
  width: 12px;
  background: #210021; /* violeta oscuro */
}
::-webkit-scrollbar-thumb {
  background: #fff; /* blanco */
  border-radius: 6px;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #fff #210021;
}

/* Navbar global */
.navbar {
  background: #1a001a !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
}

.navbar-brand {
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.5rem 0;
}

.navbar-nav {
  height: 76px;
  align-items: center;
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #ffffff !important;
  padding: 0.5rem 1rem !important;
  line-height: 1;
}

.nav-link:hover {
  color: #ff69b4 !important;
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.navbar .nav-link:focus {
  color: #f3e8ff !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.navbar .nav-link::after,
.navbar .nav-link::before {
  display: none !important;
  content: none !important;
  background: none !important;
  border: none !important;
}

.navbar .nav-link.active {
  background: none !important;
  border: none !important;
  color: #f3e8ff !important;
}

/* Animación de entrada para la navbar */
.navbar-animate {
  animation: navbarSlideDown 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes navbarSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
} 