/* ============================================================
   NOTAS IMPORTANTES SOBRE HOSPEDAGEM (leia antes de subir o site)
   ============================================================
   1) Servidores Linux (a maioria das hospedagens) diferenciam
      MAIÚSCULAS de minúsculas em nomes de pasta/arquivo.
      Local (Windows/Mac) NÃO diferencia -> funciona no PC e
      quebra no servidor. Confira se os nomes reais das pastas
      "fonte", "imagens" e dos arquivos batem EXATAMENTE (letra
      por letra) com o que está escrito neste CSS.

   2) Os caminhos usados aqui são relativos (../fonte/..,
      ../imagens/..). Isso só funciona se a estrutura de pastas
      no servidor for IDÊNTICA à local, com este CSS dentro de
      uma pasta (ex: /css/style.css) e "fonte" e "imagens" um
      nível acima dela. Se você subir os arquivos em outra
      estrutura, os caminhos quebram.

   3) format() do @font-face precisa bater com a extensão real
      do arquivo. Arquivos .otf são format('opentype'), não
      format('truetype'). Isso estava incorreto no arquivo
      original e foi corrigido abaixo -- é uma causa comum de
      fontes que "funcionam no editor" (Live Server/preview) mas
      falham em produção.
   ============================================================ */


body{
    margin: 0;
    padding: 0;
}

/*-----------FONTES-----------*/


@font-face {
  font-family: 'NexaExtraLight';
  src: url('../fonte/Nexa-ExtraLight.ttf') format('truetype');
}
@font-face {
  font-family: 'Nexa-Heavy';
  src: url('../fonte/Nexa-Heavy.ttf') format('truetype');
}
@font-face {
  font-family: 'NexaTextPro-Bold';
  src: url('../fonte/NexaTextPro-Bold.otf') format('opentype');
}
@font-face {
  font-family: 'NexaTextPro-Regular';
  src: url('../fonte/NexaTextPro-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'NexaPro_Trial-Book';
  src: url('../fonte/NexaPro_Trial-Book.otf') format('opentype');
}
@font-face {
  font-family: 'Nexa-Trial-Bold';
  src: url('../fonte/Nexa-Trial-Bold.otf') format('opentype');
}




/*-----------HEADER-----------*/



.heade{
    position: relative;
    height: 100vh;
    float: left;
    width: 100%;
    overflow: hidden;
}
.heade .content{
    width: 1380px;
    margin: 0 auto;
    height: 61%;
}
.heade .content .menu{
    float: left;
    width: 100%;
    padding: 30px 0 0;
}
.heade .content .menu .logo{
    width: 50%;
    float: left;
}
.heade .content .menu .logo img{
    width: 10%;
}
.heade .content .menu .botao-topo{
    width: 50%;
    text-align: right;
    float: right;
    display: none;
}
.heade .content .conteudo-headline{
    position: absolute;
    bottom: 50px;
}
.heade .content .conteudo-headline h1{
    color: #fff;
    margin: 0;
    font-family: 'NexaExtraLight', sans-serif;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 50px;
    line-height: 55px;
}
.heade .content .conteudo-headline h1 span{
    font-family: 'NexaPro_Trial-Book';
}

.heade .content .conteudo-headline p{
	margin: 0;
	text-align: center;
}
.heade .content .conteudo-headline img{
    width: 40%;
}

.heade .content .btn-contato {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background-color: #fff;
    color: #1e2130;
    border: none;
    border-radius: 999px;
    padding: 6px 6px 6px 25px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'NexaExtraLight', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.heade .content .btn-contato:hover {
    background-color: #1e2130;
    color: #fff;
    transform: scale(1.05);
}
.heade .content .btn-contato .icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1e2130;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.heade .content .btn-contato:hover .icone {
    background-color: #fff;
    transform: rotate(45deg);
}
.heade .content .btn-contato .icone path {
    stroke: #fff;
    transition: stroke 0.3s ease;
}
.heade .content .btn-contato:hover .icone path {
    stroke: #1e2130;
}
.heade video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Escurecimento sobre o vídeo — ajuste o 0.5 ao seu gosto */
.heade::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
/* Garante que todo o conteúdo fique acima do vídeo */
.heade .content {
  position: relative;
  z-index: 2;
}



/*-----------HÁ MAIS DE 10 ANOS-----------*/


.section-anderson{
    float: left;
    width: 100%;
    background: #fff;
    align-content: center;
    padding: 50px 0 80px;
    position: relative;
}
.section-anderson .content{
    max-width: 1400px;
    width: 92%;
    margin: auto;
    padding: 0;
}
.section-anderson .content .box-1{
    width: 50%;
    float: left;
}
.section-anderson .content .box-1 img{
    width: 7%;
    display: none;
}
.section-anderson .content .box-1 h1 {
    color: #1c1f24;
    font-family: 'NexaExtraLight', sans-serif;
    margin: 45px 0;
    text-transform: uppercase;
    font-size: 43px;
    line-height: 50px;
    font-weight: 100;
}
.section-anderson .content .box-1 h1 span{
    font-family: 'NexaPro_Trial-Book';
}
.section-anderson .content .box-1 p{
    color: #16283f;
    font-family: 'NexaExtraLight', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 10px;
    text-align: justify;
    max-width: 639px;
    width: 100%;
}
.section-anderson .content .box-1 p span{
    font-family: 'NexaPro_Trial-Book';
}
.section-anderson .content .box-2{
    width: 50%;
    float: right;
}

.section-anderson .content .box-2{
    width: 46%;
    background: url(../imagens/fachada-foto.jpeg);
    height: 474px;
    background-size: 104%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    bottom: 48px;
}
.section-anderson .content .box-2 img.foto-mobile{
    display: none;
}



/*-----------SEÇÃO PILARES-----------*/

/*.section-pilares{
    float: left;
    width: 100%;
    height: 100vh;
    padding: 0 0 70px;
    background-image: linear-gradient(to right, #ff000000, #d4d6d8);
}
.section-pilares .content{
    width: 1300px;
    margin: 0 auto;
    padding: 80px 0;
}
.section-pilares .content .box-1 .conteudo1{
    width: 50%;
    float: left;
}
.section-pilares .content .box-1 .conteudo2{
    width: 50%;
    float: right;
}
.section-pilares .content .box-1 .conteudo1 h2{
    color: #1c1f24;
    font-family: 'NexaExtraLight', sans-serif;
    margin: 60px 0;
    text-transform: uppercase;
    font-size: 42px;
    font-weight: 100;
}
.section-pilares .content .box-1 .conteudo1 img{
    width: 8%;
}
.section-pilares .content .box-1 .conteudo2 img{
    width: 100%;
}
.section-pilares .content .box-1 .conteudo2 p{
    color: #000000;
    font-family: 'NexaExtraLight', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    text-align: right;
    font-weight: 600;
}
.section-pilares .content .box-2{
    float: left;
}
.section-pilares .content .box-2 p{
    font-family: 'NexaExtraLight', sans-serif;
    margin: 80px 0 0;
    color: #1c1f24;
    font-size: 15px;
    font-weight: 600;
}
.section-pilares .content .box-2 p span{
    font-family: 'NexaPro_Trial-Book';
}*/



/*-----------SEÇÃO MISSÃO - VISÃO - VALORES-----------*/


.section-missao{
    float: left;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right, #ff000000, #d4d6d8);
    display: none;
}
.section-missao .content{
    width: 1300px;
    margin: 0 auto;
    padding: 80px 0;
}
.section-missao .content .box-1{
    width: 50%;
    float: left;
    z-index: 999;
    position: relative;
}
.section-missao .content .box-1 img{
    width: 8%;
    margin: 0 0 60px;
}
.section-missao .content .box-1 h3{
    color: #000;
    text-transform: uppercase;
    font-size: 30px;
    font-family: 'NexaPro_Trial-Book';
    font-weight: 100;
    margin: 0;
}
.section-missao .content .box-1 h3:nth-child(4),
.section-missao .content .box-1 h3:nth-child(6){
    margin: 35px 0 0;
}
.section-missao .content .box-1 p{
    font-family: 'NexaTextPro-Regular';
    font-size: 14px;
    padding: 0 250px 0 0;
    text-align: justify;
    line-height: 21px;
}
.section-missao .content .box-1 ul{
    padding: 0 0 0 15px;
}
.section-missao .content .box-1 ul li{
    color: #000;
    font-family: 'NexaTextPro-Regular';
    font-size: 14px;
    line-height: 21px;
}
.section-missao .content .box-2{
    width: 50%;
    float: right;
}
.section-missao .content .box-2 img{
     width: 30%;
    position: absolute;
    right: 0;
    margin-top: -115px;
}




/*-----------SEÇÃO APLICATIVO - CELULAR-----------*/


.section-app{
    float: left;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right, #858e99, #55585a);
    display: none;
}
.section-app .content{
    width: 1300px;
    margin: 0 auto;
    padding: 80px 0;
}
.section-app .content img{
    width: 8%;
}
.section-app .content .box-1{
    width: 50%;
    float: left;
}
.section-app .content .box-1 h2{
    color: #fff;
    font-family: 'NexaExtraLight', sans-serif;
    margin: 45px 0 50px;
    text-transform: uppercase;
    font-size: 42px;
    line-height: 50px;
    font-weight: 100;
}
.section-app .content .box-1 h2 span{
    font-family: 'NexaPro_Trial-Book';
}
.section-app .content .box-1 p{
    color: #fff;
    font-family: 'NexaExtraLight', sans-serif;
    padding: 0 170px 0 0;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
    text-align: justify;
    font-weight: 600;
}
.section-app .content .box-1 p.playstore{
    margin: 30px 0 0;
}
.section-app .content .box-1 p.playstore img{
    width: 25%;
    border: 1px solid #ffffff78;
    padding: 8px 25px;
    border-radius: 10px;
    transition: 0.2s;
}
.section-app .content .box-1 p.playstore a{
	color: transparent;
}
.section-app .content .box-1 p.playstore img:hover{
    background: #16283f;
    border: 1px solid #16283f;
    transform: translateY(-2px);
    transition: 0.2s;
}
.section-app .content .box-2{
    width: 50%;
    float: right;
}
.section-app .content .box-2 img{
    width: 59% !important;
    position: absolute;
    right: 0;
    margin: 111px 0 0;
}
.section-app .content .box-2 p{
    text-align: right;
    font-family: 'NexaExtraLight', sans-serif;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}




/*-----------SEÇÃO SERVIÇOS-----------*/


.section-servicos{
    float: left;
    width: 100%;
    background-image: linear-gradient(to right, #f1f2f5, #cfd1d2);
    padding: 80px 0;
    position: relative;
    align-content: center;
}
.section-servicos .content{
    max-width: 1400px;
    width: 92%;
    margin: auto;
}




.section-servicos .content .box-1 {
    width: 27%;
    background: url(../imagens/foto-oficial-serviso-orconalt.jpeg);
    float: left;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-servicos .content .box-2{
    float: right;
    width: 69%;
}


.section-servicos .content .box-2 h2{
    color: #1c1f24;
    font-family: 'NexaExtraLight', sans-serif;
    margin: 0px 0 30px -3px;
    font-size: 42px;
    line-height: 50px;
    font-weight: 100;
}
.section-servicos .content .box-2 h2 span{
    font-family: 'NexaPro_Trial-Book';
}


.section-servicos .content .box-2 .caixa-conteudo-1{
    width: 47%;
    float: left;
}

.section-servicos .content .box-2 .caixa-conteudo-2{
    width: 45%;
    float: right;
}

.section-servicos .content .box-2 .caixa-conteudo-1 ul,
.section-servicos .content .box-2 .caixa-conteudo-2 ul{
    padding: 0 0 0 20px;
}

.section-servicos .content .box-2 .caixa-conteudo-1 li,
.section-servicos .content .box-2 .caixa-conteudo-2 li{
    color: #1c1f24;
    font-family: 'NexaTextPro-Regular';
    font-weight: 500;
    font-size: 21px;
    margin: 0 0 5px;
}
.section-servicos .content .box-2 .caixa-conteudo-1 p,
.section-servicos .content .box-2 .caixa-conteudo-2 p{
    color: #1c1f24;
    font-family: 'NexaExtraLight', sans-serif;
    font-weight: 600;
    font-size: 12px;
    margin: 5px 0 19px;
    text-align:justify;
}

.section-servicos .content .box-2 .caixa-conteudo-1 p:nth-child(8){
    margin: 0;
}


  .section-servicos .servicos{
    float: left;
  }
  .section-servicos .servicos h2{
    float: left;
  }
  .section-servicos .servicos img{
    float: right;
    width: 5%;
    margin: 6px 0 0;
  }
  .section-servicos .servicos img.mobile{
    display: none;
  }




/*LINHA 2*/


.section-servicos .content .linha2{
    float: right;
    width: 100%;
    margin-top: 50px;
    display: flex;
}
.section-servicos .content .linha2 .caixa-conteudo-1{
    width: 33%;
    float: left;
}
.section-servicos .content .linha2 .caixa-conteudo-1 ul,
.section-servicos .content .linha2 .caixa-conteudo-2 ul{
    padding: 0 0 0 20px;
}
.section-servicos .content .linha2 .caixa-conteudo-2{
    width: 33%;
    float: left;
    padding: 0 83px 0 70px;
}
.section-servicos .content .linha2 .caixa-conteudo-3{
    width: 28%;
    background: url(../imagens/saladereuniao.jpeg);
    background-size: cover;
    height: 100%;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    background-repeat: no-repeat;
}


.section-servicos .content .linha2 .caixa-conteudo-1 li,
.section-servicos .content .linha2 .caixa-conteudo-2 li{
    color: #1c1f24;
    font-family: 'NexaTextPro-Regular';
    font-weight: 500;
    font-size: 21px;
    margin: 0 0 5px;
}
.section-servicos .content .linha2 .caixa-conteudo-1 p,
.section-servicos .content .linha2 .caixa-conteudo-2 p{
    color: #1c1f24;
    font-family: 'NexaExtraLight', sans-serif;
    font-weight: 600;
    font-size: 12px;
    margin: 5px 0 19px;
    text-align:justify;
}
.section-servicos .content .linha2 .caixa-conteudo-2 p{
    padding: 0 50px 0 0;
}




/*-----------FOTO SERVIÇOS DESKTOP-----------*/

.foto-oculta-servicos{
    display: none;
}




/*-----------SEÇÃO CONTABILIDADE TRADICIONAL-----------*/


.section-contabilidadeconsultiva{
    float: left;
    width: 100%;
    padding: 50px 0;
    background:#fff;
}
.section-contabilidadeconsultiva .content{
    max-width: 1400px;
    width: 92%;
    margin: auto;
}


/*LINHA 1*/

.section-contabilidadeconsultiva .content .linha1 {
    float: left;
    width: 100%;
}

.section-contabilidadeconsultiva .content .linha1 .box-1{
    width: 50%;
    float: left;
}

.section-contabilidadeconsultiva .content .linha1 .box-1 h2{
    color: #1c1f24;
    font-family: 'NexaExtraLight', sans-serif;
    margin: 0;
    font-size: 42px;
    line-height: 50px;
    font-weight: 100;
}

.section-contabilidadeconsultiva .content .linha1 .box-1 h2 span{
    font-family: 'NexaPro_Trial-Book';
}
.section-contabilidadeconsultiva .content .linha1 .box-1 p{
    color: #000;
    font-family: 'NexaExtraLight', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    margin: 5px 0 0;
}

.section-contabilidadeconsultiva .content .linha1 .box-2{
    width: 50%;
    float: right;
    text-align: right;
}
.section-contabilidadeconsultiva .content .linha1 .box-2 img{
width: 7%;
    margin-top: 3px;
}
.section-contabilidadeconsultiva .content .linha1 .box-1 img.mobile{
    display: none;
}



/*LINHA 2*/


.section-contabilidadeconsultiva .content .linha2{
    float: right;
    width: 100%;
    margin-top: 50px;
    display: flex;
}

.section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-1{
    width: 25%;
    float: left;
    height: 200px;
}

.section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-2{
    width: 35%;
    float: left;
    padding: 0 115px 0 0;
}

.section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-3{
        width: 35%;
    float: left;
}


.section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-2 h3,
.section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-3 h3{
    color: #1c1f24;
    font-family: 'NexaTextPro-Regular';
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 5px;
}
.section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-2 p,
.section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-3 p{
    color: #1c1f24;
    font-family: 'NexaExtraLight', sans-serif;
    font-weight: 600;
    font-size: 12px;
    margin: -2px 0 18px;
    text-align: justify;
}




/*-----------FOTO OCULTA-----------*/


.foto-oculta{
    display: none;
}





/*-----------SEÇÃO PLANOS-----------*/



.section-planos{
    float: left;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #16283e, #000101);
    padding: 60px 0;
}
.section-planos .content{
    max-width: 1400px;
    width: 92%;
    margin: auto;
}
.section-planos .content .box-1 .titulo{
    width: 50%;
    float: left;
}
.section-planos .content .box-1 .titulo img.mobile{
    display: none;
}
.section-planos .content .box-1 .box-frase{
    width: 50%;
    float: right;
}
.section-planos .content .box-1 .box-frase {
    text-align: right;
}
.section-planos .content .box-1 .box-frase img{
    width: 7%;
}
.section-planos .content .box-1 .titulo h2{
    color: #fff;
    font-family: 'NexaExtraLight', sans-serif;
    margin:0;
    text-transform: uppercase;
    font-size: 42px;
    line-height: 50px;
    font-weight: 100;
}
.section-planos .content .box-1 .titulo h2 span{
    color: #a9afb3;
        font-family: 'NexaTextPro-Bold';
}
.section-planos .content .box-1 .titulo p{
    color: #ffff;
    font-family: 'NexaExtraLight', sans-serif;
    padding: 0 220px 0 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    margin: 5px 0 60px;
}
.section-planos .content .box-2{
    float: left;
    width: 100%;
    display: flex;
}
.section-planos .content .box-2 .plano1{
    width: 30%;
    float: left;
    padding: 30px;
    border: 1px solid #ffffff5e;
    border-radius: 15px;
}
.section-planos .content .box-2 .plano2{
    width: 30%;
    float: left;
    margin: 0 12px 0 12px;
    padding: 30px;
    border: 1px solid #979797;
    border-radius: 15px;
}
.section-planos .content .box-2 .plano3{
    width: 30%;
    float: right;
    padding: 30px;
    border: 1px solid #dcb665;
    border-radius: 15px;
}
.section-planos .content .box-2 .plano3:before{
    content: 'Mais contratado';
    font-family: 'NexaExtraLight', sans-serif;
    background-image: linear-gradient(to right, #bc8835, #ecce86);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    padding: 7px 15px;
    position: absolute;
    margin: -50px 0 0 168px;
    border-radius: 50px;
}
.section-planos .content .box-2 .plano1 p,
.section-planos .content .box-2 .plano2 p,
.section-planos .content .box-2 .plano3 p{
    color: #fff;
    font-family: 'NexaExtraLight', sans-serif;
    margin: 0;
    text-transform: uppercase;
    font-size: 12px;
}
.section-planos .content .box-2 .plano1 p span,
.section-planos .content .box-2 .plano2 p span,
.section-planos .content .box-2 .plano3 p span{
    font-family: 'NexaExtraLight', sans-serif;
    font-weight: 600;
}
.section-planos .content .box-2 .plano1 h3,
.section-planos .content .box-2 .plano2 h3,
.section-planos .content .box-2 .plano3 h3{
    color: #fff;
    font-family: 'NexaExtraLight', sans-serif;
    font-size: 20px;
    margin: 20px 0 0;
}
.section-planos .content .box-2 .plano1 h1,
.section-planos .content .box-2 .plano2 h1,
.section-planos .content .box-2 .plano3 h1{
    color: #fff;
    font-family: 'NexaExtraLight', sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    margin: 0;
}
.section-planos .content .box-2 .plano1 h1:before,
.section-planos .content .box-2 .plano2 h1:before,
.section-planos .content .box-2 .plano3 h1:before{
    content: '';
    background: #000;
    position: absolute;
    margin: 75px 4px 0;
    height: 1px;
    width: 5%;
}
.section-planos .content .box-2 .plano1 p.texto,
.section-planos .content .box-2 .plano2 p.texto,
.section-planos .content .box-2 .plano3 p.texto{
    color: #ffff;
    font-family: 'NexaExtraLight', sans-serif;
    font-size: 14px;
    text-transform: inherit;
    margin: 35px 0 0;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: normal;
    height: 120px;
}
.section-planos .content .box-2 .plano1 p.inclui,
.section-planos .content .box-2 .plano2 p.inclui,
.section-planos .content .box-2 .plano3 p.inclui{
    color: #ffff;
    font-weight: 700;
    border-top: 1px solid #c0c0c082;
    margin: 30px 0 0;
    padding: 20px 0 0;
    font-size: 16px;
}
.section-planos .content .box-2 .plano1 ul,
.section-planos .content .box-2 .plano2 ul,
.section-planos .content .box-2 .plano3 ul{
    padding: 0;
}
.section-planos .content .box-2 .plano1 ul li,
.section-planos .content .box-2 .plano2 ul li,
.section-planos .content .box-2 .plano3 ul li{
    font-family: 'NexaExtraLight', sans-serif;
    background-image: url(../imagens/check.png);
    list-style: none;
    padding: 0 0 0 25px;
    background-size: 20px;
    background-position: left;
    background-repeat: no-repeat;
    margin: 0 0 9px;
    color: #c1c1c1;
    font-size: 15px;
}
.section-planos .content .box-2 .plano1 p.botao,
.section-planos .content .box-2 .plano2 p.botao,
.section-planos .content .box-2 .plano3 p.botao{
    margin-top: 35px;
}
.section-planos .content .box-2 .plano1 p.botao a,
.section-planos .content .box-2 .plano2 p.botao a,
.section-planos .content .box-2 .plano3 p.botao a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #fff;
    color: #0d1b2e;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 0 18px rgb(255 255 255 / 45%);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    font-family: 'NexaPro_Trial-Book';
}
.section-planos .content .box-2 .plano1 p.botao a:hover,
.section-planos .content .box-2 .plano2 p.botao a:hover,
.section-planos .content .box-2 .plano3 p.botao a:hover{
    background: #fff;
    box-shadow: 0 0 32px rgb(255 255 255 / 47%);
    transform: translateY(-2px);
}



/*-----------SEÇÃO BÔNUS-----------*/


.section-bonus{
    float: left;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #d3d5d6, #f4f5f3);
}

.section-bonus .content .certificado{
        background-image: linear-gradient(to bottom right, #dfddde, #dddbdc);
    width: 40%;
    float: left;
}
.section-bonus .content .certificado img{
    width: 65%;
    margin-top: 18px;
}
.section-bonus .content .foto-recepcao{
    background: url(../imagens/section-certificado.jpeg);
    width: 60%;
    float: right;
    background-size: 100%;
    height: 72vh;
    background-position: center;
}

.section-bonus .content .certificado p{
    margin: 0;
    text-align: center;

}



/*-----------RODAPÉ-----------*/


.rodape{
    float: left;
    width: 100%;
    height: 100%;
    padding: 50px 0px;
    background-image: linear-gradient(to right, #151922, #03223e);
}
.rodape .content{
    max-width: 1400px;
    width: 92%;
    margin: auto;
        align-items: center;
    justify-content: center;
    display: flex;
}

.rodape .content .box-1{
    width: 65%;
    float: left;
            align-items: center;
    justify-content: center;
    display: flex;
}

.rodape .content .box-1 .logo-rodape{
    width: 22%;
    float: left;
                align-items: center;
    justify-content: left;
    display: flex;
}
.rodape .content .box-1 .conteudo{
    width: 75%;
    float: right;
}



.rodape .content .box-1 .titulo{
    width: 100%;
    float: left;
    position: relative;
    z-index: 99;
    text-align: center;
}
.rodape .content .box-1 .logo-rodape img{
    width: 88%;
}
.rodape .content .box-1 h2{
    color: #fff;
    font-family: 'NexaExtraLight', sans-serif;
    font-size: 37px;
    line-height: 46px;
    text-transform: uppercase;
    font-weight: 100;
    margin: 5px 0 12px;
}
.rodape .content .box-1 h2 span{
    font-size: 47px;
}
.rodape .content .box-1 p{
	color: #fff;
    font-family: 'NexaExtraLight', sans-serif;
    font-weight: 100;
    text-align: left;
    margin: 0;
}

.rodape .content .box-1 ul{
    padding: 0;
    margin: 0;
}
.rodape .content .box-1 ul li{
        float: left;
    font-size: 5px;
    list-style: none;
}
.rodape .content .box-1 ul li a{
    color: transparent;
}



.rodape .content .box-2{
    width: 35%;
    float: right;
    position: relative;
    z-index: 99;
}





/*COPY*/

.copy{
    padding: 10px 0;
    background: #000;
    float: left;
    width: 100%;
}
.copy p{
    margin: 0;
    font-family: 'NexaExtraLight', sans-serif;
    color: #fff;
    font-size: 13px;
    text-align: center;
}




/*-----------WHATSAPP FLUTUANTE-----------*/


.wpp-wrap{
    position:fixed;
    bottom:28px;
    right:28px;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
}
.wpp-pulse{
    position:absolute;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    opacity:.4;
    animation:wpp-ping 2s ease-out infinite
}
.wpp-pulse2{
    position:absolute;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    opacity:.2;
    animation:wpp-ping 2s ease-out infinite .6s
}
.wpp-btn{
    position:relative;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 20px rgba(37,211,102,.45);
    transition:transform .2s,box-shadow .2s;
    z-index:1;
    text-decoration:none
}
.wpp-btn:hover{
    transform:scale(1.1);
    box-shadow:0 8px 28px rgba(37,211,102,.6)
}
.wpp-tooltip{
  position:absolute;
  right:72px;
  background:#fff;
  border-radius:12px;
  padding:10px 24px 10px 10px;
  white-space:nowrap;
  font-size:13px;
  font-family:Inter,sans-serif;
  color:#0D1B2A;
  box-shadow:0 4px 16px rgba(0,0,0,.1);
  opacity:0;
  transform:translateX(8px);
  transition:opacity .25s,transform .25s;
  pointer-events:none
}
.wpp-wrap:hover .wpp-tooltip{
    opacity:1;
    transform:translateX(0)
}
@keyframes wpp-ping{
    0%{
        transform:scale(1);
        opacity:.4
    }
    70%,100%{
        transform:scale(1.9);
        opacity:0
    }
}
.wpp-btn svg{
  width: 27px;
}
@media screen and (max-width: 768px){
  .wpp-btn{
    width: 50px;
    height: 50px;
  }
  .wpp-tooltip{
    font-size: 12px;
    right: 57px !important;
  }
}




/*QR CODE*/

.wpp-qrcode{
        position: fixed;
    bottom: 119px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: inherit;
    justify-content: right;
}
.wpp-qrcode img{
    width: 4%;
}




/* ============================================================
   RESPONSIVO — adicionado sem alterar o CSS original
   Breakpoints: 1400px | 1024px | 768px | 480px
   ============================================================ */

/* ----------- 1400px (telas menores que o content fixo de 1300px) ----------- */



@media screen and (max-width: 1400px) {
   .heade .content{
    padding: 0;
    width: 90%;
    height: 90%;
   }
  .section-anderson .content,
  .section-pilares .content,
  .section-missao .content,
  .section-app .content,
  .section-diferenciais .content,
  .section-servicos .content,
  .section-planos .content,
  .rodape .content,
  .section-contabilidadeconsultiva .content{
    width: 90%;
    padding: 50px 0 0;
  }
  .section-anderson .content .box-2 img {
    width: 38%;
  }
  .section-app .content .box-2 img {
    width: 70% !important;
  }
  .section-anderson .content .box-1 h1{
    font-size: 37px;
    margin: 30px 0;
  }
  ..section-anderson .content .box-1 p{
    color: #16283f;
    font-family: 'NexaExtraLight', sans-serif;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 10px;
    text-align: justify;
  }
  .rodape .content .box-1 h2{
    font-size: 33px;
    margin: 5px 0 2px;
  }
  .rodape .content .box-1 h2 span{
    font-size: 40px;
  }
  .section-anderson .content .box-2{
    bottom: -12px;
  }
  .section-anderson{
        float: left;
    width: 100%;
    background: #fff;
    align-content: center;
    padding: 10px 0 35px;
    position: relative;
  }
  .section-planos .content .box-1 .titulo p{
    padding: 0 120px 0 0;
    font-size: 13px;
  }
  .section-contabilidadeconsultiva .content .linha1 .box-1 p{
    font-size: 11px;
  }
  .section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-2 p,
  .section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-3 p{
    font-size: 10px;
  }
  .section-anderson .content .box-1 p{
    font-size: 12px;
    padding: 0;
  }
  .section-planos .content .box-2 .plano1 ul li, .section-planos .content .box-2 .plano2 ul li, .section-planos .content .box-2 .plano3 ul li{
    font-size: 13px;
  }
  .section-planos .content .box-2 .plano1 p.texto, .section-planos .content .box-2 .plano2 p.texto, .section-planos .content .box-2 .plano3 p.texto{
    font-size: 13px;
  }
  .section-servicos .content .box-2 .caixa-conteudo-1 p, .section-servicos .content .box-2 .caixa-conteudo-2 p{
    font-size: 11px;
  }
  .section-contabilidadeconsultiva{
    padding: 0 0 50px;
  }
  .heade .content .conteudo-headline{
    bottom: 48%;
  }

  .section-anderson .content .box-1 p{
    padding: 0 8px 0 0;
    font-size: 14px;
  }
}

/* ----------- 1024px (tablets paisagem / notebooks pequenos) ----------- */


@media screen and (max-width: 1024px) {



  /* Header */
  .heade .content .conteudo-headline h1 {
    font-size: 38px;
    line-height: 44px;
  }
  .heade .content .menu .logo img {
    width: 55%;
  }



  /* Anderson */
  .section-anderson {
    height: auto;
    padding: 0;
    margin: 0 0 -16px;
  }
  .section-anderson .content {
    padding: 60px 0 0;
  }
  .section-anderson .content .box-1 p {
    padding: 0 60px 0 0;
    margin: 0 0 13px;
      text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: normal;
  }
  .section-anderson .content .box-2 img {
    width: 45%;
    margin-top: -80px;
  }
  /* Pilares */
  .section-pilares {
    height: auto;
    padding: 0 0 60px;
    position: relative;
  }
  .section-pilares .content .box-1 .conteudo2 p{
        position: absolute;
        right: 20px;
        top: 60px;
  }



  /* Missão */


  .section-missao {
    height: auto;
    position: relative;
    background-attachment: inherit;
    background-size: inherit;
  }
  .section-missao .content .box-1 p {
    padding: 0 80px 0 0;
  }


  /* App */


  .section-app {
    height: auto;
    padding: 0;
    position: relative;
  }
  .section-app .content .box-1 p {
    padding: 0 60px 0 0;
  }
  .section-app .content .box-2 img {
    width: 80% !important;
    margin: 60px 0 0;
  }
  /* Diferenciais */
  .section-diferenciais {
    height: auto;
    padding: 0;
  }
  .section-diferenciais .content .box-1 p {
    padding: 0 60px 0 0;
  }
  .section-diferenciais .content .box-1 .caixa-titulo {
    gap: 60px;
  }
  .section-diferenciais .content .box-2 .fundo{
        position: relative;
    height: 60vh;
    overflow: hidden;
    margin-top: 50px;
  }
  .section-diferenciais .content .box-2 .fundo:before {
    width: 100%;
    margin: 0;
    padding: 0;
    height: calc(100% - 0px);
  }


  /* Serviços */


  .section-servicos {
    height: auto;
    padding: 0;
    position: relative;
    float: left;
  }
  .section-servicos .content .linha2 .caixa-conteudo-2 {
    padding: 0 40px 0 0;
  }

  .section-servicos .content .linha2 .caixa-conteudo-1 p,
  .section-servicos .content .linha2 .caixa-conteudo-2 p{
    font-size: 14px;
    margin: 8px 0 19px;
    padding: 0 0 0 20px;
    display: none;
  }

  .section-servicos .content .linha2 .caixa-conteudo-1 li,
  .section-servicos .content .linha2 .caixa-conteudo-2 li{
    font-size: 18px;
    margin: 0 0 17px;
  }

  .section-servicos .content .linha2 .caixa-conteudo-1 ul,
  .section-servicos .content .linha2 .caixa-conteudo-2 ul{
            padding: 0 0 0 21px;
        margin: 0 0 20px;
  }





  /* Planos */


  .section-planos .content .box-1 .titulo p {
    padding: 0 60px 0 0;
  }
  .section-planos .content .box-2 {
    flex-wrap: wrap;
    gap: 16px;
  }
  .section-planos .content .box-2 .plano1,
  .section-planos .content .box-2 .plano2,
  .section-planos .content .box-2 .plano3 {
    width: 45%;
    float: none;
    margin: 0;
  }

  .section-planos .content .box-1 .box-frase img{
    display: none;
  }
  .section-planos .content .box-1 .titulo img.mobile{
    display: block;
    margin: 0 0 30px;
  }



  /* Bônus */


  .section-bonus {
    padding: 0 0 50px;
    position: relative;
  }
  .section-bonus .content img{
    width: 100%;
  }


  /* Rodapé */

  .rodape {
    height: auto;
    padding: 0 0 53px;
  }
  .rodape .content .box-2 p {
    width: 100%;
    margin: 80px 0 0;
    line-height: 25px;
  }


  .rodape .content .box-3 .qrcode{
    width: 45%;
  }

  .rodape .content .box-3 .mapa{
    width: 85%;
  }

  .rodape .content .box-3 .qrcode img{
    width: 56%;
  }

  .rodape .content .box-3 .qrcode{
    padding: 19px 0 0;
  }

  .rodape .content .box-3 .qrcode:after{
    content: 'Conheça Mais';
    font-family: 'NexaExtraLight', sans-serif;
    position: absolute;
    color: #fff;
    top: -4px;
    left: 40px;
    text-transform: uppercase;
    font-size: 11px;
  }



}



/* ----------- 768px (tablets retrato / mobile grande) ----------- */


@media screen and (max-width: 768px) {


  /* Header */


  .heade .content .conteudo-headline h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .heade .content .menu .logo {
    width: 60%;
  }
  .heade .content .menu .logo img {
    width: 80%;
  }
  .heade .content .menu .botao-topo {
    width: 40%;
    display: none;
  }
  .heade .content .btn-contato {
    font-size: 13px;
    padding: 6px 6px 6px 16px;
    gap: 8px;
  }

  .heade .content .conteudo-headline{
  	    position: absolute;
    bottom: 43%;
  }

  .heade .content .conteudo-headline img{
  	width: 87%;
  }



  /* Há mais de 10 anos*/


  .section-anderson .content .box-1{
    width: 90%;
    margin: 0 auto;
    float: none;
  }
  .section-anderson .content .box-1 h1{
  	color: #1c1f24;
    font-family: 'NexaExtraLight', sans-serif;
    margin: 0px 0 30px;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 42px;
    font-weight: 100;
  }
  .section-anderson .content .box-2{
    width: 100%;
    float: none;
    position: relative;
    height: auto;
    background: transparent;
    bottom: 0;
    margin-top: 50px;
  }
  .section-anderson .content .box-2 img.foto-mobile{
    display: block;
  }
  .section-anderson .content .box-2 p:nth-child(1){
    width: 90%;
    margin: 0 auto;
  }

  .section-anderson .content .box-2 p:nth-child(1) img{
  	width: 100%;
  }
  .section-anderson .content .box-2 p:nth-child(2) img{
  	width: 100%;
  }
  .section-anderson .content .box-1 p {
    padding: 0;
    margin: 0 0 13px;
  }
  .section-anderson .content .box-1 h2 {
    font-size: 32px;
    line-height: 40px;
    margin: 30px 0;
  }
  .section-anderson .content .box-2 img {
    position: relative;
    width: 100%;
    right: auto;
    margin: 30px auto 0;
    display: block;
    margin: 0;
  }



  /* Pilares */


  .section-pilares .content .box-1 .conteudo1,
  .section-pilares .content .box-1 .conteudo2 {
    width: 90%;
    float: none;
    margin: 0 auto;
  }
  .section-pilares .content .box-2{
    width: 90%;
    margin: 0 auto;
    float: none;
  }
  .section-pilares .content .box-1 .conteudo1 h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .section-pilares .content .box-1 .conteudo2 img {
    margin-top: 20px;
  }
  .section-pilares .content .box-2 p {
    margin: 30px 0 0;
    font-size: 15px;
  }



  /* Missão */


  .section-missao .content .box-1,
  .section-missao .content .box-2 {
    width: 90%;
    float: none;
    margin: 0 auto;
  }
  .section-missao .content .box-2 img{
  	position: absolute;
   margin: 0;
   width: 51%;
   bottom: 0;
  }
  .section-missao .content .box-2{
  	text-align: right;
  }
  .section-missao .content .box-1 p {
    padding: 0;
      text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: normal;
  font-size: 15px;
  margin: 12px 0 0;
  }

  .section-missao .content .box-1 p:nth-child(5){
  	margin: 12px 155px 0 0px;
  }
  .section-missao .content .box-1 ul li{
  	font-size: 15px;
  }


  .section-missao .content .box-2 p {
        text-align: left;
        margin: 20px 0 0;
        position: absolute;
        top: 39px;
        right: -18px;
  }



  /* App */


  .section-app .content .box-1{
    width: 90%;
    float: none;
    margin: 0 auto;
  }
  .section-app .content .box-2 {
    width: 100%;
    float: none;
  }
  .section-app .content .box-1 p {
    padding: 0;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-spacing: normal;
  }
  .section-app .content .box-1 h2 {
    font-size: 32px;
    line-height: 40px;
    margin: 0px 0 50px;
  }
  .section-app .content .box-2 img {
    position: relative;
    width: 100% !important;
    right: auto;
    margin: 30px auto 0;
    display: block;
  }
  .section-app .content .box-2 p {
        text-align: left;
        position: absolute;
        top: 60px;
        right: 20px;
        font-size: 12px;
        display: none;
  }
  .section-app .content .box-1 p.playstore img {
    width: 30%;
  }


  /* Diferenciais */


  .section-diferenciais .content .box-1 {
    width: 90%;
    float: none;
    margin: 0 auto;
  }
  .section-diferenciais .content .box-2{
        width: 100%;
    float: none;
    margin: 0 auto;
    position: relative;
  }
  .section-diferenciais .content .box-1 p {
    padding: 0;
  }
  .section-diferenciais .content .box-1 .caixa-titulo {
    gap: 30px;
  }
  .section-diferenciais .content .box-1 .caixa-titulo h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .section-diferenciais .content .box-2 p {
    color: #000;
    margin-top: 20px;
    position: absolute;
    right: 20px;
    top: 10px;
  }



  /* Serviços */

  .section-servicos .content{
    padding: 50px 0 !important;
  }

  .section-servicos .content .box-1{
    display: none;
  }

  .section-servicos .content .box-2 .caixa-conteudo-1{
    width: 100%;
    float: none;
  }

  .section-servicos .content .box-2{
    width: 90%;
    float: none;
    margin: 0 auto;
  }

  .section-servicos .content .box-2 .caixa-conteudo-1 p,
  .section-servicos .content .box-2 .caixa-conteudo-2 p{
    display: none;
  }

  .section-servicos .content .box-2 .caixa-conteudo-2{
    width: 100%;
    float: none;
  }

  .section-servicos .content .box-2{
    text-align: left;
  }

  .section-servicos .content .box-2 img{
    width: 15%;
    display: none;
  }
  .section-servicos .content .box-2 img.mobile{
    display: block;
    width: 15%;
    margin: 0 0 30px;
    float: none;
  }

  .section-servicos .content .box-2 .caixa-conteudo-1 ul,
  .section-servicos .content .box-2 .caixa-conteudo-2 ul{
    margin: 0;
  }

  .section-servicos .content .box-2 .caixa-conteudo-1 li,
  .section-servicos .content .box-2 .caixa-conteudo-2 li{
    font-size: 17px;
    margin: 0 0 18px;
  }
  .section-servicos .content .box-2 .caixa-conteudo-2 li:nth-child(5){
    margin: 0 !important;
  }




/*  FOTO MOBILE SERVIÇOS*/

.foto-oculta-servicos{
    display: block;
}
.foto-oculta-servicos img{
    width: 100%;
}



  /* Planos */


  .section-planos .content .box-1 .titulo,
  .section-planos .content .box-1 .box-frase {
    width: 100%;
    float: none;
  }
  .section-planos .content .box-1{
    width: 90%;
    margin: 0 auto;
  }
  .section-planos .content .box-2{
    width: 90%;
    margin: 0 auto;
    float: none;
  }
  .section-planos .content .box-1 .titulo p {
    padding: 0;
    margin: 10px 0 30px;
  }
  .section-planos .content .box-1 .titulo h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .section-planos .content .box-1 .box-frase p {
        position: absolute;
        right: 20px;
        top: 51px;
        text-align: right;
        display: none;
  }
  .section-planos .content .box-2 {
    flex-direction: column;
  }
  .section-planos .content .box-2 .plano1,
  .section-planos .content .box-2 .plano2,
  .section-planos .content .box-2 .plano3 {
        width: 92%;
        margin: 0 0 25px;
        padding: 60px 20px 30px;
  }
  .section-planos .content .box-2 .plano3:before {
    margin: -80px 0 0 220px;
  }



  /* Certificado */

  .section-bonus{
    padding: 0;
  }

  .section-bonus .content{
    padding: 0;
  }

  .section-bonus .content .certificado{
    width: 100%;
    float: none;
    margin: 0;
  }
  .section-bonus .content .foto-recepcao{
    display: none;
  }

  .section-bonus .content .certificado img{
    width: 85%;
    margin: 0 0 17px;
  }


  

  /* Rodapé */



  .rodape{
    position: relative;
  }

  .rodape .content .box-1 .frase {
    width: 100%;
    float: none;
    margin: -4px 0 0 -5px;
  }
  .rodape .content .box-2{
    width: 90%;
    float: none;
    margin: 0 auto;
  }
  .rodape .content .box-1 .titulo h2 {
    font-size: 22px !important;
    line-height: 40px;
    margin: 25px 0 0;
  }
  .rodape .content .box-1 .titulo h2 span{
    font-size: 29px;
  }
  .rodape .content .box-1 p{
    text-align: right;
    width: 96%;
    margin: 0;
  }

  .rodape .content .box-1 .frase p {
    text-align: left;
    margin: 10px 0 0;
  }
  .rodape .content .box-2 ul li {
    float: none;
    margin: 0 0 8px;
  }
  .rodape .content .box-3 {
        flex-direction: column-reverse;
        width: 90%;
        margin: 33px auto -1px;
        float: none;
        align-items: baseline;
  }

  .rodape .content .box-2 ul{
  	text-align: center;
    margin: 0;
  }

  .rodape .content .box-3 p{
  	font-size: 14px;
  }
  .rodape .content .box-3 p .vazia{
  	display: block !important;
  }

  .rodape .content .box-2 ul li a{
    color: transparent !important;
    font-size: 2px;
  }


}



/* ----------- 480px (smartphones) ----------- */



@media screen and (max-width: 480px) {



  /* Header */



  .heade{
    position: relative;
    height: 100vh;
    float: left;
    width: 100%;
    overflow: hidden;
  }
  .heade .content .conteudo-headline h1 {
    font-size: 25px;
    line-height: 30px;
  }
  .heade .content .menu .logo img {
    width: 25%;
  }
  .heade .content .btn-contato {
    font-size: 11px;
    padding: 5px 5px 5px 12px;
    gap: 6px;
  }
  .heade .content .btn-contato .icone {
    width: 22px;
    height: 22px;
  }


  /* Títulos de seção */
  .section-anderson .content .box-1 h2,
  .section-pilares .content .box-1 .conteudo1 h2,
  .section-app .content .box-1 h2,
  .section-servicos .content .linha1 .box-1 h2,
  .section-planos .content .box-1 .titulo h2,
  .section-bonus .content .box-1 h2,
  .rodape .content .box-1 .titulo h2 {
    font-size: 30px;
    line-height: 36px;
  }



  /* Excelência em Gestão e Consultoria */


  .section-anderson .content .box-1 img{
    width: 15%;
    display: none;
  }


/*  Serviços*/

.section-servicos .content{
    width: 100% !important;
    max-width: 100% !important;
}



  /* App — play store */


  .section-app .content .box-1 p.playstore img {
    width: 35%;
  }
  .section-app .content .box-2 img {
    width: 100% !important;
  }
  .section-app .content img{
    width: 15%;
    display: none;
  }



  /* Anderson — foto */


  .section-anderson .content .box-2 img {
    width: 100%;
  }
  .section-anderson .content{
    width: 100% !important;
    max-width: 100% !important;
  }


  /* Entre Pilares, Rotas e Decisões */


  .section-pilares .content .box-1 .conteudo1 img{
    width: 15%;
  }



  /* Missão, Visão e Valores */
  .section-missao{
        height: auto;
        position: relative;
        background-image: linear-gradient(to right, #ff000000, #d4d6d8);
        margin-top: -17px;
  }
  .section-missao .content .box-1 img{
    width: 15%;
    display: none;
  }



  /* Planos */

  .section-planos .content{
    width: 100% !important;
    max-width: 100% !important;
  }



  .section-planos{
    position: relative;
    padding: 0 0 50px;
  }
  .section-planos .content .box-2 .plano1 h1,
  .section-planos .content .box-2 .plano2 h1,
  .section-planos .content .box-2 .plano3 h1{
    font-size: 35px;
  }
  .section-planos .content .box-2 .plano3:before {
    font-size: 12px;
    margin: -76px 0 0 143px;
  }
  .section-planos .content .box-1 .titulo img{
    width: 15%;
  }
  .section-planos .content .box-2 .plano1 p.botao a,
  .section-planos .content .box-2 .plano2 p.botao a,
  .section-planos .content .box-2 .plano3 p.botao a{
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
  }

  .section-planos .content .box-2 .plano1 p.texto, 
  .section-planos .content .box-2 .plano2 p.texto,
  .section-planos .content .box-2 .plano3 p.texto{
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: normal;
  }



  /* Contabilidade — linha separador oculto */


  .section-servicos .content .linha2 .caixa-conteudo-1 {
     width: 90%;
     margin: 0 auto;
     padding: 0;
  }



  /*  CONTABILIDADE TRADICIONAL*/

  .section-contabilidadeconsultiva{
    width: 100%;
    margin: 0 auto;
    height: 100%;
    float: left;
  }

  .section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-1{
    width: 100%;
    height: auto;
  }

  .section-contabilidadeconsultiva .content{
    width: 90%;
        float: none;
        margin: 0 auto;
                padding: 50px 0 0;
  }

  .section-contabilidadeconsultiva .content .linha1 .box-1{
    float: none;
    width: 100%;
  }

  .section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-2{
    width: 100%;
    padding: 0;
  }

  .section-contabilidadeconsultiva .content .linha2{
    display: inherit;
  }

  .section-contabilidadeconsultiva .content .linha1 .box-2 p{
    display: none;
  }

  .section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-3{
    width: 100%;
  }

  .section-contabilidadeconsultiva .content .linha1 .box-1 h2{
            font-size: 32px;
        line-height: 32px;
        margin: 50px 0 20px;
  }
  .section-contabilidadeconsultiva .content .linha1 .box-1 h2 br{
    display: none;
  }

  .section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-2 p,
  .section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-3 p{
            text-align: left;
            display: none;
 
  }

  .section-contabilidadeconsultiva .content .linha1 .box-1 img{
    width: 15%;
  }

  .section-contabilidadeconsultiva .content .linha1 .box-1 p{
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: normal;
  }
  .section-contabilidadeconsultiva .content .linha1 .box-1 p strong{
    font-family: 'NexaPro_Trial-Book';
  }

  .section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-2 h3,
  .section-contabilidadeconsultiva .content .linha2 .caixa-conteudo-3 h3{
    margin: 0 0 18px;
    font-size: 17px;
  }


  .section-contabilidadeconsultiva .content .linha1 .box-2 img{
    display: none;
  }
  .section-contabilidadeconsultiva .content .linha1 .box-1 img.mobile{
    display: block;
  }

  

  /*-----------FOTO OCULTA-----------*/


  .foto-oculta{
    display: block;
    margin: 0 0 -10px;
  }
  .foto-oculta img{
    width: 100%;
  }





  /* Bônus */


  .section-bonus{
    position: relative;
    margin: 0 0 -22px;
  }
  .section-bonus .content .box-2 h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .section-bonus .content .box-1 img{
    width: 100%;
  }


  /* Rodapé */

  .rodape{
    padding: 60px 0;
  }

  .rodape .content{
    padding: 0;
  }


  .rodape .content .box-2 p {
    width: 100%;
    line-height: 25px;
  }
  .wpp-wrap{
    bottom: 28px;
    right: 28px;
  }
  .rodape .opacidade{
    height: 100%;
  }
  .rodape .content .box-1,
  .rodape .content .box-2{
    width: 86%;
    margin: 0 auto;
    float: none;
    display: block;
  }
  .rodape .content .box-2{
    margin-top: 40px;
  }
  .rodape .content .box-1 .titulo img{
    width: 29%;
  }


  .rodape .content .box-1 .logo-rodape{
    width: 100%;
    float: none;
    display: block;
    text-align: center;
  }
  .rodape .content .box-1 .logo-rodape img{
    width: 33%;
  }
  .rodape .content .box-1 h2{
        font-size: 23px;
        text-align: center;
        line-height: 30px;
        margin-top: 15px;
  }
  .rodape .content .box-1 h2 span{
    font-size: 32px;
  }
  .rodape .content .box-1 .conteudo{
    float: none;
    width: 100%;
  }

  .rodape .content{
        align-items: inherit;
    justify-content: center;
    display: block;
  }

  .rodape .content .box-2 .maps{
    padding-bottom: 50.25% !important;
  } 

  .rodape .content{
    width: 100% !important;
    max-width: 1005 !important;
  }





/*  QR CODE*/

.wpp-qrcode{
        position: fixed;
    bottom: 112px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: inherit;
    justify-content: right;
}

.wpp-qrcode img{
    width: 15%;
}



}