.wb-checkout{
    --wb-bg:#111111;
    --wb-card:#1b1b1b;
    --wb-border:rgba(255,255,255,.10);
    --wb-text:#ffffff;
    --wb-muted:#9b9b9b;
    --wb-green:#c9ff3d;

    max-width:1180px;
    margin:0 auto;
    padding:80px 24px 100px;
    color:var(--wb-text);
}

.wb-checkout__header{
    max-width:760px;
    margin-bottom:48px;
}

.wb-checkout__eyebrow,
.wb-checkout__label{
    display:block;
    margin-bottom:14px;
    color:var(--wb-green);
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.wb-checkout__header h1{
    margin:0 0 15px;
    color:#fff;
    font-size:48px;
    line-height:1.05;
    font-weight:600;
    letter-spacing:-1.5px;
}

.wb-checkout__header p{
    margin:0;
    color:var(--wb-muted);
    font-size:17px;
    line-height:1.6;
}

.wb-checkout__grid{
    display:grid;
    grid-template-columns:minmax(0, .85fr) minmax(0, 1.15fr);
    gap:24px;
    align-items:stretch;
}

.wb-checkout__summary,
.wb-checkout__payment{
    background:var(--wb-card);
    border:1px solid var(--wb-border);
    border-radius:24px;
    padding:38px;
}

.wb-checkout__summary{
    position:relative;
    overflow:hidden;
}

.wb-checkout__summary:before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    left:-130px;
    bottom:-130px;
    background:var(--wb-green);
    opacity:.07;
    border-radius:50%;
    filter:blur(25px);
    pointer-events:none;
}

.wb-checkout__summary h2,
.wb-checkout__payment h2{
    position:relative;
    margin:0;
    color:#fff;
    font-size:28px;
    line-height:1.2;
    font-weight:600;
}

.wb-checkout__price{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:8px;
    margin-top:38px;
}

.wb-checkout__price small{
    padding-top:9px;
    color:#fff;
    font-size:20px;
    font-weight:600;
}

.wb-checkout__price strong{
    color:#fff;
    font-size:52px;
    line-height:1;
    font-weight:600;
    letter-spacing:-2px;
}

.wb-checkout__payment-label{
    position:relative;
    margin:9px 0 35px;
    color:var(--wb-green);
    font-size:14px;
    font-weight:600;
}

.wb-checkout__secure{
    position:relative;
    padding-top:25px;
    border-top:1px solid var(--wb-border);
    color:var(--wb-muted);
    font-size:13px;
    line-height:1.6;
}

.wb-checkout__payment{
    min-height:400px;
}

#wb-payment-container{
    margin-top:30px;
}

.wb-checkout__loading{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:220px;
    padding:30px;
    border:1px dashed rgba(201,255,61,.28);
    border-radius:16px;
    color:var(--wb-muted);
    font-size:14px;
    text-align:center;
}

@media (max-width:767px){

    .wb-checkout{
        padding:50px 18px 70px;
    }

    .wb-checkout__header{
        margin-bottom:32px;
    }

    .wb-checkout__header h1{
        font-size:36px;
    }

    .wb-checkout__grid{
        grid-template-columns:1fr;
    }

    .wb-checkout__summary,
    .wb-checkout__payment{
        padding:26px 22px;
        border-radius:18px;
    }

    .wb-checkout__price strong{
        font-size:44px;
    }

}

/* PIX RESULT */

.wb-pix-result{
    text-align:center;
}

.wb-pix-result__status{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 14px;
    border:1px solid rgba(201,255,61,.25);
    border-radius:100px;
    color:var(--wb-green);
    background:rgba(201,255,61,.06);
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
}

.wb-pix-result h3{
    margin:0 0 10px;
    color:#fff;
    font-size:26px;
}

.wb-pix-result__text{
    max-width:430px;
    margin:0 auto 25px;
    color:var(--wb-muted);
    font-size:14px;
    line-height:1.6;
}

.wb-pix-result__qr{
    width:230px;
    margin:0 auto 25px;
    padding:15px;
    background:#fff;
    border-radius:18px;
}

.wb-pix-result__qr img{
    display:block;
    width:100%;
    height:auto;
}

.wb-pix-result__value{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:430px;
    margin:0 auto 22px;
    padding:18px 0;
    border-top:1px solid var(--wb-border);
    border-bottom:1px solid var(--wb-border);
}

.wb-pix-result__value span{
    color:var(--wb-muted);
    font-size:13px;
}

.wb-pix-result__value strong{
    color:#fff;
    font-size:22px;
}

.wb-pix-result__copy{
    max-width:430px;
    margin:0 auto;
    text-align:left;
}

.wb-pix-result__copy label{
    display:block;
    margin-bottom:8px;
    color:#fff;
    font-size:13px;
    font-weight:600;
}

.wb-pix-result__copy textarea{
    width:100%;
    height:72px;
    padding:12px;
    resize:none;
    border:1px solid var(--wb-border);
    border-radius:10px;
    background:#111;
    color:#aaa;
    font-size:11px;
    line-height:1.4;
}

.wb-pix-result__copy button{
    width:100%;
    margin-top:12px;
    padding:15px 20px;
    border:0;
    border-radius:10px;
    background:var(--wb-green);
    color:#111;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
}

.wb-pix-result__waiting{
    margin:20px 0 0;
    color:var(--wb-muted);
    font-size:12px;
}
