/* Barra global — Plugins · Fiscal Flow · After Flow (Coletivo Intersomos) */
:root {
  --intersomos-topbar-h: 34px;
}

.intersomos-ecosystem-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  height: var(--intersomos-topbar-h);
  background: #0f1115;
  color: #fff;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.intersomos-ecosystem-topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.intersomos-ecosystem-topbar__brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.intersomos-ecosystem-topbar__brand:hover {
  color: #2fc1a6;
}

.intersomos-ecosystem-topbar__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.intersomos-ecosystem-topbar__nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.intersomos-ecosystem-topbar__nav a:hover {
  color: #fff;
}

.intersomos-ecosystem-topbar__nav a.is-active {
  color: #fff;
  font-weight: 600;
  box-shadow: inset 0 -2px 0 #2fc1a6;
}

@media (max-width: 520px) {
  .intersomos-ecosystem-topbar {
    font-size: 0.75rem;
  }

  .intersomos-ecosystem-topbar__inner {
    padding: 0 0.75rem;
  }

  .intersomos-ecosystem-topbar__nav {
    gap: 0.65rem;
  }
}
