@charset "UTF-8";
/* ============================================================
   Interface SELECT (estilo escuro) — réplica visual fiel
   ============================================================ */

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; }
ul, ol { list-style: none; }
fieldset, img { border: none; }

body {
    font-family: "Lucida Grande", Verdana, Sans-serif;
    font-size: 14px;
    color: #CACACA;
    background: url(/assets/img/noise_bg.png) #252525;
    height: 100%;
    -webkit-font-smoothing: antialiased;
}
a { color: #FFF; font-weight: normal; text-decoration: none; }
a:hover { color: #FFF; }
h1 { color: #999; font-size: 16px; font-weight: bold; }
h6 { font-size: 11px; color: #666; }

/* ---------- HEADER ---------- */
#header {
    float: left;
    width: 100%;
    background: url(/assets/img/fundo_body.png) #333;
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 1px 1px 15px rgba(0,0,0,0.2);
    opacity: 1;
}
#header.hidden-init { opacity: 0; }
#header.visivel { opacity: 1; }

.cabecalho {
    position: relative;
    background-color: #181818;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: visible;
}
.logo_imagem {
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-size: 13px;
    color: #CCC;
    width: 180px !important;
    flex: 0 0 180px;
    text-transform: uppercase;
    padding: 0 5px 0 10px;
    background-color: #000;
    height: 48px;
    line-height: 46px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo_imagem img { max-height: 36px; max-width: 100%; width: auto; height: auto; vertical-align: middle; object-fit: contain; }
.logo_imagem .logo-txt { color: #CCC; font-size: 12px; letter-spacing: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.header_txt1 {
    font-size: 11px;
    color: #999;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 14px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
}
.header_txt1 strong { color: #FFF; font-size: 13px; }
.header_txt1 span { font-size: 10px; }
.header_txt1 span b { color: #0C9; }

.header_txt2 { flex: 0 0 auto; padding: 0 18px 0 6px; }
.header_txt2 a { display: block; font-size: 11px; color: #666; text-decoration: none; cursor: pointer; }
.header_txt2 a:hover { color: #999; text-decoration: underline; }

.header_txt3 {
    color: #666666;
    flex: 0 0 auto;
    font-size: 10px;
    line-height: 1.2;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-right: 1px dotted #333;
    white-space: nowrap;
}
.header_txt3 .qtd { font-size: 26px !important; color: #0C9; line-height: 1; font-weight: bold; }
.header_txt3 em { font-style: normal; text-transform: uppercase; letter-spacing: .5px; }

.header_txt_sair {
    flex: 0 0 auto;
    font-size: 10px;
    line-height: 1.3;
    padding: 4px 18px;
    text-align: right;
    border-left: 1px dotted #333;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.header_txt_sair strong { font-size: 15px; color: #FFF; font-weight: normal; }
.header_txt_sair span { color: #666; }
.header_txt_sair a { text-decoration: none !important; color: #666; }
.header_txt_sair a:hover { text-decoration: none !important; }
.header_txt_sair a:hover strong { color: #0C9; }

#header_finalizar { flex: 0 0 auto; margin: 0 14px; }
#header_finalizar a {
    background: #F3F3F3;
    color: #353535;
    text-decoration: none;
    padding: 8px 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .3px;
    text-shadow: 1px 1px #C7C7C7;
    font-size: 12px;
    display: block;
    cursor: pointer;
    border-radius: 3px;
    transition: background .15s, color .15s;
}
#header_finalizar a:hover { background: #0C9; color: #000; text-shadow: none; }

/* sub-barra: breadcrumb + copyright */
.header-sub {
    position: relative;
    height: 42px;
    background: #252525;
    border-top: 1px solid #2c2c2c;
}
#breadcrumb {
    float: left;
    padding: 14px 0 0 16px;
    font-size: 11px;
    color: rgba(150,150,150,0.4);
}
#breadcrumb li { float: left; padding: 0; }
#breadcrumb li a { padding: 0 10px 0 16px; display: block; background: url(data:image/gif;base64,R0lGODlhBQAFAIABAMDAwP///yH5BAEAAAEALAAAAAAFAAUAAAIIRA4W7rlAAwA7) no-repeat left center; color: rgba(150,150,150,0.4); }
#breadcrumb li a:hover { color: #FFF; }
#breadcrumb li span { padding: 0 10px 0 16px; display: block; background: url(data:image/gif;base64,R0lGODlhBQAFAIABAPr///77/yH5BAEAAAEALAAAAAAFAAUAAAIIRA4W7rlAAwA7) no-repeat left center; color: rgba(150,150,150,0.6); }

#header h6 {
    float: right;
    color: rgba(120,120,120,0.55);
    font-size: 11px;
    line-height: 42px;
    padding: 0 16px 0 10px;
    margin: 0;
    text-align: right;
    white-space: nowrap;
}

/* ---------- CONTEÚDO ---------- */
#conteudo {
    width: 100%;
    background: url(/assets/img/noise_bg.png) #252525;
    float: left;
    padding: 118px 0 60px 0;
    min-height: 100vh;
}

/* ---------- ABAS ---------- */
#abas {
    float: left;
    font-size: 11px;
    padding-left: 15px;
    position: relative;
}
#abas li {
    float: left;
    padding: 7px 8px;
    border-width: 1px 1px 0px 1px;
    border-style: solid;
    border-color: rgba(0,0,0,0.4);
    margin-right: 3px;
    color: #999;
    background: #333;
    border-radius: 4px 4px 0 0;
}
#abas li a { text-decoration: none; color: #999; }
#abas li a:hover { color: #FFF; }
#abas li.aba_ativa {
    color: #FFF !important;
    padding: 9px 8px 5px 8px !important;
    background: url(/assets/img/noise_bg.png) #252525 !important;
    z-index: 3000;
    cursor: default;
}

/* ---------- BARRA SUPERIOR (filtro/download/busca) ---------- */
.barra-superior { float: left; width: 100%; padding: 12px 20px 0 15px; position: relative; }
.wocultas { margin-right: 20px; position: relative; float: right; margin-top: 6px; font-size: 11px; color: #999; }
.wocultas label { cursor: pointer; }
.wocultas small { vertical-align: middle; }
.wocultas input { vertical-align: middle; }

#dropdownDownload {
    transition: all 0.4s;
    padding: 6px 13px;
    background: rgba(99, 99, 99, 0.12);
    color: #CACACA;
    margin-right: 30px;
    font-size: 12px;
    z-index: 999;
    border-radius: 3px;
    border: 1px solid rgba(150,150,150,0.3);
    cursor: pointer;
    float: right;
}
#dropdownDownload:hover { border: 1px solid rgba(150,150,150,0.7); }
#dropDownload { float: right; margin-top: 0; position: relative; }
#dropDownload ul { position: absolute; right: 0; top: 30px; background: #000; border: 1px solid #333; border-radius: 4px; padding: 10px 0; min-width: 190px; z-index: 9999; box-shadow: 0 2px 12px rgba(0,0,0,.8); display: none; }
#dropDownload.ativo ul { display: block; }
#dropDownload ul li { padding: 8px 18px; cursor: pointer; }
#dropDownload ul li:hover { background: #252525; }
#dropDownload ul li strong { display: block; color: #FFF; font-size: 12px; }
#dropDownload ul li small { color: #999; font-size: 11px; }

.busca-publica { float: right; margin-top: 4px; margin-right: 20px; }
#busca-nome-galeria { border-radius: 12px; border: none; width: 145px; height: 22px; padding-left: 10px; color: #333; font-size: 12px; }
#botao-buscar-galeria { background: none; border: none; margin-left: -30px; font-size: 14px; cursor: pointer; color: #555; }

.componente_filtro {
    background-color: #000;
    float: left;
    padding: 5px;
    margin: 0;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}
.componente_filtro > h4 { font-size: 11px; margin: 0; float: left; padding: 6px 5px 0 5px; color: #999; }
.componente_filtro > ul { float: left; margin: 0; padding: 0; font-size: 12px; }
.componente_filtro > ul > li { float: left; margin-left: 4px; border-radius: 3px; }
.componente_filtro > ul > li > a {
    float: left; text-decoration: none; padding: 5px 9px;
    border: 1px solid #1C1C1C; color: #C5C5C5; border-radius: 3px; font-size: 1em; cursor: pointer;
}
.componente_filtro > ul > li.ativo {
    border: 1px solid #4C4C4C; padding: 5px 9px; color: #FFF; background: #1C1C1C;
    box-shadow: 0 0 9px rgba(200, 200, 150, 0.2);
}
.componente_filtro > ul > li > a:hover { background: url(/assets/img/fundo_body.png); border: 1px solid #3C3C3C; }

/* ---------- LISTA DE IMAGENS ---------- */
#lista_img {
    float: left;
    width: 100%;
    border-top: 1px dotted #313131;
    padding: 0;
}
#lista_img li {
    position: relative;
    float: left;
    height: 265px;
    margin: 1px auto;
    text-align: center;
    padding: 24px 0 12px 0;
    vertical-align: bottom;
    border: 1px dotted #313131;
    border-top: none;
    border-left: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#lista_img li code { display: block; color: #666; font-size: 10px; margin: 6px 0 0 !important; max-width: 90%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media(min-width:2300px){ #lista_img li { width: 300px !important; } }
@media(max-width:2300px){ #lista_img li { width: 12.5% !important; } }
@media(max-width:2000px){ #lista_img li { width: 14.28% !important; } }
@media(max-width:1800px){ #lista_img li { width: 16.6% !important; } }
@media(max-width:1500px){ #lista_img li { width: 20% !important; } }
@media(max-width:1315px){ #lista_img li { width: 25% !important; } }
@media(max-width:1080px){ #lista_img li { width: 33.3% !important; } }
@media(max-width:780px){ #lista_img li { width: 50% !important; } }
@media(max-width:530px){ #lista_img li { width: 100% !important; } }

/* estrutura da foto */
.w1 { margin: 0 auto; position: relative; width: 240px; }
.w2 {
    width: 100%;
    z-index: 2;
    position: absolute;
    text-align: left;
    font-weight: bold;
    color: #444;
    font-size: 14px;
    float: left;
    top: 0;
    height: 17px;
    margin: 0 auto;
}
.w3 { margin: 0 auto; position: relative; text-decoration: none; background: none; display: block; }
.w3 img {
    border: 5px solid #000;
    box-shadow: 0px 1px 8px #000;
    display: block;
    margin: 0 auto;
}
.li_selecionada img { border: 5px solid #0C9 !important; }

/* estrela favorita */
#bfav {
    color: #666;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    padding: 4px 8px;
    position: absolute;
    right: 35%;
    text-align: left;
    top: -30px;
    z-index: 70;
    font-family: "Lucida Grande", Verdana, sans-serif;
    background: rgba(0,0,0,.6);
    border-radius: 3px;
}
#bfav::before { content: '★'; color: #888; font-size: 12px; }
#bfav.bfav_ativo { color: #FC3 !important; }
#bfav.bfav_ativo::before { color: #FC3; text-shadow: 0 0 4px rgba(252,195,0,.6); }

/* botões hover */
.holder_botoes { position: absolute; bottom: 0; left: 0; right: 0; }
.b_exibe, .b_seleciona, .b_desmarca {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    width: 110px;
    color: #000;
    text-decoration: none !important;
    text-transform: uppercase;
    background-color: #0C9;
    font-size: 11px;
    font-weight: bold;
    padding: 10px;
    box-shadow: 0px 1px 8px #000;
    cursor: pointer;
    z-index: 5;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
}
.li_img .w1 a.hover:hover .holder_botoes .b_desmarca,
.li_img:hover .holder_botoes .b_desmarca { opacity: 0; transition: all 0.4s; }
/* o hover do .w3 é o gatilho; a regra acima não deve interferir nas selecionadas */
.li_img[data-selected="1"] .w3:hover .holder_botoes .b_desmarca,
.li_img .w3.li_selecionada:hover .holder_botoes .b_desmarca { opacity: 1 !important; }

.button-visibilidade {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
    font-size: 11px;
    color: #FFF;
    line-height: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 6;
}
.w3.hover:hover .button-visibilidade { opacity: 1; visibility: visible; }
.li_oculta img { opacity: 0.2; }

/* Ampliar */
.zooom {
    position: absolute;
    right: 0;
    top: 0;
    text-indent: 0;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 7px;
    font-size: 9px;
    color: #0CC;
    background: rgba(0,0,0,.6);
    border-radius: 3px;
}
.zooom::before { content: '🔍'; font-size: 11px; }
.zooom:hover { color: #FFF; }

/* ---------- POP-UP INICIAL (overlay central) ---------- */
#pop_overlay {
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: url(/assets/img/noise_bg.png) rgba(20,20,20,.92);
    display: none;
    align-items: center;
    justify-content: center;
}
#pop_overlay.visivel { display: flex; }
#pop_inicio {
    height: auto;
    width: 400px;
    max-width: 92vw;
    background-color: #000;
    box-shadow: 0px 1px 8px #000;
    border-radius: 10px;
    z-index: 100;
    padding: 30px;
    text-align: center;
}
#pop_inicio div { padding-top: 10px; font-size: 12px; color: #999; line-height: 18px; }
#pop_inicio h1 {
    margin: 0;
    padding: 10px 0 5px 0;
    border-bottom: 1px dotted #0CC;
    color: #0CC;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 20px;
    text-align: center;
}
#pop_inicio h3 { padding: 1px 0 1px 0; font-size: 13px; color: #999; margin-top: 10px; text-align: center; }
#pop_inicio strong { color: #F69; }
#pop_inicio span { font-size: 10px; color: #666; display: block; padding-top: 8px; }
#pop_start {
    display: inline-block;
    text-align: center;
    margin-top: 12px;
    padding: 9px 18px;
    border: 1px dotted #222;
    cursor: pointer;
    background-color: #0C9;
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}
#pop_start:hover { background-color: #000; color: #0C9; border: 1px dotted #0C9; }

#pop_inicio .pop-wa {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    border: 1px dotted #25D366;
}
#pop_inicio .pop-wa svg { width: 18px; height: 18px; fill: #fff; }
#pop_inicio .pop-wa:hover { background: #1fb958; color: #fff; }

/* ---------- PAGINAÇÃO ---------- */
#paginacao {
    padding: 3px 4px;
    margin: 10px 20px 12px 20px;
    background-color: #1B1B1B;
    border: 1px solid #2B2B2B;
    height: 35px;
    float: right;
    border-radius: 4px;
}
#paginacao:hover { box-shadow: 0 0 20px #000; }
.pag_int { float: left; width: 100%; padding: 0px 10px; }
#paginacao div { float: left; }
#paginacao div.num { display: block; width: 26px; padding: 8px 0 0 0; text-align: center; height: 24px; }
#paginacao div.num a { text-decoration: none; color: #666; display: block; }
#paginacao div.num a:hover { color: #CCC !important; }
#paginacao div.num2 { display: block; width: 26px; padding: 8px 0 0 0; text-align: center; height: 24px; }
#paginacao div.num2 strong { color: #FFF; }
#paginacao div.next a, #paginacao div.prev a {
    font-size: 11px;
    text-transform: uppercase;
    padding-top: 10px;
    padding-left: 8px;
    padding-right: 4px;
    color: #666;
    letter-spacing: 1px;
    text-decoration: none;
    display: block;
}
#paginacao div.next a:hover, #paginacao div.prev a:hover { color: #fff; }

/* ---------- LISTA DE GALERIAS ---------- */
#lista_album { float: left; width: 100%; padding: 0; margin-top: 45px; }
#lista_album li {
    position: relative;
    float: left;
    padding: 4px 6px 8px 7px;
    width: 280px;
    min-height: 320px;
    border: 1px dotted #313131;
    border-top: none;
    border-left: none;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}
#dados_evento { margin: 0 auto; width: 240px; }
#dados_evento h1 {
    padding: 8px 0 8px 0;
    margin: 0;
    font-size: 13px;
    border-bottom: dotted 1px #333;
    font-weight: normal;
    color: #CCC;
}
#dados_evento h1 strong { font-size: 10px; color: #454545; font-weight: normal; }
#dados_evento h3 {
    float: left;
    font-size: 11px;
    padding-top: 4px;
    margin: 0;
    text-align: center !important;
    width: 100%;
    color: #454545;
    font-weight: normal;
}
#dados_evento h3 strong { color: #F36; font-weight: bold; }
.w2e { font-weight: normal; font-size: 11px !important; text-align: right; color: #999; }
.w2e strong { color: #0C9; }

/* rodapé direitos */
.direitosFotografo { float: right; margin: 0 10px 10px 0; color: rgba(150,150,150,0.4); font-size: 12px; padding-top: 15px; clear: both; }

/* ---------- LOGIN ---------- */
#boxfull { height: 96%; width: 100%; display: table; }
#boxinterno { display: table-cell; margin: 0; padding: 0; text-align: center; vertical-align: middle; }
.page-login { font-family: 'Roboto', sans-serif; padding: 30px 0; }
.titulo_login {
    font-size: 25px;
    color: #555;
    font-weight: 100;
    border: 0;
    width: 850px;
    margin: 0 auto;
    padding-bottom: 7px;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0,0,0,1);
}
.titulo_login small { font-size: 25px; color: #CCC; font-weight: 100; }
#login {
    position: relative;
    width: 850px;
    max-width: 94vw;
    background: url(/assets/img/noise_bg.png) #000;
    border-radius: 6px;
    border: 16px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.7);
    margin: 20px auto 0;
    min-height: 320px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.login-brand {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    min-width: 0;
}
.login-brand img { max-width: 100%; max-height: 110px; object-fit: contain; }
.login_content { flex: 0 0 340px; width: 340px; padding: 20px 26px; box-sizing: border-box; }
.wrapls { width: 100%; box-sizing: border-box; }
.wrapls h3 { font-size: 11px; font-weight: normal; color: #454545; margin: 0 0 16px; text-align: left; }
.wrapls div.campos label { display: block; color: #00FFCC; font-size: 12px; margin-bottom: 14px; }
.wrapls div.campos label span { display: block; width: 100%; margin-bottom: 4px; font-size: 15px; font-weight: 100; text-align: left; }
.wrapls div.campos label input {
    width: 100%;
    height: 34px;
    font-size: 13px;
    border-radius: 3px;
    border: none;
    padding: 4px 8px;
    box-sizing: border-box;
}
.wrapls div.campos button {
    margin-top: 8px;
    width: 100%;
    display: block;
    color: #000;
    text-decoration: none !important;
    text-transform: uppercase;
    background-color: #5DC4C3;
    font-size: 13px;
    font-weight: bold;
    border: none;
    padding: 12px;
    box-shadow: 0px 1px 8px #000;
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
}
.wrapls div.campos button:hover { color: #5DC4C3; background-color: #2E6161; }
.esqueceusenha { font-size: 10px; color: #999; margin-top: 10px; float: right; }
.esqueceusenha:hover { color: #FFF; text-decoration: none; }
.g-divider { text-align: center; margin: 14px 0 4px; color: #666; font-size: 11px; position: relative; clear: both; }
.g-divider span { background: #000; padding: 0 10px; position: relative; }
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #dadce0;
    box-sizing: border-box;
    width: 100%;
}
.btn-google:hover { background: #f6f6f6; color: #333; text-decoration: none; }
#msgerror {
    background-color: #DB6A6A;
    color: #FFE;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
}
#texto_bottom { font-family: 'Roboto', sans-serif; font-size: 10px; color: #888; padding: 14px 16px; text-align: right; }
#texto_bottom a { color: #888; font-size: 12px; margin-left: 12px; }
@media (max-width: 850px) {
    #login {
        width: 100% !important;
        border: 0 none !important;
        padding: 0 !important;
        margin: 20px auto 0 !important;
        flex-direction: column;
        max-width: 94vw;
    }
    .login-brand { order: -1; padding: 22px; }
    .login-brand img { max-height: 70px; }
    .login_content { flex: 1 1 auto; width: 100%; padding: 16px 20px; }
    .titulo_login { width: 100%; font-size: 18px; }
    .titulo_login small { font-size: 18px; }
}

/* ---------- ZOOM MODAL ---------- */
#superbg { width: 100%; height: 100%; opacity: 0.95; z-index: 10000; position: fixed; left: 0; top: 0; background: url(/assets/img/noise_bg.png) #252525; }
#wzoom { position: fixed; z-index: 10001; top: 50%; left: 50%; background: #000; border-radius: 6px; box-shadow: 0 0 30px #000; padding: 10px; }
#wzoom img { max-width: 88vw; max-height: 82vh; display: block; }
#wzoom .zclose { position: absolute; top: 6px; right: 10px; color: #999; cursor: pointer; font-size: 18px; z-index: 2; }
#wzoom .zclose:hover { color: #FFF; }
#wzoom .zseta1, #wzoom .zseta2 { position: absolute; top: 50%; font-size: 40px; color: rgba(255,255,255,0.6); cursor: pointer; text-shadow: 1px 1px #999; padding: 4px 10px; border-radius: 100px; user-select: none; }
#wzoom .zseta1 { left: -56px; }
#wzoom .zseta2 { right: -56px; }
#wzoom .zseta1:hover, #wzoom .zseta2:hover { color: #FFF; }
#wzoom .ztools { position: absolute; bottom: 8px; left: 0; right: 0; text-align: center; }
#wzoom .zselecionar, #wzoom .zfavoritar {
    padding: 6px 12px; font-size: 12px; text-transform: uppercase; border: none; cursor: pointer;
    margin: 0 5px; border-radius: 3px;
}
#wzoom .zselecionar { background: rgba(24,217,119,0.9); color: #000; }
#wzoom .zfavoritar { background: rgba(252,189,0,0.9); color: #000; }

/* ---------- COMPARTILHAR ---------- */
.compartilhar {
    transition: all 0.4s;
    padding: 6px 13px;
    background: rgba(99, 99, 99, 0.12);
    color: #CACACA;
    text-decoration: none;
    margin-right: 30px;
    font-size: 12px;
    z-index: 999;
    border-radius: 3px;
    border: 1px solid rgba(150,150,150,0.3);
    float: right;
    cursor: pointer;
    margin-top: 4px;
}
.compartilhar:hover { border: 1px solid rgba(150,150,150,0.7); color: #FFF; }

/* ---------- RESPONSIVO DO HEADER ---------- */
@media (max-width: 1100px) {
    .cabecalho .header_txt2 { display: none; }
    .cabecalho .header_txt3 { padding: 0 10px; }
}
@media (max-width: 900px) {
    .cabecalho .logo_imagem { width: 140px !important; flex-basis: 140px; }
    .cabecalho .header_txt1 span { display: none; }
    .cabecalho .header_txt3 em { font-size: 9px; }
    #header_finalizar a { padding: 7px 10px; font-size: 11px; }
}
@media (max-width: 700px) {
    .cabecalho .logo_imagem { width: 110px !important; flex-basis: 110px; }
    .cabecalho .header_txt3 { display: none; }
    .cabecalho .header_txt_sair { padding: 4px 8px; }
}

