body {
  margin: 0;
  padding: 0;
  height: 200vh;
  /* para teste */
  font-family: "Bell MT", Georgia, serif;
}

@font-face {
  font-family: "Bell MT";
  src: url("path/to/BellMT.woff2") format("woff2"),
    url("path/to/BellMT.woff") format("woff");
  /* Add other formats for broader browser support if needed */
  font-weight: normal;
  font-style: normal;
}

/* Barra oculta inicialmente */
#barra {
  position: fixed;
  top: -45px;
  /* oculto acima */
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(249, 214, 232, 0.7);
  color: white;
  display: flex;
  justify-content: center;
  /* centraliza horizontal */
  align-items: center;
  /* centraliza vertical */
  gap: 15px;
  transition: top 0.3s ease;
  z-index: 9999;
}

/* Contêiner de cada ícone com retângulo e arredondamento */
.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  /* menor que altura da barra */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  background-color: transparent;
}

.icon-box img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  /* mantém proporção sem distorção */
  display: block;
  /* remove espaço extra inline */
}

/* Hover muda cor do borde e fundo, e do svg internamente */
.icon-box:hover {
  background-color: rgba(187, 187, 187, 0.3);
}

/*
.icon-box:hover img {
  filter: brightness(0) saturate(100%) invert(75%) sepia(98%) saturate(320%) hue-rotate(330deg) brightness(105%) contrast(105%);
}
  */

/* Faixa mínima para ativar barra */

#detector {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: transparent;
  z-index: 10000;
}

/* BARRA DE PESQUISA EXPANSIVEL */
#barra-pesquisa {
  width: 0;
  padding: 0;
  border-radius: 5px;
  transition: width 0.4s ease, padding 0.4s ease;
}

#barra-pesquisa.expandida {
  height: 40px;
  width: 200px;
  padding: 0 10px;
}

/* login opcoes */
.account {
  width: auto !important;
  padding: 0 10px !important;
}

#account-box:hover #account-menu {
  display: block;
}

#user-name {
  margin-left: 8px;
  color: rgb(0, 0, 0);
  user-select: none;
}

#account-menu a:hover {
  background: rgba(187, 187, 187, 0.3);
  border-radius: 5px;
}

#resultados-pesquisa {
  position: relative;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  top: 100%;
}