.aba-vertical{
    position: absolute;
    top: 95px;
    left:250px;

    width:150px;
    height:640px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 0px 80px;
}



.caixa-capa-midia{
    position: absolute;

    top: 64px;
    left: 25px;

    width: 809px;
    height: 150px;

    background: rgba(255,255,255,0.7);

    border: 1px solid #fc6998;
    border-radius: 6px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    z-index: 1;
}

.escada1-capa{
    width: 100%;
    height: 100%;

    object-fit: cover;

    /* Ajuste este valor para escolher qual parte da imagem aparece */
    object-position: center 53%;

    z-index: 99999;
}





































.media-player{
    width: 100%;
    max-width: 850px;
    margin: 30px auto;

    background: white;

    border: 2px solid #fc6998;
    border-radius: 10px;

    overflow: hidden;
}

.player-topo{
    padding: 10px;

    background: linear-gradient(
        to bottom,
        #fbb1c3,
        #fc6998
    );

    color: white;
    text-align: center;
}

.player-esquerda{
    width: 300px;
    padding: 20px;
    text-align: center;
}

.capa-album{
    width: 250px;
    border-radius: 8px;
}

.playlist{
    flex: 1;
    padding: 20px;

    max-height: 350px;
    overflow-y: auto;
}

.musica{
    padding: 10px;
    cursor: pointer;
}

.musica:hover{
    background: #ffe0ea;
}

.player-corpo{
    display: flex;
    gap: 20px;
    padding: 20px;
}

.player-esquerda{
    width: 350px;
    text-align: center;
}

.playlist-container{
    flex: 1;

    background: #fff5f8;

    border: 1px solid #fbb1c3;

    border-radius: 8px;

    overflow: hidden;
}

.playlist-titulo{
    padding: 12px;

    text-align: center;

    font-weight: bold;

    color: white;

    background: linear-gradient(
        to bottom,
        #fbb1c3,
        #fc6998
    );
}

.playlist{
    max-height: 500px;

    overflow-y: auto;
}

.item-playlist{
    padding: 10px 15px;

    cursor: pointer;

    border-bottom: 1px solid #ffd4e2;

    transition: 0.2s;
}

.item-playlist:hover{
    background: #ffe6ef;
}

.item-playlist.tocando{
    background: #fc6998;

    color: white;

    font-weight: bold;
}

.capa-container{
    position: relative;

    width: 250px;
    height: 250px;

    margin: 0 auto 20px;
}

.capa-album{
    width: 250px;
    height: 250px;

    object-fit: cover;

    border-radius: 12px;

    position: relative;

    z-index: 2;
}

.cd{
    position: absolute;

    width: 120px;
    height: 120px;

    top: 65px;
    right: -40px;

    z-index: 1;
}

.girando{
    animation: girarCD 8s linear infinite;
}

@keyframes girarCD{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }

}

.info-musica h2{
    margin: 0;

    color: #444;

    font-size: 22px;
}

.info-musica p{
    margin-top: 5px;

    color: #777;
}

.barra-area{
    display: flex;

    align-items: center;

    gap: 10px;

    margin: 20px 0;
}

.barra-progresso{
    flex: 1;

    height: 12px;

    background: #ffd8e6;

    border-radius: 20px;

    overflow: hidden;

    cursor: pointer;
}

.barra-preenchimento{
    width: 0%;

    height: 100%;

    background: linear-gradient(
        to right,
        #fc6998,
        #ff9bbb
    );
}

.controles{
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 20px;
}

.controles button{
    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    font-size: 18px;

    background: linear-gradient(
        to bottom,
        #ffffff,
        #ffd6e5
    );

    box-shadow:
        0 2px 5px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.9);

    transition: 0.2s;
}

.controles button:hover{
    transform: translateY(-2px);

    background: linear-gradient(
        to bottom,
        #fff,
        #ffc2d7
    );
}

.controles button:active{
    transform: translateY(1px);
}

#shuffleBtn.ativo,
#repeatBtn.ativo{
    background: #fc6998;

    color: white;
}

.playlist::-webkit-scrollbar{
    width: 10px;
}

.playlist::-webkit-scrollbar-track{
    background: #ffe6ef;
}

.playlist::-webkit-scrollbar-thumb{
    background: #fc6998;

    border-radius: 10px;
}

.link-musica{
    display: block;

    width: 100px;
    padding: 2px 10px;
    margin: 0;

    text-align: center;
    text-decoration: none;

    color: black;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;

    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 45%,
        #f2f2f2 46%,
        #d9d9d9 100%
    );

    border: 1px solid #bdbdbd;
    border-radius: 6px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,1),
        inset 0 -1px 2px rgba(0,0,0,0.08),
        0 2px 4px rgba(0,0,0,0.12);

    transition: all 0.2s ease;

    z-index: 10;
}