/* =======================================================================
   DakiMangas — css/premium.css v1.0
   Estilos para:
     1. Sistema Premium (modal, cards, badges)
     2. Crop Modal estilo Discord
     3. Fix de molduras de avatar (tamanho correto)
   ======================================================================= */

/* ── 1. FIX MOLDURAS DE AVATAR ─────────────────────────────────────────── */

/* O wrapper do avatar deve ser sempre quadrado e relativo */
.perfil-avatar-wrap {
    position: relative !important;
    display: inline-block !important;
    width: 120px !important;
    height: 120px !important;
    flex-shrink: 0;
}

/* A foto de perfil ocupa exactamente o wrapper */
.perfil-avatar {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
}

/* A moldura (frame overlay) cobre exactamente o wrapper — sem salientes */
.avatar-frame-overlay {
    position: absolute !important;
    /* inset 0 = cobre exactamente o espaço do avatar */
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 3 !important;
    object-fit: contain !important;
    /* Remover o -8px que causava overflow */
}

/* Preview das molduras na grelha — tamanho consistente */
.frame-preview-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.frame-preview-avatar {
    display: block !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

.frame-preview-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    object-fit: contain !important;
    z-index: 2 !important;
}

/* Badge Premium na grelha de frames */
.frame-option.frame-premium {
    border-color: rgba(255, 180, 0, .4);
}
.frame-option.frame-premium:hover {
    border-color: #ffb400;
    box-shadow: 0 0 12px rgba(255, 180, 0, .25);
}
.frame-option.frame-premium.active {
    border-color: #ffb400;
    background: rgba(255, 180, 0, .1);
}
.frame-option.frame-premium .frame-label::after {
    content: ' ⭐';
}

/* ── 2. CROP MODAL (estilo Discord) ────────────────────────────────────── */

.daki-crop-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.daki-crop-modal.daki-crop-modal--open {
    display: flex;
}

.daki-crop-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(6px);
}

.daki-crop-dialog {
    position: relative;
    background: #1e1e2e;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    width: min(600px, 95vw);
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .6);
    animation: cropDialogIn .2s ease;
}

@keyframes cropDialogIn {
    from { opacity: 0; transform: scale(.94); }
    to   { opacity: 1; transform: scale(1); }
}

.daki-crop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.daki-crop-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.daki-crop-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background .15s, color .15s;
    line-height: 1;
}
.daki-crop-close:hover { background: rgba(255, 255, 255, .08); color: #fff; }

.daki-crop-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 12px;
    overflow: auto;
}

.daki-crop-viewport {
    position: relative;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    cursor: grab;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.daki-crop-viewport:active { cursor: grabbing; }

#daki-crop-canvas {
    display: block;
    max-width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

/* Guia visual — anel para avatar, retângulo para banner */
.daki-crop-guide {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.daki-crop-guide--avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(139, 71, 245, .8), 0 0 0 9999px rgba(0,0,0,.45);
    margin: 10px;
}

.daki-crop-guide--banner::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(139, 71, 245, .8);
    border-radius: 6px;
    box-shadow: 0 0 0 9999px rgba(0,0,0,.35);
}

.daki-crop-hint {
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.daki-crop-controls {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.daki-crop-zoom-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

#daki-crop-zoom {
    flex: 1;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .15);
    outline: none;
    cursor: pointer;
}
#daki-crop-zoom::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--clr-accent, #8b47f5);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(139, 71, 245, .5);
}
#daki-crop-zoom::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: var(--clr-accent, #8b47f5);
    cursor: pointer;
}

.daki-crop-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.daki-crop-btn {
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s, transform .1s;
}
.daki-crop-btn:hover { opacity: .85; }
.daki-crop-btn:active { transform: scale(.97); }
.daki-crop-btn:disabled { opacity: .5; cursor: not-allowed; }

.daki-crop-btn--cancel {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
}
.daki-crop-btn--cancel:hover { background: rgba(255, 255, 255, .13); }

.daki-crop-btn--apply {
    background: var(--clr-accent, #8b47f5);
    color: #fff;
    min-width: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Botão de rodar */
.daki-crop-icon-btn {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s, color .15s, transform .15s;
}
.daki-crop-icon-btn:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    transform: rotate(90deg);
}
.daki-crop-icon-btn:active { transform: rotate(90deg) scale(.92); }

/* Percentagem do zoom */
.daki-crop-zoom-pct {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    min-width: 36px;
    text-align: right;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
}

/* Ícones -/+ do zoom */
.daki-zoom-icon {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    flex-shrink: 0;
    line-height: 1;
    user-select: none;
    width: 14px;
    text-align: center;
}

/* Hint de teclado */
.daki-crop-hint kbd {
    display: inline-block;
    padding: 1px 5px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    font-size: .68rem;
    font-family: monospace;
    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .06);
    margin: 0 1px;
}

/* Spinner animado */
.daki-spin {
    display: inline-block;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: dakiSpin .65s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}
@keyframes dakiSpin {
    to { transform: rotate(360deg); }
}

/* Responsive — ecrãs pequenos */
@media (max-width: 480px) {
    .daki-crop-dialog {
        border-radius: 12px 12px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 85vh;
    }
    .daki-crop-modal {
        align-items: flex-end;
    }
}

/* ── 3. SISTEMA PREMIUM ─────────────────────────────────────────────────── */

/* Badge de utilizador */
.user-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 9px;
    border-radius: 20px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.badge-admin {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    box-shadow: 0 2px 8px rgba(255, 180, 0, .4);
}

.badge-premium {
    background: linear-gradient(135deg, #8b47f5, #e040fb);
    color: #fff;
    box-shadow: 0 2px 8px rgba(139, 71, 245, .4);
}

.badge-editor {
    background: rgba(56, 161, 105, .25);
    color: #68d391;
    border: 1px solid rgba(56, 161, 105, .4);
}

/* Card de estado Premium no perfil */
.premium-status-card {
    background: linear-gradient(135deg, rgba(139, 71, 245, .12), rgba(224, 64, 251, .08));
    border: 1px solid rgba(139, 71, 245, .3);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.premium-status-card.is-active {
    border-color: rgba(139, 71, 245, .5);
    box-shadow: 0 0 24px rgba(139, 71, 245, .15);
}

.premium-status-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.premium-status-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-status-card__sub {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
}

.premium-status-card__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Modal de Upgrade Premium */
.daki-premium-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    align-items: center;
    justify-content: center;
}

.daki-premium-modal.daki-premium-modal--open {
    display: flex;
}

.daki-premium-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(8px);
}

.daki-premium-dialog {
    position: relative;
    background: #1a1a2e;
    border: 1px solid rgba(139, 71, 245, .3);
    border-radius: 20px;
    width: min(480px, 95vw);
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .7), 0 0 40px rgba(139, 71, 245, .15);
    animation: premiumDialogIn .25s ease;
}

@keyframes premiumDialogIn {
    from { opacity: 0; transform: translateY(24px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.daki-premium-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color .15s, background .15s;
}
.daki-premium-close:hover { color: #fff; background: rgba(255,255,255,.08); }

.daki-premium-icon {
    font-size: 3rem;
    margin-bottom: 8px;
    display: block;
}

.daki-premium-dialog h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 6px;
    background: linear-gradient(135deg, #c084fc, #e040fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.daki-premium-dialog .premium-tagline {
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
    margin-bottom: 24px;
}

/* Lista de benefícios */
.premium-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .06);
    font-size: .875rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.4;
}

.premium-benefits li .benefit-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.premium-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.premium-price-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
}

.premium-price-period {
    font-size: .9rem;
    color: rgba(255, 255, 255, .45);
}

/* Botão CTA */
.btn-premium-upgrade {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #8b47f5, #e040fb);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(139, 71, 245, .45);
    position: relative;
    overflow: hidden;
}
.btn-premium-upgrade::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
    opacity: 0;
    transition: opacity .2s;
}
.btn-premium-upgrade:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(139, 71, 245, .55); }
.btn-premium-upgrade:hover::before { opacity: 1; }
.btn-premium-upgrade:active { transform: translateY(0); }
.btn-premium-upgrade:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.premium-guarantee {
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 12px;
}

/* Botão inline para abrir modal premium */
.btn-open-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(139, 71, 245, .4);
    border-radius: 8px;
    background: rgba(139, 71, 245, .1);
    color: #c084fc;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    text-decoration: none;
}
.btn-open-premium:hover {
    border-color: rgba(139, 71, 245, .7);
    background: rgba(139, 71, 245, .18);
    color: #fff;
}

/* Tooltip de funcionalidade bloqueada por premium */
.premium-lock-tooltip {
    position: relative;
    display: inline-block;
}
.premium-lock-tooltip::after {
    content: '⭐ Exclusivo Premium';
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    border: 1px solid rgba(139, 71, 245, .4);
    color: #c084fc;
    font-size: .72rem;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s;
    z-index: 10;
}
.premium-lock-tooltip:hover::after { opacity: 1; }

/* Tab de Premium no perfil */
.profile-tab-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .65rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8b47f5, #e040fb);
    color: #fff;
    vertical-align: middle;
    margin-left: 4px;
}

/* Animação de loading no botão de upgrade */
@keyframes upgradeSpinner {
    to { transform: rotate(360deg); }
}
.btn-premium-upgrade .upgrade-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: upgradeSpinner .7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

/* Download offline no leitor */
.chapter-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .7);
    font-size: .8rem;
    cursor: pointer;
    transition: all .2s;
}
.chapter-download-btn:hover {
    border-color: rgba(139, 71, 245, .5);
    background: rgba(139, 71, 245, .12);
    color: #fff;
}
.chapter-download-btn.is-premium {
    border-color: rgba(139, 71, 245, .4);
    color: #c084fc;
}

/* Responsive */
@media (max-width: 480px) {
    .daki-premium-dialog {
        padding: 24px 20px;
        border-radius: 20px 20px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
    }
    .daki-premium-modal { align-items: flex-end; }
    .premium-status-card { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   BANNER PREMIUM — Página Principal
   ═══════════════════════════════════════════════════════════════ */

.dk-premium-banner {
    position: relative;
    margin: 0 0 2.5rem;
    overflow: hidden;
    border-radius: 0;
}

.dk-premium-banner-inner {
    position: relative;
    background: linear-gradient(135deg,
        #0d0b1a 0%,
        #1a0d2e 30%,
        #0f1229 60%,
        #0a0a18 100%
    );
    border-top: 1px solid rgba(139, 71, 245, 0.25);
    border-bottom: 1px solid rgba(139, 71, 245, 0.25);
    padding: 3.5rem 2rem;
    overflow: hidden;
}

/* Brilho de fundo animado */
.dk-premium-banner-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 10% 50%, rgba(139,71,245,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 85% 30%, rgba(245,158,11,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 80% at 90% 80%, rgba(99,55,200,0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* Partículas decorativas */
.dk-premium-banner-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.dk-premium-banner-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    opacity: 0;
    animation: dkPremParticle 6s infinite ease-in-out;
}
.dk-premium-banner-particles span:nth-child(1) { width:4px;height:4px;background:#8b47f5;left:15%;top:20%;animation-delay:0s; }
.dk-premium-banner-particles span:nth-child(2) { width:3px;height:3px;background:#f59e0b;left:30%;top:70%;animation-delay:1s; }
.dk-premium-banner-particles span:nth-child(3) { width:5px;height:5px;background:#8b47f5;left:60%;top:15%;animation-delay:2s; }
.dk-premium-banner-particles span:nth-child(4) { width:3px;height:3px;background:#d97706;left:75%;top:75%;animation-delay:0.5s; }
.dk-premium-banner-particles span:nth-child(5) { width:4px;height:4px;background:#a855f7;left:88%;top:35%;animation-delay:1.5s; }
.dk-premium-banner-particles span:nth-child(6) { width:3px;height:3px;background:#f59e0b;left:45%;top:85%;animation-delay:3s; }
@keyframes dkPremParticle {
    0%   { opacity: 0; transform: translateY(0) scale(1); }
    30%  { opacity: 1; }
    70%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-30px) scale(0.5); }
}

.dk-premium-banner-content {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1;
}

/* ── Lado esquerdo ── */
.dk-premium-banner-left {
    flex: 1 1 0;
    min-width: 0;
}

.dk-premium-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(217,119,6,0.1));
    border: 1px solid rgba(245,158,11,0.4);
    color: #f59e0b;
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.dk-premium-banner-title {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 0.85rem;
}
.dk-premium-banner-title span {
    background: linear-gradient(90deg, #8b47f5, #c084fc, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dk-premium-banner-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    max-width: 480px;
}

.dk-premium-banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1.75rem;
}
.dk-premium-banner-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(139,71,245,0.08);
    border: 1px solid rgba(139,71,245,0.2);
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
}

.dk-premium-banner-cta-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.dk-premium-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8b47f5 0%, #6d28d9 50%, #5b21b6 100%);
    color: #fff;
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(139,71,245,0.35), 0 0 0 1px rgba(139,71,245,0.2);
    position: relative;
    overflow: hidden;
}
.dk-premium-banner-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.dk-premium-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139,71,245,0.45), 0 0 0 1px rgba(139,71,245,0.3);
}
.dk-premium-banner-btn:active {
    transform: translateY(0);
}

.dk-premium-banner-price {
    color: rgba(255,255,255,0.8);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    letter-spacing: 0.05em;
    line-height: 1;
}
.dk-premium-banner-price span {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.55;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    letter-spacing: 0;
    margin-left: 2px;
}

/* ── Lado direito — Card decorativo ── */
.dk-premium-banner-right {
    flex-shrink: 0;
    width: 260px;
}

.dk-premium-banner-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 1.25rem;
    backdrop-filter: blur(12px);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.dk-premium-banner-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.dk-premium-card-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.dk-premium-card-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.dk-premium-card-avatar svg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.dk-premium-card-frame {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(#f59e0b, #8b47f5, #f59e0b);
    z-index: -1;
    animation: dkPremFrameSpin 4s linear infinite;
}
@keyframes dkPremFrameSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.dk-premium-card-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.dk-premium-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    color: #f59e0b;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.3);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

.dk-premium-card-stats {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.dk-premium-card-stats > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
}
.dk-premium-card-stats span {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
}
.dk-premium-card-stats strong {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ── Responsivo ── */
@media (max-width: 768px) {
    .dk-premium-banner-right { display: none; }
    .dk-premium-banner-inner { padding: 2.25rem 1.25rem; }
    .dk-premium-banner-title { font-size: 2rem; }
    .dk-premium-banner-features span { font-size: 0.75rem; }
    .dk-premium-banner-btn { width: 100%; justify-content: center; }
    .dk-premium-banner-cta-wrap { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
