*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.card-wrapper{
    max-width: 1300px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}

.card-list .card-item{
    list-style: none;
}


.card-list .card-item .card-link{
    user-select: none;
    display: flex;
    flex-direction: column;
    background-color: #f2f1f1e6;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
    max-width: 55vw;
    cursor: pointer;
}


.card-list .card-item .card-link:active{
    cursor: grabbing;
}

.card-list .card-item .card-link:hover{
    border-color: #ee0653;
    transform: scale(1.05);
}

.card-list .card-item:hover .content-details{
    opacity: 1;
}


.card-list .card-link .card-image{
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}

.card-list .card-link .badge{
    color: #ee0653;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: #fab4cc;
    width: fit-content;
    border-radius: 50px;

}


.card-list .card-link .badge.reparos{
    color: #5372F0;
    background-color: #DDE4FF;

}

.card-list .card-link .badge.trocas{
    color: #205C20;
    background-color: #D6F8D2;
}

.card-list .card-link .badge.servicos{
    color: #B25A2B;
    background-color: #FFE3D2;
}

.card-title{
    font-size: 1.19rem;
    color: rgb(0, 0, 0);
    font-weight: 600;
    transition: all 0.3s;
    text-align: left;
}

.card-list .card-link .card-button{
    height: 35px;
    width: 35px;
    color: #ee0653;
    border-radius: 50%;
    margin-top: 20px;
    background: none;
    cursor: pointer;
    border: 2px solid #ee0653;
    transition: 0.4s ease;
    rotate: -45deg;
    display: flex;
    align-items: center;
    justify-content: center;
}


.card-list .card-link:hover .card-button{
    color: #fff;
    background: #ee0653;
}

.card-wrapper .swiper-pagination-bullet{
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background-color: #ee0653;
}

.card-wrapper .swiper-pagination-bullet-active{
    opacity: 1;
}

.card-wrapper .swiper-slide-button{
    color: #ee0653;
    margin-top: -35px;
}

.bx-right-arrow-alt{
    font-size: 1.3rem;
}

@media screen and (max-width: 768px){
    .card-wrapper{
        margin-left: 17vw;
    }
}

@media screen and (max-width: 510px){
    .card-wrapper{
        margin: 0 10px 25px;
        .card-list .card-item .card-link{
            max-width: 100vw;
        }
    }
    .card-wrapper .swiper-slide-button{
        display: none;
    }
}





