/**
 * Site Header
 */

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: top 0.3s ease;
}

.site-header.scrolled {
  top: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.15;
  letter-spacing: 0.11px;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  padding: 0 4px;
  background-color: var(--grey-10);
}

.site-header__logo:hover {
  color: var(--white);
  text-decoration: none;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 2px 2px 2px 24px;
  background-color: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 32px;
}

/* ── Responsivo ──────────────────────────── */

@media (max-width: 768px) {
  .site-header__nav .nav-link {
    display: none;
  }

  .site-header__nav {
    padding: 0;
  }

  .site-header {
    top: 0;
  }
}