.saze-spotify {
    position: fixed;
    right: 24px;
    /* Reserva o canto inferior para o botão flutuante do WhatsApp. */
    bottom: 100px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    font-family: inherit;
}

.saze-spotify__panel {
    position: relative;
    width: min(352px, calc(100vw - 32px));
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .18));
}

.saze-spotify__panel[hidden] {
    display: none;
}

.saze-spotify__panel iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
    border-radius: 12px;
    background: #121212;
}

.saze-spotify__toggle,
.saze-spotify__close {
    border: 0;
    cursor: pointer;
    font: inherit;
    transition: opacity .2s ease, transform .2s ease;
}

.saze-spotify__toggle {
    padding: 11px 16px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    color: #222;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 7px 20px rgba(0, 0, 0, .11);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .04em;
}

.saze-spotify__toggle:hover,
.saze-spotify__toggle:focus-visible,
.saze-spotify__close:hover,
.saze-spotify__close:focus-visible {
    opacity: .78;
}

.saze-spotify__close {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    color: #fff;
    background: #222;
    font-size: 21px;
    line-height: 28px;
}

@media (max-width: 600px) {
    .saze-spotify {
        right: 16px;
        bottom: 92px;
        left: 16px;
    }

    .saze-spotify__panel {
        width: 100%;
    }

    .saze-spotify__panel iframe {
        height: min(352px, calc(100vh - 110px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .saze-spotify__toggle,
    .saze-spotify__close {
        transition: none;
    }
}
