body .bar-priv-geral {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    max-width: 90%;
    background: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 99999;
    font-size: 12px !important;
    transition: bottom 0.5s ease-in-out;
    line-height: 1.5;
}

body .bar-priv-conteudo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.bar-priv-geral button {
    cursor: pointer;
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

body .bar-priv-geral.ativo {
    bottom: 30px;
}

body .bar-priv-geral p {
    margin: 0;
    flex: 1;
    color: #333;
}

body .bar-priv-link {
    display: inline;
    margin-left: 4px;
    color: #0066cc;
    text-decoration: underline;
    font-weight: 500;
}

body .bar-priv-geral button {
    cursor: pointer;
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 4px;
    border: none;
    font-size: 13px !important;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

body .bar-priv-geral button:active {
    transform: scale(0.97);
}

@media (max-width: 600px) {
    body .bar-priv-conteudo {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    body .bar-priv-geral button {
        width: 100%;
    }
}