.header-geral {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 16px 32px;
  gap: 16px;
  background: var(--primary-bg-color);
  border-bottom: 1px solid var(--borda);
}

.container-img-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 2vw, 25px);
  flex-shrink: 0;
}

.foto-perfil-wrapper {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.icon-lupa {
  height: 22px;
  width: 22px;
}

.foto-perfil-label {
  display: block;
  width: clamp(38px, 3vw, 48px);
  height: clamp(38px, 3vw, 48px);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 0.15s;
}

.foto-perfil-label:hover,
.foto-perfil-label:focus-visible {
  box-shadow: 0 0 0 3px var(--verde-claro);
}

.img-perfil {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.img-perfil {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.foto-perfil-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.15s;
}

@media (hover: hover) {
  .foto-perfil-label:hover .foto-perfil-overlay {
    opacity: 1;
  }
}
@media (hover: none) {
  .foto-perfil-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.28);
  }
}

.img-configuration,
.img-notification {
  width: clamp(20px, 1.5vw, 24px);
  height: clamp(20px, 1.5vw, 24px);
  object-fit: contain;
  cursor: pointer;
  flex-shrink: 0;
}

.header-text {
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 18px);
  color: #333;
  margin: 0;
  white-space: nowrap;
}

.barra-pesquisa {
  display: flex;
  align-items: center;
  background-color: #f0f4f8;
  padding: 8px 16px;
  width: 100%;
  max-width: clamp(250px, 30vw, 420px);
  height: clamp(38px, 4.5vh, 46px);
  border-radius: 8px;
  min-width: 0;
}

.icone-busca {
  width: 18px;
  height: 18px;
  color: #6b7280;
  margin-right: 10px;
  flex-shrink: 0;
}

.barra-pesquisa input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  min-width: 0;
  font-size: clamp(13px, 0.9vw, 15px);
  color: #374151;
  font-family: inherit;
}

.barra-pesquisa input::placeholder {
  color: #9ca3af;
}

.barra-pesquisa input::-webkit-search-decoration,
.barra-pesquisa input::-webkit-search-cancel-button,
.barra-pesquisa input::-webkit-search-results-button,
.barra-pesquisa input::-webkit-search-results-decoration {
  display: none;
}

@media (max-width: 1024px) {
  .header-geral {
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
    gap: 10px;
  }

  .container-img-header {
    order: 1;
    gap: 10px;
  }

  .barra-pesquisa {
    order: 2;
    flex: 1 1 auto;
    max-width: none;
    padding: 7px 12px;
    height: 40px;
  }

  .header-text,
  .img-notification,
  .img-configuration {
    display: none;
  }
}
