/* 
    Created on : 29/09/2021, 14:26:52
    Author     : Marcos
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/*body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}*/
/*#header{
    background-color: yellow;
    width: 100vw;
    height: 15vh;
    position: fixed;
}*/
/*CABEÇALHO*/

#lgpd{
    width: 100vw;
    height: auto;
    padding: 20px;
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
    z-index: 9;
    background-color: rgba(0,0,0,.9);
    color: white;
}
#lado-a{
    flex-basis: 900px;
}
#lado-b{
    flex-basis: 200px;
}
#btn-lgpd{
    padding: 10px;
    font-weight: bold;
    background-color: #95e188;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all .6s ease-in-out;
}
#btn-lgpd:hover{
    box-shadow: 0 0 10px yellowgreen;
    background-color: green;
    color: white;
}
#btn-abrir-modal-politica{
    background-color: initial;
    font-weight: bold;
    font-size: 16px;
    color: white;
    cursor: pointer;
    border: none;
    padding: 5px;
    transition: all .6s ease-in-out;
}
#btn-abrir-modal-politica:hover{
    color: yellow;
}

#modal-como-anunciar{
    width: 100vw;
    min-height: 100vh;
    height: auto;
    position: fixed;
    background-color: rgba(0,0,0,.7);
    padding-bottom: 30px;
    z-index: 9999;
    display: none;
}
#modal-como-anunciar:target{
    display: block;
    pointer-events: auto;
}
#conteudo-como-anunciar{
    position: relative;
    background-color: white;
    width: 65vw;
    height: auto;
    margin: 30px auto;
    padding: 50px;
    border-radius: 0 20px 0 0;
}
#conteudo-como-anunciar h2{
    text-align: center;
    margin-bottom: 20px;
    color: black;
}
#lista-passos-anuncio{
    list-style-type: upper-roman;
    margin: 20px;
}
#lista-passos-anuncio li{
    padding: 5px;
    font-family: Helvetica, Verdana, arial;
}
.destaque-verde{
    color: green;
    font-weight: bold;
}
.destaque-cinza{
    color: dimgray;
    font-size: 15px;
}
#fechar-como-anunciar{
    position: absolute;
    top: 2px;
    right: 1px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-weight: bold;
    background-color: brown;
    border-radius: 50%;
    cursor: pointer;
    opacity: .6;
    transition: all .7s ease-in-out;
}
#fechar-como-anunciar:hover{
    box-shadow: 0 0 10px black;
    opacity: 1;
    color: white;
}

#modal-vantagens-parceiro{
    width: 100vw;
    height: auto;
    min-height: 100vh;
    position: fixed;
    background-color: rgba(0,0,0,.7);
    padding-bottom: 30px;
    z-index: 9999;
    display: none;
}
#modal-vantagens-parceiro:target{
    display: block;
    pointer-events: auto;
}

#conteudo-vantagens-parceiro{
    position: relative;
    width: 65vw;
    height: 90vh;
    overflow-y: auto;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
    background-color: white;
    margin: 30px auto;
    padding: 50px;
    border-radius: 0 20px 0 0;
}
#conteudo-vantagens-parceiro h2{
    text-align: center;
    margin-bottom: 20px;
    color: black;
}
#conteudo-vantagens-parceiro p{
    color: #556672;
    text-indent: 32px;
    font-family: Helvetica, Verdana, arial;
    padding: 10px 15px;
    margin: 0 10px;
    font-size: 15px;
    text-align: justify;
}
#conteudo-vantagens-parceiro p::first-letter{
    font-weight: bold;
    font-size: 20px;
    /*font-family: Georgia;*/
    color: green;
}
#coteudo-all-vp{
    position: relative;
    border-radius: 0 20px 0 0;
    background-color: white;
    width: 65vw;
    height: 100vh; 
    margin: auto;
}
#fechar-vantagens-parceiro{
    position: absolute;
    top: 2px;
    right: 1px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-weight: bold;
    background-color: brown;
    border-radius: 50%;
    cursor: pointer;
    opacity: .9;
    transition: all .7s ease-in-out;
}
#fechar-vantagens-parceiro:hover{
    box-shadow: 0 0 10px black;
    opacity: 1;
    color: white;
}

#modal-politica-de-privacidade{
    width: 100vw;
    height: auto;
    position: absolute;
    background-color: rgba(0,0,0,.9);
    z-index: 9999;
    display: none;
}

#conteudo-politica-privacidade{
    position: relative;
    background-color: white;
    width: 90vw;
    height: auto;
    margin: 30px auto;
    padding: 30px 50px;
    border-radius: 0 20px 0 0;
}
#fechar-politica{
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
    background-color: brown;
    border-radius: 50%;
    cursor: pointer;
    opacity: .6;
    transition: all .7s ease-in-out;
}
#fechar-politica:hover{
    box-shadow: 0 0 10px black;
    opacity: 1;
    color: white;
}

#conteudo-politica-privacidade h2, h3, h4{
    text-align: center;
    margin: 10px;
    color: rgba(0,0,0,.5);
    font-family: Georgia;
}
#conteudo-politica-privacidade ul{
    text-indent: 50px;
    padding: 20px;
    color: rgba(0,0,0,.6);
    font-family: Georgia;
}
#conteudo-politica-privacidade p{
    text-indent: 60px;
    color: rgba(0,0,0,.6);
    font-family: sans-serif;
}

#corpo{
        background-color: white;
        width: 90vw;
        height: auto;
        margin: 0px auto;
}
#esquerda{
    /*background-image: url("img/touch-screen-g617f81321_640.jpg");/*url("img/casinhaSerra.jpeg");*/
    /*background-color: #cccccc;*/
    float: left;
    width: 20%;
    height: 80vh;
    opacity: .8;
    border-radius: 10px;
    margin-left: 20px;
}
/*MENU ALTERNATIVO*/  
#menu_alternativo{
    display: none;
    position: relative;
}
#check{
    display: none;
}
#icone{
    margin-top: 180px;
    margin-left: -25px;
    cursor: pointer;
    padding: 15px;
    position: absolute;
    z-index: 1;
}
#icone img{
    width: 40px;
}
.barra{
    background-color: #333;
    margin-top: 190px;
    height: auto;
    width: 200px;
    position: absolute;
    transition: all 2s linear;
    left: -300px;
    z-index: 999;
}
#menu_alternativo nav{
    width: 100%;
    position: absolute;
    top: 40px;
}
#menu_alternativo nav a{
    text-decoration: none;
}
.link{
    background-color: #494950;
    padding: 10px;
    font-family: "arial";
    font-size: 12pt;
    transition: all .2s linear;
    color: #f3f4f9;
    border-bottom: 2px solid #222;
    opacity: 0;
    margin-top: 50px;
}
.link:hover{
    background-color: #050542;
}
.link img{
    width: 30px;
    height: 30px;
}
#check:checked ~ .barra{
    transform: translateX(300px);
}
#check:checked ~ .barra nav a .link{
    opacity: 1;
    margin-top: 0;
    transition-delay: .2s;
}
/*FIM MENU ALTERNATIVO*/
#btn-filtro-menu-esquerdo{
    width: 20px;
    height: 20px;
    background-color: initial;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 40vh;
    left: 5vw;
    display: none;
}
#btn-filtro-menu-esquerdo img{
    width: 20px;
    height: 20px;
}
#menuEsquerda{
    position: fixed;
    top: 18vh;/*18vh;*/
    left: 6.5vw;
    /*background-color: #eee;/*#bbb;/*white; #ccff99;
    background-image: linear-gradient(to right, rgba(200,200,200, .5), rgba(177,122,100, .5));*/
/*    background-image: linear-gradient(to right, rgba(152,108,182, .1), rgba(102,152,12, .3));    */
    color: white;/*#006600; #0033cc;*/
    width: 198px;
    height: 480px;
    margin: 5px;
    border-radius: 10px;
/*    box-shadow: 0 0 5px #bbb;   */
    transition: .6s;
}
#menuEsquerda h2{
    font-family: times new roman;
    text-align: center;
    box-shadow: 0px 3px 13px black;
    opacity: .9;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    margin: 3px 10px;
    border-radius: 10px;
    background-color: green;
    color: white;
    border-radius: 15px 15px 0 0;
}
#menuInterno{
    margin: 10px 20px;
    list-style-type: none;
}
#menuInterno li{
    margin-bottom: 2px;
    padding: 3px;
}
#menuInterno a{
    color: #006600; /*#0033cc;*/
    font-family: Times;
    font-size: 14px;
    text-decoration: none;
}
#menuInterno li img{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    opacity: .7;
}
#centro{
    padding-top: 205px;   /*PRA EMPURRAR A DIV ANUNCIOS PRA BAIXO DA DIV BANNER2 VIP*/
    background-color: white;
    float: left;
    width: 55%;
    height: auto;
    overflow-y: scroll;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
#centro::-webkit-scrollbar {
    width: 0px;
}

/*BANNER VIP*/
#banner2{
    /*background-image: url("img/fisherman-6479663_640.jpg");*/
    /*background-image: url("img/casinhaSerra.jpeg");*/
    position: fixed;  /*PRA DEIXAR FIXO NA TELA*/
    top: 15vh;        /*PRA POSICIONAR O BANNER2 ABAIXO DO HEADER*/
    left: 26vw;
    /*background-color: #eee;
    background-image: linear-gradient(to right, rgba(200,200,200, .5), rgba(177,122,100, .5));*/
/*    background-image: linear-gradient(to right, rgba(152,108,182, .1), rgba(102,152,12, .4));   */
    border-radius: 10px;
    width: 45vw;
    height: auto;
    margin: 10px auto;
    z-index: 99;
/*    box-shadow: 0 0 5px #bbb;   */
}

#vip-anuncios{
    position: relative;
    padding: 5px;
    max-width: 100%;
    border-radius: 10px;
}
.arrow-left, .arrow-right{
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 150px;
    width: 40px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    border: none;
    background: linear-gradient(to left, transparent 0%, black 200%);
    opacity: .1;
    transition: all 600ms ease-in-out;
}
.arrow-left{
    border-radius: 10px 0 0 10px;
}
.arrow-right{
    border-radius: 0 10px 10px 0;
    left: auto;         
    right: 0;
    background: linear-gradient(to right, transparent 0%, black 200%);
}
.arrow-left:hover, .arrow-right:hover{
    opacity: 1;
}

#gallery-wrapper{
    overflow-x: auto;
}
/* Hide scrollbar for chrome, safari and opera */
#gallery-wrapper::-webkit-scrollbar{
    display: none;
}
/*HIDE SCROLLBAR FOR IE, EDGE AND FIREFOS*/
#gallery-wrapper{
    -ms-overflow-style: none;  /* ie and edge */
    scrollbar-width: none;     /* firefox */
}
/* End scrollbar for ... */

#gallery{
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
}
.anunciosBanner{
    margin: 0 5px;
    padding: 10px 5px;
    width: 130px;
    height: auto;
    flex-shrink: 0;
    text-align: center;
    transition: all 600ms ease-in-out;
}

.fotoBanner{
    margin: auto;
    width: 130px;
    height: 80px;
}
.fotoBanner a{

}
.fotoBanner a img{
    border-radius: 10px;
    width: 120px;
    height: 80px;
}

.fotoBanner:hover img{
    transform: scale(1.1);
    transition: all .5s ease;
}

.dadoBanner{
    text-align: center;
}
.dadoBanner a{
    font-size: 12px;
}
.dadoBanner a p{
    margin: 0;
    font-family: cursive;
}
.dadoPreco{
    text-align: center;
    font-size: 12px;
    padding: 2px;
    background-color: green;
    margin: 3px auto;
    width: 120px;
    opacity: .8;
    border-radius: 25px 5px 5px 25px;
    color: white;
    box-shadow: 0 0 5px rgba(0,0,0,.7);
}
.dadoPreco p .spanPreco{
    font-size: 10px;
}

/*FIM DO BANNER VIP*/    


#banner{
    /*background-image: url("img/fisherman-6479663_640.jpg");*/
    border-radius: 10px;
    color: white;
    width: 90%;
    height: 150px;
    margin: 10px auto;
    opacity: .8;
}
#banner img{
    width: 25px;
    height: 25px;
}
#frmBuscar{
    text-align: right;
    padding: 10px;
    margin-right: 20px;
}
#frmBuscar #buscar, input[type="submit"]{
    border-radius: 10px;
    margin-top: 60px;
    height: 40px;
    font-weight: bold;
}

#buscar img{
    opacity: .2;
}
#btnBuscar{
    width: 44px;
    height: 40px;
    border: none;
    background-color: rgba(0,153,51,0.2);
    background-image: url(img/MAGNI006.ICO);
    background-position: 3px 0px;
    background-repeat: no-repeat;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
}
/*
#conteudo{
    display: grid;
    grid-template-areas: "h h h"
                         "auto auto auto";
                         /*"h h h"
                         "h h h"
                         "h h h";*/
/*    grid-gap: 5px;
    justify-content: space-between;
    align-content: baseline;
    background-color: white;
    margin: 10px auto;
    width: 95%;
    height: auto;
    border-radius: 10px;
}
*/
#conteudo{
    width: 90%;
    height: auto;
    border-radius: 10px;
    background-color: white;
    margin: 10px auto;
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}
.anuncio{
    background-color: white;
    width: 180px;
    height: auto;
    border-radius: 10px;
    margin: auto;
}
.foto1{
    background-color: white;
    width: 180px;
    height: 110px;
}
.foto1 img{
    width: 180px;
    height: 110px;
    border-radius: 5px;
}
.foto1:hover img{
    transform: scale(1.07);
    transition: all .5s ease;
}
.dadoAnuncio{
    color: white;
    background-color: #eee;
    width: 180px;
    height: auto;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    margin-top: 1.2px;
}
.dadoAnuncio a{
    padding: 0px;
}
.dadoAnuncio a p{
    font-family: sans-serif;
    font-size: 13px;
    font-weight: normal;
    margin: 2px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.dadoAnuncio a .vlrindex{
    padding: 2px;
    background-color: green;
    margin: 2px auto;
    width: 120px;
    opacity: .8;
    border-radius: 25px 5px 5px 25px;
    color: white;
    box-shadow: 0 0 5px rgba(0,0,0,.7);
}
.dadoAnuncio a .vlrindex p .spanvlr{
    font-size: 10px;
}
/*VER ANUNCIO*/
#anuncioIndividual{
    display: block;
    background-color: white;
    width: 95%;
    height: auto;
    margin: 0px auto;
    z-index: 200;
}
.divAnuncioIndividual{
    position: relative;
    padding-top: 20px;
    padding-bottom: 40px;
    font-family: sans-serif;
    font-size: 14px;
    width: 100%;
    height: auto;
    /*overflow-y: scroll;*/
    text-align: center;
}
.divAnuncioIndividual::-webkit-scrollbar {
        width: 0px;
    }
/*.divAnuncioIndividual h3{
    font-family: Helvetica;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    margin-bottom: 10px;
}*/
.anun-p-detalhes{
    font-family: Georgia;
    color: rgba(0,0,0,.6);
    padding: 5px;
    margin: 5px;
    font-weight: bold;
}
.anun-p-detalhes-cliente{
    font-family: Georgia;
    color: rgba(0,0,0,.6);
    padding: 5px;
    margin: 15px;
    font-weight: bold;
}
.anun-span-anunciante-cliente{
    margin-left: 10px;
    background-color: #6fc76f;
    color: white;
    padding: 15px 0px 15px 15px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 14px 13px 5px rgba(0, 0, 0, .7);
}
.anun-span-anunciante{
    background-color: #6fc76f;
    color: white;
    padding: 15px 0px 15px 15px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 14px 13px 5px rgba(0, 0, 0, .7);
}
.span-anunciante{
    background-color: #59a71e;
    padding: 15px 20px 15px 15px;
    border-radius: 0px 20px;
    margin-left: 6px;
}

.h3-galeria-img{
    font-family: Helvetica;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,.6);
    margin-bottom: 9px;
    margin-top: 6px;
}
#titulo-anun-individual{
    width: auto;
    height: auto;
    max-width: 70%;
    padding: 5px 10px;
    background-color: orange;
    margin: auto;
    border-radius: 25px 5px 5px 25px;
    padding-top: 10px;
    opacity: .8;
    margin-bottom: 20px;
    box-shadow: 13px 11px 5px rgba(0,0,0,.7);
}
#titulo-anun-individual h3{
    color: white;
}
#imgAnun img{
    width: 400px;  /*400px*/
    height: 250px;  /*250px*/
}
#anunValor{
    background-color: green;
    width: 200px;
    padding: 5px 25px;
    border-radius: 30px 5px 5px 30px;
    color: white;
    margin: auto;
    opacity: .8;
    margin-bottom: 20px;
    box-shadow: 14px 13px 5px rgba(0,0,0,.7);
}
#anunValor #real{
    font-size: .7rem;
}
#anunValor h3{
    /*vertical-align: middle;*/
/*    padding-top: 10px;*/
    color: white;
}
#anunDesc{
    width: 80%;
    padding: 15px 10px;
    margin: 0px auto;
}

.divAnuncioIndividual p img{
    width: 42px;
    height: 42px;
    cursor: pointer;
}
.btn-whtpp{
    width: 32px !important;
    height: 32px !important;
    vertical-align: middle;
    margin-left: 10px;
}
.btn-whtpp:hover{
    width: 36px;
    height: 36px;
}
#divchatpage{
    padding: 2px 5px;
    background-color: orange;
    width: 340px;
    border-radius: 25px 5px 5px 25px;
    margin: 10px auto;
    opacity: .8;
    box-shadow: 14px 13px 5px rgba(0,0,0,.7);
}
#divchatpage p{
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    font-weight: 700;
    padding: 5px;
    border-radius: 25px 5px 5px 25px;
    font-family: Helvetica;
}
#divchatpage p:hover{
    box-shadow: 0 0 5px rgba(0,0,0,.7);
}
.btn-whats{
    width: 140px;
    background-color: green;
    padding: 10px;
    border-radius: 25px 5px 5px 25px;
    margin: 20px auto;
    color: white;
    opacity: .7;
    font-weight: bold;
    box-shadow: 14px 13px 5px rgba(0,0,0,.7);
}

/*SLIDER GALLERY*/
.img_gallery{
    width: 400px;
    height: 160px;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.trs{
    -webkit-transition: all ease-out 0.5s;
    -moz-transition: all ease-out 0.5s;
    -o-transition: all ease-out 0.5s;
    -ms-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
}
#slider{
    position: relative;
    z-index: 1;
}
#slider a{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}
.ativo{
    opacity: 1!important;
    filter: alpha(opacity=100)!important;
}
/*span{
    background: rgba(10, 105, 115, 0.76);
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    bottom: 10%;
    width: 43px;
    height: 43px;
    z-index: 5;
}*/
.next{
    right: 10px;
}
.next:before, .next:after{
    left: 21px;
}
.next:before{
    -webkit-transform: rotate(-42deg);
    top: 5px;
}
.next:after{
    -webkit-transform: rotate(-132deg);
    top: 19px;
}
.next:before, next:after, .prev:before,.prev:after{
    content: "";
    height: 20px;
    background: #fff;
    width: 1px;
    position: absolute;
}
.prev{
    left: 10px;
}
.prev:before,.prev:after{
    left: 18px;
}
.prev:before{
    -webkit-transform: rotate(42deg);
    top: 5px;
}
.prev:after{
    -webkit-transform: rotate(132deg);
    top: 19px;
}
figure:hover span{
    opacity: 0.76;
    filter: alpha(opacity=76);
}
figure{
    width: 400px;  
    height: 250px;  
    position: relative;
    overflow: hidden;
    margin: 5px auto;
    border-radius: 10px;
}


figcaption{
    display: none;
    font-weight: bold;
    text-align: center;
    padding-left: 20px;
    color: burlywood;
    font-family: "kaushan Script", "Lato", "arial";
    font-size: 12px;
    background: rgba(10,105,115,0.76);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 30px;
    height: 30px;
    z-index: 5;
}
.trs .imgz{
    width: 400px;
    height: 250px;
}

/*FIM VER ANUNCIO*/

#direita{
    /*background-image: url("img/touch-screen-g617f81321_640.jpg");/*url("img/casinhaSerra.jpeg");*/
    /*background-color: #cccccc;*/
    float: left;
    width: 22%;
    margin-left: 5px;
    height: 80vh;
    opacity: .8;
    border-radius: 10px;
    overflow: hidden;
}

#subMenu{
    /*background-color: #eee;/*#bbb;/*#66ccff;
    background-image: linear-gradient(to right, rgba(200,200,200, .5), rgba(177,122,100, .5));*/
/*    background-image: linear-gradient(to right, rgba(152,108,182, .1), rgba(102,152,12, .5));   */
    background-image: linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.9)), url(./img/marketing-gec881e0f9_640.png);
    background-size: contain;
    background-repeat: no-repeat;
    color: white; /*006600;*/
    font-family: Cambria;
    text-align: center;
    width: 80%;
    height: 70vh;
    margin: 40px auto;
    padding: 10px 1px;
    /*overflow-y: scroll;*/
    border-radius: 10px;
/*    box-shadow: 0 0 5px #bbb;   */
}
.span-attr{
    font-size: 9px;
    color: black;
    opacity: .5;
}
.a-attr{
    font-size: 10px;
}
#subMenu a h3{
    color: green;
    margin-top: 25px;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    transition: all .5s ease;
}
#subMenu a h3:hover{
    text-shadow: 0 0 10px rgba(0,0,0,.9);
    font-size: 1.2rem;
}
#subMenu a h3 img{
    width: 36px;
    height: 30px;
    vertical-align: middle;
    margin-right: 7px;
}
#subMenu h5, h4{
    color: #006600;
    text-align: center;
    margin: 5px 10px;
}
#subMenu h4 img{
    width: 30px;
    height: 25px;
    vertical-align: middle;
}
.mostrarEmpresa{
    display: block;
    width: 90%;
    height: auto;
    margin: 1px auto;
    padding: 1px 0px;
}
.mostrarEmpresa .imgEmpresa{
    width: 130px;
    height: 100px;
    margin: 30px auto;
}
.mostrarEmpresa .imgEmpresa img{
    width: 130px;
    height: 100px;
    border-radius: 10px;
}
marquee{
    cursor: pointer;
}
#rodape{
    background-color: rgba(255, 255, 255, .9);   
    position: relative;
    /*text-align: right;
    background-color: red;
    float: bottom;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    width: 90vw;
    height: 305px;
    margin: 0px auto;
    border-radius: 15px 15px 0px 0px;
    padding: 15px;
    box-shadow: 0px 0px 2px #b8bbb7;
}
.rodadiv{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    opacity: .7;
    margin: auto;
}
.alink-rodape{
    font-family: monospace;
    font-size: 13px;
    color: white;
    padding: 4px 15px;
    background-color: #047b04;
    border-radius: 25px;
    transition: .3s;
}
.alink-rodape:hover{
    background-color: #00a600;
    box-shadow: 0px 0px 5px black;
}
#rodadiv-filtro{
    background-color: darkgreen;
    padding: 10px;
    border-radius: 0px 10px 0px 0px;
    border: 2px solid black;
    box-shadow: 14px 13px 5px rgba(0,0,0,.8);
}
.rodadiv label{
    font-size: 14px;
    font-weight: bold;
    color: white;
}
.rodadiv select{
    padding: 5px;
    cursor: pointer;
    color: darkgreen;
}
.h3-rodape{
    text-align: center;
    margin: 2px;
    color: white;
}
#lbl-busca-cidade, #slc-busca-cidade{
    display: none;
}
.img-icons-class-rodape{
    vertical-align: middle;
    margin-right: 10px;
    height: 28px;
    width: 30px;
    border-radius: 50%;
    padding: 2px;
    background-color: #00a600;
}
.img-icons-class{
    vertical-align: middle;
    margin-right: 10px;
    height: 32px;
    width: 34px;
    border-radius: 50%;
    padding: 2px;
    /*background-color: #19c919; DA PRA USAR ESSA COR NOS H2 E NOS ÍCONES*/
}
#rodape #mapa{
    margin-bottom: 39px;
    padding: 5px;
    box-shadow: 0 0 3px black;
    display: inline-block;
    border-radius: 3px;
    transition: all .6s ease;
}
#rodape #mapa:hover{
    box-shadow: 0 0 10px black;
    /*transform: scale(1.01);*/
}
#rodape p{
    font-family: "Open Sans", "Helvetica Neue", Helvetica Arial, sans-serif;
    margin-top: 0px;
    margin-left: 10px;
    padding-top: 10px;
    font-size: 11px;
}

.powered{
    position: fixed;
    left: 65px;
    bottom: 5px;
    font-size: 10px;
    z-index: 100;
    transition: all .6s ease;
}
.powered:hover{
    transform: scale(1.05);
}

/*WHATSAPP*/
.social-btn-whats{
    position: fixed;
    bottom: 21px;
    left: 75px;
    z-index: 100;
}
.social-btn-whats img{
    width: 45%;
    opacity: .5;
    transition: all .5s ease;
    cursor: pointer;
}
.social-btn-whats img:hover{
    opacity: .9;
    transform: scale(1.2);
    box-shadow: 0 0 10px black;
    border-radius: 6px;
}
.btn-face img, .btn-insta img{
    cursor: pointer;
}
@media screen and (max-width: 767px) { .social-btn-whats{ left: 15px; } .social-btn-whats img{ width: 40%; } .powered{ left: 5px; } }

/*FACE*/
.btn-face{
    position: fixed;
    bottom: 21px;
    left: 125px;
    z-index: 100;
}
.btn-face img{
    width: 45%;
    border-radius: 10px;
    opacity: .5;
    transition: all .5s ease;
}
.btn-face img:hover{
    opacity: .9;
    transform: scale(1.2);
    box-shadow: 0 0 10px black;
}
@media screen and (max-width: 767px) { .btn-face{ left: 55px; } .btn-face img{ width: 40%; } }

/*INSTAGRAM*/
.btn-insta{
    position: fixed;
    bottom: 21px;
    left: 175px;
    z-index: 100;
}
.btn-insta img{
    width: 45%;
    border-radius: 10px;
    opacity: .5;
    transition: all .5s ease;
}
.btn-insta img:hover{
    opacity: .9;
    transform: scale(1.2);
    box-shadow: 0 0 10px black;
}
@media screen and (max-width: 767px) { .btn-insta{ left: 95px; } .btn-insta img{ width: 40%; } }

/*BOTÃO TOPO*/
#bottom-btn-topo{
    width: 48px;
    height: 48px;
    line-height: 30px;
    text-align: center;
    /*background: rgba(0,0,0,.2);*/
    z-index: 999;
    position: fixed;
    bottom: 0px;
    right: 75px;
    border-radius: 90% 90% 10% 10%;
    overflow: hidden;
    display: none;
}
#bottom-btn-topo .btn-topo{
    background: initial;
    border: none;
    /*transition: all .5s ease;*/
}
#bottom-btn-topo:hover{
    /*background: rgba(0,0,0,.5);
    box-shadow: 0 0 10px black;*/
    opacity: 1;
}
.img-volta-topo{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    opacity: .4;
    cursor: pointer;
    transition: all .5s ease;
}
.img-volta-topo:hover{
    opacity: .8;
    transform: scale(1.1);
    box-shadow: 0 0 10px black;
}
/*FIM BOTÃO TOPO*/

/*EDITAR IMAGEM*/
#listarEditarImagens{
    width: 1000px;
    height: auto;
}
#listarEditarImagens table{
    width: 900px;
    height: auto;
}
#listarEditarImagens table img{
    width: 400px;
    height: 300px;
}
#editImg{
    width: 900px;
    height: 600px;
}
#editImg form img{
    width: 400px;
    height: 300px;
}

/*COMPORTAMENTO DO BODY EM DISPOSITIVOS MOBILES 1000px*/
@media (max-width: 1000px){
    #corpo{
        background-color: white;
        width: 100vw;
        height: 80vh;
        margin-top: 15px;
    }
    
    #esquerda{
        /*background-image: url("img/touch-screen-g617f81321_640.jpg");
        /*background-color: #cccccc;*/
        display: block;
        width: 100vw;
        height: auto;
    }
    #menu_alternativo{
        display: block;
        /*z-index: 100;*/
    }
    /*
    .barra{
        z-index: 1000;
    }
    #menu_alternativo nav{
        z-index: 1000;
    }
    #menu_alternativo nav a{
        z-index: 1000;
    }
    */    
    
    #menuEsquerda{
        display: none;
        background-color: #555;/*#ccff99;*/
        color: white;
        width: 70vw;
        height: auto;
        margin: 5px auto;
        border-radius: 10px;
    }
    #menuEsquerda h2{
        text-align: center;
    }
    #menuInterno{
        margin: 10px auto;
        list-style-type: none;
    }
    #menuInterno li{
        text-align: center;
        margin: 0 auto;
        padding: 3px;
    }
    #menuInterno a{
        color: white;
        text-decoration: none;
    }

    #centro{
        /*background-color: #cccccc;*/
        display: block;
        width: 100vw;
        /*height: 80vh;*/
        height: auto;
    }
    #centro::-webkit-scrollbar {
        width: 0px;
    }
    #banner2{
        left: 0;
        width: 95vw;
        margin-left: 2vw;
    }
    #banner2::-webkit-scrollbar {
        width: 0px;
    }

    #banner{
        /*background-image: url("img/fisherman-6479663_640.jpg");*/
        background-image: url("img/touch-screen-g617f81321_640.jpg");
        border-radius: 10px;
        color: white;
        width: 95%;
        height: 150px;
        margin: 10px auto;
    }
    #banner img{
        width: 25px;
        height: 25px;
    }
    #frmBuscar{
        text-align: right;
        padding: 10px;
        margin-right: 20px;
    }
    #frmBuscar #buscar, input[type="submit"]{
        border-radius: 10px;
        line-height: 40px;

    }

    #buscar img{
        opacity: .2;
    }
    #btnBuscar{
        width: 44px;
        height: 54px;
        line-height: 40px;
        background-image: url(img/MAGNI006.ICO);
        background-position: 3px 3px;
        background-repeat: no-repeat;
        font-weight: bold;
        border-radius: 10px;
    }

    #conteudo{
        display: grid;
        grid-template-areas: "h h h"
                             "auto auto auto";
                             /*"h h h"
                             "h h h"
                             "h h h";*/
        grid-gap: 5px;
        justify-content: space-around;
        align-content: baseline;
        background-color: white;
        margin: 10px auto;
        width: 95%;
        height: auto;
        border-radius: 10px;
    }
    .anuncio{
        width: 200px;
        margin: 10px;
    }
    .foto1{
        background-color: white;
        width: 200px;
        height: 180px;
    }
    .foto1 img{
        width: 200px;
        height: 180px;
        border-radius: 5px;
    }
    .dadoAnuncio{
        width: 200px;
        height: auto;
        text-align: center;
        border-radius: 5px;
    }
    #direita{
        /*background-image: url("img/touch-screen-g617f81321_640.jpg");
        /*background-color: #cccccc;*/
        display: block;
        width: 100vw;
        height: auto;
        padding: 20px;
    }
    
    #subMenu{
        background-color: white;/*#66ccff;*/
        color: #006600;
        font-family: Cambria;
        width: 60%;
        height: auto;
        margin: 10px auto;
        padding: 10px 1px;
        overflow-y: scroll;
        border-radius: 10px;
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
        scrollbar-width: none;  /* Firefox */
    }
    #subMenu::-webkit-scrollbar {
        width: 0px;
    }
    #subMenu h3{
        text-align: center;
    }
    #subMenu h5{
        text-align: center;
        margin: 5px 10px;
    }
    
    #conteudo-vantagens-parceiro{
        width: 80vw;
        padding: 50px 15px;
    }
    #coteudo-all-vp{
        width: 80vw;
    }
    #conteudo-como-anunciar{
        width: 90vw;
        padding: 25px;
    }
        
    /*EDITAR IMAGEM
    #listarEditarImagens{
        width: 1000px;
        height: auto;
    }
    #listarEditarImagens table{
        width: 900px;
        height: auto;
    }
    #listarEditarImagens table img{
        width: 400px;
        height: 300px;
    }
    #editImg{
        width: 900px;
        height: 600px;
    }
    #editImg form img{
        width: 400px;
        height: 300px;
    }*/
}

/*COMPORTAMENTO DO BODY EM DISPOSITIVOS MOBILES 600px*/
@media (max-width: 630px){
    #logo{
        width: 90px;
        height: 20px;
    }
    #corpo{
        padding-top: 98px;
        background-color: white;
        width: 100vw;
        height: 80vh;
    }
    /*#frmBuscarHead{
        width: 230px;
        position: fixed;
        top: 2em;
        right: 5em;  /*3em*/
    /*    opacity: .9;
        z-index: 999;
    }*/
    #esquerda{
        display: block;
        width: 80vw;
        height: auto;
        margin: 10px 40px;
    }
    #menu_alternativo{
        display: block;
    }
 
    #icone{
        margin-top: 72px;
        margin-left: -45px;
    }
    .barra{
        background-color: #333;
        margin-top: 80px;
        margin-left: -20px;
        height: auto;
        width: 200px;
        position: absolute;
        transition: all 2s linear;
        left: -300px;
    }
    #menuEsquerda{
        display: none;
        background-color: #555;/*#ccff99;*/
        color: black;
        font-size: 12px;
        width: 70vw;
        height: auto;
        margin: 5px auto;
        border-radius: 10px;
    }
    #menuEsquerda h2{
        display: none;
        text-align: center;
        background-color: #ddd;
        margin: 3px 10px;
        border-radius: 10px;
    }
    #menuInterno{
        background-color: #ddd;
        width: 60%;
        padding: 10px 2px;
        margin: 10px auto;
        list-style-type: none;
        border-radius: 10px;
    }
    #menuInterno li{
        text-align: center;
        margin: 0 auto;
        padding: 3px;
    }
    #menuInterno a{
        font-size: 13px;
        color: black;
        text-decoration: none;
    }

    #centro{
        padding-top: 60px;
        display: block;
        width: 100vw;
        /*height: 80vh;*/
    }
    #centro::-webkit-scrollbar {
        width: 0px;
    }
    
    /*#banner2{
        /*background-image: url("img/fisherman-6479663_640.jpg");*/
        /*background-image: url("img/casinhaSerra.jpeg");*/
        /*background-color: #eee;
        border-radius: 10px;
        width: 98%;
        height: auto;
        margin: 10px auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-column-start: 1;
        grid-column-end: 4;
        align-items: center;
        justify-content: space-between;
        overflow-x: scroll;
    }
    #banner2::-webkit-scrollbar {
        width: 0px;
    }*/
    
    #banner{
        /*background-image: url("img/fisherman-6479663_640.jpg");*/
        border-radius: 10px;
        color: white;
        width: 95%;
        height: 150px;
        margin: 10px auto;
    }
    #banner img{
        width: 25px;
        height: 25px;
    }
    #frmBuscar{
        text-align: right;
        padding: 10px;
        margin-right: 20px;
    }
    #frmBuscar #buscar, input[type="submit"]{
        border-radius: 10px;
        line-height: 40px;

    }

    #buscar img{
        opacity: .2;
    }
    #btnBuscar{
        width: 44px;
        height: 54px;
        line-height: 40px;
        background-image: url(img/MAGNI006.ICO);
        background-position: 3px 3px;
        background-repeat: no-repeat;
        font-weight: bold;
        border-radius: 10px;
    }

    #conteudo{
        display: grid;
        grid-template-areas: "h h"
                             "auto auto";
                             /*"h h h"
                             "h h h"
                             "h h h";*/
        grid-gap: 5px;
        justify-content: space-around;
        align-content: baseline;
        background-color: white;
        margin: 15px auto;
        width: 95%;
        height: auto;
        border-radius: 10px;
    }
    .anuncio{
        width: 100%; /*180px*/
        margin: 15px 10px;
    }
    .foto1{
        background-color: white;
        width: 100%;  /*180px*/
        height: 180px;
    }
    .foto1 img{
        width: 100%;   /*180px*/
        height: 180px;
        border-radius: 5px;
    }
    .dadoAnuncio{
        width: 100%;  /*180px*/
        /*height: 80px;*/
        height: auto;
        text-align: center;
        border-radius: 5px;
    }
    #direita{
        /*background-color: #ccc;*/
        display: block;
        width: 90vw;
        height: auto;
    }
    #subMenu{
        background-color: white;/*#66ccff;*/
        color: #006600;
        font-family: Cambria;
        width: 90%;
        height: auto;
        margin: 10px auto;
        padding: 10px 1px;
        overflow-y: scroll;
        border-radius: 10px;
    }
    #subMenu::-webkit-scrollbar {
        width: 0px;
    }
    #subMenu h3{
        text-align: center;
    }
    #subMenu h5{
        text-align: center;
        margin: 5px 10px;
    }
    .mostrarEmpresa .imgEmpresa{
        background-color: blue;
        width: 200px;
        height: 150px;
    }
    .mostrarEmpresa .imgEmpresa img{
        width: 200px;
        height: 150px;
    }
    

    /*EDITAR IMAGEM
    #listarEditarImagens{
        width: 1000px;
        height: auto;
    }
    #listarEditarImagens table{
        width: 900px;
        height: auto;
    }
    #listarEditarImagens table img{
        width: 400px;
        height: 300px;
    }
    #editImg{
        width: 900px;
        height: 600px;
    }
    #editImg form img{
        width: 400px;
        height: 300px;
    }*/
}

@media (max-width: 500px){
    
    /*   */
    #conteudo{
        display: grid;
        grid-template-areas: "h"
                             "auto";
                             /*"h h h"
                             "h h h"
                             "h h h";*/
        grid-gap: 5px;
        justify-content: space-around;
        align-content: baseline;
        background-color: white;
        margin: 15px auto;
        width: 95%;
        height: auto;
        border-radius: 10px;
    }
    .anuncio{
        margin: 20px auto;
    }
    .foto1{
        background-color: white;
        width: 100%;
        height: 180px;
    }
    .foto1 img{
        width: 100%;
        height: 180px;
        border-radius: 5px;
    }
    .dadoAnuncio{
        width: 100%;
        /*height: 80px;*/
        height: auto;
        text-align: center;
        border-radius: 5px;
    }
}



/*
#dvslider{
    width: 400px;
    height: 250px;
    margin: auto;
    border: 1px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
}
#dvslider img{
    width: 400px;
    height: 250px;
    position: absolute;
    object-fit: cover;
}
.btSlider{
    background-color: rgba(0, 0, 0, 0.4);
    height: 30%;
    color: #fff;
    cursor: pointer;
    outline: none;
    margin: 10px;
    border: none;
}
#dvload{
    width: 100%;
    height: 5px;
    margin-top: 28%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
#dvbarra{
    width: 0%;
    height: 100%;
    background-color: white;
}


SLIDE GALLERY
.img_gallery{
    width: 100%;
    height: auto;
}
.img_gallery img{
    margin-top: 0px;
    width: 400px;  400px
    height: 250px;  250px
}
.img_gallery a,img{
    border: none;
}
.img_gallery .trs{
    -webkit-transition: all ease-out 0.5s;
    -moz-transition: all ease-out 0.5s;
    -o-transition: all ease-out 0.5s;
    -ms-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
}
.img_gallery figure #slider{
    position: relative;
    z-index: 1;
}
.img_gallery figure #slider a{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}
.img_gallery .ativo{
    opacity: 1!important;
    filter: alpha(opacity=100)!important;
}
CONTROLADORES
span{
    background: rgba(10, 105, 115, 0.76);
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    botton: 40%;
    width: 43px;
    height: 43px;
    z-index: 5;
}
.next{
    right: 10px;
}
.next:before, .next:after{
    left: 21px;
}
.next:before{
    -webkit-transform: rotate(-42deg);
    top: 5px;
}
.img_gallery .next:after{
    -webkit-transform: rotate(-132deg);
    top: 19px;
}
.next:before, next:after, .prev:before,.prev:after{
    content: "";
    height: 20px;
    background: #fff;
    width: 1px;
    position: absolute;
}
.prev{
    left: 10px;
}
.prev:before,.prev:after{
    left: 18px;
}
.prev:before{
    -webkit-transform: rotate(42deg);
    top: 5px;
}
.prev:after{
    -webkit-transform: rotate(132deg);
    top: 19px;
}
figure:hover span{
    opacity: 0.76;
    filter: alpha(opacity=76);
}
figure{
    width: 400px;  400px
    height: 250px;  250px
    position: relative;
    overflow: hidden;
    margin: 5px auto;
    border-radius: 10px;
}

/*
.divAnuncioIndividual .img_gallery figcaption{
    font-weight: bold;
    text-align: center;
    padding-left: 20px;
    color: burlywood;
    font-family: "kaushan Script", "Lato", "arial";
    font-size: 22px;
    background: rgba(10,105,115,0.76);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 55px;
    height: 55px;
    z-index: 5;
}*/