#paradise-pix-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
#paradise-pix-overlay.active {
    opacity: 1;
    visibility: visible;
}
.paradise-pix-modal {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#paradise-pix-overlay.active .paradise-pix-modal {
    transform: translateY(0) scale(1);
}
.paradise-pix-modal__header h2 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #1a202c;
}
.paradise-pix-modal__header .amount {
    font-size: 28px;
    font-weight: bold;
    color: #22c55e;
    margin: 0 0 20px;
}
.paradise-pix-modal__qr {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.paradise-pix-modal__qr img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.paradise-pix-copy-section label {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    text-align: left;
}
.paradise-pix-copy-section textarea {
    width: 100%;
    height: 60px;
    resize: none;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 12px;
    color: #475569;
    margin-bottom: 12px;
    background: #f1f5f9;
}
.paradise-pix-copy-btn {
    width: 100%;
    background: #7c2d12;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.paradise-pix-copy-btn:hover {
    background: #9a3412;
}
.paradise-pix-copy-btn.copied {
    background: #22c55e;
}
.paradise-pix-status {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
}
.paradise-pix-status.approved {
    background: #dcfce7;
    color: #166534;
}
.paradise-pix-status.failed {
    background: #fee2e2;
    color: #991b1b;
}
.paradise-pix-countdown {
    margin-top: 15px;
    font-size: 14px;
    color: #ef4444;
    font-weight: bold;
}
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: ppix-spin 1s linear infinite;
}
.paradise-pix-status.approved .spinner, .paradise-pix-status.failed .spinner {
    display: none;
}
@keyframes ppix-spin { to { transform: rotate(360deg); } }