.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: #0f0e0b;
  border-bottom: 0.5px solid rgba(180, 155, 90, 0.18);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

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

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

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: #c9a84c;
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(201, 168, 76, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.nav-links li a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(232, 223, 200, 0.55);
  padding: 8px 14px;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #e8dfc8;
}

.nav-separator {
  border-left: 0.5px solid rgba(180, 155, 90, 0.20);
  margin-left: 4px;
}

.nav-site-principal {
  font-size: 13.5px !important;
  color: rgba(232, 223, 200, 0.3) !important;
}

/* CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 0.5px solid rgba(201, 168, 76, 0.5);
  border-radius: var(--radius-sm);
  color: #c9a84c;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.75);
}

.nav-cta .ti {
  font-size: 18px;
}

/* Hambúrguer */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: rgba(232, 223, 200, 0.65);
  font-size: 25px;
  margin-left: auto;
  transition: color var(--transition);
}
.nav-hamburger:hover { color: var(--color-text); }

/* Drawer mobile */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: #0f0e0b;
  border-top: 0.5px solid rgba(180, 155, 90, 0.18);
  z-index: 99;
  flex-direction: column;
  padding: 24px;
  gap: 4px;
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  font-size: 19px;
  font-weight: 400;
  color: rgba(232, 223, 200, 0.65);
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(180, 155, 90, 0.12);
  transition: color var(--transition);
}

.nav-drawer a:hover { color: var(--color-text); }

.nav-drawer .nav-cta {
  margin-top: 20px;
  justify-content: center;
  font-size: 17px;
  padding: 14px;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav-links     { display: none; }
  .nav-cta       { display: none; }
  .nav-hamburger { display: flex; }
}
