.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 42px;
}

.main-nav ul.nav-items {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  font-size: 1.1rem;
  font-family: "PT Sans";
}

.nav-items a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.nav-items a.highlight {
  color: #22c55e;
  font-weight: bold;
}

.nav-items a:hover {
  color: #fbbf24;
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: " ▾";
  font-size: 0.75rem;
  opacity: 0.6;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 23, 42, 0.98);
  padding: 0px;
  border-radius: 0.25rem;
  min-width: 180px;
  display: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li {
  padding: 0px;
}

/* Estilo específico para los ítems del dropdown dentro de un header flotante */
.site-header .has-dropdown > .dropdown li a {
  display: flex !important;
  align-items: center !important;
  padding: 0.6rem 0.75rem !important;
  font-size: 0.85rem !important;
  color: #f1f5f9 !important;
  gap: 0.5rem;
  line-height: 1.2 !important;
  min-height: unset !important;
  height: auto !important;
}

.site-header .has-dropdown > .dropdown li a i {
  font-size: 0.85rem !important;
  width: 16px !important;
  margin-right: 6px;
  line-height: 1 !important;
  text-align: center;
}

.site-header .has-dropdown > .dropdown li a:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-radius: 0.25rem;
}
