.musicas .titulo{
    font-size: 3rem;
    font-weight: 700;
}

.musicas .musica{
    width: 100%;
    display: flex;
    height: 70px;
    padding: 15px;
    align-items: center;
    margin: 15px 0;
    margin-left: 20px;
    border-radius: 70px;
    background: #FFF;
}
.musicas .musica:first-child{
    margin-top: 0;
}
.musicas .musica .play{
    margin-right: 20px;
}
.musicas .musica .play svg{
    fill: #000;
    width: 45px;
    height: 45px;
}
.musicas .musica .meta{
    display: flex;
    flex-direction: column;
    width: 30%;
    word-wrap: break-word;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}
.musicas .musica .meta a{
    flex: none;
    width: fit-content;
}
.musicas .musica .meta .titulo{
    font-family: Inter;
    font-size: 1rem;
    font-weight: 600;
}
.musicas .musica .BPM{
    width: 50px;
    margin-right: 100px;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 600;
}
.musicas .musica .menus{
    display: flex;
}
.musicas .musica .menus div{
    margin: 0 5px;
}

.planos{
    margin-left: auto;
    border: 2px solid #000;
    padding: 10px 15px ;
    border-radius: 46px;
    transition: .5s;
    color: #000;
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
}
.planos svg{
    transition: .5s;
}
.planos:hover{
    background-color: #5f56ff;
    border-color: #5f56ff;
}
.planos:hover svg{
    transform: rotate(180deg);
}

.planos .popup{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: calc(100% + 15px);
    padding: 20px;
    right: 0px;
    z-index: 1;
    background-color: #FFF;
    border: 1px solid #000;
    color: #000;
    border-radius: 14px;
    opacity: 0;
    z-index: -1000;
    pointer-events: none;
    min-width: 100%;
    transition: .5s;
}
.planos.ative .popup{
    opacity: 1;
    z-index: 1000;
    right: 0px;
    transition: .3s;
    pointer-events: all;
}
.planos .popup .plano{
    width: 240px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: space-between;
    color: #000;
    padding: 10px 20px;
}
.planos .popup h1{
    font-weight: 500;
    font-size: 2rem;
}
.planos .popup h4{
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: -40px;
    margin-left: 10px;
    text-align: start;
}
.planos .popup p{
    font-weight: 300;
    font-size: .8rem;
    text-align: start;
}
.planos .popup .btn{
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 4px;
    width: 80%;
    min-width: auto;
    border-radius: 63px;
    background-color: #544CDC;
    color: #fff;
}

.planos .popup span{
    font-weight: 600;
    font-size: 1.5rem;
}

.planos .popup .linha{
    background-color: #000;
    height: 220px;
    width: 2px;
}
.planos .popup .linha:last-child{
    display: none;
}

.link .popup {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: #151515;
    border-radius: 14px;
    opacity: 0;
    z-index: -1000;
    pointer-events: none;
    color: white;
    width: 150px;
    transition: .5s;
}


.musicas .musica .tags{
    display: flex;
}
.musicas .musica .tags .tag{
    min-width: 60px;
    border-radius: 18px;
    border: 0.5px solid #000;
    font-size: .8rem;
    font-weight: 400;
    padding: 5px;
    margin: 5px;
}

@media only screen and (max-width: 1700px) {
    .musica .planos .popup{
        width: 700px;
        height: auto;
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 1024px) {
    .musica .planos .popup .linha,.musicas .musica .tags{
        display: none;
    }
}
@media only screen and (max-width: 766px) {
    .musicas .musica .meta{
        width:20%;
        margin: 20px;
    }
    .musicas .musica .BPM{
        display: none;
    }
    .musica .planos .popup{
        width: 400px;
        overflow: scroll;
        height: 300px;
    }
}
@media only screen and (max-width: 550px) {
    .musicas .musica .menus{
        display: none;
    }
}