.titlereproductor {
    text-align: center;
    font-weight: bold;
    width: 100%;
}

.audio-player {
    position: relative;
    width: 100% !important;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    margin: 0px auto;
    background: var(--color-cardeventos) !important;
    z-index: 1;
    margin-left: 1rem;
    overflow: visible !important;
}

.audio-player::before {
    content: "";
    position: absolute;
    top: -.5px;
    left: -.5px;
    right: -.5px;
    bottom: -.5px;
    background: linear-gradient(to right, #FF7EB3, #65D3FE, #BDE7FF);
    border-radius: 24px;
    z-index: -2;
}

.audio-player::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--color-cardeventos);
    border-radius: 20px;
    z-index: -1;
}

.controlsReproductor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.elementsreproductor {
    display: flex;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
}

.audio-player h2 {
    font-size: 18px;
    margin: 0 0 10px;
    font-family: 'Outfit', sans-serif !important;
}

#waveform {
    width: 90%;
    margin: 0px auto;

}

.controls {
    /* display: flex; 
    justify-content: space-between;*/
    align-items: center;
    margin-top: 10px;
}

.controls button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.controls button:hover {
    color: #65D3FE;
}

.additional-controls {
    margin-top: 10px;
    display: flex;
    /* justify-content: space-between; */
    gap: 8px;
    align-items: center;
}

.additional-controls a {
    text-decoration: none;
    font-size: 14%;
}

.additional-controls a:hover {
    color: #65D3FE;
}

@media(max-width:360px) {
    .audio-player h2 {
        width: 260px;
        height: 26px;
        font-weight: 700;
        font-size: 20px;
        line-height: 26px;
        letter-spacing: 0px;
        text-align: center;
        vertical-align: middle;
        display: flex;
        justify-content: center;
        /* Centra horizontalmente */
        align-items: center;
    }

}

@media (max-width: 700px) {
    .audio-player {
        position: relative;
        width: 276px;
        margin: 0px auto;
        padding: 20px;
        text-align: center;
        border-radius: 20px;
        margin: 0px auto;
        z-index: 1;
        overflow: hidden;
    }
    .audio-player h2 {
        font-weight: 700;
        font-size: 20px;
        line-height: 26px;
        letter-spacing: 0px;
        text-align: center;
        vertical-align: middle;
        display: flex;
        justify-content: center;
        /* Centra horizontalmente */
        align-items: center;
    }
    
}