/* Franja superior compartida — demos AIRVI */
:root {
  --airvi-navy: #000080;
  --airvi-cyan: #17a2b8;
  --airvi-demo-bar-h: 40px;
}

body.has-demo-bar {
  padding-top: var(--airvi-demo-bar-h);
}

.airvi-demo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: var(--airvi-demo-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  background: var(--airvi-navy);
  color: #fff;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: 0.8125rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.airvi-demo-bar__label {
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.airvi-demo-bar__exit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  background: #fff;
  color: var(--airvi-navy);
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.airvi-demo-bar__exit:hover {
  background: var(--airvi-cyan);
  color: #fff;
}

@media (max-width: 480px) {
  .airvi-demo-bar {
    justify-content: space-between;
    font-size: 0.75rem;
    gap: 8px;
    padding: 0 12px;
  }

  .airvi-demo-bar__label {
    font-size: 0.6875rem;
  }
}
