/* header.css - Adaptado para nodeAiot Theme */

.nodeAiotHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass-color-20);
  backdrop-filter: blur(12px);
  transition: background 0.3s ease;
}

.nodeAiotHeaderContainer {
  max-width: 1440px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo seguindo sua marca */
.nodeAiotLogo {
  display: flex;
  height: fit-content;
  cursor: pointer;
}

.nodeAiotLogo img {
  height: 40px;
}

/* Ações / Botões */
.nodeAiotHeaderActions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nodeAiotBtnSecondary {
  background: var(--bg-glass-color-20);
  color: var(--color-text-primary);
  border: var(--color-outline-secondary);
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: border-radius 0.2s ease-in-out, background 0.3s ease;
}

.nodeAiotBtnSecondary:hover {
  border: var(--color-outline-primary);
  background: var(--color-tag-bg-blue);
  border-radius: 30px;
}

.nodeAiotBtnPrimary {
  background: var(--node-blue);
  color: var(--node-white);
  border: none;
  padding: 9px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--color-background-hover);
  transition: border-radius 0.2s ease-in-out, background 0.3s ease;
}

.nodeAiotBtnPrimary:hover {
  filter: brightness(1.1);
  border-radius: 20px;
}

.nodeAiotBtnPrimary:active,
.nodeAiotBtnSecondary:active {
  transform: scale(0.96);
}