#rp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    backdrop-filter: blur(5px);
}

.rp-popup-container {
    position: relative;
    background: transparent;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.rp-popup-content {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rp-popup-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.rp-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000000;
    transition: all 0.3s ease;
}

.rp-close-btn:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.rp-hidden {
    display: none !important;
}

.rp-no-scroll {
    overflow: hidden;
}

/* Responsividade */
@media (max-width: 768px) {
    .rp-popup-container {
        margin: 20px;
        padding: 15px;
    }
    
    .rp-popup-content img {
        max-width: 100%;
    }
    
    .rp-close-btn {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}