/* Banner principal */
.banner-bg {
  background: url('Images/BANNER.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Modal login */
.login-modal {
  backdrop-filter: blur(10px);
  background: rgba(5, 5, 5, 0.8);
}

/* Contenido oculto */
.content-hidden {
  display: none;
}

/* Transiciones de secciones */
.section-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.section-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Navegación */
.nav-link {
  position: relative;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link.active {
  background: rgba(139, 92, 246, 0.2);
  color: #6b46c1;
}

.nav-link:hover {
  background: rgba(139, 92, 246, 0.1);
}

/* Fuente personalizada */
.bebas-neue {
  font-family: 'Bebas Neue', sans-serif;
}

/* Dropdown menú */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1000;
  top: 100%;
  left: 0;
  margin-top: 8px;
}

.dropdown.open .dropdown-content {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #4B5563;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #F3F4F6;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #6b46c1;
}
