/* ANTI-VÍRUS CSS BRUTAL - DESTROI COMPLETAMENTE O FALSO CAPTCHA */

/* FORÇA OVERFLOW VISIBLE NO BODY E HTML */
html, body {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}

/* REMOVE QUALQUER ELEMENTO COM CLASSES MALICIOSAS */
.cjs-container,
.cjs-m-p,
#checkbox-window,
#verify-window,
.checkbox-window,
.verify-window,
.checkbox-container,
.checkbox,
.im-not-a-robot,
.captcha-logo,
.checkbox-desc,
.spinner,
.verify-container,
.verify-header,
.verify-main,
.verify-footer,
.verify-verify-button,
[class*="cjs-"],
[id*="checkbox"],
[id*="verify"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

/* REMOVE STYLE #cjscss SE EXISTIR */
#cjscss {
    display: none !important;
}

/* CONTRAPÕE QUALQUER ESTILO MALICIOSO QUE TENTE ESCONDER O SCROLL */
html:not(.no-scroll),
body:not(.no-scroll) {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: auto !important;
}

/* FORÇA REMOÇÃO DE BACKDROP FILTERS E OVERLAYS FIXOS */
*[style*="position:fixed"],
*[style*="position: fixed"],
*[style*="backdrop-filter"],
*[style*="z-index:2147483647"],
*[style*="z-index: 2147483647"] {
    display: none !important;
    visibility: hidden !important;
}

/* REMOVE QUALQUER ELEMENTO QUE TENHA FONT FAMILY ROBOTO (USADO PELO VÍRUS) 
   E CONTENHA PROPRIEDADES SUSPEITAS */
*[style*="font-family:Roboto"][style*="position:fixed"],
*[style*="font-family: Roboto"][style*="position: fixed"] {
    display: none !important;
}

/* GARANTE QUE O BODY NUNCA TENHA OVERFLOW HIDDEN */
body[style*="overflow:hidden"],
body[style*="overflow: hidden"],
html[style*="overflow:hidden"],
html[style*="overflow: hidden"] {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: auto !important;
}