html, body 
{ 
 scrollbar-width: none;
 scroll-behavior: smooth;
}
a{
    color:rgb(94, 94, 94);
    text-decoration: none;
    font-size: 20px;
}
a:hover {
    color: black;             /* Cor ao passar o mouse - mantém preta ou qualquer cor desejada */
    text-decoration: none;    /* Garante que o sublinhado não apareça ao passar o mouse */
}

/* Estilo para a tela de introdução */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
  }

  /* Estilo para animação */
  #splash-logo {
    font-size: 24px;
    animation: fadeOut 2s ease-in-out forwards;
  }

  /* From Uiverse.io by krlozCJ */ 
.containerpesquisa {
  position: relative;
  --size-button: 60px;
  color: white;
  justify-content: end;
}

.input {
  padding-left: var(--size-button);
  height: var(--size-button);
  font-size: 15px;
  border: none;
  color: #fff;
  outline: none;
  width: var(--size-button);
  transition: all ease 0.3s;
  background-color: #191a1e0e;
  box-shadow: 1.5px 1.5px 3px #0e0e0e, -1.5px -1.5px 3px rgb(95 94 94 / 25%), inset 0px 0px 0px #0e0e0e, inset 0px -0px 0px #5f5e5e;
  border-radius: 50px;
  cursor: pointer;
  justify-content: end;
}

.input:focus,
.input:not(:invalid) {
  width: 200px;
  cursor: text;
  box-shadow: 0px 0px 0px #0e0e0e3b, 0px 0px 0px rgb(95 94 94 / 25%), inset 1.5px 1.5px 3px #0e0e0e17, inset -1.5px -1.5px 3px #5f5e5e;
  justify-content: end;
}

.input:focus + .icon,
.input:not(:invalid) + .icon {
  pointer-events: all;
  cursor: pointer;
  justify-content: end;
}

.containerpesquisa .icon {
  position: absolute;
  width: var(--size-button);
  height: var(--size-button);
  top: 0;
  /* left: 0; */
  padding: 8px;
  pointer-events: none;
  justify-content: end;
  align-items: end;
}

.container .icon svg {
  width: 100%;
  height: 100%;
  justify-content: end;
}
  
  /* Animação para desaparecer */
  @keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; transform: scale(1.1); }
}

@media screen and (max-width: 1024px) { 
    #container{
        display: table-column;
    }
}