.elementor .nora-smart-header{position: relative;
width: 100%;
z-index: 10;

transition:
  transform 0.35s ease,
  opacity 0.35s ease,
  background-color 0.35s ease,
  box-shadow 0.35s ease,
  backdrop-filter 0.35s ease;

will-change: transform;

&.nora-header-fijo {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;

  background: rgba(255, 255, 255, 0.88) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

&.nora-header-oculto {
  transform: translateY(-110%) !important;
  opacity: 0;
  pointer-events: none;
}

&.nora-header-visible {
  transform: translateY(0) !important;
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  transition: none;
}\n}