body {
  font-family: Lato, sans-serif;
  color: #00548b;
  font-size: 16px;
  line-height: 20px;
}

h2 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

p {
  margin-bottom: 10px;
}

a {
  padding: 0px;
  color: #333;
  text-decoration: none;
}

.div-25 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.div-25.inline-block {
  display: inline-block;
}

.div-25.alinhamento-vertical-centro {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.div-25.alinhamento-direita {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.div-25.alinhamento-centralizado {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.imagem-produto {
  display: block;
  width: 100%;
  background-color: #fff;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.div-produto {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 5px 5px 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #c8e339;
  border-radius: 5px;
  background-color: #00548b;
  -webkit-transition: all 350ms ease, -webkit-transform 200ms ease;
  transition: all 350ms ease, -webkit-transform 200ms ease;
  transition: transform 200ms ease, all 350ms ease;
  transition: transform 200ms ease, all 350ms ease, -webkit-transform 200ms ease;
  background-clip: border-box;
}

.div-produto:hover {
  z-index: 10;
  box-shadow: 0 5px 30px 0 rgba(10, 40, 30, 0.1);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.div-produto.bloco-blog {
  background-color: #f3f3f3;
}

.preco-produto {
  margin-bottom: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1.6em;
}

.div-produto-texto {
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
}

.div-produto-texto.alinhamento--esquerdo {
  padding-top: 10px;
  color: #fff;
  text-align: left;
}

.bloco-simulador-2 {
  position: absolute;
  left: -1px;
  top: -1px;
  right: 0%;
  bottom: 0%;
  z-index: 50;
  display: block;
  width: 101%;
  height: 101%;
  padding: 20px 15px;
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: #0038a8;
}

.opcao-simulador {
  width: 32%;
  margin-bottom: 15px;
  padding: 6px 0px 4px;
  border-style: solid;
  border-width: 1px;
  border-color: #f9dd16;
  border-radius: 5px;
  background-color: transparent;
  -webkit-transition: color 200ms ease, background-color 200ms ease;
  transition: color 200ms ease, background-color 200ms ease;
  color: #f9dd16;
  text-align: center;
}

.opcao-simulador:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.opcao-simulador.w--current {
  background-color: #27b99e;
  color: #fff;
}

.opcao-simulador.email {
  width: 31%;
  margin-right: 2%;
  margin-left: 2%;
}

.icone-simulador {
  display: block;
  margin-bottom: 5px;
  font-size: 24px;
}

.input {
  display: inline-block;
  height: auto;
  margin-bottom: 0px;
  padding: 5px 5px 0px;
  border-style: none none solid;
  border-width: 1px;
  border-color: #000 #000 #01a6a4;
  background-color: transparent;
  font-size: 1em;
}

.input:focus {
  border-bottom-color: #f9dd16;
}

.input::-webkit-input-placeholder {
  color: transparent;
}

.input:-ms-input-placeholder {
  color: transparent;
}

.input::-ms-input-placeholder {
  color: transparent;
}

.input::placeholder {
  color: transparent;
}

.input.input-margem-topo {
  margin-top: 5px;
}

.input.text-area {
  min-height: 80px;
}

.icone-input-form {
  display: inline-block;
  width: 35px;
  height: 35px;
  padding-top: 8px;
  border-radius: 100px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00548b), to(#00548b));
  background-image: linear-gradient(180deg, #00548b, #00548b);
  -webkit-transform: translate(-5px, 0px);
  -ms-transform: translate(-5px, 0px);
  transform: translate(-5px, 0px);
  font-family: Fontawesome, sans-serif;
  color: #c8e339;
  font-size: 20px;
  text-align: center;
}

.icone-input-form.valor {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00548b), to(#00548b));
  background-image: linear-gradient(180deg, #00548b, #00548b);
  box-shadow: 1px 1px 10px 0 rgba(0, 56, 168, 0.6);
}

.titulo-pagina {
  color: #00548b;
}

.menu-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.div-block-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 15%;
  margin-right: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.secao-base {
  position: relative;
  padding: 50px 5vw 60px;
}

.secao-base.gradiente {
  background-image: linear-gradient(180deg, rgba(51, 51, 51, 0.25), rgba(51, 51, 51, 0.25)), linear-gradient(25deg, #01a6a4, #fff);
  color: #fff;
}

.secao-base.gradiente.fonte-cor-2 {
  background-image: linear-gradient(86deg, #97bf1a, #01818f);
}

.secao-base.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.secao-base.secao-fundo-1 {
  background-image: url('../images/Ativo-2.jpg');
  background-position: 50% 50%;
  background-size: 63px;
  background-repeat: repeat;
}

.secao-base.imagem-topo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50vh;
  min-height: 300px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/imagem-consorcio-imovel.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/imagem-consorcio-imovel.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  color: #fff;
}

.secao-base.imagem-topo.caminhoes {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/consorcio-rodobens-caminhao-onibus_1.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/consorcio-rodobens-caminhao-onibus_1.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.secao-base.imagem-topo.imovel {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/consorcio-rodobens-imovel-casas.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/consorcio-rodobens-imovel-casas.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.secao-base.imagem-topo.contempladas {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/consorcio-contemplado-imovel-veiculo.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/consorcio-contemplado-imovel-veiculo.jpg');
  background-position: 0px 0px, 50% 0%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.secao-base.imagem-topo.cgi {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/emprestimo-rodobens-cgi-garantia-imovel.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/emprestimo-rodobens-cgi-garantia-imovel.jpg');
  background-position: 0px 0px, 50% 0%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.secao-base.imagem-topo.carro {
  background-image: url('../images/consorcio-rodobens-veiculos-carros.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.secao-base.imagem-topo.moto {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/consorcio-rodobens-motos.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/consorcio-rodobens-motos.jpg');
  background-position: 0px 0px, 0% 50%;
}

.secao-base.div-fundo {
  padding-bottom: 30px;
}

.dropdown-menu {
  display: block;
  color: #007473;
}

.div-imagem-balao {
  display: none;
}

.icone-whatsapp-image {
  width: 22px;
  height: 22px;
}

.div-simulador-slide {
  position: absolute;
  left: auto;
  top: auto;
  right: 60px;
  bottom: -40px;
  z-index: 20;
  width: 22%;
}

.div-simulador-slide.paginas {
  top: 0px;
  bottom: 0px;
}

.bloco-titulo-slide {
  display: inline-block;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.ornamento-linha {
  width: 250px;
  height: 3px;
  background-color: #c8e339;
}

.titulo-form-conversor {
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}

.titulo-form-conversor.branco {
  color: #fff;
}

.link-menu {
  display: block;
  padding: 15px 0px;
  color: #01a6a4;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.link-menu.w--current {
  border-bottom: 1px solid #fff;
  color: #0074b4;
  text-decoration: none;
}

.link-menu.select-menu {
  display: block;
  padding-right: 5px;
  padding-left: 5px;
  clear: left;
}

.bloco-dados-envio {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 15px 4px 0px;
}

.div-input-simulador {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  padding-top: 8px;
  padding-right: 10px;
  padding-bottom: 8px;
  border-radius: 15px 6px 6px 15px;
  background-color: #fff;
  text-align: right;
}

.dropdown-link {
  z-index: 1100;
  margin-right: 0px;
  margin-left: 0px;
  padding-right: 12px;
  padding-left: 12px;
  border-bottom: 1px solid #fff;
  color: #fff;
}

.dropdown-link:hover {
  border-bottom-color: #fff;
}

.dropdown-link.w--current {
  padding-right: 10px;
  padding-left: 10px;
  border-bottom-color: #fff;
  background-color: #05436f;
  color: #fff;
}

.label-input {
  position: absolute;
  left: 5px;
  top: 6px;
  right: auto;
  bottom: auto;
  z-index: -1;
  margin-bottom: 0px;
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transition: color 200ms ease, -webkit-transform 200ms ease;
  transition: color 200ms ease, -webkit-transform 200ms ease;
  transition: color 200ms ease, transform 200ms ease;
  transition: color 200ms ease, transform 200ms ease, -webkit-transform 200ms ease;
  font-weight: 400;
  text-align: left;
}

.label-input.simulador {
  left: 40px;
  top: 15px;
}

.div-texto-slide {
  position: absolute;
  left: 70px;
  bottom: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: auto;
  max-width: 550px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.seta-slide {
  width: 40px;
}

.bloco-inclinado-topo {
  display: inline-block;
  width: 100%;
  background-color: #fff;
}

.bloco-inclinado-topo.azul {
  position: relative;
  z-index: 100;
}

.bloco-icone-vantagem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24%;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.bloco-icone-vantagem.margem-superior-10 {
  margin-top: 10px;
}

.slider {
  height: 80vh;
  max-height: 80vh;
  min-height: 450px;
  background-color: #e6e6e6;
}

.botao-verde {
  display: block;
  padding: 4px 20px 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #078a76;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  text-decoration: none;
}

.botao-verde:hover {
  background-color: #027664;
  text-decoration: none;
}

.div-texto-efeito-2 {
  margin-top: -30px;
  color: #fff;
}

.bloco-titulo-pagina {
  margin-bottom: 30px;
  padding-bottom: 5px;
  clear: both;
  text-align: left;
}

.bloco-titulo-pagina.subtitulo {
  color: #00548b;
  text-transform: uppercase;
}

.paragrafo-whatsapp {
  display: inline-block;
  margin-top: 2px;
  margin-bottom: 0px;
  margin-left: 5px;
  color: #fff;
}

.icone-whatsapp {
  display: inline-block;
}

.logo-2 {
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.margem-inferior-30 {
  margin-bottom: 30px;
}

.bloco-sup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 60px 6px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #01a6a4;
  box-shadow: 0 1px 6px 1px rgba(0, 0, 0, 0.2);
}

.slide-gradiente {
  padding: 35px 5vw;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #01a6a4), to(rgba(0, 43, 129, 0))), url('../images/consorcio-de-imovel-rodobens-derli-consorcios.jpg');
  background-image: linear-gradient(90deg, #01a6a4 10%, rgba(0, 43, 129, 0)), url('../images/consorcio-de-imovel-rodobens-derli-consorcios.jpg');
  background-position: 0px 0px, 0px 0px;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  color: #fff;
}

.slide-gradiente.slide-3 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #01a6a4), to(rgba(0, 43, 129, 0))), url('../images/consorcio-contemplado-imovel-veiculo_1.jpg');
  background-image: linear-gradient(90deg, #01a6a4 10%, rgba(0, 43, 129, 0)), url('../images/consorcio-contemplado-imovel-veiculo_1.jpg');
  background-position: 0px 0px, 50% 100%;
  background-repeat: repeat, no-repeat;
}

.slide-gradiente.slide-1 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #01a6a4), to(rgba(0, 43, 129, 0))), url('../images/emprestimo-rodobens-cgi-garantia-imovel.jpg');
  background-image: linear-gradient(90deg, #01a6a4 10%, rgba(0, 43, 129, 0)), url('../images/emprestimo-rodobens-cgi-garantia-imovel.jpg');
  background-repeat: repeat, no-repeat;
}

.slide-gradiente.slide-4 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #01a6a4), to(rgba(0, 43, 129, 0))), url('../images/slide-consorcio-rodobens-plano-pontual.jpg');
  background-image: linear-gradient(90deg, #01a6a4 10%, rgba(0, 43, 129, 0)), url('../images/slide-consorcio-rodobens-plano-pontual.jpg');
  background-position: 0px 0px, 50% 50%;
}

.bloco-whatsapp {
  position: fixed;
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 2100;
  display: inline-block;
  margin-right: 5px;
  text-align: center;
}

.div-padding-10 {
  padding: 10px;
  text-align: left;
}

.div-padding-10.esticado {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.div-padding-10.esticado.div-fundo {
  background-color: #6dc77a;
}

.div-padding-10.div-fundo {
  background-color: #d3d3d3;
}

.div-padding-10.alinhamento-direita.alinhamento-esquerdo-mobile {
  text-align: left;
}

.bloco-imagem-slide {
  position: absolute;
  display: inline-block;
  width: 75px;
  padding-top: 18px;
  padding-right: 10px;
  padding-left: 10px;
}

.secao-slides {
  position: relative;
}

.botao-conversao {
  display: block;
  width: 100%;
  border-style: solid;
  border-width: 2px;
  border-color: #01a6a4;
  border-radius: 5px;
  background-color: #01a6a4;
  -webkit-transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  color: #fff;
  font-size: 0.9em;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.botao-conversao:hover {
  background-color: #fff;
  color: #01a6a4;
}

.botao-conversao.botao-menu-icone {
  width: auto;
  margin-top: 4px;
  background-image: none;
  background-position: 0px 0px;
  background-size: auto;
  background-repeat: repeat;
}

.botao-conversao.botao-menu-icone.mobile {
  display: none;
}

.botao-conversao.simular-consorcio {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #f9dd16;
  color: #0038a8;
}

.botao-conversao.simular-consorcio:hover {
  background-color: #ebcd00;
}

.botao-conversao.cor-invertida {
  background-color: #c8e339;
  color: #05436f;
}

.botao-conversao.cor-invertida:hover {
  background-color: #007473;
  color: #fff;
}

.link-logo {
  width: 100%;
}

.bloco-simulador-3 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 60;
  display: none;
  padding: 30px 15px 20px;
  background-color: #e4e7ec;
}

.ornamento-retangulo-vertical {
  position: absolute;
  left: auto;
  top: -10px;
  right: -10px;
  bottom: auto;
  z-index: -1;
  width: 45%;
  height: 45%;
  background-color: #01a6a4;
}

.icone-logo-slide {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 2;
  width: 14%;
  opacity: 0.15;
}

.dropdown-list {
  z-index: 100;
  background-color: #007473;
  font-weight: 300;
}

.dropdown-list.w--open {
  border-radius: 1px;
  text-align: center;
}

.link-icone {
  display: block;
  margin-bottom: 3px;
  padding-top: 2px;
  padding-bottom: 2px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: Fontawesome, sans-serif;
  text-decoration: none;
}

.link-icone.redes-sociais {
  display: inline-block;
  margin-right: 5px;
  padding: 6px;
  font-size: 26px;
}

.ornamento-retangulo {
  width: 120px;
  height: 5px;
  margin-top: 30px;
  margin-bottom: 15px;
  background-color: #d3d3d3;
}

.imagem-balao {
  width: 130px;
}

.ornamento-retangulo-lateral {
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 150px;
  background-color: #01a6a4;
}

.ornamento-retangulo-lateral.direito {
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
}

.bloco-logos-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.div-alinhamento-centralizado {
  text-align: center;
}

.contatos-superior {
  color: #fff;
  letter-spacing: 0.8px;
  text-decoration: none;
}

.contatos-superior.direito {
  margin-right: 0px;
}

.margem-superior {
  margin-top: 20px;
  font-family: Lato, sans-serif;
}

.icone-select {
  display: none;
  margin-right: 14px;
  font-size: 18px;
  line-height: 18px;
}

.div-block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.embed-input {
  display: inline-block;
}

.icone {
  font-family: Fontawesome, sans-serif;
  font-weight: 400;
}

.titulo-slide {
  font-size: 46px;
}

.titulo-slide.chamativo-3 {
  margin-bottom: 5px;
  font-size: 6vw;
  line-height: 6vw;
}

.titulo-slide.pequeno {
  font-size: 22px;
}

.titulo-slide.chamativo-4 {
  font-size: 4.5vw;
  line-height: 4.5vw;
  text-align: right;
}

.titulo-slide.chamativo-4.alinhamento-esquerda {
  text-align: left;
}

.titulo-slide.chamativo-1 {
  margin-bottom: 10px;
  font-size: 140px;
  line-height: 0.8em;
}

.titulo-slide.chamativo-2 {
  font-size: 90px;
  line-height: 0.8em;
  text-align: right;
}

.menu {
  padding: 11px 60px;
  background-color: transparent;
  font-size: 18px;
}

.sessao-menu {
  position: relative;
  z-index: 2000;
  display: block;
  overflow: visible;
}

.paragrafo.branco {
  color: #fff;
  font-weight: 400;
}

.paragrafo.obrigado-simulacao {
  color: #333;
  font-size: 18px;
  line-height: 1.2em;
  text-align: justify;
}

.paragrafo.rodape {
  margin-bottom: 0px;
}

.div-form-conversor {
  position: relative;
  z-index: 10;
  padding: 20px 15px;
  border-style: solid;
  border-width: 1px;
  border-color: #00548b;
  border-radius: 5px;
  background-color: #00548b;
  box-shadow: 0 12px 40px 0 rgba(0, 33, 97, 0.2);
  color: grey;
  text-align: center;
}

.titulo-pagina-previa {
  font-size: 0.85em;
  line-height: 1em;
  text-transform: uppercase;
}

.titulo-maiusculas {
  font-weight: 900;
  text-transform: uppercase;
}

.div-flex-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.div-flex-horizontal.filhos {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.div-flex-horizontal.filhos.alinhamento-direita {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.div-flex-horizontal.vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: Lato, sans-serif;
  color: #fff;
}

.div-flex-horizontal.distribuidos {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.div-flex-horizontal.div-flex-altura-100--dektop {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.div-flex-horizontal.div-flex-altura-100--dektop.mobile-tamanho-50 {
  text-align: center;
}

.div-flex-horizontal.div-flex-altura-100--dektop.mobile-tamanho-50.alinhamento-esquerdo {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}

.div-flex-horizontal.div-flex-altura-100--dektop.mobile-tamanho-50.div-alinhamento-centralizado {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-flex-horizontal.oculta-desk {
  display: none;
}

.div-flex-horizontal.div-alinhamento-centralizado {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.div-flex-horizontal.div-efeito-icone {
  padding-left: 110px;
  background-image: url('../images/banco-do-brasil-consorcios-circulo-branco.svg');
  background-position: 0% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.div-flex-horizontal.margem-superior-10 {
  margin-top: 10px;
}

.div-flex-horizontal.div-alinhamento-esquerdo {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.div-flex-horizontal.margem-vertical-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.div-50 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.div-50.alinhamento-vertical-centro {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: right;
}

.div-50.div-relativa {
  position: relative;
}

.titulo-maiusculas-2 {
  margin-top: 0px;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1em;
  line-height: 1.2em;
  text-transform: uppercase;
}

.titulo-maiusculas-2._2 {
  font-size: 0.8em;
  line-height: 1.2em;
}

.div-form-conversao {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 20;
  display: block;
  padding: 10px;
  background-color: #d3d3d3;
}

.div-borda {
  border-style: solid;
  border-width: 1px;
  border-color: #00548b;
  border-radius: 6px;
}

.botao-1 {
  display: block;
  border-radius: 5px;
  background-color: #01a6a4;
  -webkit-transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  font-weight: 700;
}

.botao-1:hover {
  background-color: #007473;
}

.botao-1.botao-grow {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #fff;
  border-radius: 2px;
}

.botao-1.botao-grow.cor-2 {
  background-color: #c8e339;
  color: #007473;
  font-weight: 400;
}

.botao-1.alinhamento-centralizado {
  text-align: center;
}

.botao-1.relativo-zindex-10 {
  position: relative;
  z-index: 10;
}

.botao-1.relativo-zindex-10.alinhamento-centralizado {
  margin-top: 19px;
  text-transform: uppercase;
}

.botao-1.div-fundo-2 {
  background-color: #05436f;
}

.botao-fechar {
  position: absolute;
  left: auto;
  top: 5px;
  right: 5px;
  bottom: auto;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  padding: 2px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #00548b;
  font-family: Fontawesome, sans-serif;
  color: #01a6a4;
  line-height: 14px;
}

.icone-logo-consorcios {
  position: absolute;
  right: -40px;
  bottom: -15px;
  z-index: 2;
  width: 120px;
  opacity: 0.1;
}

.margem-inferior-0 {
  margin-bottom: 0px;
}

.div-75 {
  width: 72%;
}

.div-75.div-tablet-auto.cor-da-fonte-carta {
  color: #fff;
}

.div-75.div-flex-75-grow {
  margin-right: 1.33%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.div-75.margem-superior-10 {
  margin-top: 10px;
}

.div-33 {
  width: 32%;
}

.ornamento-linha-2 {
  width: 50%;
  height: 6px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: #fff;
}

.imagem-logo {
  display: block;
  width: 100%;
}

.div-fundo {
  border-radius: 4px;
  background-color: #d6e8f5;
}

.paragrafo-italico {
  font-style: italic;
}

.div-botao-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 19.2%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 5px;
  background-color: #01a6a4;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.div-botao-tab.w--current {
  background-color: #05436f;
}

.link-rodape {
  display: block;
  margin-bottom: 5px;
  text-decoration: none;
}

.alinhamento-direita {
  text-align: right;
}

.bloco-pontilhado {
  position: absolute;
  left: auto;
  top: 0%;
  right: 70px;
  bottom: auto;
  width: 280px;
  opacity: 0.07;
}

.bloco-pontilhado.imoveis {
  top: -5%;
  width: 20%;
}

.div-input {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  text-align: left;
}

.elemento-imagem {
  position: absolute;
  width: 130px;
}

.elemento-imagem.investimento {
  left: -70px;
  right: auto;
  bottom: -65px;
  z-index: -1;
}

.div-padding-20 {
  padding: 20px;
}

.div-padding-20.div-fundo.margem-inferior-30 {
  background-color: #c8e339;
}

.div-padding-20.div-fundo-2 {
  background-color: #05436f;
}

.div-padding-20.div-fundo-3 {
  background-color: #01a6a4;
}

.mobile {
  display: none;
  margin-right: 5px;
}

.div-erro {
  background-color: #ffdede;
  color: #045ea6;
}

.div-flex-vertical {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.div-flex-vertical.filhos {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
}

.div-flex-vertical.filhos.oculta-mobile.cor-da-tabela-superior {
  border-radius: 2px 0px 0px;
  background-color: #c8e339;
}

.div-flex-vertical.filhos.div-padding-10.div-fundo-2 {
  background-color: #01a6a4;
}

.div-flex-vertical.filhos.div-padding-10.div-fundo-2.margem-inferior-5 {
  margin-bottom: 5px;
}

.div-flex-vertical.margem-inferior-5 {
  margin-bottom: 5px;
}

.div-flex-vertical.div-fundo-2 {
  background-color: #6dc77a;
  color: #fff;
}

.div-flex-vertical.grow-vertical {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.div-padding-5 {
  margin: 5px;
  padding: 5px;
  text-align: left;
}

.div-texto-efeito-1 {
  display: inline-block;
  margin-top: -45px;
  margin-bottom: 20px;
  background-color: #fff;
}

.margem-inferior-60 {
  margin-bottom: 60px;
}

.text-field {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.margem-superior-30-flex {
  margin-top: 30px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.div-margem-topo-30 {
  margin-top: 30px;
}

.div-margem-topo-30.div-altura-minima {
  min-height: 130px;
}

.div-oculta {
  display: block;
}

.paragraph {
  font-weight: 400;
}

.link {
  font-family: Lato, sans-serif;
  color: #c8e339;
}

.paragraph-2 {
  font-family: Lato, sans-serif;
}

.heading {
  font-family: Lato, sans-serif;
}

.heading-2 {
  color: #00548b;
}

.paragraph-3 {
  color: #00548b;
}

.titulos-degrade {
  margin-bottom: 0px;
}

.icone-rodabens {
  width: 14%;
  margin-bottom: 0px;
}

.paragraph-7 {
  color: #fff;
  font-weight: 700;
}

.lista {
  list-style-type: disc;
}

.atl2-bloco-artigo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.div-lateral {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.titulo-15 {
  margin-top: 0px;
  font-size: 1em;
  line-height: 1em;
}

.margem-inferior-10 {
  margin-bottom: 10px;
}

.secao-acao {
  position: relative;
  z-index: 2000;
  padding: 6px 5vw;
  text-align: right;
}

.link-texto-acao-web {
  color: #000b98;
  text-decoration: none;
}

.titulo-acao-web {
  display: inline-block;
  margin-top: 0px;
  margin-right: 5px;
  margin-bottom: 0px;
  color: #000b98;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  text-decoration: none;
}

.imagem-acao-web {
  width: 80px;
}

.bloco-titulo-secao {
  position: relative;
  margin-bottom: 20px;
  text-align: left;
}

.ornamento-retangulo-2 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  z-index: 5;
  width: 60%;
  height: 15px;
  background-color: #c8e339;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}

.ornamento-retangulo-2.posicao-inferior {
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
  -webkit-transform: translate(0px, 50%);
  -ms-transform: translate(0px, 50%);
  transform: translate(0px, 50%);
}

.div-flex-horizontal-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.ornamento-retangulo-gradiente {
  width: 70px;
  height: 10px;
  margin-bottom: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(#c8e339), to(#007473));
  background-image: linear-gradient(90deg, #c8e339, #007473);
}

.slider-2 {
  height: auto;
  background-color: hsla(0, 0%, 86.7%, 0);
}

.img-circulo-1 {
  width: 200px;
  height: 200px;
  border-radius: 200px;
}

.alinhamento-centralizado {
  text-align: center;
}

.oculta {
  display: none;
}

.titulo-topo {
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.secao-chat-whatsapp-cookie {
  position: fixed;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  z-index: 2000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 280px;
}

.bloco-whatsapp-2 {
  z-index: 2200;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.bloco-cookie {
  z-index: 3000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  padding: 5px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #fff;
}

.div-acao {
  position: relative;
  z-index: 2100;
  display: block;
  width: 50%;
  margin-right: auto;
  margin-bottom: 90px;
  margin-left: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.link-texto-acao-web-2 {
  color: #000b98;
  text-decoration: none;
}

.titulo-acao-web-2 {
  display: inline-block;
  margin-top: 0px;
  margin-right: 5px;
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  color: #000b98;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  text-decoration: none;
}

.imagem-acao-web-2 {
  width: 79px;
}

.paragrafo-cookie {
  padding-right: 10px;
}

.paragrafo-mobile {
  display: none;
  margin-right: 5px;
}

.titulo-instagram {
  color: #00548b;
}

.link-instagram {
  color: #00548b;
}

@media screen and (max-width: 991px) {
  .div-25 {
    width: 49%;
  }

  .div-25.div-tablet-auto {
    width: auto;
  }

  .div-25.div-25-tablet {
    width: 24%;
  }

  .div-produto {
    padding-bottom: 5px;
  }

  .preco-produto {
    font-size: 18px;
  }

  .div-produto-texto {
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
  }

  .menu-flex {
    margin-top: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 2px;
    background-color: #01a6a4;
  }

  .div-block-2 {
    width: auto;
  }

  .secao-base.flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .div-simulador-slide {
    position: relative;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 60%;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
  }

  .div-simulador-slide.paginas {
    display: none;
  }

  .botao-menu {
    margin-top: 10px;
    padding: 0px;
  }

  .botao-menu.w--open {
    border-radius: 2px;
  }

  .titulo-form-conversor {
    font-size: 20px;
  }

  .icone-menu {
    font-size: 50px;
    line-height: 50px;
  }

  .link-menu {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom-color: #8d2528;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    color: #fff;
  }

  .link-menu.w--current {
    color: #d0d0d0;
  }

  .dropdown-link {
    text-align: center;
  }

  .div-texto-slide {
    position: static;
    left: 35px;
    bottom: 20px;
    width: auto;
  }

  .seta-slide {
    width: 30px;
    font-size: 30px;
  }

  .bloco-inclinado-topo.azul {
    z-index: 1000;
    display: block;
    width: auto;
    margin-left: 0%;
    padding-right: 0%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .slider {
    height: auto;
    max-height: none;
    min-height: auto;
    background-color: #f0f0f0;
  }

  .bloco-titulo-pagina.subtitulo {
    margin-bottom: 10px;
    padding-bottom: 0px;
  }

  .logo-2 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .bloco-sup {
    margin-left: 0px;
    padding-right: 35px;
    padding-left: 35px;
  }

  .slide-gradiente {
    min-height: 400px;
    padding-top: 20px;
    padding-left: 35px;
  }

  .bloco-imagem-slide {
    width: 70px;
    padding-top: 12px;
  }

  .dropdown-list.w--open {
    margin-left: 0px;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  .ornamento-retangulo {
    height: 3px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .bloco-logos-2 {
    width: 80%;
  }

  .titulo-slide.pequeno {
    font-size: 18px;
  }

  .titulo-slide.chamativo-1 {
    font-size: 120px;
  }

  .titulo-slide.chamativo-2 {
    font-size: 80px;
  }

  .menu {
    z-index: 10000;
    padding: 6px 24px 6px 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .sessao-menu {
    padding-right: 0px;
    padding-left: 0px;
  }

  .div-flex-horizontal {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .div-flex-horizontal.div-flex-altura-100--dektop {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .div-flex-horizontal.div-efeito-icone {
    padding-left: 80px;
    background-size: 70px 70px;
  }

  .div-flex-horizontal.depoimentos {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .div-75.div-tablet-auto {
    width: auto;
  }

  .div-33 {
    width: 49%;
  }

  .imagem-logo {
    height: 50px;
  }

  .tabcontent {
    position: relative;
    overflow: hidden;
    height: 100%;
    margin-top: 24px;
  }

  .div-botao-tab {
    width: 49%;
    margin-bottom: 10px;
  }

  .bloco-pontilhado {
    right: 35px;
    width: 200px;
  }

  .div-flex-vertical {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .oculta-tablet {
    display: none;
  }

  .atl2-imagem-secao-blog {
    width: 100%;
  }

  .atl2-bloco-artigo {
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .secao-acao {
    padding-right: 30px;
    padding-left: 30px;
  }

  .div-flex-horizontal-2 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .tablet-auto {
    width: auto;
  }

  .secao-chat-whatsapp-cookie {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .bloco-whatsapp-2 {
    left: 10px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .bloco-cookie {
    padding-right: 10px;
    padding-left: 10px;
  }

  .div-acao {
    margin-bottom: 150px;
  }

  .link-texto-acao-web-2 {
    z-index: 5000;
  }
}

@media screen and (max-width: 767px) {
  .div-produto {
    margin-bottom: 20px;
  }

  .preco-produto {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 24px;
  }

  .div-produto-texto {
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .secao-base {
    padding: 40px 20px;
  }

  .div-imagem-balao {
    top: -68px;
  }

  .div-simulador-slide {
    width: auto;
    margin-right: 24px;
    margin-left: 20px;
  }

  .botao-menu {
    margin-top: 5px;
  }

  .link-menu {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .div-input-simulador {
    margin-bottom: 5px;
  }

  .dropdown-link {
    font-size: 16px;
    line-height: 20px;
  }

  .seta-slide {
    width: 20px;
    font-size: 20px;
  }

  .paragrafo-whatsapp {
    font-size: 16px;
  }

  .bloco-sup {
    padding-right: 20px;
    padding-left: 20px;
  }

  .slide-gradiente {
    padding-top: 40px;
    padding-left: 20px;
  }

  .div-padding-10.alinhamento-direita.alinhamento-esquerdo-mobile {
    text-align: left;
  }

  .bloco-imagem-slide {
    width: 46px;
    padding-top: 8px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .botao-conversao {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .botao-conversao.botao-menu-icone {
    display: none;
  }

  .botao-conversao.botao-menu-icone.mobile {
    display: inline-block;
  }

  .botao-conversao.simular-consorcio {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .link-logo {
    margin-left: 0px;
    padding-left: 0px;
  }

  .ornamento-retangulo {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .imagem-balao {
    width: 120px;
  }

  .titulo-slide {
    font-size: 36px;
    line-height: 1.1em;
  }

  .titulo-slide.chamativo-3 {
    margin-bottom: 10px;
  }

  .titulo-slide.pequeno {
    font-weight: 400;
  }

  .titulo-slide.chamativo-4 {
    margin-bottom: 12px;
  }

  .titulo-slide.chamativo-1 {
    font-size: 80px;
  }

  .titulo-slide.chamativo-2 {
    font-size: 52px;
  }

  .menu {
    padding-right: 15px;
  }

  .div-flex-horizontal.div-flex-altura-100--dektop {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .div-flex-horizontal.div-flex-altura-100--dektop.mobile-tamanho-50 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 50%;
    -ms-flex: 0 50%;
    flex: 0 50%;
  }

  .div-flex-horizontal.oculta-desk {
    display: block;
  }

  .div-flex-horizontal.oculta-mobile {
    display: none;
  }

  .div-flex-horizontal.div-efeito-icone {
    padding-left: 0px;
    background-image: none;
    background-size: auto;
    background-repeat: repeat;
  }

  .botao-1 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .div-75.div-tablet-auto {
    width: auto;
  }

  .tabcontent {
    display: block;
    overflow: hidden;
  }

  .bloco-pontilhado {
    right: 20px;
  }

  .elemento-imagem.investimento {
    left: -30px;
    bottom: -30px;
    width: 60px;
  }

  .mobile {
    display: block;
  }

  .div-flex-vertical.filhos.oculta-mobile {
    display: none;
  }

  .secao-acao {
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
  }

  .bloco-titulo-secao {
    margin-bottom: 15px;
  }

  .ornamento-retangulo-gradiente {
    height: 6px;
  }

  .mobile-largura-100 {
    width: 100%;
  }

  .secao-chat-whatsapp-cookie {
    left: auto;
    top: auto;
    right: 0%;
    bottom: 0%;
    margin-left: 0px;
  }

  .bloco-whatsapp-2 {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .bloco-cookie {
    padding-bottom: 40px;
  }

  .div-acao {
    position: relative;
    z-index: 5000;
  }

  .paragrafo-mobile {
    display: block;
    color: #c8e339;
  }

  .titulo-instagram {
    font-size: 20px;
    line-height: 22px;
  }
}

@media screen and (max-width: 479px) {
  .div-25 {
    width: 100%;
  }

  .preco-produto {
    font-size: 22px;
  }

  .opcao-simulador {
    display: inline-block;
  }

  .secao-base {
    padding-right: 15px;
    padding-left: 15px;
  }

  .secao-base.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .div-imagem-balao {
    left: auto;
    top: -69px;
    right: 0px;
    text-align: right;
  }

  .icone-whatsapp-image {
    width: 20px;
    height: 20px;
  }

  .div-simulador-slide {
    min-width: auto;
    margin-right: 15px;
    margin-left: 15px;
  }

  .titulo-form-conversor {
    font-size: 20px;
  }

  .icone-menu {
    font-size: 40px;
    line-height: 40px;
  }

  .div-input-simulador {
    margin-bottom: 15px;
  }

  .div-texto-slide {
    font-size: 15px;
  }

  .botao-verde {
    padding-top: 4px;
    padding-bottom: 8px;
  }

  .paragrafo-whatsapp {
    margin-left: 6px;
  }

  .margem-inferior-30 {
    margin-bottom: 20px;
  }

  .bloco-sup {
    padding-right: 15px;
    padding-left: 15px;
  }

  .slide-gradiente {
    padding-top: 40px;
    padding-left: 15px;
  }

  .bloco-whatsapp {
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    margin-right: 0px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }

  .div-padding-10 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .bloco-imagem-slide {
    padding-top: 2px;
  }

  .botao-conversao {
    padding-right: 12px;
    padding-left: 12px;
  }

  .botao-conversao.botao-menu-icone {
    font-size: 0.8em;
  }

  .botao-conversao.simular-consorcio {
    padding: 5px;
  }

  .ornamento-retangulo-lateral {
    width: 10px;
  }

  .bloco-logos-2 {
    width: 90%;
  }

  .contatos-superior {
    margin-right: 0px;
  }

  .contatos-superior.residencial {
    margin-right: 15px;
  }

  .menu {
    padding-right: 9px;
    padding-left: 15px;
  }

  .paragrafo.rodape {
    display: inline;
  }

  .div-50 {
    width: auto;
  }

  .titulo-maiusculas-2 {
    font-size: 0.8em;
  }

  .botao-1 {
    padding-right: 12px;
    padding-left: 12px;
  }

  .div-33 {
    width: auto;
  }

  .imagem-logo {
    height: 30px;
  }

  .tabcontent {
    margin-top: 12px;
  }

  .div-botao-tab {
    width: 100%;
  }

  .bloco-pontilhado {
    right: 15px;
  }

  .elemento-imagem.investimento {
    left: -40px;
    bottom: -40px;
    width: 90px;
  }

  .div-padding-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .margem-inferior-60 {
    margin-bottom: 20px;
  }

  .secao-acao {
    text-align: center;
  }

  .ornamento-retangulo-2.posicao-inferior {
    z-index: 15;
  }

  .mobile-largura-100 {
    width: 100%;
  }

  .bloco-whatsapp-2 {
    left: 0px;
    display: block;
    width: 100%;
    margin-left: 0px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }

  .div-acao {
    width: 100%;
    margin-bottom: 230px;
  }

  .titulo-instagram {
    font-size: 15px;
    line-height: 18px;
  }
}

@font-face {
  font-family: 'Fontawesome';
  src: url('../fonts/fontawesome-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}