/* ═══════════════════════════════════════════════════
   NAVBAR
   Estática · fundo sólido #1b1b1b · 3 colunas (L · logo · R)
   Specs Figma: px-150px · py-36px · gap-44px · 16px Regular
   ═══════════════════════════════════════════════════ */


/* ── Container ── */
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px var(--gutter);
  background-color: var(--c-dark);
  border-bottom: 1px solid rgba(85, 85, 85, 0.30);
  width: 100%;
  position: relative;
  z-index: 100;
}


/* ── Grupos de links (esquerdo e direito) ── */
.nav__group {
  display: flex;
  align-items: center;
  gap: 44px;
}


/* ── Links de navegação ── */
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: var(--c-light);
  white-space: nowrap;
  position: relative;
}

/* Underline animado no hover */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--c-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

/* Dot branco antes de "Contato" (4.5px square conforme Figma) */
.nav__link-dot {
  display: block;
  width: 4.5px;
  height: 4.5px;
  background: var(--c-light);
  flex-shrink: 0;
}


/* ── Logo central ── */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  /* Impede que o logo encolha em viewports intermediários */
  min-width: 102px;
}

.nav__logo img {
  display: block;
  width: 102px;
  height: auto;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .nav__group {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  /* Oculta os links em mobile — menu hamburguer virá em fase posterior */
  .nav__group {
    display: none;
  }

  #navbar {
    justify-content: center;
  }
}
