#pesquisar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  position: relative;
}

#pesquisar_barra {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 260px;
  height: 45px;
  background-color: var(--fundo-branco-cinzaDark);
  border: 1px solid var(--fundo-roxoDomus-cinzaDark60);
  color: var(--texto-preto-branco);
  padding-left: 20px;
  font-size: 15px;
}

#pesquisar_barra::placeholder {
  color: var(--texto-preto-branco);
  font-size: 15px;
  text-decoration: none;
}

#pesquisar_barra:focus {
  outline: none;
}

#btn_pesquisar {
  width: 50px;
  height: 45px;
  background-color: var(--fundo-roxoDomus-cinzaDark60);
  border: 1px solid var(--fundo-roxoDomus-cinzaDark60);
  cursor: pointer;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

#icon_lupa {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

#resultado_pesquisa {
  display: block;
  height: max-content;
  width: 250px;
  background-color: var(--fundo-branco-cinzaDark);
  box-shadow: 1px 1px 4px var(--pretoTransparente-cinzaDark10);
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 15px;
  position: absolute;
  top: 100%;
  z-index: 10;
}

#resultado_pesquisa {
  display: none;
}

#pesquisar:focus-within #resultado_pesquisa {
  display: block;
}

.cabecalho_resultado {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cabecalho_resultado h1 {
  font-size: 14px;
  color: var(--texto-preto-branco);
}

.cabecalho_resultado .icones button {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 10px;
}

.cabecalho_resultado .icones img {
  width: 20px;
  height: 20px;
}

.tutoriais {
  margin-top: 15px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tutorial {
  display: flex;
  align-items: center;
  background-color: var(--fundo-branco-cinzaDark70);
  border-radius: 8px;
  box-shadow: 1px 1px 4px var(--pretoTransparente-cinzaDark10);
  text-decoration: none;
}

.tutorial img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 6px;
}

.tutorial h2 {
  font-size: 13px;
  margin: 0;
  color: var(--texto-preto-branco);
  text-decoration: none;
}

.tutorial p {
  font-size: 11px;
  color: var(--texto-preto-branco);
  margin: 2px 0 0;
  text-decoration: none;
}

.icones {
  display: flex;
}

#box_shadow_pesquisar {
  box-shadow: 1px 1px 4px var(--pretoTransparente-cinzaDark10);
  width: 310px;
  border-radius: 20px;
  display: flex;
  position: relative;
}

#footer_pesquisar {
  left: 0;
  right: 0;
  width: 100%;
  position: absolute;
  background-color: var(--fundo-roxoDomus-cinzaDark60);
  border: 1px solid var(--fundo-roxoDomus-cinzaDark60);
  height: 25px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: 1px 1px 4px var(--pretoTransparente-cinzaDark10);
}

#footer_pesquisar p {
  color: var(--branco);
  margin-top: 3px;
  text-align: center;
  font-size: 10px;
}

/* Remove o 'X' no Chrome, Safari, Opera e Edge */
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none; /* Garante que não ocupe espaço */
}

/* Remove o 'X' no Internet Explorer (IE 10+) e Edge */
input[type="search"]::-ms-clear {
    display: none;
    width: 0; /* Garante que não ocupe espaço */
    height: 0; /* Garante que não ocupe espaço */
}
