@charset "UTF-8";

body {
  font-family: "Poppins";
}

:root {
  --cor-preto: #000;
  --cor-primaria: #e62626;
  --cor-secundaria: #bd1e1e;
  --cor-terciaria: #e45454;
  --cor-quartenaria: #e67b7b;
  --gay-1: #333333;
  --gay-2: #4f4f4f;
  --gay-3: #828282;
  --gay-4: #bdbdbd;
  --gay-5: #e0e0e0;
  --gay-6: #f2f2f2;
  --branco: #ffffff;
}
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;
}
.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(--gay-1);
}
.text-dark:hover,
.text-dark:focus,
.text-dark:active {
  color: var(--gay-1);
  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*/
/*cabeçalho*/
#cabecalho {
  background-color: #000000;
  padding: 65px 0px;
}

#cabecalho-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.div__cabecalho {
  display: flex;
  flex-direction: column;
}

#topo__cabecalho {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
}

.titulo_linha {
  width: fit-content;
  font-size: 18px;
  font-weight: bold;
  color: var(--branco);
}

.linha_personalizada {
  height: 3px;
  background-color: #efcb57;
  border: none;
  margin-top: 5px;
  margin-bottom: 15px;
}

/* Navegação */
.navegacao {
  background-color: var(--cor-primaria);
  border-radius: 0;
  margin-bottom: 0;
}

.navegacao-logo {
  width: 200px;
}

.navegacao-logo-imagem {
  position: absolute;
  top: 10px;
  width: 170px;
}

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

.header-flex {
  width: 100%;
}

.navegacao-hamburguer-icone {
  background-color: var(--branco);
}

.navegacao-lista {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.navegacao-link {
  color: var(--branco);
  font-weight: 700;
  transition: all 0.4s;
  opacity: 0.8;
  font-size: 16px;
  text-transform: uppercase;
}

.navegacao-link:focus,
.navegacao-link:hover,
.ativo {
  background: transparent !important;
  color: var(--branco);
  opacity: 1;
}

#topo__busca {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  font-weight: bold;
  text-transform: uppercase;
  height: 34px;
}

#navegacao-div {
  padding: 24px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-informacoes {
  display: flex;
  align-items: flex-start;
}

#input__topo {
  border-radius: 0px 5px 5px 0px;
  border: 1px solid #000000;
  border-left: none;
  height: 34px;
}

#input__topo:focus {
  box-shadow: none;
}

.info__topo {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.info__topo svg {
  color: #e6a627;
}

.info__topo span hr {
  height: 3px;
  background-color: #e6a627;
  border: none;
  margin: 5px 0px 5px 22px;
  width: 75%;
}

/* Busca */
#pesquisa-avancada {
  background-color: var(--branco);
}

#div-busca {
  float: right;
}

.busca-botao {
  background-color: var(--cor-primaria);
  border-color: var(--cor-primaria);
  color: #ffffff;
  font-weight: bold;
  transition: all 0.4s;
}

.busca-botao:focus,
.busca-botao:hover {
  background-color: var(--cor-secundaria);
  border-color: var(--cor-secundaria);
  color: #ffffff;
  opacity: 0.8;
}

.titulo-busca {
  font-weight: 700;
  font-size: 22px;
  color: var(--cor-preto);
  margin: 0px 0px 10px 0px;
  text-align: center;
}

/*titulo personalizado*/
.titulo-destaque {
  margin: 50px 0px;
}

.titulo__personalizado {
  font-size: 25px;
  margin: 0px;
  color: #000000;
  font-weight: bold;
}

.linha__personalizado {
  width: 45px;
  background-color: #e6a627;
  margin: 0px auto 0px 0px;
  height: 4px;
  border: none;
}

/*botão estoque destaque topo*/
#btn__estoque-destaque {
  border: 1px solid #e6a627;
  color: #ffffff;
  text-transform: uppercase;
  transition: 0.8s;
  background-color: #e6a627;
  font-weight: bold;
}

#btn__estoque-destaque:hover {
  opacity: 0.8;
}

/* Destaques */
.destaque__section {
  background-color: var(--cor-preto);
}


#destaques {
  background-color: #fff;
}

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

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

.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: #e6a627;
  color: #ffffff;
  padding: 5px 10px;
  text-align: center;
  font-weight: bold;
  width: 50%;
}

.destaque-nome {
  margin-top: 10px;
  background-color: #fff;
  color: #666666;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0px 10px;
  margin-bottom: 10px;
}

.destaque-informacoes {
  color: #888888;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 15px;
  font-weight: bold;
}

.destaque-dados {
  padding: 0px 10px;
  background-color: #fff;
  color: #666;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 20px;
}

.destaque-versao {
  font-size: 14px;
  color: #666;
  padding: 0px 10px;
  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: 10px;
  z-index: 100;
}

.email__detalhes {
  border: 1px solid #e62727;
  padding: 4px 7px;
  border-radius: 50px;
  color: #e62727;
}

.email__detalhes:hover {
  color: #e62727;
}

.link__detalhes {
  margin: 0;
  background-color: var(--cor-primaria);
  color: #ffffff;
  text-align: center;
  width: 80%;
  padding: 5px 0px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.4s;
}

.link__detalhes:hover,
.link__detalhes:focus {
  background-color: var(--cor-secundaria);
  color: #ffffff;
  text-decoration: none;
}

#div-btn-estoque {
  display: flex;
  justify-content: center;
}

#btn-estoque {
  width: 100%;
  margin: 10px 0px;
  padding: 7px;
  background: var(--branco);
  color: var(--cor-preto);
  text-align: center;
  font-size: 22px;
  border: transparent;
  transition: 0.5s;
  font-weight: bold;
}

#btn-estoque:hover {
  transition: 0.2s;
  background-color: var(--cor-primaria);
  color: var(--branco);
}

/* Mapa */
.mapa__div{
  background-color: var(--cor-preto);
}
.mapa-titulo {
  margin-top: 40px;
  font-weight: 700;
  font-size: 40px;
}

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

/* Info */
.info {
  background-color: var(--cor-preto);
}

span.info-texto,
p.info-texto {
  opacity: 0.9;
}

.info-texto,
.info-link {
  color: var(--branco);
}

h4.info-texto {
  margin-bottom: 10px;
  font-size: 16px;
}

.info-link:focus,
.info-link:hover {
  color: var(--branco);
  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;
}

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

/* Rodapé */
#rodape {
  padding: 8px 0px;
  background-color: var(--cor-primaria);
  color: #ffffff;
  border-top: 2px solid var(--cor-primaria);
}

#rodape-infos {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 5px;
}

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

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

/*voltar ao topo desktop */
.topo {
  position: static;
  color: #e6a627 !important;
  text-decoration: none !important;
  display: inline;
  background-color: #4b4b4b;
  padding: 5px 10px;
  border-radius: 35px;
  font-size: 16px;
}
.topo:hover {
  text-decoration: none !important;
  color: #e6a627;
}

/*voltar ao topo mobile */
.topo2 {
  position: static;
  display: none;
  font-size: 16px;
  color: #e6a627 !important;
  text-decoration: none !important;
}
.topo2:hover {
  text-decoration: none !important;
  color: #e6a627 !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;
}

.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 (max-width: 575px) {
  .selecionar-info-span {
    font-size: 0.8em;
  }

  #rodape-span {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  .acima-div-compartilhe {
    margin: 15px 0;
    border: 1px solid #eee;
  }

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

  #img-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .navegacao-logo-imagem {
    position: static;
  }

  #navegacao-div {
    padding: 0px;
    justify-content: center;
  }

  #cabecalho-flex {
    align-items: end;
  }

  #img-mobile {
    margin-bottom: 85px;
  }

  #lupa-pesquisar {
    margin-top: 10px;
  }

  .navegacao-lista {
    display: block;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  /* Destaques */
  .destaque {
    width: 50%;
  }

  .destaque-imagem {
    height: 160px;
  }

  #rodape-span {
    margin-bottom: 35px;
  }

  .header-flex {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 991px) {
  #rodape-infos {
    display: block;
    text-align: center;
  }

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

  .margem-mobile {
    margin-top: 20px;
  }

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

  h4.info-texto {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .div__email {
    margin-bottom: 10px;
  }
}

/*tela lg */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .navegacao-link {
    font-size: 13px;
  }

  .nav > li > a {
    padding-left: 7px;
    padding-right: 7px;
  }
}

/*tela lg */
@media screen and (min-width: 991.99px) and (max-width: 1199px) {
  h4.info-texto {
    font-size: 13px;
  }
}
