body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0f17;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    padding: 18px;
}

.box {
    width: 100%;
    max-width: 440px;
    background: #111827;
    border-radius: 18px;
    padding: 30px 26px;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .65);
    position: relative;
}

.ordem {
  background: #111827;
  padding: 10px;
  margin: 15px 0;
  border-radius: 6px;
  font-size: 24px;
}

.logo {
    margin-bottom: 18px;
}

.logo img {
    max-width: 240px;
    width: 100%;
}

h1 {
    font-size: 19px;
    margin: 10px 0 4px;
}

p {
    font-size: 23px;
    color: #cbd5e1;
    margin: 0 0 18px;
}

.pix {
    background: #020617;
    border: 1px solid #334155;
    border-radius: 14px;
    padding: 16px;
    font-size: 17px;
    margin-bottom: 14px;
    word-break: break-all;
}

/* BOTÃO PIX GRANDE */
.btn-pix {
    width: 100%;
    padding: 18px;
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    background: #22c55e;
    color: #052e16;
    box-shadow: 0 0 18px rgba(34, 197, 94, .55);
    animation: pulsePix 1.8s infinite;
}

@keyframes pulsePix {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .65);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.btn-pix:active {
    transform: scale(.99);
}

.pix-chave {
    margin-top: 15px;
    padding: 12px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 10px;
    font-size: 14px;
    word-break: break-all;
    color: #e5e7eb;
}

#chavePix {
    margin-top: 5px;
    font-weight: bold;
    color: #ffffff;
}

.info {
    margin-top: 14px;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.45;
}

/* QR */
.qrwrap {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #334155;
}

.qrtitle {
    font-weight: bold;
    font-size: 14px;
    margin: 0 0 10px;
    color: #e2e8f0;
}


#qrcode {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    padding: 12px;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrnote {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .86);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    opacity: 0;
    transition: .25s;
    z-index: 50;
    border: 1px solid rgba(255, 255, 255, .12);
}

.toast.show {
    opacity: 1;
}

/* WhatsApp flutuante */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    box-shadow: 0 10px 30px rgba(34, 197, 94, .35);
    z-index: 60;
    text-decoration: none;
    animation: pulseWa 1.6s infinite;
}

@keyframes pulseWa {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .6), 0 10px 30px rgba(34, 197, 94, .35);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(34, 197, 94, 0), 0 10px 30px rgba(34, 197, 94, .35);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0), 0 10px 30px rgba(34, 197, 94, .35);
    }
}

.wa-float img {
    width: 30px;
    height: 30px;
}

.wa-label {
    position: fixed;
    right: 90px;
    bottom: 31px;
    background: rgba(2, 6, 23, .92);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 12px;
    z-index: 60;
    max-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

@media (max-width: 420px) {
    .wa-label {
        display: none;
    }
}
