#banner_pedido_pendente {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    align-items: center;
    gap: 10px;

    background-color: #efd541;
    color: #000000;
    border: 6px solid #bd400b;
    border-radius: 10px;
    padding: 14px 24px;
    box-shadow: 0 4px 16px black;

    font-weight: bold;
    font-size: 1.30rem;
    text-align: center;

    max-width: 90vw;
    white-space: normal;
}

#banner_pedido_pendente.visivel {
    display: flex;
}

#banner_pedido_pendente.tremer {
    animation: tremer 0.5s ease;
}

@keyframes tremer {
    0%   { transform: translateX(-50%); }
    20%  { transform: translateX(calc(-50% - 8px)); }
    40%  { transform: translateX(calc(-50% + 8px)); }
    60%  { transform: translateX(calc(-50% - 6px)); }
    80%  { transform: translateX(calc(-50% + 6px)); }
    100% { transform: translateX(-50%); }
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 600px) {

    #banner_pedido_pendente {
        top: 12px;
        border-width: 4px;
        padding: 10px 16px;
        font-size: 1rem;
        max-width: calc(100vw - 24px);
    }

}