/* Estilização Topo - Primeiro Nível */
.cabecalho__topo__primeiro__nivel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #F28705;
}

.container_topo__primeiro_nivel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item__topo__primeiro_nivel {
    padding: 0.1em;
    font-size: 0.8em;
    color: #fff;
}

/* Estilização Topo - Segundo Nível */
.cabecalho__topo__segundo__nivel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #F28705;
    padding: 0.2rem;
}

.container__topo__segundo__nivel {
    display: flex;
    gap: 0.5rem;
}

.item__topo__segundo_nivel {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 0.3em;
    font-size: 0.8em;
    word-wrap: break-word;
    align-items: center;
    color: aliceblue;
    text-decoration:none;
}

.logo_site {
    width: 10rem;
    height: auto;
}

.barra_pesquisa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    height: 1.563rem;
    width: 22rem;
    padding: 0.625rem;
    border-radius: 2.5rem;
    position: relative;
}

.texto_pesquisa {
    background: none;
    border: none;
    outline: none;
    font-size: 0.875rem;
    width: 32.5rem;
}

.botao_pesquisa {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.3rem;
    border-radius: 2.5rem;
    background: #F28705;
    cursor: pointer;
}




/* Estilizando categorias */

.categorias {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F28705; 
    color: black;
}

.menu-bar {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-bar-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    cursor: pointer;
    gap: 0.5em;
}

.sub-menu-container {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.menu-bar-item:hover .sub-menu-container {
    display: block;
}




























/* Media queries para notebooks e monitores */
@media only screen and (max-width: 1440px) {
    .texto_pesquisa {
        width: 25rem;
    }
}

@media only screen and (max-width: 1366px) {
    .texto_pesquisa {
        width: 20rem;
    }
}

@media only screen and (max-width: 1280px) {
    .texto_pesquisa {
        width: 15rem;
    }
}

@media only screen and (max-width: 1024px) {
    .container__topo__segundo__nivel {
        flex-direction: column;
        align-items: flex-start;
    }
    .texto_pesquisa {
        width: 100%;
    }
}
