/* 2. NAVBAR PRINCIPAL */
#main-header {
  background-color: var(--color-nav-bg);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.logo-text .king {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-primary-red);
}

.logo-text .burger {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 0.8;
  color: var(--color-primary-brown);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  justify-self: center; /* Centraliza o menu no grid */
}

.nav-links a {
  text-decoration: none;
  color: var(--color-primary-brown);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--color-primary-red);
}