.pix-wrapper{
    max-width: 650px;
    margin: 90px auto 40px auto;
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.10);
    text-align: center;
}

.pix-title{
    font-size: 1.7rem;
    font-weight: 900;
    color: #03417f;
    margin-bottom: 6px;
}

.pix-sub{
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}

.pix-value{
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.ok-icon{
    font-size: 60px;
    color: #27ae60;
    margin-bottom: 20px;
}

.err-icon{
    font-size: 55px;
    color: #c0392b;
    margin-bottom: 20px;
}

.btn-primary-custom{
    width: 100%;
    background: #2060a0;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none!important;
    font-weight: 600;
    margin: 12px 0;
    display: block;
    transition: .25s;
}

.btn-primary-custom:hover{
    background:#184d80;
}

.pix-final-text{
    font-size: .95rem;
    line-height: 1.5;
    color:#333;
    margin-top: 25px;
}

/* ===================== LOADER FULLSCREEN ===================== */
#loaderScreen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.92);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    backdrop-filter: blur(3px);
    visibility: hidden;
    opacity: 0;
    transition: .3s ease;
}

#loaderScreen.show {
    visibility: visible;
    opacity: 1;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 6px solid #b7d4f0;
    border-top-color: #03417f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 18px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-size: 1.1rem;
    color: #03417f;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}