/* ═══════════════════════════════════════════
   TVVote Pro — Like Wall Styles
   Bloqueio de conteúdo por Like
   ═══════════════════════════════════════════ */

/* ── Container principal (overlay fixed) ── */
.tvvote-likewall {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: tvvote-lw-fadein 0.35s ease forwards;
}

@keyframes tvvote-lw-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Fundo escuro com blur ── */
.tvvote-likewall__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ── Painel central ── */
.tvvote-likewall__panel {
    position: relative;
    z-index: 1;
    background: linear-gradient(150deg, #ffffff 0%, #fffbf0 100%);
    border-radius: 24px;
    padding: 48px 40px 36px;
    max-width: 520px;
    width: 92%;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 128, 23, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    text-align: center;
    animation: tvvote-lw-slidein 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes tvvote-lw-slidein {
    from { opacity: 0; transform: scale(0.82) translateY(36px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
}

/* ── Ícone ── */
.tvvote-likewall__icon {
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 10px rgba(201, 128, 23, 0.35));
}

/* ── Título ── */
.tvvote-likewall__title {
    font-size: 22px;
    font-weight: 800;
    color: #1d2327;
    margin: 0 0 14px;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

/* ── Mensagem ── */
.tvvote-likewall__message {
    font-size: 15px;
    color: #50575e;
    line-height: 1.65;
    margin-bottom: 28px;
}

/* ── Widget de votação ── */
.tvvote-likewall__widget {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tvvote-likewall__widget .tvvote-widget-wrap {
    margin: 0;
    width: 100%;
}

/* ── Progresso ── */
.tvvote-likewall__progress {
    margin-bottom: 14px;
}

.tvvote-likewall__progress small {
    font-size: 12px;
    color: #888;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
    letter-spacing: 0.01em;
}

/* ── Nota de rodapé ── */
.tvvote-likewall__footnote {
    font-size: 12px;
    color: #bbb;
    margin: 0;
    letter-spacing: 0.01em;
}

/* ════════════════════════════════
   Responsivo
   ════════════════════════════════ */
@media (max-width: 600px) {
    .tvvote-likewall__panel {
        padding: 32px 20px 28px;
        width: 96%;
        border-radius: 18px;
    }

    .tvvote-likewall__title {
        font-size: 18px;
    }

    .tvvote-likewall__message {
        font-size: 14px;
    }
}