.playlists{
    display: flex;
    flex-direction: column;
}
.playlists .titulo{
    font-size: 3rem;
    font-weight: 700;
}

.playlists-conteiner{
    display: flex;
    font-family: 'Quicksand', sans-serif;
    overflow: auto scroll;
    scroll-behavior: smooth;
    scroll-snap-type:x mandatory;
}
.playlists::-webkit-scrollbar{
    display: none;
}

.playlists-conteiner{
    display: flex;
}
.playlist{
    margin-top: 40px;
    /* background: linear-gradient(91deg, rgba(83, 76, 220, 0) -3.49%, #D9D9D9 113.5%); */
    background-color: #151515;
    padding: 20px;
    margin:0 20px;
    border-radius: 17px;
    transition: .3s;
    display: flex;
    flex-direction: column;
    width: 200px;
    scroll-snap-align: start;
    color: #fff;
}
.playlist:hover{
    /* background-color: rgba(84, 76, 220, 0.40); */
}

.playlist .capa{
    width: 150px;
    height: 150px;
    border-radius: 25px;
    margin-bottom: 20px;
    overflow: hidden;
}
.playlist .capa img{
    height: 100%;
    max-width: 100%;
    aspect-ratio: 1/1;
}

.playlist .contra-capa{
    display: flex;
    flex-direction: column;
    color: #fff;
}
.playlist .contra-capa .nome{
    word-wrap: break-word;
    overflow: hidden;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
    height: 3rem;
    font-family: Quicksand;
    font-size: .8rem;
    font-weight: 400;
}

.playlist .contra-capa .artista{
    font-family: Quicksand;
    font-size: .8rem;
    font-weight: 400;
}