/* André OS · busca global */
[data-search-wrap] { position: relative; }

.pmh-global-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 420;
  width: min(560px, calc(100vw - 32px));
  max-height: min(68vh, 620px);
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(117, 92, 255, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 64px rgba(24, 19, 43, .22);
  backdrop-filter: blur(18px);
}

.pmh-global-search-results[hidden] { display: none !important; }

.pmh-global-search-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 66px;
  padding: 9px 11px;
  border: 0;
  border-radius: 13px;
  color: #201c2c;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.pmh-global-search-item:hover,
.pmh-global-search-item.active {
  background: #f2efff;
}

.pmh-global-search-item > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: #735cff;
  font-style: normal;
  font-weight: 900;
}

.pmh-global-search-item > span { min-width: 0; }
.pmh-global-search-item small,
.pmh-global-search-item strong,
.pmh-global-search-item em { display: block; }

.pmh-global-search-item small {
  margin-bottom: 2px;
  color: #735cff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pmh-global-search-item strong,
.pmh-global-search-item em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pmh-global-search-item strong { font-size: 13px; }
.pmh-global-search-item em {
  margin-top: 3px;
  color: #747684;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}

.pmh-global-search-item > b {
  color: #9995a8;
  font-size: 12px;
}

.pmh-global-search-state {
  display: grid;
  gap: 5px;
  padding: 24px 18px;
  color: #747684;
  text-align: center;
  font-size: 12px;
}

.pmh-global-search-state strong {
  color: #282332;
  font-size: 14px;
}

.pmh-global-search-highlight {
  outline: 3px solid rgba(115, 92, 255, .42) !important;
  outline-offset: 4px;
  animation: pmh-global-search-pulse .8s ease 2;
}

@keyframes pmh-global-search-pulse {
  50% { transform: scale(1.01); }
}

@media (max-width: 820px) {
  html.aos-mobile [data-search-wrap] { position: static; }

  html.aos-mobile .pmh-global-search-results {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 64px);
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - 84px);
    border-radius: 16px;
  }

  html.aos-mobile .pmh-global-search-item {
    min-height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pmh-global-search-highlight { animation: none !important; }
}
