/* Logotipo (igual ao backup index_20260405_075751): ícone + texto BaseCNPJ */
a.nav-logo {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.nav-logo-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;
}
.nav-logo-text span {
  color: var(--accent);
}
@media (max-width: 480px) {
  a.nav-logo {
    gap: 15px;
  }
  .nav-logo-text {
    font-size: 16px;
  }
  .nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .nav-logo-icon svg {
    width: 16px;
    height: 16px;
  }
}
