/* ══════════════════════════════════════════════════════════════
   TOPBAR — Time Fly Manager
   ══════════════════════════════════════════════════════════════ */
.hub-topbar-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--azul2));
}
.hub-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 3px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.hub-logo { display: flex; align-items: center; gap: 10px; }
.hub-logo-bar {
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--azul), var(--azul2));
  border-radius: 2px;
}
.hub-logo-text { font-size: 17px; font-weight: 800; color: var(--texto); letter-spacing: -0.5px; }
.hub-logo-text strong { color: var(--azul2); font-weight: 500; }
.hub-empresa { font-size: 12px; font-weight: 600; color: var(--texto3); margin-left: 4px; }
.hub-topbar-right { display: flex; align-items: center; gap: 12px; }
.hub-user { font-size: 13px; color: var(--texto3); font-weight: 500; }
.hub-user strong { color: var(--texto2); font-weight: 700; }
.btn-logout {
  font-size: 12px;
  font-weight: 700;
  color: var(--texto3);
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-logout:hover { background: var(--bg2); color: var(--texto2); }
