.paywall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 9999;
}

.paywall-box {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    border: 1px solid #eee;
}

.paywall-box h2 {
    margin-top: 0;
    font-size: 22px;
    color: #222;
    font-weight: 600;
}

.paywall-box label {
    font-size: 16px;
}

.paywall-box p {
    font-size: 16px;
    color: #666;
    margin: 20px 0;
    line-height: 1.5;
}

.paywall-box input.form-control {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    font-size: 15px;
}

.paywall-box button {
    margin-top: 15px;
    padding: 12px 26px;
    font-size: 16px;
    background-color: #A67C52;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.paywall-box button:hover {
    background-color: #8b6842;
}

.btn-fechar-paywall {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.btn-fechar-paywall:hover {
    color: #333;
}