/* ============================================================
   🎵 MÚSICA DESTAQUE — CARD COMPLETO (Ghostune)
   Layout igual ao mockup enviado — desktop + mobile
============================================================ */



.highlight-card {
    width: 100%;
    max-width: 760px;
    margin: 0 0 1rem 0;
    padding: 18px;
    background: #121622;
    display: flex;
    justify-content: center;
    border-radius: 16px;
}

.highlight-card-inner {
    display: flex;
    width: 100%;
    gap: 20px;
}

/* ========================= LEFT ========================= */

.highlight-left {
    flex: 0 0 180px;
}

.highlight-cover-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
}

.highlight-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================= RIGHT ========================= */

.highlight-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
}

.highlight-main-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.highlight-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.highlight-artist {
    color: rgba(253, 253, 253, 0.91);

    margin-bottom: 10px;
}

/* ========================= SOCIAL ICONS ========================= */

.highlight-socials {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-top: 0px;
}

.highlight-socials a {
 text-decoration: none;
}

/* ========================= SOCIAL ICONS ========================= */
.highlight-social-btn {
    width: 40px;
    height: 50px;
    border-radius: 50%;
    background: #22222200;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    font-size: 1.5rem;
    transition: 0.2s;
}

.social-icon {
  filter: brightness(0) invert(1);
  width: 30px;
  height: 30px;
}

/* ========================= PLAY BUTTON ========================= */

.highlight-play-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 16px;
}

.highlight-play-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: none;
    cursor: pointer;
    margin-top: 75px;
}

.play-btn-gradient {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #FFF;
    z-index: 1;
}

.highlight-play-btn .play-icon {
    z-index: 2;
    position: relative;
    font-size: 26px;
    color: #1b1e27;
}

/* ========================= TIMELINE ========================= */

.highlight-timeline {
    margin-top: 8px;
}

.highlight-timeline-top {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 12px;
    margin-bottom: 6px;
}

/* ========================= BARRA DE PROGRESSO ========================= */

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(172, 172, 172, 0.8);
    border-radius: 4px;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #FFF;
    border-radius: 4px;
    width: 0%;
}

.progress-thumb {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
}

.progress-thumb.active {
    opacity: 1;
}






/* Para garantir que a etiqueta fique acima do card */
.highlight-card {
    position: relative;
    z-index: 1;
}

/* ⭐ Etiqueta premium estilo Ghostune */
.md-etiqueta-premium {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    /* border-radius: 16px; */
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .3px;
    background: linear-gradient(90deg, #ea646c, #2226df);
    color: #f0f0f0;

    z-index: 20; /* 🔥 mantém por cima SEMPRE */
    border-bottom-left-radius: 16px;
    border-top-right-radius: 16px;
}

.md-etiqueta-premium i {
    font-size: 12px;
    color: #ffffff;
}



/* ============================================================
   📱 MOBILE — layout horizontal igual ao mockup
============================================================ */

@media (max-width: 600px) {

    .highlight-card {
        padding: 14px;
    }

    .highlight-card-inner {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .highlight-left {
        flex: 0 0 120px;
    }

    .highlight-cover-wrapper {
        width: 120px;
        height: 120px;
        border-radius: 14px;
    }

    .highlight-title {
        font-size: 1.0rem;
        margin-bottom: 2px;
    }

    .highlight-artist {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .highlight-social-btn {
        width: 35px;
        height: 35px;
        font-size: 23px;
    }

    .social-icon {
      width: 25px;
      height: 25px;
    }
    
    .highlight-play-btn {
        width: 40px;
        height: 40px;
        margin-top: 45px;
    }

    .highlight-play-btn .play-icon {
        font-size: 22px;
    }

    .highlight-timeline {
        margin-top: 4px;
    }

    .highlight-timeline-top {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .progress-bar {
        height: 4px;
    }


}


