.titlereproductor {
    text-align: center;
    font-weight: bold;
    width: 100%;
}
.audio-player {
    position: relative;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 40px;
    margin-top: 40px;

    background: var(--color-cardeventos) !important;
    z-index: 4;
    margin-left: 1rem;
    overflow: visible !important;
}
.audio-player::before {
    content: "";
    position: absolute;
    top: -.5px;
    left: -.5px;
    right: -.5px;
    bottom: -.5px;
    background: linear-gradient(45deg, #9D72A7, #D2916D, #C85572, #7177AB, #7BB2DA, #A8B49F);
    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: 75%;
    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;
    gap: 8px;
    align-items: center;
}

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

.additional-controls a:hover {
    color: #65D3FE;
}
/*@media(max-width:360px) {
   
}*/
@media (max-width: 700px) {
    .audio-player {
        position: relative;
        margin: 30px auto !important;
        padding: 20px;
        text-align: center;
        border-radius: 20px;
        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;
    }
    #waveform{
        width: 70%; 
    }
}
@media(max-width:381px) {
    .audio-player h2 {
        display: flex !important;
        width: 236px;
        height: 52px;
        flex-direction: column;
        justify-content: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 700 !important;
        line-height: 26px; /* 130% */
    }
    #current-time,
    #total-time{
        font-family: "Josefin Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px; 
    }
}