﻿body { background: #f7f8fb; }
table td, table th { vertical-align: middle; }

.btn .icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
/* Desktop: hover */
button:hover {
    box-shadow: 0 1px 1px rgba(0,0,0,.18);
    transform: translateY(-1px);
}

/* Clique / toque */
button:active {
    box-shadow: 0 6px 12px rgba(0,0,0,.22);
    transform: translateY(0) scale(.98);
    filter: brightness(.97);
}

/* Acessibilidade (teclado) */
button:focus-visible {
    outline: 2px solid rgba(0,94,168,.45);
    outline-offset: 2px;
}


.pixOverlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    z-index: 9999;
    padding: 20px;
}

.pixOverlayBox {
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    width: min(420px, 100%);
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.pixOverlaySpinner {
    width: 28px;
    height: 28px;
    margin: 0 auto 10px auto;
    border: 3px solid rgba(0,0,0,.15);
    border-top-color: rgba(0,0,0,.65);
    border-radius: 50%;
    animation: pixspin .8s linear infinite;
}

@keyframes pixspin {
    to {
        transform: rotate(360deg);
    }
}

.pixOverlayTitle {
    font-weight: 700;
    font-size: 1.05rem;
}

.pixOverlaySub {
    opacity: .8;
    margin-top: 4px;
    font-size: .95rem;
}

.btnGerarPix.loading {
    opacity: .85;
}
