/* Wrapper */
.smw-paywall-wrapper {
    position: relative;
    max-width: 760px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Georgia, serif;
}

/* Conteúdo */
.smw-paywall-content {
    position: relative;
    font-size: 18px;
    line-height: 1.8;
    color: #111;
}

/* --- Fade superior (blur visual antes do bloqueio) --- */
.smw-paywall-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 260px;
    height: 120px;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.7) 60%,
            rgba(255, 255, 255, 1) 100%);

    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);

    pointer-events: none;
    z-index: 5;
}

/* --- Overlay base azul --- */
.smw-paywall-overlay {
    position: relative;
    margin-top: -120px;
    padding-top: 140px;
    z-index: 10;
}

/* --- Card Glass Azul --- */
.smw-paywall-card {
    padding: 45px 30px;
    border-radius: 14px;

    background: rgba(25, 90, 200, 0.75);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow:
        0 -20px 60px rgba(0, 0, 0, 0.25),
        /* sombra superior forte */
        0 25px 60px rgba(0, 0, 0, 0.15);
    /* sombra inferior suave */

    text-align: center;
    color: #fff;

    position: relative;
}

/* Glow topo azul */
.smw-paywall-card::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 60px;

    background: linear-gradient(to bottom,
            rgba(25, 90, 200, 0.6),
            rgba(25, 90, 200, 0));

    filter: blur(25px);
    z-index: -1;
}

/* Título */
.smw-paywall-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Texto */
.smw-paywall-card p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Ações */
.smw-paywall-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Link */
.smw-paywall-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.smw-paywall-link:hover {
    text-decoration: underline;
}

/* Botão premium */
.smw-paywall-btn {
    padding: 12px 30px;
    border-radius: 6px;
    background: #ffffff;
    color: #727272;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.smw-paywall-btn:hover {
    background: #f0f4ff;
}

.smw-paywall-card {
    animation: smwFadeUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes smwFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}