/* versao 04 */

/* personalização ANUNCIANTES */
/* 
Cores:
Amarelo #ffb81d
Laranja #eb5e28ff  // rgb(235, 94, 40) // rgb(254, 165, 96) 
Cinza escuro:  #404348
Branco: #efecec
marron Claro #c89c76
Cinza claro: #c7bfb8

Fontes
font-family: 'Barlow', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'PT Sans', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Slab', serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow&family=PT+Sans&family=Poppins:wght@300&family=Roboto&family=Roboto+Slab&display=swap');
* {
    font-family: 'Roboto', sans-serif;
    
}
body {
    margin: 0;
    padding: 0;
    background-color: #3f3f3f;
    color: #e9edf5;
}

header {
    display: flex;
    justify-content: center;
    height: 80px;
    background-color: #252525;
}

p {
    text-align: justify;
   
}


.naoexibir{
    display: none;
}

.red {
    color: red;
}
.bg-red {
    background-color: red;
    color: whitesmoke;
}

.bg-green-faixa {
    background-color: rgb(108, 199, 11);
    color: whitesmoke;
    border-radius: 3px;
}

.bg-blue-faixa {
    background-color: #21ec32;
    color: rgb(40, 38, 38) !important; 
    padding: 5px;
    border-radius: 3px;
}

.bg-orange-faixa {
    background-color: rgba(248, 197, 140, 0.477);
    color: rgb(40, 38, 38) !important; 
    border-radius: 10px;
    
}

.bg-red-faixa {
    background-color: rgba(251, 11, 11, 0.842);
    color: rgb(15, 15, 15) !important; 
    padding: 5px;
    border-radius: 3px;
}



.green{
    color: rgb(18, 185, 18);
}
.container {
    width: 1280px;
    display: flex;
    justify-content: space-between;

    
    
}
.flash {
    background-color: red;
    color: white;
    font-size: 18px;
    padding: 5px;
    margin-top: 10px;
}

.msg {
    background-color: rgb(5, 146, 15);
    color: white;
    font-size: 18px;
    padding: 5px;
    margin-top: 10px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    
}

.column {
    flex-direction: column;
}



.search{
   
    align-items: flex-start;
    justify-content: flex-start;

   
}
.search label, fieldset{
    font-size: 18px;
    
}

.search1{
    background-color: rgba(199, 191, 184, 0.413);
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
   
}

.search-area input {
     
    background-image: url('../images/search.png');
    background-size: 18px;
    background-position-x: 10px;
    background-position-y: center;
    background-repeat: no-repeat;
    width: 200px;
    height:25px;
    border-radius:5px;
    border:0;
    outline:0;
    margin-top:15px;
    padding-left:30px;
    transition: all .3s;
    font-size: 18px;
   
}

.search-area-admin input {
    background-color:rgb(0 0 0 / 53%);
    background-image: url('../images/search.png');
    background-size: 15px;
    background-position-x: 10px;
    background-position-y: center;
    background-repeat: no-repeat;
    max-width: 500px;
    height:25px;
    border-radius:5px;
    border:0;
    outline:0;
    margin-top:15px;
    padding-left:30px;
    transition: all .3s;
    font-size: 18px;
   
}

.resultSearh {
    margin: 10px;
}


.resultImg{
    height: 100px;
    
}

.miniatura{
    height: 120px;
    padding: 10px;
}

.tabela td {
    margin-right: 10px;
    padding: 5px;
    border-bottom: 1px solid chocolate;
}

.tabela th {
    text-align: left;
    margin-right: 10px;
    padding: 5px;
    background-color: #c7bfb8;
    min-width: 30px;
}

/* LOGO */ 
.logo {
    display: flex;
    align-items: center;
    
}
.logo img {
    height: 60px;
}

/* MENU */
.menu {
    display: flex;
    align-items: center;
    z-index: 90;
   
}

nav ul, 
nav li{
    list-style-type: none;
    margin: 0;
    padding: 0;
    
}

nav ul {
    display: flex;
}

nav a {
    display: block;
    padding: 15px;
    text-decoration: none;
    text-transform: uppercase;
    color:  #ffffff;
}

nav .active a, nav a:hover {
    background-color: #a01212;
    color:#ffffff !important;
    border-radius: 3px;
}



/* SUB MENU*/
nav ul ul {
    position: absolute;
    z-index: 90;
    top: 60px;
    border-top: 3px solid rgb(254, 165, 96) ;
    opacity: 0;
    visibility: hidden;
    transition: top .3s;
    display: flex;
    flex-direction: column;
    background-color: #c7bfb8;
    

}

nav ul li:hover > ul{
    top: auto;
    opacity: 1;
    visibility: visible;
}
nav ul ul li{ 
    position: relative;
    margin: 0px;
    width: 180px;
    float: none;
    display: list-item;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    background-color: #c7bfb8;
}
nav ul ul li a{
   /* background-color: #c7bfb8; */
    line-height: 30px;
    padding: 5px;
    
}
nav .submenu a{
     
    color:  #404348; 
}
nav .submenu a:hover {
    background-color: #c89c76;
    color:#efecec;
    border-radius: 3px;

}

/* BANNER */


#banner {
    display: flex;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../images/fundo_banner.jpg')
}


.banner_headline {
    flex: 1;
    display: flex;
    
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

.banner_headline h1{
    color: #eb5e28ff;
    font-size: 30px;
    text-shadow: 0px 1px 0px #555555;
    margin: 0;
    padding: 0;
    /* max-width: 350px; */
    font-family: 'Barlow', sans-serif;

}
.banner_headline h2{
    color: #555555;
    font-size: 21px; 
    margin: 0;
    padding-bottom: 10px;
    /* max-width: 350px; */
    margin-top: 30px;

}
.banner_options {
    height: auto;
    display: flex;
    
}
.banner_options a {
    display: inline-block;
    border: 1px solid #ffb81d;
    color: #efecec;
    padding: 5px;
    text-decoration: none;
    font-size: 13px;
    
}

.banner1, .banner2, .banner3 {
    flex: 1;
    color: #efecec;
    padding: 20px;

}

.banner1 {
     /* background-color: rgba(200, 156, 118, 0.6); */
}

.banner2 {
    /* background-color: rgb(200, 139, 85, 0.6);*/
} 

.banner3 {
   /* background-color: rgb(200, 139, 85, 0.6);*/
}

.banner_title {
    font-family: 'Barlow', sans-serif;
    font-size: 30px;
}

.banner_desc{
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#geral {
    
    display: flex;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
}

#geral section{
    flex: 2;
    padding: 5px;
  
}

#geral aside{
    flex: 1;
    
}

#geral aside img{
    flex: 1;
    max-width: 100%;
}
.widget_title {
    margin-top: 30px;
    margin-bottom: 20px;
    
}



.widget_title_text {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    color: #f15a87;
    font-weight: bold;
}

.card_resume {
    margin: 10px;
    text-align: center;
  }
.widget_titulo_nome {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    color: #eef4ff;
    font-weight: bold;
    text-align: center; 
    background-color: #282525; 
    padding: 5px;
    margin: 2px;
    margin-right: 4px;
}


.widget_title_bar{
    width: 150px;
    height: 2px;
    background-color: #eb6028;
    margin-top: 8px;
}
.widget_title_barra{
    
    height: 2px;
    background-color: #eb3528;
    margin-top: 8px;
    margin-bottom: 5px;
}

.widget_footer_bar{
   
    margin-top: 8px;
    border-bottom: solid 1px #f18358;
}

.widget_boby{
    margin-top: 15px;
    border-bottom: #404348 1px;
    
}

.widget_boby a{
    color: #ff5757;
    text-decoration: none;
}
.widget_boby a:hover{
    color: #ffc8c8;
    text-decoration: none;
}

.widget_boby strong{
    color: #eb6028;
    text-decoration: none;
}

.widget_boby ul{
    display: flex;
    flex-wrap: wrap;
}

.widget_boby li{
    display: block;
    line-height: 35px;
 
    width: 200px;
    
}

.widget_boby p{
    display: block;
    line-height: 35px;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
}


.widget_boby h2{
    font-size: 25px;
    padding-top: 4px;
    padding-bottom: 10px;
    font-family: 'Roboto Slab', serif;
}


.widget_boby h3, h4{
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Barlow', sans-serif;
}

.widget_boby p{
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.btn-ligar {
    background-color: #eb5e28ff;
    border: none;
    border-radius: 10px;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline;
    font-size: 15px;
    cursor: pointer;
}
.btn-ligara {
    background-color: #7f6b6400;
    border: none;
    border-radius: 10px;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline;
     
    cursor: pointer;
}

.btn-whatsapp{
     
    border: none;
    border-radius: 10px;
    color: #32C800 !important;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    cursor: pointer;
     
} 

.btn-ligar  a{
    color: #000000;
   
}

.btn-ligar a:hover{
    color: #0c0c0c;  
}

.btn-whatsapp  a:hover{
    color: #32C800;
} 

.btn-whatsapp  a:hover{
    color: #32C800;
}

.fa-brazilian-real-sign {
    color: #f47505;
    background-color: rgba(173, 163, 163, 0.475);
    padding: 20px;
    border-radius: 10px;
}

.fa-credit-card {
    color: rgb(42, 80, 4);
    background-color: rgba(173, 163, 163, 0.475);
    padding: 20px;
    border-radius: 10px;
}

.fa-pix{
    color: rgb(29, 39, 225);
    background-color: rgba(173, 163, 163, 0.475);
    padding: 20px;
    border-radius: 10px;
}

.direita {
    margin-top: 10px;
    margin-right: 10px;
    float: right;
    font-size: 12px;
    color: #555555;
}

article {
    /*flex: 1;*/
    margin-right: 9px;
}

.capa {
    /* align-self: flex-start; 
    max-width: 160px; */
    min-width: 150px;
  
    padding: 5px;
    text-align: center;
    background-color: #333;
    border-radius: 5px;
    margin-bottom: 10px;
}

article a{
    color: #ffffff;
}

 

article .card_data {
    display: flex;
    margin-top: 10px;
}

article .card_posted_at {
    width: 37%;
    background-color: #555555;
    color:#ffb81d;
    font-size: .9rem;
    padding: 5px; 
    margin-right: 2px;
    border-radius: 3px;
}

article .card_code {
    width: 48%;
    background-color: #555555;
    color:#ffb81d;
    font-size: .9rem;
    padding: 5px; 
    border-radius: 3px;
}

article .card_tumbnail {
    margin-top: 10px;
}

article .card_tumbnail img{
    width: 96%; 
    height: auto;
    border-radius: 5px;
}

article .card_title {
    text-align: center;
    margin-top: 5px;
    padding-bottom: 4px;
    font-size: 16px;
    font-family: 'Barlow', sans-serif;
    font-weight: bold;
    color: #fffffffa;
     
     
}

article .card_resume {
    font-size: 16px !important;
    line-height: 20px;
    text-align: justify;
    margin-bottom: 20px;
    text-align: center;
    background-color: #f9ff6252 !important;
    border-radius: 3px;
    margin: 6px 0px 11px 0px;
    white-space: nowrap;
    color: #000000;
}

article .bg-green {
    background-color: rgba(239, 167, 10, 0.858);
    color: rgb(11, 11, 11);
}

article .widget_boby {
    background-color: #f00cb3;
}

/*  RODAPÉ */
footer{
    background-color: #444343;
    display: flex;
    justify-content: center;
}

.footer_menu{
    display: flex;
    
}

.fm_1, .fm_2, .fm_3 {
    flex: 1;
    padding: 20px;
    color: #efecec;
}

.fm_1 img, .fm_2 img, .fm_3 img{
    width: 100%;
}

.fm_1 {
    background-color: rgba(200, 156, 118, 0.6);
}

.fm_2 {
    background-color: rgb(200, 139, 85, 0.6);
}

.fm_3 {
    background-color: rgb(189, 104, 31, 0.6);
}

.footer_area {
    display: flex;
    color: #efecec;
}

.footer_areaitem{
    flex: 1;
}

footer .widget_title_text {
    color: #c7bfb8;
    font-size: 15px;
}

.footer_copy{
    border-top: 1px solid #555555;
    color: #c7bfb8;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    margin-top: 30px;
}

.ul_footer a{
    color: #c7bfb8;
    font-size: 12px;
}

.a_footer a{
    color: #c7bfb8;
}

/*  */
.fraseMobile{
    display: none;
}

.menuMobile{
    display: none;
    width: 40px;
    height: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 20px;
}

.mm_line {
    height: 3px;
    background-color: #ffffff;
}

.center {
    text-align: center;
}

/* FORMULARIO */
/* usado na tag ul */
.formulario_modal {
    width: 100%;
    background-color: rgb(232, 226, 226);
    padding-top: 10px;
    padding-left: 10px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.formulario_modal input {
    background-color: #f8e4bc;
    font-size: 16px;
    height: 2em;
}

.body_modal {
    padding-left:10px;
}

.formulario {
    padding: 20px;
    background-color: rgb(232, 226, 226);
    margin: 10px;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.formulario h2{
    width: 100%;
}

.formulario li{
    display: block;
    margin-top: 15px;
    width: 100%;
    color: blueviolet;
}

.formulario label {
    color: #000000;
    font-family: 'Barlow', sans-serif;
    font-size: 18px ;
}

.formulario option {
    background-color: #f8e4bc; 
}

.form_input{
   font-size: 16px;
   width: 100%;
}

.formulario select {
    background-color: #f8e4bc;
    font-size: 16px;
}



.formulario input {
    background-color: #f8e4bc;
    font-size: 16px; 
}

.btn-search{
    width: 150px;
    height: 30px;
    background-color:rgba(200, 156, 118, 0.6) !important;
    border-radius: 3px;
    justify-self: end;
}


form {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-content:space-around;
    width: 100%;
    margin-right: 20px; 
}

.check {
    padding: 0;
    justify-content: right;
    background-color: #eb6028;
}

/* Classe de butões */
.btn-green{
    background-color: #21ec32;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-green:hover{
    background-color: #404348;
    color: white;
} 

.btn-brown{
    background-color:rgba(200, 156, 118, 0.6) !important;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-brown:hover{
    background-color: #404348;
    color: white;
} 



.btn-blue{
    background-color: #0c82f0;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-blue:hover{
    background-color: #404348;
    color: white;
} 
.btn-cidades-df{
    background-color: rgba(250, 179, 96, 0.881);
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 2px;
    transition: 0.3s;
} 

.btn-cidades-go{
    background-color: rgba(56, 124, 241, 0.4);
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 2px;
    transition: 0.3s;
} 

.btn-blue:hover{
    background-color: #404348;
    color: white;
} 

.btn-rose{
    background-color: #f00cb3;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-rose:hover{
    background-color: #404348;
    color: white;
} 

.btn-red{
    background-color: #f90606;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-red:hover{
    background-color: #404348;
    color: white;
} 

.btn-light-blue{
    background-color: #06f9e5;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-light-blue:hover{
    background-color: #404348;
    color: white;
} 

.btn-orange{
    background-color: rgb(255 127 127) ;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 2px;
    transition: 0.3s;
} 


.btn-orange:hover{
    background-color: #404348;
    color: white;
} 

.reset{
    background-color: #ffb81d;
    color: black; 
} 

.reset:hover{
    background-color: #eb5e28ff;
    color:  white; 
}

textarea {
    width: 100%;
    height: 15vh;
    background-color: #f8e4bc;
    font-size: 16px;
}

.checked {
    width: 15px;
    height: 15px;
    margin-top: 15px;
}

.fotos{
    padding: 5px;
    margin: 10px;
    max-width: 20%;
    min-width: 90px;
    height: auto; 
    background-color: #c7bfb8;
    align-content: center;
    text-align: center;
}

.video{
    padding: 5px;
    margin: 10px;
    max-width:70%;
    min-width: 90px;
    height: auto; 
    background-color: #c7bfb8;
    align-content: center;
    text-align: center;
}

.fotos img{
    max-width: 100%;
    text-align: center;
}

.fotos input{
    max-width: 100%;
}

#anunciante {
    display: flex;
    justify-content: center;
}

#anunciante section{
    flex: 1;
    padding: 10px;
}

.titulo h1{ 
    font-size: 20px;
    width: 100%;
}

#anunciante aside{
    flex: 1;
    display: flex;
    padding: 10px;
    justify-content: center;
}

  /* GALERIA LIGHBOX2 */
  .content_slide {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .content_slide h3 {
      width: 100%;
  }

  .gallery {
    width: 100%;
    column-count: 4;
    grid-gap: 20px;
    padding-top: 10px;
}

.gallery img {
    max-width: 100%;
    border: 3px solid #c7bfb8;
    border-radius: 3px;
}

.gallery img:hover {
    width: 100%;
    border: 3px solid #f47505;
    border-radius: 3px;
}

/* TEXTOS OCULTOS */
[data-tooltip] {
    position: relative;
    font-weight: bold;
}
  
[data-tooltip]:after {
    display: none;
    position: absolute;
    z-index: 40;
    top: -5px;
    padding: 5px;
    border-radius: 3px;
    left: calc(100% + 5px);
    content: attr(data-tooltip);
    white-space: nowrap;
    background-color: #e8dbcf;
    color: black;
}
  
[data-tooltip]:hover:after {
    display: block;
}

/*MODAL MODAL */
.modal_bg {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99; /* Sit on top */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    display: none;
}
  
.modal {
    position: absolute;
    width: 80%;
    height: auto;
    background-color: white;
    z-index: 100;
    top:50px;
    left:50%;
    margin-left: -40%;
    padding: 10px;
}

#close {
    position: absolute;
    z-index: 101;
    top:50px;
    color: rgb(255, 255, 255);
    margin-left:85%;
    font-size: 28px;
    font-weight: bold;
    padding: 5px;
    background-color: rgb(105, 101, 101);
}

#close:hover, #close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
  
/* CORES FUNDO CIDADES */
/* ASA NORTE */
.cid_1 {
    background-color: #32C800 !important;
}
/* ASA SUL */
.cid_2 {
    background-color: #0cf !important;
}
/* BANDEIRANTE */
.cid_4 {
    background-color: #c93 !important;
}
/* ´ÁGUAS CLARAS */
.cid_3 {
    background-color: #66c !important;
}
/* VALPARAISO */
.cid_21 {
    background-color: #999 !important;
}
/* luziania 19 */
.cid_19 {
    background-color: #099 !important;
}
/* TAGUATINGA */
.cid_16 {
    background-color: #f90 !important;
}
/* vicente pires */
.cid_17 {
    background-color: #9d4f4f !important;
}
/* cid_ceilandia */
.cid_5 {
    background-color: #f9f !important;
}
/* cid_guara */
.cid_7 {
    background-color: #f3f !important;
}
/* cid_riacho */
.cid_6 {
    
    background-color: #cc9 !important;
    margin: 3px;
    font-size: 13px !important;
    margin-top: 9px;
}
/* sudoeste */
.cid_15 {
    background-color: #ff3737 !important;
}
/* SAMAMBAIA */
.cid_11 {
    background-color: #808040 !important;
}
/* sobradinho */
.cid_14 {
    background-color: #9c0 !important;
}
/* riacho-fundo */
.cid_10 {
    background-color: #FF944D !important;
}
/* recanto */
.cid_9 {
    background-color: #F66 !important;
}

/* planaltina 8*/
/* SANTA MARIA 12*/
.cid_8 .cid_12{
    background-color: #CECE00 !important;
}
/* saosebastiao */
.cid_13 {
	background-color: #9D3CFF !important;
}
/* ÁGUAS LINDAS */
.cid_18 {
	background-color: #CC66FF !important;
}


.oculto {
    display: none;
}


@media (max-width:950px) {
    .container {
        width: 100vw;
        padding:5px;
    }

    .search-area input {
        width: 100px;
    }
    
}

/* responsivo para 600px*/
@media (max-width:740px) {
    .container {
        flex-direction: column;
        padding:0;
    }
    .widget_boby li{
        display: block;
        line-height: 22px;
     
        width: 169px;
        
    }
    .gallery{
        column-count: 2 ;
        padding-top: 10px;
        width: 100%;
    }
    .widget{
        padding-left: 5px;
        padding-right: inherit;
        /*padding-top: 11px;*/
    }
    .banner_headline {
       /* padding: 20px;*/
    }
    .banner_headline h1 {
        font-size: 25px;
    }
    .banner_headline h2 {
        font-size: 18px;
    }

    .banner_options {
        height: auto;
        flex-direction: column;
    }

    #geral section {
        padding: 5px;
        
    }
    #geral aside {
        padding: 5px;
    }

    .tabela {
    overflow: hidden;
    overflow-x: scroll;
    width: 98vw;

    }
    .footer_menu {
        flex-direction: column;
    
    }
    .footer_area {
        flex-direction: column;
        padding: 20px;
    }
    
    .footer_copy {
        text-align: center;
        padding-left: 20px;
        height: auto;
    }

    header .container {
        flex-direction: row;
        background-color: #252525;
    }

    nav ul {
        flex-direction: column;
        display: none;
        position: absolute;
        left: 0;
        width: 100%;
        background-color: #c7bfb8;
    }
    
    nav ul ul {
        visibility: hidden;
        position: absolute;
        
    }

    nav ul ul li{ 
        
        width: 100%;
        padding-left: 40px;
        height: 48px;
    }

    nav a {
        color: #0b0000 !important;
    }

 /* fim Sub menu */

    header {
        height: auto;
        background-color: ;
    }

    .logo {
        padding-top: 5px;
        padding-left: 10px;
    }

    .menuMobile{
        display: flex;
        flex-direction: column;
        justify-content: space-around;        
    }
    .fraseMobile{
        display: inline;
    }
    
    .formulario {
        padding: 20px;
        width:48%;
    }

    .search-area input {
        width: 50%;
    }

    .search-area input {
        width: 50%;
        height: 2em;
        margin: 5%;
        background-color: #fff;
    }

    .capa {
        max-width: 130px;
        min-width: 100px;
    }
    article {
        margin-right: 3px;
    }
    article .card_title {
        font-size: 0.8rem;
    }

    article .card_posted_at {
        font-size: .65rem;
    }

    article .card_code {
        font-size: .65em;
    }

}

@media (max-width: 500px) {
    .slider {
        width: 450px;
        height: 450px;
    }

    .search-area input {
        width: 90%;
        height: 2em;
        margin: 5%;
        /* background-color: #efecec; */
    }
    #anunciante section {
        padding: 2px;
    }

    .formulario {
        padding: 2px;
        width:100%;
        margin: 2px;
   
    }
    .formulario label {
        font-size: 15px;
       
    }
    .search label, fieldset {
        font-size: 15px;
        width:100%;
    }
    .formulario select {
        font-size:15px;
    }
    .capa {
        min-width: 100px;
    }
    article .card_posted_at {
        font-size: .70rem;
    }
    .widget_title {
        margin-top: 2px;
        margin-bottom: 2px;
        
    }

    
}

@media (max-width: 450px) {
    .slider {
        width: 350px;
        height: 350px;
    }
    .formulario {
        width: 100%;
    }

    .capa {
        min-width: 90px;
    }

    article .card_title {
        font-size: 0.95rem;
        padding-bottom: 5px;
    }

    article .card_posted_at {
        font-size: .70rem;
    }

    article .card_code {
        font-size: .60em;
    }
    article .card_resume {
        font-size: 14px !important;
        
    }
}

@media (max-width: 400px) {
    article {
        flex: 1;
        margin-right: 0.5rem
    }

    .slider {
        width: 300px;
        height: 300px;
    }

    article .card_title {
        font-size: 0.85rem;
    }

    article .card_posted_at {
        font-size: .55rem;
    }

    article .card_code {
        font-size: .55em;
    }

    .resultSearh {
        overflow:auto; 
    }
    .capa {
        min-width: 85px;
    }
    .widget_boby {
        margin-top: 5px;
}


@media (max-width:350px) {
    .capa {
        min-width: 26%;
    }
    article .card_tumbnail img{
        max-width: 150px; 
        height: auto;
        border-radius: 5px;
    }
    article {
        flex: 1;
        margin-right: 0.2rem;
    }


    article .card_title {
        font-size: 0.65rem;
    }

    article .card_posted_at {
        font-size: .55rem;
    }

    article .card_code {
        font-size: .55em;
    }

}