/*==================================================
                PRODUTOS
==================================================*/

.produtos-home{

    padding:100px 0;

    background:#FFFFFF;

}

.produto-card{

    background:#FFF;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

}

.produto-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*==========================
        IMAGEM
==========================*/

.produto-img{

    position:relative;

    height:360px;

    overflow:hidden;

    background:#fafafa;

}

.produto-img img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.img-back{

    opacity:0;

}

.produto-card:hover .img-front{

    opacity:0;

}

.produto-card:hover .img-back{

    opacity:1;

    transform:scale(1.05);

}

/*==========================
        BADGE
==========================*/

.badge-novo{

    position:absolute;

    top:18px;

    left:18px;

    background:#F8D9DE;

    color:#8A6A56;

    padding:7px 16px;

    border-radius:25px;

    font-size:12px;

    font-weight:700;

    z-index:3;

}

/*==========================
        ICONES
==========================*/

.produto-icons{

    position:absolute;

    top:18px;

    right:-60px;

    display:flex;

    flex-direction:column;

    gap:10px;

    transition:.35s;

    z-index:5;

}

.produto-card:hover .produto-icons{

    right:18px;

}

.produto-icons a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#FFF;

    color:#8A6A56;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 6px 15px rgba(0,0,0,.15);

    transition:.3s;

}

.produto-icons a:hover{

    background:#F8D9DE;

    color:#8A6A56;

}

/*==========================
        INFORMAÇÕES
==========================*/

.produto-info{

    padding:25px;

    text-align:center;

}

.stars{

    color:#FFC107;

    font-size:15px;

    margin-bottom:12px;

}

.produto-info h5{

    font-family:'Playfair Display',serif;

    color:#8A6A56;

    font-size:24px;

    margin-bottom:12px;

    min-height:60px;

}

.preco{

    display:block;

    font-size:28px;

    font-weight:700;

    color:#D88A9A;

    margin-bottom:20px;

}

.btn-comprar{

    display:inline-block;

    width:100%;

    padding:14px;

    border-radius:35px;

    background:#F8D9DE;

    color:#8A6A56;

    font-weight:700;

    transition:.3s;

}

.btn-comprar:hover{

    background:#8A6A56;

    color:#FFF;

}

/*==========================
        SWIPER
==========================*/

.produtosSwiper{

    padding-bottom:60px;

}

.produtos-pagination{

    bottom:0 !important;

}

.produtos-pagination .swiper-pagination-bullet{

    width:12px;

    height:12px;

    opacity:.4;

    background:#8A6A56;

}

.produtos-pagination .swiper-pagination-bullet-active{

    width:34px;

    border-radius:20px;

    opacity:1;

    background:#F8D9DE;

}

/*==========================
        RESPONSIVO
==========================*/

@media(max-width:992px){

    .produto-img{

        height:320px;

    }

}

@media(max-width:768px){

    .produtos-home{

        padding:70px 0;

    }

    .produto-img{

        height:300px;

    }

    .produto-info h5{

        font-size:20px;

        min-height:auto;

    }

    .preco{

        font-size:24px;

    }

}