/* Páginação */
ul.page-numbers {display:flex; justify-content: center; align-items: center; margin-top: 30px; padding-top: 30px; border-top:1px #dedede dotted; margin-bottom: 90px;}
    ul.page-numbers li {padding:0px; margin:0px; border:0px; float:left; margin-right:10px; line-height: 24px; font-size: 14px;}
    ul.page-numbers li span {padding:5px 15px; background:var(--azul); color:#fff; display:flex;  height:40px; align-items: center;}
    ul.page-numbers li a {padding:5px 15px; background:#fff; color:#333; display:flex; line-height:14px; align-items: center; height:40px; border:1px #dedede solid;}
    ul.page-numbers li a:hover {background:var(--azul); text-decoration:none; color:#fff;}


.listagem__produtos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 50px 0;
}

.produto__item {
    border:1px #dedede solid;
    border-radius: 5px;
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
    transition: all .2s;
}

.produto__item:hover {
    transform: scale(1.054);
    box-shadow: 0 0 50px #0000002a;
}

.produto__item > a {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 999;
}

.produto__item  .imagem__produto {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px #dedede solid;
}

.produto__item  .imagem__produto img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: contain;
    left: 0;
    top:0;
    z-index: 2;
}

.produto__item .tag__produto {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 10px;
    background: var(--azul);
    font-size: 12px;
    height: 20px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 40px;
    color:#fff;
}

.produto__item h3 {
    text-align: center;
    margin: 20px 0;
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 15px;
    padding: 0 10px;
    line-height: 20px;
}

.produto__item .categoria__produto {    
    margin: auto;
    margin-top: -15px;
    position: relative;
    z-index: 9;
    background: #fff;
    color: #666;
    padding: 0px 15px;
    font-size: 13px;
    border-radius: 40px;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 7px;
    line-height: 14px;
    height: 30px;
    border:1px #dedede solid;
    font-weight: bold;
}

.produto__item .categoria__produto i {
    margin-top: 3px;
}