@charset "UTF-8"; 
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@800&display=swap');
body {
  font-family: "Poppins";
}

:root {
  --cor-preto: #000000;
  --cor-primaria: #101652;
  --cor-secundaria: #830b0f;
  --cor-terciaria: #bd4f53;
  --cor-quartenaria: #e29093;
  --gay-1: #333333;
  --gay-2: #4f4f4f;
  --gay-3: #828282;
  --gay-4: #bdbdbd;
  --gay-5: #e0e0e0;
  --gay-6: #f2f2f2;
  --branco: #ffffff;
  --btnDetalhe:#35363a;
}
body,
html {
  overflow-x: hidden;
  letter-spacing: 1px;
}
h1,
.h1 {
  font-size: 4.23076923em;
  line-height: 1.09090909em;
  margin-top: 0.21818182em;
  margin-bottom: 0.43636364em;
}
h2,
.h2 {
  font-size: 2.61538462em;
  line-height: 1.05882353em;
  margin-top: 0.35294118em;
  margin-bottom: 0.35294118em;
}
h3,
.h3 {
  font-size: 1.61538462em;
  line-height: 1.14285714em;
  margin-top: 0.57142857em;
  margin-bottom: 0em;
}
h4,
.h4 {
  font-size: 1.3em;
  line-height: 1.84615385em;
  margin-top: 0.92307692em;
  margin-bottom: 0em;
}
h5,
.h5 {
  font-size: 1em;
  line-height: 1.84615385em;
  margin-top: 0.92307692em;
  margin-bottom: 0em;
}
p,
ul,
ol,
pre,
table,
blockquote {
  margin-top: 0em;
  margin-bottom: 0.92307692em;
}
ul ul,
ol ol,
ul ol,
ol ul {
  margin-top: 0em;
  margin-bottom: 0em;
}
ul li {
  margin: 0rem;
  padding:0rem;
}

.border-0 {
  border: none;
}
.bg-white {
  background: var(--branco);
}
.bg-primary {
  background: var(--cor-primaria);
}
.bg-dark {
  background: var(--cor-preto);
}
.bg-light {
  background: var(--gay-6);
}
.bg-gray-3 {
  background-color: var(--gay-3);
}
.btn__gray-3 {
  background-color: var(--gay-3);
}
.btn__gray-3 :hover,
.btn__gray-3 :focus,
.btn__gray-3 :active {
  background-color: var(--gay-3);
}

.btn__outline {
  background-color: transparent;
  border: 1px solid var(--cor-preto);
  color: var(--cor-preto);
}
.btn__outline:hover,
.btn__outline:focus,
.btn__outline:active {
  border: 1px solid var(--cor-preto);
  background: var(--cor-preto);
  color: var(--branco);
}

.btn__dark {
  background: var(--cor-preto);
}
.btn__dark:hover,
.btn__dark:focus,
.btn__dark:active {
  background: var(--cor-preto);
  opacity: 0.8;
}

.btn__primary {
  background: var(--cor-primaria);
}
.btn__primary:hover,
.btn__primary:focus,
.btn__primary:active {
  background: var(--cor-primaria);
  opacity: 0.8;
}

.text-primary {
  color: var(--cor-primaria);
}
.text-primary:hover,
.text-primary:focus,
.text-primary:active {
  color: var(--cor-primaria);
  text-decoration: none;
}
.text-white {
  color: var(--branco);
}
.text-white:hover,
.text-white:focus,
.text-white:active {
  color: var(--branco);
  text-decoration: none;
}

.text-dark {
  color:var(--cor-preto);
}
/* text decoration*/
.text-dark:hover,
.text-dark:focus,
.text-dark:active {
  text-decoration: none;
}

.text-light {
  color: var(--gay-3);
}
.text-light:hover,
.text-light:focus,
.text-light:active {
  color: var(--gay-3);
  text-decoration: none;
}

.text-red {
  color: var(--cor-primaria);
}
.text-red:hover,
.text-red:focus,
.text-red:active {
  color: var(--cor-primaria);
  text-decoration: none;
}
.rounded {
  border-radius: 5px;
}
.rounded-top {
  border-radius: 5px 5px 0 0px;
}
.rounded-bottom {
  border-radius: 0px 0px 5px 5px;
}
.rounded-right {
  border-radius: 0px 5px 5px 0px;
}
.rounded-left {
  border-radius: 5px 0px 0px 5px;
}
.rounded-circle {
  border-radius: 50%;
}
.rounded-pill {
  border-radius: 30px;
}

.p-0 {
  padding: 0;
}
.pl-0 {
  padding-left: 0;
}
.pr-0 {
  padding-right: 0;
}
.pt-0 {
  padding-top: 0;
}
.pb-0 {
  padding-bottom: 0;
}

.p-1 {
  padding: 0.25rem;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pr-1 {
  padding-right: 0.25rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}

.p-3 {
  padding: 1rem;
}
.pl-3 {
  padding-left: 1rem;
}
.pr-3 {
  padding-right: 1rem;
}
.pt-3 {
  padding-top: 1rem;
}
.pb-3 {
  padding-bottom: 1rem;
}

.p-4 {
  padding: 1.5rem;
}
.pl-4 {
  padding-left: 1.5rem;
}
.pr-4 {
  padding-right: 1.5rem;
}
.pt-4 {
  padding-top: 1.5rem;
}
.pb-4 {
  padding-bottom: 1.5rem;
}

.p-5 {
  padding: 3rem;
}
.pl-5 {
  padding-left: 3rem;
}
.pr-5 {
  padding-right: 3rem;
}
.pt-5 {
  padding-top: 3rem;
}
.pb-5 {
  padding-bottom: 3rem;
}

.m-0 {
  margin: 0;
}
.ml-0 {
  margin-left: 0;
}
.mr-0 {
  margin-right: 0;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}

.m-1 {
  margin: 0.25rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}

.m-3 {
  margin: 1rem;
}
.ml-3 {
  margin-left: 1rem;
}
.mr-3 {
  margin-right: 1rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mb-3 {
  margin-bottom: 1rem;
}

.m-4 {
  margin: 1.5rem;
}
.ml-4 {
  margin-left: 1.5rem;
}
.mr-4 {
  margin-right: 1.5rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}

.m-5 {
  margin: 3rem;
}
.ml-5 {
  margin-left: 3rem;
}
.mr-5 {
  margin-right: 3rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.w-100 {
  width: 100%;
}
.w-50 {
  width: 50%;
}
.shadow-xs {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.shadow-outline {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}
.shadow-none {
  box-shadow: none;
}

.bold {
  font-weight: 600;

}

/*global modal*/
.modal-backdrop {
  background-color: var(--cor-preto) !important;
}
.modal-backdrop.in {
  opacity: 0.9;
}

.modal-content {
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
}

.categoria-modal:hover,
.categoria-modal:focus {
  color: #101010 !important;
  text-decoration: none !important;
}

.whatsapp-modal a i {
  color: #27ae60;
  text-decoration: none;
}

.whatsapp-modal a i:hover,
.whatsapp-modal a i:focus {
  color: #27ae60;
  text-decoration: none;
}

.tabela-whatsapp a {
  font-size: 2em;
  color: #000000;
}

.tabela-whatsapp a:hover,
.tabela-whatsapp a:focus {
  font-size: 2em;
  color: #000000;
  text-decoration: none;
}

.tabela-whatsapp a .icon-w {
  color: #27ae60;
}

.categoria-modal {
  color: #101010 !important;
  text-decoration: none !important;
}
.categoria-modal:hover,
.categoria-modal:focus {
  color: #101010 !important;
  text-decoration: none !important;
  
}

/*cabeçalho*/
#cabecalho {
  background-color: #ebd363;
  padding: 0px 0px;
  color:black;
}

#cabecalho-flex { 
  display: flex;
  justify-content:space-between;
  align-items: center;
  font-size: 13px;  
}
#div-nav-contato {
  display: flex;
  flex-wrap: wrap;
}
#modal-corpo {
  color: white;
  background-color: #000000;
}

.admin__btn {
  color: #fff;
  text-decoration: none;
}
.icon-header a {
  color: white;
  margin: 0px 4px;
}
.admin__btn:hover,
.admin__btn:active,
.admin__btn:focus {
  color: #fff;
  text-decoration: none;
}
/* Navegação */
.nav>li>a {
    color: white;
    padding: 23px 8px;
    font-size: 15px;
    transition: all 0.4s;
}

.navegacao {
  background-color: black;
  border-radius: 0;
  margin-bottom: 0;
  padding:10px 0px;
}

.navegacao-logo-imagem {
  position: absolute;
  top: -106px;
  width: 250px;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 1px;
}

.navegacao-hamburguer {
  border: transparent;
  border-radius: 0;
  margin-right: 0px;
}

.navegacao-hamburguer-icone {
  background-color: white;
}
#hamburguer-item {
  display: flex; 
  justify-content: center; 
  margin-top: 68px;
  width:100vw;
  background-color: black;
}


.navegacao-link:focus,
.navegacao-link:hover,
.ativo {
  background-color: transparent !important;
  opacity: 1;
  color: white;

}

.input-group-btn {
  position: relative;
  left: 8px;
  font-size: 0;
  white-space: nowrap;
}

.input-group .form-control {
  position: relative;
  top: 0px;
  left: 0px;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}



#navegacao-div {
  padding: 1% 0px;
}
/*busca rapida*/
.input-busca {
  background-color: transparent ;
  color: var(--cor-preto);
  border-bottom: 1px solid black;
}
#lupa {
   background-color: transparent;
    color: black;
    font-size: 19px;
}

/* Busca */

.busca-r{
  position: relative;
  bottom: 6px;
}

#row-busca {
  display: flex;
  justify-content: center;
  background-color: white;
  padding: 25px;
}
.btn__filtrar {
  width: 50%;
}
.busca-titulo {
  margin-bottom: 18px;
  color: white;
  font-size: 18px;
  text-align: left;
}

#div-busca {
  float: right;
}

.busca-botao {
    background-color: #ebd363;
    border-color: #ebd363;
    color: black;
    transition: all 0.4s;
    font-size: 21px;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: none;
}

.busca-botao:focus,
.busca-botao:hover,
.busca-botao:active {
  background-color: #ebd363;
  border-color: #ebd363;
  color: black;
  opacity: 0.9;
  border: none;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    border:none!important;
    outline: thin dotted;
    outline: 0px auto -webkit-focus-ring-color;
    outline-offset: 0px;
}



.div-busca {
  background-color: white;
  width: 100%;
}

#amount {
  width: 155px;
  margin: 5px 35px;
}
/* Destaques */
#destaques {
  background-color: #fff;
}

.destaque-titulo {
  margin-top: 60px;
  font-weight: bold;
  font-size: 20px;
  color: #000000;
}

.destaque {
  margin: 1px 0;
  transition: all 0.4s;
  padding: 0px 1px;
}

.destaque:focus .destaque-botao,
.destaque:hover .destaque-botao {
  display: block;
}

.destaque-a:focus,
.destaque-a:hover {
  text-decoration: none;
}

.destaque-imagem {
  height: 230px;
}

.destaque-botao {
  display: none;
  position: relative;
  top: 90px;
  background-color: #006ce7;
  border-color: #006ce7;
  border-radius: 0;
  color: #fff;
}

.destaque-botao:focus,
.destaque-botao:hover {
  color: #fff;
}

.saiba__mais__destaque {
  background-color: #e62d27;
  color: #ffffff;
  padding: 5px 10px;
  text-align: center;
  font-weight: bold;
  width: 50%;
}
#link__destaque:hover,
#link__destaque:active,
#link__destaque:focus {
  color: black;
  outline: none;
  outline-style: none;
  text-decoration: none;
  list-style: none;
}
.destaque-nome {
  margin-top: 0px;
  color: var(--branco);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0px 15px;
}

.destaque-informacoes {
  color: #888888;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 15px;
  font-weight: bold;
}
.destaque-descricao {
  background-color: white;
  height: 110px;
  margin-bottom: 40px;
  padding: 0px;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  bottom: 3px;
}

.destaque-dados {
  display: flex;
  flex-direction:row;
  justify-content:center;

  padding: 0px 18px;
  color: var(--branco);
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height:17px;
}

.destaque-versao {
  font-size: 14px;
  color: var(--branco);
  text-align: center;
  padding: 0px 16px;
  height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.destaque-versao p {
  height: 20px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.destaque-preco {
  padding: 0;
}

.pipe {
  border-left: 2px solid #6b6b6b;
  border-right: 2px solid #6b6b6b;
  padding: 0px 25px;
}

.destaque-preco-p {
  color: #000000;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 22px;
}

.destaque__detalhes {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  z-index: 100;
}
.destaque__detalhes .dropdown-menu {
  min-width: 50px;
  text-align: center;
}
.email__detalhes {
  padding: 4px 7px;
  border-radius: 50px;
  color: var(--branco);
}

.email__detalhes:hover {
  color:#eeac32;
}

.link__detalhes {
  margin: 0;
  color: #39383d;
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 0px 12px;
  text-decoration: none;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.link__detalhes:hover,
.link__detalhes:focus {
  text-decoration: none;
}
/*buttons   */
.estoque-filtro {
  display: flex;
  justify-content: center;
  align-items: center;
}

#div-btn-estoque {
  display: flex;
  justify-content:center;
}
#div-btn-filtro-estoque{
  display: flex;
  justify-content:flex-end;
}
#btn-estoque {
  width: 100%;
    margin: 12px 0px;
    padding: 7px;
    background: #ebd363;
    text-align: center;
    font-size: 19px;
    border: transparent;
    transition: 0.1s;
    border: 1px solid #ebd363;
    font-weight: 900;
    color: black;
    border-radius: 25px;
}

#btn-estoque:hover {
  opacity: 0.6;
}

/* Mapa */
.mapa-titulo {
  margin-top: 40px;
  font-weight: 700;
  color: #333;
  font-size: 40px;
}

.mapa-subtitulo {
  margin-top: 30px;
  margin-bottom: 40px;
  color: #666;
  font-size: 16px;
}

/* Info */
.info {
  background-color: var(--branco);
  margin-bottom: 1%;
}


h4.info-texto {
  margin-bottom: 7px;
}

.info-texto,
.info-link {
  color: #ffffff;
}

.info-link:focus,
.info-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.info-links > .info-link {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
}

.info-links > .info-link:first-child {
  padding-top: 0;
}

.info-social > .info-link,
.info-social > .info-link {
  font-size: 2.5em;
  text-decoration: none;
}

.info-social > .info-link:focus,
.info-social > .info-link:hover {
  text-decoration: none;
}

.info-social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.container-rodape-span{
  background-color: black;
  padding: 14px 0px;
}

.saiba-mais {
  margin-top: 20px;
}

/* Rodapé */
#rodape {
  padding: 10px 0px;
  background-color: white;
  color: black;
}


#rodope-infos {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 6px;
  
}


.rodape-texto {
  color: white;
  font-size: 12px;
  margin-top: 6px;
}

#rodape-span {
  display: flex;
  justify-content:space-between;
}

.rodape-icons {
  display: flex;
  justify-content: flex-end;
  padding-right: 130px;
}
.icon-rodape{
  margin-left: 10px;
  margin: 1px 15px;
}
.icon-rodape a {
  text-decoration: none;
  outline: none;
  color: #fff;
}

.carousel {
  position: relative;
  bottom: 3px;
}

.litoralcar {
  margin-top: -10px;
}

/*voltar ao topo desktop */
.rodape-topo {
  display: flex;
  justify-content: flex-end;
  padding-right: 4%;
}
.rodape-nav .lista-rodape  {
  list-style: none;
  
}
.lista-rodape a {
  text-decoration: none;
  color: var(--gay-1);
}
.topo {
  position: static;
  display: none;
  font-size: 16px;
  color: var(--gay-1)!important;
  text-decoration: none !important;
}
.topo:hover {
  text-decoration: none !important;
  color: white;
}

#col-topo {
  color: #8f9092;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 35px;
  border: 2px solid var(--gay-1);
  border-radius: 50%;
}

/*voltar ao topo mobile */
.topo2 {
  position: static;
  font-size: 20px;
  color:var(--gay-1) !important;
  text-decoration: none !important;
  border-radius: 50%;
  padding: 2px 10px;
  border:2px solid var(--gay-1);  


}
.topo2:hover {
  text-decoration: none !important;
  color: #ffffff !important;
}

/* Includes */
.panel-primary,
.panel-heading {
  background: #006ce7 !important;
  border: 1px solid #006ce7 !important;
}

/* Página do veículo */
.pg-veiculo,
.pg-veiculo #info {
  margin-top: 50px;
}

.pg-veiculo .apenas-celular {
  margin-top: 10px;
  padding: 0;
}

.pg-veiculo .titulo-pagina {
  color: #111;
  font-size: 24px;
  font-weight: 700;
  border-left: 4px solid #006ce7;
  position: relative;
  left: -15px;
  padding-left: 10px;
  text-transform: uppercase;
}

.pg-veiculo .versao-veiculo {
  color: #444;
  font-weight: 700;
  text-transform: uppercase;
}

.pg-veiculo .separar-valor {
  margin-top: 2px;
  margin-bottom: 2px;
  border-color: #eee;
}

.pg-veiculo .valor-veiculo,
.pg-veiculo .valor_carro_opcao {
  background-color: #006ce7;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.pg-veiculo .valor_carro_opcao {
  display: inline-block;
  font-size: 1.1em;
}

.pg-veiculo .cidade {
  font-weight: 700;
  padding-left: 0 !important;
}

.pg-veiculo .global-endereco {
  padding-left: 13px;
}

.pg-veiculo .telefones-titulo {
  margin-top: 10px;
  font-weight: 900;
}

.pg-veiculo .global-telefone a {
  color: #333 !important;
}

.pg-veiculo #proposta input,
.pg-veiculo #proposta textarea,
.pg-veiculo #proposta_xs input,
.pg-veiculo #proposta_xs textarea {
  border-radius: 0px;
}

.pg-veiculo .enviar_proposta {
  background-color: #006ce7;
  border-color: #006ce7;
}

.pg-veiculo .enviar_proposta:focus,
.pg-veiculo .enviar_proposta:hover {
  background-color: #006ce7;
  border-color: #006ce7;
  opacity: 0.8;
}

.pg-veiculo .selecionar-info-span {
  background-color: #006ce7;
  border: 1px solid #006ce7;
  display: inline-block;
  float: left;
  width: 33.3333%;
  text-align: center;
  color: #fff;
  margin-top: 15px;
  padding: 5px;
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.5s;
}

.pg-veiculo .selecionar-info-span:focus,
.pg-veiculo .selecionar-info-span:hover,
.pg-veiculo .info-ativo {
  background-color: #006ce7;
  border-color: #006ce7;
  opacity: 0.8;
}

.pg-veiculo .glyphicon-ok {
  color: #006ce7;
}

.pg-veiculo #abrir-opcionais {
  border-right-width: 0;
}

.pg-veiculo .opcionais,
.pg-veiculo .observacoes,
.pg-veiculo .mapa {
  border: 1px solid #eee;
}
.rodape-infos{
  display: flex;
  justify-content:center;
  align-items: center;
}
.info-texto {
  color: #585656;
}
.pg-veiculo .opcionais h3,
.pg-veiculo .observacoes h3,
.pg-veiculo .mapa h3 {
  position: relative;
  left: -15px;
  padding-left: 10px;
  border-left: 4px solid #006ce7;
  margin-bottom: 20px;
}

.pg-veiculo .observacoes,
.pg-veiculo .mapa {
  display: none;
}

.pg-veiculo .div-opcoes {
  padding: 0;
}

.pg-veiculo .div-compartilhe {
  margin: 15px 0;
  border: 1px solid #eee;
}

.pg-veiculo .icone-obs {
  padding-right: 5px;
}

/* Ficha de cadastro */
.pg-ficha .panel-primary,
.pg-ficha .panel-heading {
  background: #006ce7 !important;
  border: 1px solid #006ce7 !important;
}
@media screen and (min-width:250px) and (max-width:575px){
  .navegacao {
    padding: 2px 0px;
  }
  .navegacao-logo-imagem {
    left: 50%;
    transform: translateX(-50%);
    top:-90px;
    position: absolute;
    margin:0px;

  }

  #menu {
    width: 100%;
    text-align: center;
    padding: 0px;
  }
  .navegacao-lista {
    margin: 0px;
    padding: 0px;
  }
  .nav .navegacao-link  {
    font-size: 20px !important;
    padding: 5px;

  }
  #container-destaque .row {
    margin:0px;
  }
  .titulo-destaque {
    font-size: 7px;
  }
  .insta-dados {
    font-size: 8px;
  }
  
  
  .selecionar-info-span {
    font-size: 0.8em;
  }

  #rodape-span {
    margin-bottom: 29px;
    padding: 2px 0px;
}
.rodape-texto {
  font-size: 5px;
}

  #navegacao-div {
    padding: 0px;
    margin: 0px; 
  }
  .container {
    padding: 0px;
  }
  #col-fone {
    margin: 10px 0px;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .navegacao {
    padding:3px 0px ;
  }
  .navegacao-logo-imagem {
    position: absolute;
    top: -90;
    left: 50%;
    transform: translateX(-50%);
    margin: 0px;
  }
  .container {
    padding: 0px;
  }
  #menu {
    width: 100%;
    text-align: center;
    padding: 0px;
  }
  .navegacao-lista {
    margin: 0px;
    padding: 0px;
  }
  .nav .navegacao-link  {
    font-size: 20px !important;
    padding: 5px;

  }
  #navegacao-div {
    padding: 0px;
    margin: 0px;
  }
  
  /* Destaques */
  .titulo-destaque {
    font-size: 10px;
  }
  .destaque {
    width: 50%;
  }
  
  .destaque-imagem {
    height: 160px;
  }
  #container-social {
    display: flex;
    justify-content: space-evenly;
    padding: 5% 4%;
  }
  
  #rodape {
    padding: 30px 0px;
  }
   #rodape-span{
     
     margin-bottom: 22px;
   }
  
   .rodape-nav {
    display: none;
  }
 
  #col-fone {
    margin: 10px 0px;
  }
}
@media screen and (max-width: 768px) {
  .acima-div-compartilhe {
    margin: 15px 0;
    border: 1px solid #eee;
  }

  
  
  .destaques{
    padding: 0% 3%;
  }

  .icon-rodape{
    display: none;
  }

  .div-compartilhe {
    border-width: 0;
  }

  #img-mobile {
    display: flex;    
    width: 100%;
    
  }
  #menu {
    padding: 5px 0px;
  }
  .navegacao-lista {
    margin: 0px;
  }
   .nav .navegacao-link {
     font-size: 9px;
     font-weight: normal;
   }
  #cabecalho-flex {
    justify-content: space-around;
  }
  .navegacao-logo-imagem {
    width: 100%;
    position: absolute;
    margin: 0px;

  }
  .navegacao {
    border: none;
  }
  .navagacao-lista {
    margin-top: 18px;
  }
  .btn__filtrar {
    width: 100%;
}
  .pg__veiculo {
    margin: 0px 10px;
  }
  
  .insta-dados h3, h4{
    font-size: 9px;
  }
  #col-fone {
    margin: 10px 0px;
  }
  .rodape-nav {
    display: none;
  }
}

/*tela lg */
@media screen and (min-width: 769px) and (max-width: 991px) {
  #navegacao-div{
    padding: 0% 0%;
  }
  .navegacao-logo-imagem {
    left: 0%;
    position: absolute;
    top: -85px;
  }
  .nav>li>a {
    font-size: 12px;
    margin-top: 31px;
  }
 #menu{
   padding: 16px 0px;
 }
  .navegacao-link a{
    font-size: 7px;
    padding: 2px 3px;
  }
  .navegacao-lista {
    margin-right:2% ;
  }
  .titulo-busca {
    font-size: 21px;
    color: #333333;
  }
  .insta-dados {
    font-size: 10px;
  }
  .rodape-texto {
    font-size: 14px;
}

#col-fone {
  margin: 10px 0px;
}
.rodape-nav {
  display: none;
}
}

@media screen and  (max-width: 991px) {
  #div-nav-contato p, span {
    font-size: 10px;
  }
  #rodape-infos {
    display: block;
    text-align: center;
  }

  .cont-email{
    font-size: 9px;
  }

  .info-social {
    text-align: center;
  }

  .margem-mobile {
    margin-top: 20px;
  }
 .insta-dados {
   display: flex;
   flex-direction: column;
   justify-content: flex-end;

 }
  #rodape-span {
    display: block;
    text-align: center;
  }

  #rodape {
    /*background-color: #35363A;*/
    border: none;
    flex-direction: column;
    text-align: center;
  }
 .info-texto {
   font-size: 15px;
 }

 .input-busca-topo{
  display: none;
}
  
}
/*tela lg */
@media screen and (min-width: 991px) and (max-width: 1199px) {
  .nav>li>a{
    font-size: 14px;
  }

  .input-busca-topo{
    display: none;
  }

 
  .nav {
    flex-direction:column;
  }
  #div-nav-contato{
    margin-left: 0%;
    font-size: 8px;
  }
  .navegacao {
    padding: 12px 0px;
  }
  .navegacao-logo-imagem {
    position: absolute;
    top: -100px;
    margin-left: 1%;
  }
  .rodape-texto {
    color:white;
    font-size: 10px;
    margin-top: 5px;
}
#col-fone{
  display:none;
}
}
