
.modal {
    display: none; 
    position: absolute; 
    z-index: 100; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    /* overflow: auto;  */
    background-color: rgba(0,0,0,0.9); 
    justify-content: center;
    align-items: center;
}
.modal__ {
    display: flex; 
    background-color: #0f0f0f;

   
}

.modal-content {
    background-color: #f0f0f0;
    margin: 2rem;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}
.modal__ .modal-content {
    background-color: #f0f0f0;
    margin: 2rem;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    max-width: 600px;

    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

audio {
    width: 100%;
}

.imgCardModal {
    width: 16rem;
    height: 16rem;
    display: flex;
    justify-content: center;
    box-shadow: 0px 0px 5px #f5f5f5;
    

}

.beat-content{
    padding: 1rem 0;
    display: flex;
    gap: 1rem;
}

.txtModal b{
    font-size: 1.5rem;
}


.btn_compra{
    padding: 0.7rem;
    height: 3rem;
    background-color: #00a10d;
    border: none;
    color: #f5f5f5;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: 0.3s;
    border-radius: 4px;
}
.ouvir_btn{
    padding: 0.7rem;
    height: 3rem;
    background-color: #0f0f0f;
    border: none;
    width: 100%;
    color: #f5f5f5;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: 0.3s;
    border-radius: 4px;
}
.btn_compra:hover{
    background-color: #004b06;
}