/* Barra de integração com o site Auryx Media */

.ef-site-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  height: 44px;
  background: #050505;
  border-bottom: 1px solid rgba(255, 107, 0, 0.3);
  font-size: 0.78rem;
}

.ef-site-bar__brand {
  color: #888;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.ef-site-bar__brand:hover { color: #ff9500; }

.ef-site-bar__brand strong {
  color: #ff6b00;
  font-weight: 700;
}

.ef-site-bar__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 18px;
}

.ef-site-bar__nav a {
  color: #666;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.ef-site-bar__nav a:hover,
.ef-site-bar__nav a.ativo {
  color: #ff9500;
}

.ef-site-bar__nav a.ativo {
  border-bottom-color: #ff6b00;
}

@media (max-width: 640px) {
  .ef-site-bar {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 10px 16px;
    gap: 8px;
  }

  .ef-site-bar__nav {
    justify-content: flex-start;
    gap: 4px 14px;
  }
}
