/* Popup de Desconto Progressivo */
#wdp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: wdp-fade-in 0.3s ease-in-out;
}

.wdp-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.wdp-popup-content {
    position: relative;
    background: #ffffff;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: wdp-slide-up 0.4s ease-out;
}

.wdp-popup-content::-webkit-scrollbar {
    width: 8px;
}

.wdp-popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.wdp-popup-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.wdp-popup-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.wdp-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.wdp-close:hover {
    color: #000;
    transform: rotate(90deg);
}

.wdp-popup-body {
    margin-top: 10px;
}

.wdp-popup-body h2,
.wdp-popup-body h3 {
    margin-top: 0;
    color: #333;
}

.wdp-popup-body p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.wdp-rules-preview {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.wdp-rules-preview h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.wdp-rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wdp-rules-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
    transition: all 0.3s ease;
}

.wdp-rules-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.wdp-rules-list li strong {
    color: #333;
    font-size: 16px;
}

.wdp-discount-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Animações */
@keyframes wdp-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes wdp-slide-up {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .wdp-popup-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 95vh;
    }
    
    .wdp-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
    }
    
    .wdp-rules-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .wdp-discount-badge {
        align-self: flex-end;
    }
}

