/* ====== SECCIÓN CANCIONES REPRODUCIDAS (VoltPro History Elementor) ====== */

.vp-songs-section{
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 0px 0px;
    position: relative;
}

/* Marco rosa general */
.vp-songs-box{
    border-radius: 6px;
    padding: 5px 5px 5px;
    background: #fff;
}

/* Contenedor de tarjetas */
.vp-song-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Tarjeta canción */
.vp-song-card{
    flex: 1 1 calc(25% - 20px);
    min-width: 220px;
    max-width: 260px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Contenedor cuadrado perfecto */
.vp-song-cover {
    position: relative;
    width: 100%;
    padding-top: 100%; /* ← hace el cuadro 1:1 */
    overflow: hidden;
    border-radius: 10px;
}

/* Imagen ajustada correctamente */
.vp-song-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* ← recorta y mantiene proporción */
    object-position: center;
}


/* Logo tipo Spotify */
.vp-song-spotify{
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(36, 215, 96, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-song-spotify svg{
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

/* Texto de la tarjeta */
.vp-song-info{
    padding: 12px 16px 14px;
}

.vp-song-title{
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #333;
}

.vp-song-artist{
    font-size: 13px;
    margin: 0;
    color: #999;
}

/* Responsivo */
@media (max-width: 1024px){
    .vp-song-card{
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px){
    .vp-songs-box{
        padding: 20px 15px 10px;
    }
    .vp-song-card{
        flex: 1 1 100%;
        max-width: 100%;
    }
}
