main {
    width: 100%;
    height: auto;
    padding: 20px 0px;
}

main>section {
    width: 100%;
    height: auto;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main>section>div {
    width: 90%;
    height: auto;
}

main>section>div.titulo h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-2);
    text-decoration: underline 2px var(--color-2);
    margin: 0;
}

#principais-categorias .content-items {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    margin: 10px 0px 20px;
    gap: 30px;
}

#principais-categorias .content-items .item {
    width: auto;
    height: auto;
    max-width: 150px;
    border-radius: 3px;
    border: 1px solid transparent;
    background-color: transparent;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #280903;
    margin-top: 5px;
}

#principais-categorias .content-items .item .image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--color-2);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: all .3s;
}

#principais-categorias .content-items .item:hover>.image {
    box-shadow: 2px 2px 10px 0px #868686ab;
}

#principais-categorias .content-items .item .texto {
    width: 100%;
    height: calc(100% - 250px);
}

#principais-categorias .content-items .item .texto h3 {
    font-size: 1rem;
    text-align: center;
    font-weight: 700;
    margin-top: 10px;
    color: var(--color-2);
}

#novos {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

#novos .container-produtos {
    width: 80%;
    display: flex;
    margin-top: 10px;
    padding: 5px;
    flex-wrap: wrap;
    gap: 30px 2.5%;
}

#novos .container-produtos>.produto {
    width: 18%;
    min-width: 200px;
    height: auto;
    min-height: 400px;
    background-color: var(--color-5);
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    text-decoration: none;
    color: rgb(58, 58, 58);
    transition: all .3s;
}

#novos .container-produtos>.produto:hover {
    box-shadow: 1px 2px 2px -1px #ccc;
}

#novos .container-produtos>.produto>.foto-produto {
    width: 100%;
    height: 250px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#novos .container-produtos>.produto>.foto-produto .avaliacao {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 5px;
    background-color: #7a0033;
    border-radius: 0px 3px 0px 3px;
    color: white;
    opacity: 0;
    transition: all .3s linear;
    display: flex;
    justify-content: center;
    align-items: center;
}

#novos .container-produtos>.produto .foto-produto .avaliacao h4 {
    font-size: .9rem;
}

#novos .container-produtos>.produto .foto-produto .avaliacao h4 i {
    font-size: .8rem;
}

#novos .container-produtos>.produto .foto-produto:hover .avaliacao {
    opacity: 1;
}

#novos .container-produtos>.produto .foto-produto img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

#novos .container-produtos>.produto .informacoes-produto {
    width: 100%;
    height: auto;
    border-top: 1px solid #ebebeb;
    padding: 3px 0px;
}

#novos .container-produtos>.produto .informacoes-produto .nome-produto {
    padding: 2px 5px;
    text-transform: capitalize;
}

#novos .container-produtos>.produto .informacoes-produto .nome-produto h2 {
    font-size: 1rem;
    line-height: 14px;
    color: var(--color-6)
}

#novos .container-produtos>.produto .informacoes-produto .avaliacao-produto {
    width: 100%;
    height: auto;
    padding: 2px 5px;
}

#novos .container-produtos>.produto .informacoes-produto .avaliacao-produto h3 {
    font-size: 1rem;
}

#novos .container-produtos>.produto .informacoes-produto .promocao-produto {
    width: 100%;
    height: auto;
    padding: 2px 5px;
}

#novos .container-produtos>.produto .informacoes-produto .promocao-produto h2 {
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-6);
}

#novos .container-produtos>.produto .informacoes-produto .promocao-produto i {
    font-size: .9rem;
    color: rgb(0, 204, 0);
}

#novos .container-produtos>.produto .informacoes-produto .preco-produto {
    width: 100%;
    height: auto;
    padding: 2px 4px;
}

#novos .container-produtos>.produto .informacoes-produto .preco-produto>h2 {
    color: var(--color-6)
}

#novos .container-produtos>.produto .informacoes-produto .oferta {
    width: 100%;
    height: auto;
    padding: 0px 3px;
}

#novos .container-produtos>.produto .informacoes-produto .oferta h3 {
    font-size: 1rem;
}


@media screen and (max-width: 850px) {
    main>section>div.titulo h2{
        font-size: 1rem;
    }

    #principais-categorias .content-items {
        width: 80%;
        gap: 15px;
        overflow-y: hidden;
        overflow-x: scroll;
        justify-content: left;
    }

    #principais-categorias .content-items .item {
        width: 80px;
        height: auto;
    }

    #principais-categorias .content-items .item .image {
        width: 50px;
        height: 50px;
    }

    #principais-categorias .content-items .item .texto {
        width: 100%;
        height: auto;
        text-align: center;
    }

    #principais-categorias .content-items .item .texto h3 {
        font-size: .6rem;
        font-weight: 400;
    }

    #novos .container-produtos {
        width: 90%;
    }

    #novos .container-produtos>.produto {
        min-width: 160px;
    }

    #novos .container-produtos>.produto .informacoes-produto .nome-produto h2{
        font-size: .8rem;
    }
    
    #novos .container-produtos>.produto .informacoes-produto .promocao-produto i {
        font-size: .8rem;
        font-weight: 700;
        font-style: italic;
        color: rgb(0, 204, 0);
        word-spacing: -1px;
    }

}