/* ==== DigitalCartórios - SELO ==== */
.selo-mensal-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: move;
}

.selo-mensal {
    width: 100px;
    height: auto;
    border: none;
    background: transparent;
    pointer-events: auto;
    transition: transform 0.2s ease;
}

    .selo-mensal:hover {
        transform: scale(1.05);
    }

.selo-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff3333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-weight: bold;
    cursor: pointer;
    line-height: 18px;
}

/* ==== POPUP ==== */
.popup-selo {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.popup-content {
    background: #fff;
    border-radius: 14px;
    padding: 25px 30px;
    text-align: center;
    width: 400px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: popupShow 0.3s ease;
}

.popup-logo {
    width: 300px;
    height: auto;
    margin-bottom: 10px;
}

.popup-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.popup-btn {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .popup-btn:hover {
        background-color: #0056b3;
    }

@keyframes popupShow {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
