/* ==========================================
   ESTILO SUA MÚSICA – BAIXARMP3 / LOADFILES
   ========================================== */

/* ---------- RESET BÁSICO ---------- */
.sm-single-wrapper * {
    box-sizing: border-box;
}

.sm-single-wrapper {
    width: 100%;
    max-width: 1080px;
    margin: 40px auto;
    padding: 20px;
    font-family: "Open Sans", Arial, sans-serif;
}

/* ---------- TITULOS GERAIS ---------- */
.sm-single-wrapper h1,
.sm-single-wrapper h2 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

/* ---------- BLOCO SUPERIOR ---------- */
.sm-single-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

/* ---------- CAPA ---------- */
.sm-cover-area {
    flex: 0 0 280px;
}

.sm-cover-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.sm-cover-img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* ---------- BOTÃO PLAY SOBRE A CAPA ---------- */
.sm-play-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.sm-play-btn {
    background: #ff0040;
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 15px 22px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    transition: .25s;
}

.sm-play-btn:hover {
    background: #cc0033;
}

/* ---------- INFO DO SINGLE ---------- */
.sm-single-info {
    flex: 1;
}

.sm-artist a {
    color: #555;
    font-size: 16px;
    text-decoration: none;
}

.sm-meta {
    margin-top: 10px;
    color: #666;
    font-size: 15px;
}

.sm-meta span {
    margin-right: 15px;
}

/* ---------- BOTÃO PRINCIPAL DOWNLOAD ---------- */
.sm-big-download-btn {
    background: #1db954;
    display: inline-block;
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 18px;
    margin: 25px 0;
    text-decoration: none;
    transition: .25s;
}

.sm-big-download-btn:hover {
    background: #17a74e;
}

/* ---------- COMPARTILHAMENTO ---------- */
.sm-share-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.sm-share {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.sm-share.fb {
    background: #1877f2;
}

.sm-share.whats {
    background: #25D366;
}

.sm-share.x {
    background: #000;
}

.sm-share.copy {
    background: #999;
}

/* ---------- LINK DO ARQUIVO ---------- */
.sm-link-box {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #555;
}

/* ---------- LISTA DE FAIXAS ---------- */
.sm-single-tracklist {
    margin: 40px 0;
}

.sm-track-row {
    display: flex;
    align-items: center;
    background: #fafafa;
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 10px;
    gap: 15px;
}

.sm-track-number {
    font-size: 16px;
    width: 40px;
    color: #333;
}

.sm-track-name {
    flex: 1;
    font-weight: 600;
}

.sm-track-actions {
    display: flex;
    gap: 8px;
}

.sm-btn {
    background: #eee;
    border: none;
    padding: 7px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.sm-btn:hover {
    background: #ddd;
}

/* ---------- BOTÃO PRINCIPAL DOWNLOAD (AZUL) ---------- */
.sm-big-download-btn {
    background: #3B84B8;
    /* azul igual ao logo LoadFiles */
    display: inline-block;
    color: #ffffff !important;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 12px;
    font-size: 18px;
    margin: 25px 0;
    text-decoration: none;
    transition: .25s;
    text-transform: uppercase;
}

.sm-big-download-btn:hover {
    background: #2F6A94;
    /* azul escurecido do mesmo tom */
    color: #ffffff !important;
    text-decoration: none;
}

/* ---------- CARROSSEL ---------- */
.sm-recommended {
    margin-top: 50px;
}

.sm-carousel {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 5px;
}

.sm-carousel-item {
    flex: 0 0 140px;
    text-align: center;
    text-decoration: none;
    color: #111;
}

.sm-carousel-item img {
    width: 100%;
    border-radius: 10px;
}

.sm-carousel-item span {
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* Scroll invisível */
.sm-carousel::-webkit-scrollbar {
    height: 0px;
}

/* ---------- TV BLOCO ---------- */
.sm-tv {
    margin: 50px 0;
}

.sm-tv iframe {
    width: 100%;
    height: 260px;
    border-radius: 10px;
}

/* ---------- PLAYER VISUAL (LFP) ---------- */
.lfp-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 20px;
}

.lfp-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.6);
    transform: scale(1.2);
}

.lfp-card {
    position: relative;
    padding: 20px;
}

.lfp-cover {
    width: 110px;
    height: 110px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 10px;
}

.lfp-info .lfp-title {
    font-size: 20px;
    font-weight: 700;
}

.lfp-sub {
    color: #ccc;
    margin-bottom: 10px;
}

/* Controles */
.lfp-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.lfp-btn {
    background: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
}

#lfpVolIcon {
    font-size: 20px;
}

.lfp-range {
    width: 90px;
}

/* Barra de progresso */
.lfp-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lfp-progress {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .4);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.lfp-progress-bar {
    height: 100%;
    background: #1db954;
    width: 0;
    border-radius: 4px;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 768px) {

    .sm-single-top {
        flex-direction: column;
        align-items: center;
    }

    .sm-cover-area {
        width: 80%;
    }

    .sm-cover-img {
        width: 100%;
    }

    .sm-carousel-item {
        flex: 0 0 120px;
    }
}