@font-face {
    font-family: 'Gilroy-Black';
    src: url('css/fontes/gilroy-black-webfont.woff2') format('woff2'),
         url('css/fontes/gilroy-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy-Bold';
    src: url('css/fontes/gilroy-bold-webfont.woff2') format('woff2'),
         url('css/fontes/gilroy-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy-Extrabold';
    src: url('css/fontes/gilroy-extrabold-webfont.woff2') format('woff2'),
         url('css/fontes/gilroy-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('css/fontes/gilroy-heavy-webfont.woff2') format('woff2'),
         url('css/fontes/gilroy-heavy-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy-Medium';
    src: url('css/fontes/gilroy-medium-webfont.woff2') format('woff2'),
         url('css/fontes/gilroy-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('css/fontes/gilroy-regular-webfont.woff2') format('woff2'),
         url('css/fontes/gilroy-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy-SemiBold';
    src: url('css/fontes/gilroy-semibold-webfont.woff2') format('woff2'),
         url('css/fontes/gilroy-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
::-webkit-scrollbar-thumb {
	background-color: #5F45FC;
}
::-webkit-scrollbar {
	width: 8px;
}
html{
	scroll-behavior: smooth;
}
body{
    font-family: 'Gilroy';
    font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	font-size: 16px;
    color: #313A54;
}
header{
	position: fixed;
	width: 100%;
	z-index: 1000;
	padding: 20px 0;
	transition: all 0.5s;
}
header.menufixo{
	background-color: #F4F7FF;
	padding: 5px 0;
    top: 0;
}
a.logo{
	width: 100%;
	height: auto;
	cursor: pointer;
}
a.logo img{
	width: 100%;
	height: auto;
	transition: all 0.5s;
	max-width: 190px;
}
header.menufixo a.logo img{
	width: 80%;
	max-width: 140px;
	padding-top: 15px;
}
nav{
	position: relative;
}
nav ul{
	padding: 0 0 0 0;
	list-style: none;
	padding-top: 10px;
}
nav ul li{
	display: inline-block;
	margin: 0px 5px;
}
nav ul li a{
	padding: 15px 10px;
	font-size: 17px;
	line-height: auto;
	color: #40445F;
	position: relative;
	vertical-align: middle;
}
nav ul li a.ctamenu1{
	padding: 15px 18px;
    background: #9164FF;
    border-radius: 100px;
	color: #FFFFFF;
}
nav ul li a.ctamenu2{
	padding: 15px 18px;
	background: none;
	border: 1px solid #9164FF;
    border-radius: 100px;
	color: #9164FF;
}
.floatrightmenu{
	float: right;
}
nav ul li a img{
	width: 9px;
	height: auto;
	margin-left: 5px;
}
nav ul li a:hover,
nav ul li a.ativo{
	cursor: pointer;
	text-decoration: none;
	color: #40445F;
}
header nav ul li:hover a:after,
header nav ul li a.ativo:after{
	display: block;
}
header nav ul li a:after{
	content: '';
	position: absolute;
	width: 35px;
	height: 4px;
	left: 50%;
	margin-left: -17px;
	bottom: 5px;
	background: #40445F;
	border-radius: 30px;
	display: none;
}
header nav ul li:hover a.ctamenu1:after,
header nav ul li a.ativo.ctamenu1:after,
header nav ul li:hover a.ctamenu2:after,
header nav ul li a.ativo.ctamenu2:after{
	display: none;
}
nav ul li a.ctamenu1:hover,
nav ul li a.ctamenu2:hover{
	background: #5F45FC;
	border-color:#5F45FC;
	color: #FFFFFF;
}
nav ul li ul{
	display: none;
}
nav ul li:hover ul{
	display: block;
	position: absolute;
	background-color: #fff;
	padding: 15px 15px 15px 0;
	border-radius: 0 0 20px 20px;
}
nav ul li:hover ul li{
	display: block;
}
nav ul li ul li a{
	display: block;
	padding: 7px 20px;
}
header nav ul li:hover ul li a:after{
	display: none;
}
.menuMobile{
	border: 0;
	border-radius: 0;
	padding: 8px;
	cursor: pointer;
	float: right;
    background: none;
}
.menuMobile:hover{
	opacity: 0.8;
}
.overlayMenu{
	height: 0%;
	width: 100%;
	background-color: #FFFFFF;
	z-index: 1200;
	position: fixed;
	right: 0;
	top: 0;
	overflow: hidden;
	transition: all 0.5s;
}
.closeMenu{
	position: absolute;
    top: 40px;
    right: 30px;
}
.menuConteudo a.logo img{
	max-width: 180px;
}
.menuConteudo nav ul{
	padding-top: 30px;
	padding-left: 0px;
}
.menuConteudo nav ul li{
	display: block;
	margin-bottom: 10px;
	margin-left: 0;
}
.menuConteudo{
	padding: 60px 40px 40px 40px;
}
.topo{
    background: #F4F7FF;
    padding-top: 120px;
    padding-bottom: 100px;
    position: relative;
}
.chamada h1{
    font-size: 54px;
    line-height: 64px;
    letter-spacing: -1px;
    color: #313A54;
    font-family: 'Gilroy';
    font-weight: normal;
    margin-top: 100px;
}
.chamada h1 b{
    font-family: 'Gilroy-SemiBold';
    color: #9164FF;
}
.chamada p{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #313A54;
    margin: 15px 0 30px 0;
}
.ctaPadrao1,
a.ctaPadrao1{
    padding: 12px 15px;
    background: #9164FF;
    border-radius: 100px;
    color: #FFFFFF;
    margin: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Gilroy-SemiBold';
    display: inline-block;
    margin-bottom: 15px;
}
.ctaPadrao2,
a.ctaPadrao2{
    padding: 12px 15px;
    border: 2px solid #313A54;
    border-radius: 100px;
    color: #313A54;
    margin: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Gilroy-SemiBold';
}
.ctaPadrao3,
a.ctaPadrao3{
    padding: 12px 16px;
    background: #5F45FC;
    border-radius: 100px;
    color: #FFFFFF;
    margin: 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Gilroy-SemiBold';
}
.ctaPadrao1:hover,
a.ctaPadrao1:hover,
.ctaPadrao2:hover,
a.ctaPadrao2:hover{
	background: #5F45FC;
	border-color:#5F45FC;
	color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
}
.ctaPadrao3:hover,
a.ctaPadrao3:hover{
	background: #9164FF;
	border-color:#9164FF;
	color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
}
.fotoDestaque{
    background-image: url(images/artefundo1.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}
.imagemTopo{
    text-align: center;
    position: relative;
    width: 100%;
    height: auto;
    max-width: 340px;
}
.imagemTopo2{
    position: absolute;
    top: 100px;
    left: 50px;
    animation:artetopo2 7s infinite linear;
}
.imagemTopo1{
    position: absolute;
    top: 320px;
    right: 0px;
    animation:artetopo1 4s infinite linear;
}
@keyframes artetopo1{
    0%  {right: 0px;}
    50% {right: 30px;}
    100%{right: 0px;} 
}
@keyframes artetopo2{
    0%  {top: 100px;}
    50% {top: 80px;}
    100%{top: 100px;} 
}
.dados{
    margin-top: -140px;
    position: relative;
}
.dadosArea{
    background: #FFFFFF;
    box-shadow: 0px 18px 40px rgba(112, 144, 176, 0.12);
    border-radius: 12px;
    padding: 40px 40px;
}
.dados h2{
    font-family: 'Gilroy';
    font-size: 26px;
    line-height: 30px;
    font-weight: normal;
    color: #313A54;
}
.dados h2 b{
    font-family: 'Gilroy-SemiBold';
    color: #5F45FC;
}
.dadosInfo{
    padding: 30px 0px 0 0px;
    position: relative;
}
.dadosInfo:before{
    height: 30px;
    background: #A3AED0;
    width: 1px;
    content: '';
    display: block;
    position: absolute;
    left: -20px;
}
.dadosInfo img{
    display: inline-block;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    vertical-align: top;
}
.dadosInfo h4{
    font-size: 16px;
    line-height: 21px;
    color: #313A54;
    display: inline-block;
    font-family: 'Gilroy';
    font-weight: normal;
    align-items: center;
    justify-content: center;
    width: 75%;
    vertical-align: top;
}
.dadosInfo h4 b{
    font-family: 'Gilroy-SemiBold';
}
.dadosInfo h4 span{
    font-size: 12px;
    line-height: 14px;
    color: #7B8BBA;
    font-family: 'Gilroy';
    font-weight: normal;
    display: block;
    margin-top: 5px;
}
.foto img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.sobreHome{
    padding: 140px 0;
}
.sobreHome h2{
    position: relative;
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
    color: #313A54;
}
.sobreHome h6{
    font-size: 18px;
    line-height: 21px;
    color: #5F45FC;
    font-weight: 400;
}
.sobreHome h2:after{
    content: '';
    position: absolute;
    width: 3px;
    height: 114px;
    left: -25px;
    top: 20px;
    background: #5F45FC;
}
.areaImagemSobreHome{
    background-image: url(images/artefundo2.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}
.imagemSobreHome{
    background: #FFFFFF;
    box-shadow: 0px 18px 40px rgba(112, 144, 176, 0.12);
    border-radius: 12px;
    width: 290px;
    padding: 10px;
    text-align: center;
    position: relative;
    margin: 0 auto;
}
.imagemSobreHome h6{
    margin-top: 10px;
}
.entenda{
    padding: 80px 0;
    text-align: center;
}
h2.titulo{
    font-weight: 400;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
    color: #313A54;
}
h2.titulo b{
    font-family: 'Gilroy-Medium';
}
h2.titulo span{
    color: #5F45FC;
    font-family: 'Gilroy-SemiBold';
}
.comoTrabalhamos{
    display: flex;
}
.comoTrab{
    text-align: center;
    margin: 50px 0 80px 0;
    padding: 0 40px;
    position: relative;
}
.comoTrab:before{
    content: '';
    opacity: 0.3;
    height: 1px;
    width: 100%;
    background-color: #313A54;
    display: block;
    position: absolute;
    left: 0;
    top: 23px;
    z-index: 1;
}
.comoTrab1:before{
    width: 50%;
    left: 50%;
}
.comoTrab3:before{
    width: 50%;
}
.labelComoTrab{
    background: #FFFFFF;
    border: 2px solid #313A54;
    width: 46px;
    height: 46px;
    border-radius: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.labelComoTrab span{
    font-size: 22px;
    line-height: 26px;
    letter-spacing: -1px;
    color: #313A54;
    padding-top: 10px;
    display: block;
}
.comoTrab h4{
    font-size: 18px;
    line-height: 21px;
    font-family: 'Gilroy-SemiBold';
    color: #313A54;
    margin-top: 20px;
}
.comoTrab p{
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #556493;
}
.labelComoTrabImg{
    width: 46px;
    height: 46px;
    border-radius: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.labelComoTrabImg:before{
    content: '';
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 100%;
    margin: 0 auto;
    border: 1px solid #5F45FC;
    left: -4px;
    top: -4px;
    animation:circuloTrabalhe1 4s infinite;
}
@keyframes circuloTrabalhe1{
    0%  {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    100%{
        opacity: 1;
    } 
}
.labelComoTrabImg:after{
    content: '';
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 100%;
    margin: 0 auto;
    border: 1px solid #5F45FC;
    left: -4px;
    top: -4px;
    opacity: 0.2;
    animation:circuloTrabalhe2 4s infinite linear;
}
@keyframes circuloTrabalhe2{
    0%  {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.4);
    }
    80% {
        opacity: 0.4;
    }
    100%{
        opacity: 1;
        transform: scale(1);
    } 
}
.solucoes{
    padding: 80px 0;
}
.imagemSolucoes{
    background-image: url(images/artefundo5.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    position: sticky;
    top: 75px;
}
.imagemSolucoes img{
    margin-top: 30%;
}
.infoSolucoes{
    padding: 30px 15px;
}
.infoSolucoes.ativo{
    background: #FFFFFF;
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.02), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0151852), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0121481), 0px 20px 13px rgba(0, 0, 0, 0.01), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.00785185), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.00481481);
    border-radius: 10px;
}
.infoSolucoesTopo{
    color: #313A54;
    cursor: pointer;
}
.infoSolucoesImg{
    width: 40px;
    height: 40px;
    background: none;
    border: 2px solid #808594;
    border-radius: 140px;
    padding: 5px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
}
.infoSolucoes.ativo .infoSolucoesImg{
    background: #F4F7FF;
    border: 2px solid #5F45FC;
}
.infoSolucoesTopo img{
    width: 20px;
    filter: grayscale(100%) brightness(160%);
	transition: all 0.5s;
}
.infoSolucoes.ativo .infoSolucoesTopo img{
    width: 20px;
    filter: none;
}
.infoSolucoes .infoSolucoesTopo h4{
    font-size: 18px;
    line-height: 21px;
    color: #808594;
    font-family: 'Gilroy-SemiBold';
    display: inline-block;
}
.infoSolucoes.ativo .infoSolucoesTopo h4{
    color: #313A54;
}
.infoSolucoes .infoSolucoesTexto p{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #313A54;
    padding-left: 55px;
    display: none;
}
.infoSolucoes.ativo .infoSolucoesTexto p{
    display: block;
}
.solucoes .ctaPadrao3{
    margin-top: 30px;
    display: inline-block;
}
.solucoes h2.titulo{
    margin-bottom: 30px;
}
.financeiro{
    padding: 80px 0;
}
.imagemFinanceiro{
    height: 690px;
}
.imagemFinanceiro img{
    border-radius: 10px;
}
h4.titulo{
    font-weight: 400;
    font-size: 21px;
    line-height: 28px;
    color: #5F45FC;
}
.financeiro p{
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #313A54;
}
.vantagensFinanceiro{
    display: flex;
    flex-wrap: wrap;
}
.vantFin{
    margin: 12px 10px;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.02), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0151852), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0121481), 0px 20px 13px rgba(0, 0, 0, 0.01), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.00785185), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.00481481);
    border-radius: 16px;
    width: 44%;
    flex-grow: 1;
}
.vantFin h4{
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.5px;
    color: #313A54;
    font-family: 'Gilroy-SemiBold';
}
.vantFin p{
    font-size: 18px;
    line-height: 21px;
    color: #808594;
    font-family: 'Gilroy-Medium';
}
.contabilidadeOnline{
    padding: 80px 0;
    text-align: center;
}
.contabilidadeOnline p{
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #313A54;
    margin-bottom: 60px;
}
.areaSwiper{
	width: 100%;
	position: relative;
    padding: 0px 0px;
	margin-top: 40px;
}
a.areaVantagem{
    cursor: pointer;
}
a.areaVantagem:hover{
    text-decoration: none;
}
a.areaVantagem p{
    margin-top: 20px;
    margin-bottom: 20px;
}
a.areaVantagem .foto{
    height: 280px;
}
a.areaVantagem .foto img{
    border-radius: 15px;
}
.swiperControles{
	display: block;
	position: absolute;
	bottom: -30px;
	right: 0;
	height: 30px;
	width: 100%;
}
.swiper-button-prev:after,
.swiper-button-next:after{
	display: none;
}
.swiper-button-prev1,
.swiper-button-prev2,
.swiper-button-prev3{
	left: 20px;
    background: #FCFCFC;
    border: 0.5px solid #F5F5F5;
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.02), 0px 64px 46px rgba(0, 0, 0, 0.01), 0px 38px 25px rgba(0, 0, 0, 0.01), 0px 20px 13px rgba(0, 0, 0, 0.01), 0px 8px 6px rgba(0, 0, 0, 0.01), 0px 1.8px 3px rgba(0, 0, 0, 0.01);
    border-radius: 100px;
    width: 45px;
    height: 45px;
}
.swiper-button-next1,
.swiper-button-next2,
.swiper-button-next3{
	right: 20px;
    background: #FCFCFC;
    border: 0.5px solid #F5F5F5;
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.02), 0px 64px 46px rgba(0, 0, 0, 0.01), 0px 38px 25px rgba(0, 0, 0, 0.01), 0px 20px 13px rgba(0, 0, 0, 0.01), 0px 8px 6px rgba(0, 0, 0, 0.01), 0px 1.8px 3px rgba(0, 0, 0, 0.01);
    border-radius: 100px;
    width: 45px;
    height: 45px;
}
.swiper-pagination1,
.swiper-pagination2,
.swiper-pagination3{
	top: 2px !important;
	margin-right: 30px;
}
.swiper-pagination-bullet {
	background: #DADADA !important;
	border-radius: 75px;
	opacity: 1;
	transition: all 0.2s;
	height: 12px;
	width: 12px;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 7px) !important;
}
.swiper-pagination-bullet-active{
	width: 12px;
	height: 12px;
	background: #5F45FC !important;
}
.swiper-button-disabled{
	display: none;
}
.atendimento{
    padding: 80px 0;
}
.atendimento p{
    font-size: 18px;
    line-height: 21px;
    margin: 20px 0 40px 0;
}
.miniboxDepoAten{
    position: relative;
}
.miniboxDepoAten:after{
    content: '';
    display: block;
    background: #fff;
    box-shadow: 0px 38px 25px rgba(0, 0, 0, 0.01), 0px 20px 13px rgba(0, 0, 0, 0.01), 0px 8px 6px rgba(0, 0, 0, 0.01), 0px 1.8px 3px rgba(0, 0, 0, 0.00481481);
    border-radius: 10px;
    position: absolute;
    bottom: 30px;
    z-index: 1;
    height: 55px;
    width: 80%;
    left: 10%;
}
.depoimentoAtendimento{
    background: #FFFFFF;
    box-shadow: 0px 20px 10px rgba(0, 0, 0, 0.02), 0px 40px 40px rgba(0, 0, 0, 0.01), 0px 10px 25px rgba(0, 0, 0, 0.01), 0px 20px 13px rgba(0, 0, 0, 0.01), 0px 8px 6px rgba(0, 0, 0, 0.01), 0px 1.8px 3px rgba(0, 0, 0, 0.01);
    border-radius: 10px;
    position: relative;
    margin: 30px 30px 50px 30px;
    padding: 20px 30px;
    z-index: 2;
}
.depoimentoAtendimento p{
    font-size: 16px;
    line-height: 23px;
}
.depoimentoAtendimento h5{
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #5F45FC;
    font-family: 'Gilroy-Medium';
}
.depoimentoAtendimento h5 span{
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #5E6282;
}
.planos{
    padding: 80px 0;
    text-align: center;
}
.tabPlano{
    border: 1px solid #F4F7FF;
    border-radius: 70px;
    display: flex;
    width: 460px;
    margin: 40px auto;
}
.buttonTabPlano{
    font-family: 'Gilroy-SemiBold';
    font-size: 14px;
    line-height: 42px;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    height: 48px;
    padding: 3px 30px;
    color: #A3AED0;
    cursor: pointer;
    width: 230px;
}
.buttonTabPlano:hover{
    color: #5F45FC;
}
.buttonTabPlano.ativo{
    background: #F4F7FF;
    box-shadow: inset 0px 4px 14px rgba(95, 69, 252, 0.16);
    border-radius: 70px;
    color: #5F45FC;
}
.conteudoPlano{
    display: none;
}
.conteudoPlano.ativo{
    display: block;
}
.conteudoDestaque{
    padding: 80px 0;
}
.conteudoDestaque p{
    margin: 20px 0 40px 0;
}
.imagemConteudoDestaque{
    background-image: url(images/artefundo3.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}
.imagemConteudoDestaque .foto{
    height: 350px;
}
.imagemConteudoDestaque img{
    width: 60%;
    margin-left: 30%;
    border-radius: 20px;
}
.perguntas{
    padding: 80px 0;
    text-align: center;
}
.formbusca{
    position: relative;
    margin: 20px 0;
    display: inline-block;
}
.formbusca input{
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 78px;
    width: 320px;
    height: 48px;
    padding: 5px 10px 5px 40px;
}
.formbusca:before{
    content: '';
    position: absolute;
    background-image: url(images/icone_busca.svg);
    width: 24px;
    height: 24px;
    display: block;
    left: 10px;
    top: 10px;
}
.sanfonaClean .card{
	background: none;
	box-shadow: none;
	border-radius: 0;
	margin-bottom: 0;
    border: none;
}
.sanfonaClean .card-header{
    text-align: left;
    padding: 0;
    background-color: transparent;
    border: none;
    font-size: 18px;
    line-height: 21px;
    color: #5F45FC;
    font-family: 'Gilroy-SemiBold';
	padding: 30px 30px 0 30px;
}
.sanfonaClean .btn-link{
	padding: 0px 0;
	transition: all 0.2s;
}
.sanfonaClean .btn-link.collapsed{
	color: #ffffff;
    box-shadow: none;
}
.sanfonaClean p{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #313A54;
    text-align: left;
}
.sanfonaClean .card-body{
	padding: 20px 30px 15px 30px;
}
.sanfonaClean .card .btn-link img{
    filter: none;
    transform: rotate(180deg);
	transition: all 0.2s;
    position: absolute;
    right: 20px;
    top: 40px;
    width: 14px;
}
.sanfonaClean .card .btn-link.collapsed img{
    filter: grayscale(100%) brightness(160%);
    transform: rotate(0deg);
}
.sanfonaClean2 .btn-link{
	color: #5F45FC;
}
.sanfonaClean2 .btn-link.collapsed{
	color: #313A54;
}
.btn-link:hover{
    text-decoration: none;
}
.collapse.show{
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.02), 0px 64px 46px rgba(0, 0, 0, 0.01), 0px 38px 25px rgba(0, 0, 0, 0.01), 0px 20px 13px rgba(0, 0, 0, 0.01), 0px 8px 6px rgba(0, 0, 0, 0.01), 0px 1.8px 3px rgba(0, 0, 0, 0.01);
    border-radius: 10px;
}

.rodape{
	padding: 80px 0 15px 0;
    background-color: #F4F7FF;
}
img.logorodape{
	width: 100%;
	height: auto;
	display: block;
	max-width: 190px;
}
.rodape h5{
	margin-top: 20px;
	font-family: 'Gilroy-SemiBold';
	font-size: 14px;
	line-height: 21px;
	color: #313A54;
}
.rodape a.ctaPadrao2{
	margin-top: 25px;
}
.rodape h4{
	font-family: 'Gilroy-Bold';
	font-size: 20px;
	margin-bottom: 20px;
	color: #313A54;
    margin-top: 15px;
}
.rodape h6{
	font-family: 'Gilroy';
    font-weight: 400;
	font-size: 20px;
	margin-bottom: 20px;
	color: #313A54;
    display: inline-block;
}
.rodape h6 b{
	font-family: 'Gilroy-SemiBold';
}
.menuFast{
	margin-bottom: 35px;
}
.menuFast a{
	font-family: 'Gilroy-SemiBold';
	font-size: 14px;
	line-height: 32px;
	color: #313A54;
	display: block;
}
.menuFast a:hover{
	color: #5F45FC;
	text-decoration: none;
}
.social{
	margin-top: 20px;
}
.social a{
	margin: 10px 20px 0 0;
}
.social a:hover{
	text-decoration: none;
}
.social a:hover img{
	-webkit-filter: brightness(1) invert(1);
  	filter: brightness(1) invert(1);
}
a.ctaRodape,
.ctaRodape{
    border: 2px solid #5F45FC;
    border-radius: 100px;
    color: #5F45FC;
    font-size: 14px;
	font-family: 'Gilroy-SemiBold';
    padding: 12px 16px;
    margin: 10px 15px;
}
a.ctaRodape:hover,
.ctaRodape:hover{
    background: #e5e6ff;
    text-decoration: none;
}
.infoPlanos{
    margin-top: 20px;
}
.boxPlano{
    border: 1px solid #A3AED0;
    border-radius: 12px 12px 0px 0px;
    padding: 18px;
    position: relative;
    min-height: 300px;
}
.boxPlano h2{
    font-family: 'Gilroy-SemiBold';
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #313A54;
    height: 55px;
    margin-bottom: 0;
}
.boxPlano h6{
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #313A54;
    height: 30px;
    margin: 10px 0 20px 0;
}
.boxPlano h6 span{
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    text-decoration-line: line-through;
    color: #FF177B;
}
.preco{
    font-family: 'Gilroy-Bold';
    font-size: 60px;
    line-height: 38px;
    text-align: center;
    color: #313A54;
}
span.moeda{
    font-family: 'Gilroy-SemiBold';
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    letter-spacing: -1px;
    color: #313A54;
    vertical-align: top;
    margin-right: 5px;
}
span.prazo{
    font-family: 'Gilroy-SemiBold';
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    letter-spacing: -1px;
    color: #313A54;
    vertical-align: bottom;
}
.boxPlano p{
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #313A54;
    margin: 20px 0;
    height: 30px;
}
a.ctaPlano,
.ctaPlano{
    font-family: 'Gilroy-SemiBold';
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #5F45FC;
    border-radius: 100px;
    display: inline-block;
    width: 90%;
    height: 38px;
    padding-top: 12px;
    position: relative;
}
a.ctaPlano2,
.ctaPlano2{
    background-color: #FDA700;
}
a.ctaPlano:hover,
.ctaPlano:hover{
    text-decoration: none;
    background-color: #9164FF;
}
.recomendado{
    position: absolute;
    background-color: #FDA700;
    font-size: 8px;
    line-height: 10px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #313A54;
    border-radius: 12px;
    padding: 7px 12px;
    top: -10px;
    margin: 0 auto;
    width: 100px;
    left: 50%;
    margin-left: -50px;
}
.boxPlano2{
    text-align: left;
    min-height: 300px;
}
.boxPlano2 h2{
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #313A54;
    padding-top: 50%;
}
.tituloPlano{
    display: none;
}
.tituloPlano h2{
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #313A54;
    margin: 40px 0;
    text-align: center;
}
.boxPlano2 h2 span,
.tituloPlano h2 span{
    font-family: 'Gilroy-SemiBold';
    color: #5F45FC;
}
ul.listaPlano{
    padding-left: 0;
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}
ul.listaPlano li{
    text-align: left;
    font-family: 'Gilroy-SemiBold';
    font-size: 14px;
    line-height: 16px;
    color: #313A54;
    height: 40px;
    vertical-align: middle;
    width: 100%;
    flex-grow: 1;
    width: 100%;
    justify-content: center;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
ul.listaPlano li img{
    width: 18px; 
    margin-right: 5px;
}
.infoPlanosLegenda ul.listaPlano li{
    justify-content: left;
}
.listaMob{
    text-align: left;
}
.listaMob img{
    position: absolute;
    right: 40px;
}
.vermaisLista{
    font-family: 'Gilroy-SemiBold';
    font-size: 14px;
    line-height: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #5F45FC;
    padding: 10px 0 30px 0;
    display: none;
}
.vermaisLista img{
    margin-right: 10px;
}
.topoSobre{
    background: #F4F7FF;
    padding-top: 120px;
    padding-bottom: 50px;
    position: relative;
    text-align: center;
}
.topoSobre h1{
    color: #313A54;
    margin-top: 100px;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 46px;
    line-height: 53px;
    text-align: center;
    letter-spacing: -1px;
    max-width: 850px;
    margin: 0 auto;
}
img.imagemTopoSobre{
    max-width: 700px;
}
.dadosArea2{
    padding: 80px 80px;
}
.dadosInfoSobre{
    text-align: center;
}
.dadosInfoSobre img{
    max-width: 25px;
}
.dadosInfoSobre p{
    font-family: 'Gilroy';
    font-style: normal;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #313A54;
    padding: 10px 20px;
    margin-bottom: 50px;
}
.dadosArea2 h2{
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    letter-spacing: -1px;
    margin-bottom: 40px;
}
.conteudoInstitucional{
    padding: 130px 0 50px 0;
}
h2.supertitulo{
    font-size: 54px;
    line-height: 64px;
    text-align: center;
    letter-spacing: -1px;
    font-family: 'Gilroy';
    font-weight: 400;
}
h2.supertitulo span{
    color: #5F45FC;
    font-family: 'Gilroy-SemiBold';
}
.boxPadrao{
    background: #FFFFFF;
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.02), 0px 64px 46px rgba(0, 0, 0, 0.01), 0px 38px 25px rgba(0, 0, 0, 0.01), 0px 20px 13px rgba(0, 0, 0, 0.01), 0px 8px 6px rgba(0, 0, 0, 0.01), 0px 1px 3px rgba(0, 0, 0, 0.01);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
}
.imgIconeBox{
    width: 8%;
    display: inline-block;
    vertical-align: top;
}
.imgIconeBox{
    max-width: 25px;
}
.txtBox{
    width: 90%;
    margin-left: 2%;
    display: inline-block;
    vertical-align: top;
}
.txtBox h4{
    font-family: 'Gilroy-SemiBold';
    font-size: 20px;
    line-height: 24px;
    color: #313A54;
    margin-bottom: 12px;
}
.txtBox p{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #313A54;
}
.espaco100{
    height: 1px;
    width: 100%;
    padding: 50px 0;
}
.fotoInstitucional img{
    border-radius: 10px;
}
.fotoInstitucional{
    height: 630px;
    position: relative;
}
.mascaraPreta:after{
    content: '';
    display: block;
    width: 100%;
    height: 630px;
    background: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 10px;
}
.fotoInstitucional .legenda{
    position: absolute;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    left: 40px;
    bottom: 40px;
}
.fotoInstitucional2{
    height: 500px;
    z-index: 2;
    position: relative;
    margin-top: 20px;
    width: 80%;
}
.fotoSobreInsti:before{
    content: '';
    width: 400px;
    height: 300px;
    position: absolute;
    bottom: -30px;
    left: -45px;
    display: block;
    z-index: -1;
    background: #f4f7ff;
    border-radius: 10px;
}
.decoreAzul{
    position: relative;
}
.decoreAzul:before{
    content: '';
    width: 30vw;
    height: 700px;
    position: absolute;
    top: 30px;
    left: 0px;
    display: block;
    z-index: -1;
    background: #f4f7ff;
    border-radius: 10px 100px 10px 10px;
}
.infoInstitucional{
    text-align: left;
    padding-top: 30px;
}
.infoInstitucional img{
    margin-bottom: 20px;
    width: 32px;
}
.infoInstitucional h4{
    font-size: 20px;
    line-height: 24px;
    color: #313A54;
    font-family: 'Gilroy-SemiBold';
}
.infoInstitucional p{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 12px;
    color: #313A54;
}
.bannerPromo{
    margin: 70px 0;
}
.bannerPromocional{
    background-image: url(images/fundobanner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 60px 0;
    text-align: center;
}
.bannerPromocional p{
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #556493;
    margin: 15px 0 40px 0;
}
.topoInstitucional{
    padding: 200px 0;
    border-radius: 0px 0px 0px 100px;
}
.topoInstitucional p{
    margin: 50px 0;
}
.infoServicos{
    text-align: center;
}
.infoServicos .foto{
    height: 300px;
}
.infoServicos .foto img{
    border-radius: 10px;
    margin-bottom: 25px;
}
.infoServicos h3{
    font-size: 36px;
    line-height: 43px;
    letter-spacing: -1px;
    color: #313A54;
    font-family: 'Gilroy-SemiBold';
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: left;
}
.infoServicos p{
    font-size: 16px;
    line-height: 20px;
    color: #313A54;
    text-align: left;
}
.infoServicos p b{
    font-family: 'Gilroy-SemiBold';
}
.infoServicos .row{
    margin-bottom: 50px;
}
.fundoAzulArredondado{
    background: #F4F7FF;
    border-radius:10px
}
.conteudoPromo{
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.conteudoPromo h2{
    margin: 50px 5px 5px 5px;
}
.conteudoPromo p{
    margin: 15px 0 50px 5px;
}
.topoPadrao{
    padding: 60px 0;
}
.topoContador{
    padding: 140px 0;
}
.topoContador h1{
    font-weight: 400;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -1px;
    color: #313A54;
    margin: 40px 0 40px 0;
}
.topoContador h1 b{
    font-family: 'Gilroy-SemiBold';
}
.topoContador p{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #313A54;
    margin: 10px 0 50px 0;
}
.topoContador p img{
    margin-right: 10px;
}
.topoContador .foto{
    height: 520px;
    width: 80%;
    margin-left: 10%;
}
.topoContador .foto img{
    border-radius: 20px;
}
.fazer{
    background: #F4F7FF;
    padding: 80px 0;
    margin: 40px 0;
}
.tarefasFazer{
    padding: 60px 0;
    background: #fff;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
}
.tarefaLista{
    width: 50%;
    padding: 0 60px;
}
.tarefaLista:last-child{
    border-left: 1px solid #A3AED0;
}
.tarefaLista h4{
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #313A54;
    font-family: 'Gilroy-SemiBold';
    margin-bottom: 40px;
}
.tarefaLista ul{
    list-style: none;
    padding: 0;
}
.tarefaLista ul li{
    position: relative;
    padding-left: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #313A54;
    margin-bottom: 12px;
}
.tarefaLista ul li:before{
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(images/icone_check.svg);
    background-repeat: no-repeat;
}
.fazer h6{
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #313A54;
    text-align: center;
    margin-top: 40px;
}
.contabilidade{
    text-align: center;
    padding: 70px 0;
}
.contabilidade h2{
    margin-bottom: 40px;
}
.boxContabilidade{
    padding: 20px;
    background: #F4F7FF;
    border-radius: 12px;
    height: 100%;
}
.boxContabilidade img{
    width: 60px;
    margin-bottom: 20px;
}
.boxContabilidade p{
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #556493;
}
.topoPerguntas{
    background-color: #F4F7FF;
    padding-top: 140px;
    padding-bottom: 70px;
    position: relative;
    text-align: center;
    border-radius: 0px 0px 100px 100px;
    background-image: url(images/topoarte2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}
.topoPerguntas h1{
    color: #313A54;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 46px;
    line-height: 53px;
    text-align: center;
    letter-spacing: -1px;
    max-width: 850px;
    margin: 0 auto;
}
.topoPerguntas h1 span{
    font-family: 'Gilroy-SemiBold';
    color: #5F45FC;
}
.login{
    padding-top: 120px;
    position: relative;
}
.login h1{
    font-size: 36px;
    line-height: 56px;
    color: #313A54;
    font-family: 'Gilroy-Bold';
    margin-bottom: 20px;
}
.login p{
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #A3AED0;
}
.imagemLogin{
    position: fixed;
    height: 100vh;
    width: 40vw;
    top: 0;
    right: 0;
    z-index: -1;
}
.imagemLogin img{
    border-radius: 0px 0px 0px 200px;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.linkPerfil{
    font-size: 14px;
    line-height: 26px;
    color: #313A54;
    display: block;
    margin-top: 20px;
}
.linkPerfil a{
    font-family: 'Gilroy-SemiBold';
    font-size: 14px;
    line-height: 12px;
    color: #5F45FC;
}
.form-control{
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    height: 48px;
}
.formsubmit{
    width: 100%;
    border-radius: 100px;
    background-color:#5F45FC ;
    color: #fff;
    font-size: 14px;
    font-family: 'Gilroy-SemiBold';
    padding: 12px;
    text-align: center;
    height: 48px;
    margin: 25px 0;
    margin-bottom: 10px;
}
.formsubmit:hover{
    background-color: #9164FF;
}
label{
    font-size: 16px;
    line-height: 24px;
    color: #313A54;
    margin: 25px 0 5px 0;
}
label.checkboxDefault{
    font-size: 14px;
    line-height: 20px;
    color: #2B3674;
    margin: 23px 10px 0 10px;
    vertical-align: top;
}
input[type=checkbox]{
    height: 22px;
    transform: scale(1.3);
    margin-top: 20px;
}
.iconeSenha{
	width: 25px;
	height: 25px;
	display: block;
	position: absolute;
	top: 65px;
	right: 30px;
	background-image: url(images/perfil_olho_oculto.svg);
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
.iconeSenha.verSenha{
	background-image: url(images/perfil_olho.svg);
}
.login h4{
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #5F45FC;
    margin: 20px 0;
}
.setaVoltar{
    display: block;
    width: 32px;
}
.barraProgresso{
    height: 10px;
    width: 100%;
    background: #F4F7FF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.progresso{
    height: 10px;
    width: 0px;
    background: #5F45FC;
}
.stepPrev,
a.stepPrev,
.stepNext,
a.stepNext{
    width: 100%;
    border-radius: 100px;
    font-size: 14px;
    font-family: 'Gilroy-SemiBold';
    padding: 12px;
    text-align: center;
    height: 48px;
    margin: 60px 0 0 0;
    display: block;
}
.stepPrev,
a.stepPrev{
    background-color:#fff;
    color: #5F45FC;
    border: 1px solid #5F45FC;
}
.stepNext,
a.stepNext{
    background-color:#5F45FC ;
    color: #fff;
}
.stepNext:hover,
a.stepNext:hover,
.stepPrev:hover,
a.stepPrev:hover{
    color: #fff;
    background-color: #9164FF;
    border-color: #9164FF;
    text-decoration: none;
}
.formbusca2{
    position: relative;
}
.formbusca2:after{
    content: '';
    position: absolute;
    background-image: url(images/icone_busca.svg);
    width: 24px;
    height: 24px;
    display: block;
    right: 10px;
    top: 10px;
    filter: grayscale();
}
input[type=radio] {
    margin-top: 30px;
}
.boxPagamento{
    padding: 18px 16px;
    width: 380px;
    background: #FFFFFF;
    border: 1px solid #A3AED0;
    border-radius: 16px;
    margin-bottom: 5px;
}
.boxPagamento h2{
    font-size: 20px;
    line-height: 24px;
    color: #313A54;
    font-family: 'Gilroy-SemiBold';
    display: inline-block;
    width: 70%;
}
.boxPagamento h3{
    font-size: 20px;
    line-height: 24px;
    color: #5F45FC;
    font-family: 'Gilroy-SemiBold';
    display: inline-block;
    width: 27%;
}
.boxPagamento label{
    margin-top: 0;
}
.boxPagamento h5{
    font-size: 12px;
    line-height: 15px;
    font-family: 'Gilroy-SemiBold';
    text-transform: uppercase;
    color: #313A54;
}
.boxPagamento h6{
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: #313A54;
}
.boxPagamento h5 span,
.boxPagamento h6 span{
    float: right;
}
.boxPagamento a.stepNext{
    margin-top: 20px;
}
p.avisoTermos{
    font-size: 12px;
    line-height: 14px;
    color: #313A54;
    margin: 20px;
    width: 340px;
}
p.avisoTermos a{
    color: #5F45FC;
}






/*		Responsive CSS 		*/

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) { 
    .listaDesk,
    .mobHid{
        display: none !important;
    }
    .comoTrabalhamos {
        flex-wrap: wrap;
    }
    .buttonTabPlano {
        padding: 3px 10px;
        width: 180px;
        font-size: 12px;
    }
    .tabPlano{
        width: 100%;
    }
    nav ul li a.ctamenu1, 
    nav ul li a.ctamenu2 {
        display: inline-block;
    }
    .chamada h1 {
        font-size: 36px;
        text-align: center;
        line-height: 43px;
        margin-top: 60px;
    }
    .chamada{
        text-align: center;
    }
    .chamada .ctaPadrao1,
    .dadosInfo:before{
        display: none;
    }
    .dados h2{
        font-size: 20px;
        text-align: center;
    }
    .dadosArea{
        padding: 25px;
    }
    .dados {
        margin-top: -80px;
    }
    .topo {
        padding-bottom: 140px;
    }
    .imagemSobreHome{
        width: 70%;
    }
    .sobreHome{
        padding: 80px 0;
    }
    .sobreHome h2{
        font-size: 30px;
        padding-left: 20px;
        margin-top: 30px;
        line-height: 40px;
    }
    .sobreHome h2:after{
        left: 0;
    }
    .sobreHome h6{
        padding: 0 20px;
    }
    h2.titulo{
        font-size: 28px;
        line-height: 32px;
    }
    .entenda{
        text-align: left;
        padding: 40px 0;
    }
    .labelComoTrab{
        text-align: center;
        margin: 0;
        position: absolute;
        left: 0px;
    }
    .comoTrabalhamos{
        margin-top: 40px;
    }
    .comoTrab{
        text-align: left;
        padding-left: 70px;
        padding-bottom: 40px;
        margin-bottom: 0;
        margin-top: 0;
    }
    .comoTrab h4{
        margin-top: 10px;
    }
    .labelComoTrab span{
        padding-top: 8px;
    }
    .comoTrab:before {
        height: 100%;
        width: 1px;
        left: 23px;
        top: 0px;
    }
    .comoTrab1:before{
        left: 23px;
        width: 1px;
    }
    .comoTrab3:before{
        left: 23px;
        width: 1px;
        height: 10px;
    }
    .labelComoTrabImg {
        position: absolute;
        left: 0;
    }
    .solucoes,
    .contabilidadeOnline{
        padding: 40px 0;
    }
    .entenda .ctaPadrao3,
    .solucoes .ctaPadrao3{
        display: none;
    }
    .infoSolucoes .infoSolucoesTopo h4 {
        width: 80%;
        vertical-align: middle;
        margin-bottom: 0;
    }
    .infoSolucoes.ativo .infoSolucoesTexto p{
        margin-top: 15px;
    }
    .vantFin{
        width: 100%;
    }
    a.areaVantagem {
        cursor: pointer;
        display: block;
        margin: 20px;
    }
    .contabilidadeOnline p{
        margin-bottom: 0px;
    }
    .atendimento .areaSwiper{
        margin-top: 0;
    }
    .depoimentoAtendimento{
        margin: 0 20px 50px 20px;
    }
    .atendimento .ctaPadrao3{
        margin: 70px auto 0 auto;
        text-align: center;
        display: inline-block;
    }
    .tituloPlano{
        display: block;
        padding: 0 25px;
    }
    .hidMob{
        display: none;
    }
    .infoPlanos{
        background: #FFFFFF;
        box-shadow: 0px 18px 40px rgba(112, 144, 176, 0.12);
        border-radius: 12px;
        margin: 20px 30px 60px 30px;
    }
    .boxPlano{
        border: none;
    }
    .conteudoPlano{
        margin-left: -20px;
        margin-right: -20px;
    }
    .conteudoPlano.infoServicos{
        margin-left: 0px;
        margin-right: 0px;
    }
    .listaPlano li span{
        display: block;
    }
    .imagemConteudoDestaque .foto{
        height: 280px;
        margin-bottom: 30px;
    }
    .imagemConteudoDestaque img {
        width: 80%;
        margin-left: 10%;
    }
    .conteudoDestaque,
    .atendimento {
        padding: 40px 0;
        text-align: center;
    }
    .conteudoDestaque h2.titulo,
    .conteudoDestaque p,
    .atendimento h2.titulo,
    .atendimento h4,
    .atendimento p{
        text-align: left;
    }
    .perguntas h2.titulo{
        font-size: 36px;
    }
    .rodape{
        padding-top: 30px;
        padding-left: 20px;
        padding-bottom: 20px;
    }
    .menuFast{
        margin-bottom: 20px;
    }
    .rodape h5 br{
        display: none;
    }
    .rodape .menufoot2 h4{
        display: none;
    }
    .rodape h6 {
        width: 80%;
        vertical-align: top;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    img.iconeRodape{
        margin-top: 40px;
    }
    a.ctaRodape, .ctaRodape {
        display: inline-block;
    }
    ul.listaPlano li{
        display: list-item;
        padding: 0 25px;
    }
    ul.listaPlano li:nth-child(n + 4){
        display: none;
    }
    .vermaisLista{
        display: block;
    }
    a.ctaPlano:after, 
    .ctaPlano:after{
        content: '';
        display: block;
        width: 60%;
        left: 20%;
        height: 1px;
        background-color: #000;
        bottom: -25px;
        position: absolute;
    }
    .topoSobre h1 {
        font-size: 28px;
        line-height: 32px;
        margin: 30px auto;
    }
    .dadosArea2 h2{
        font-size: 24px;
        line-height: 28px;
        text-align: center;
        letter-spacing: 0;
    }
    h2.supertitulo {
        font-size: 32px;
        line-height: 38px;
    }
    .espaco100{
        padding: 10px 0;
    }
    .txtBox {
        width: 85%;
    }
    .fotoInstitucional2 {
        height: 320px;
        width: 100%;
        margin-bottom: 30px;
    }
    .fotoSobreInsti:before {
        content: '';
        width: 400px;
        height: 300px;
        position: absolute;
        top: -50px;
        left: -45px;
        display: block;
        z-index: -1;
        background: #f4f7ff;
        border-radius: 0 200px 0 10px;
    }
    .ordemElementos{
        display: flex;
        flex-wrap: wrap;
    }
    .bannerPromocional {
        background-image: url(images/fundobanner.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 12px;
        padding: 60px 20px;
        text-align: center;
        background: #F4F7FF;
    }
    .bannerPromocional p br {
        display: none;
    }
    a.ctaPadrao2,
    .ctaPadrao2,
    a.ctaPadrao3,
    .ctaPadrao3{
        display: inline-block;
        margin-bottom: 26px;
        width: 250px;
    }
    .tarefasFazer{
        display: block;
    }
    .tarefaLista{
        width: 100%;
        padding: 30px;
    }
    .tarefaLista:last-child {
        border-top: 1px solid #A3AED0;
        border-left: none;
    }
    .topoContador a.ctaPadrao2, 
    .topoContador .ctaPadrao2{
        width: auto;
    }
    .topoPerguntas{
        background-position: right bottom;
    }
    .topoContador .foto{
        width: 100%;
        margin-left: 0;
        height: 300px;
    }
    .imagemLogin{
        height: 250px;
        width: 80vw;
    }
    .login{
        padding-top: 250px;
    }







}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .listaDesk,
    .mobHid{
        display: none !important;
    }
    .comoTrabalhamos {
        flex-wrap: wrap;
    }
    .buttonTabPlano {
        padding: 3px 10px;
        font-size: 12px;
    }
    nav ul li a.ctamenu1, 
    nav ul li a.ctamenu2 {
        display: inline-block;
    }
    .chamada h1 {
        font-size: 36px;
        text-align: center;
        line-height: 43px;
        margin-top: 60px;
    }
    .chamada{
        text-align: center;
    }
    .chamada .ctaPadrao1,
    .dadosInfo:before{
        display: none;
    }
    .dados h2{
        font-size: 20px;
        text-align: center;
    }
    .dadosArea{
        padding: 25px;
    }
    .dados {
        margin-top: -80px;
    }
    .topo {
        padding-bottom: 140px;
    }
    .imagemSobreHome{
        width: 70%;
    }
    .sobreHome{
        padding: 80px 0;
    }
    .sobreHome h2{
        font-size: 30px;
        padding-left: 20px;
        margin-top: 30px;
        line-height: 40px;
    }
    .sobreHome h2:after{
        left: 0;
    }
    .sobreHome h6{
        padding: 0 20px;
    }
    h2.titulo{
        font-size: 28px;
        line-height: 32px;
    }
    .entenda{
        text-align: left;
        padding: 40px 0;
    }
    .labelComoTrab{
        text-align: center;
        margin: 0;
        position: absolute;
        left: 0px;
    }
    .comoTrabalhamos{
        margin-top: 40px;
    }
    .comoTrab{
        text-align: left;
        padding-left: 70px;
        padding-bottom: 40px;
        margin-bottom: 0;
        margin-top: 0;
    }
    .comoTrab h4{
        margin-top: 10px;
    }
    .labelComoTrab span{
        padding-top: 8px;
    }
    .comoTrab:before {
        height: 100%;
        width: 1px;
        left: 23px;
        top: 0px;
    }
    .comoTrab1:before{
        left: 23px;
        width: 1px;
    }
    .comoTrab3:before{
        left: 23px;
        width: 1px;
        height: 10px;
    }
    .labelComoTrabImg {
        position: absolute;
        left: 0;
    }
    .solucoes,
    .contabilidadeOnline{
        padding: 40px 0;
    }
    .entenda .ctaPadrao3,
    .solucoes .ctaPadrao3{
        display: none;
    }
    .infoSolucoes .infoSolucoesTopo h4 {
        width: 80%;
        vertical-align: middle;
        margin-bottom: 0;
    }
    .infoSolucoes.ativo .infoSolucoesTexto p{
        margin-top: 15px;
    }
    .vantFin{
        width: 100%;
    }
    a.areaVantagem {
        cursor: pointer;
        display: block;
        margin: 20px;
    }
    .contabilidadeOnline p{
        margin-bottom: 0px;
    }
    .atendimento .areaSwiper{
        margin-top: 0;
    }
    .depoimentoAtendimento{
        margin: 0 20px 50px 20px;
    }
    .atendimento .ctaPadrao3{
        margin: 70px auto 0 auto;
        text-align: center;
        display: inline-block;
    }
    .tituloPlano{
        display: block;
        padding: 0 25px;
    }
    .hidMob{
        display: none;
    }
    .infoPlanos{
        background: #FFFFFF;
        box-shadow: 0px 18px 40px rgba(112, 144, 176, 0.12);
        border-radius: 12px;
        margin: 20px 30px 60px 30px;
    }
    .boxPlano{
        border: none;
    }
    .conteudoPlano{
        margin-left: -20px;
        margin-right: -20px;
    }
    .conteudoPlano.infoServicos{
        margin-left: 0px;
        margin-right: 0px;
    }
    .listaPlano li span{
        display: block;
    }
    .imagemConteudoDestaque .foto{
        height: 280px;
        margin-bottom: 30px;
    }
    .imagemConteudoDestaque img {
        width: 80%;
        margin-left: 10%;
    }
    .conteudoDestaque,
    .atendimento {
        padding: 40px 0;
        text-align: center;
    }
    .conteudoDestaque h2.titulo,
    .conteudoDestaque p,
    .atendimento h2.titulo,
    .atendimento h4,
    .atendimento p{
        text-align: left;
    }
    .perguntas h2.titulo{
        font-size: 36px;
    }
    .rodape{
        padding-top: 30px;
        padding-left: 20px;
        padding-bottom: 20px;
    }
    .menuFast{
        margin-bottom: 20px;
    }
    .rodape h5 br{
        display: none;
    }
    .rodape .menufoot2 h4{
        display: none;
    }
    .rodape h6 {
        width: 80%;
        vertical-align: top;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    img.iconeRodape{
        margin-top: 40px;
    }
    a.ctaRodape, .ctaRodape {
        display: inline-block;
    }
    ul.listaPlano li{
        display: list-item;
        padding: 0 25px;
    }
    ul.listaPlano li:nth-child(n + 4){
        display: none;
    }
    .vermaisLista{
        display: block;
    }
    a.ctaPlano:after, 
    .ctaPlano:after{
        content: '';
        display: block;
        width: 60%;
        left: 20%;
        height: 1px;
        background-color: #000;
        bottom: -25px;
        position: absolute;
    }
    .topoSobre h1 {
        font-size: 28px;
        line-height: 32px;
        margin: 30px auto;
    }
    .dadosArea2 h2{
        font-size: 24px;
        line-height: 28px;
        text-align: center;
        letter-spacing: 0;
    }
    h2.supertitulo {
        font-size: 32px;
        line-height: 38px;
    }
    .espaco100{
        padding: 10px 0;
    }
    .txtBox {
        width: 85%;
    }
    .fotoInstitucional2 {
        height: 320px;
        width: 100%;
        margin-bottom: 30px;
    }
    .fotoSobreInsti:before {
        content: '';
        width: 400px;
        height: 300px;
        position: absolute;
        top: -50px;
        left: -45px;
        display: block;
        z-index: -1;
        background: #f4f7ff;
        border-radius: 0 200px 0 10px;
    }
    .ordemElementos{
        display: flex;
        flex-wrap: wrap;
    }
    .bannerPromocional {
        background-image: url(images/fundobanner.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 12px;
        padding: 60px 20px;
        text-align: center;
        background: #F4F7FF;
    }
    .bannerPromocional p br {
        display: none;
    }
    a.ctaPadrao2,
    .ctaPadrao2,
    a.ctaPadrao3,
    .ctaPadrao3{
        display: inline-block;
        margin-bottom: 26px;
        width: 250px;
    }
    .tarefasFazer{
        display: block;
    }
    .tarefaLista{
        width: 100%;
        padding: 30px;
    }
    .tarefaLista:last-child {
        border-top: 1px solid #A3AED0;
        border-left: none;
    }
    .topoContador a.ctaPadrao2, 
    .topoContador .ctaPadrao2{
        width: auto;
    }
    .topoPerguntas{
        background-position: right bottom;
    }
    .topoContador .foto{
        width: 100%;
        margin-left: 0;
        height: 300px;
    }
    .imagemLogin{
        height: 250px;
        width: 80vw;
    }
    .login{
        padding-top: 250px;
    }
}
	

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .listaDesk,
    .deskHid{
        display: none !important;
    }
    .buttonTabPlano {
        padding: 3px 10px;
        font-size: 12px;
    }
    nav ul li a.ctamenu1, 
    nav ul li a.ctamenu2 {
        display: inline-block;
    }
    .chamada h1 {
        font-size: 36px;
        line-height: 43px;
        margin-top: 60px;
    }
    .chamada{
        text-align: center;
    }
    .imagemTopo2,
    .imagemTopo1{
        display: none;
    }
    .chamada .ctaPadrao1,
    .dadosInfo:before{
        display: none;
    }
    .dados h2{
        font-size: 20px;
        text-align: center;
    }
    .dadosArea{
        padding: 25px;
    }
    .dados {
        margin-top: -80px;
    }
    .topo {
        padding-bottom: 50px;
    }
    .imagemSobreHome{
        width: 70%;
    }
    .sobreHome{
        padding: 80px 0;
    }
    .sobreHome h2{
        font-size: 30px;
        padding-left: 20px;
        margin-top: 30px;
        line-height: 40px;
    }
    .rodape .menufoot2 h4{
        display: none;
    }
    .rodape h6 {
        width: 80%;
        vertical-align: top;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    ul.listaPlano li{
        display: list-item;
        padding: 0 25px;
    }
    ul.listaPlano li:nth-child(n + 4){
        display: none;
    }
    .vermaisLista{
        display: block;
    }
    a.ctaPlano:after, 
    .ctaPlano:after{
        content: '';
        display: block;
        width: 60%;
        left: 20%;
        height: 1px;
        background-color: #000;
        bottom: -25px;
        position: absolute;
    }
    .tituloPlano{
        display: block;
        padding: 0 25px;
    }
    .hidMob{
        display: none;
    }
    .infoPlanos{
        background: #FFFFFF;
        box-shadow: 0px 18px 40px rgba(112, 144, 176, 0.12);
        border-radius: 12px;
        margin: 20px 30px 60px 30px;
    }
    .boxPlano{
        border: none;
    }
    .conteudoPlano{
        margin-left: -20px;
        margin-right: -20px;
    }
    .conteudoPlano.infoServicos{
        margin-left: 0px;
        margin-right: 0px;
    }
    .listaPlano li span{
        display: block;
    }
    .topoSobre h1 {
        font-size: 28px;
        line-height: 32px;
        margin: 30px auto;
    }
    .dadosArea2 h2{
        font-size: 24px;
        line-height: 28px;
        text-align: center;
        letter-spacing: 0;
    }
    h2.supertitulo {
        font-size: 32px;
        line-height: 38px;
    }
    .espaco100{
        padding: 10px 0;
    }
    .txtBox {
        width: 85%;
    }
    .fotoInstitucional2 {
        height: 320px;
        width: 100%;
        margin-bottom: 30px;
    }
    .fotoSobreInsti:before {
        content: '';
        width: 400px;
        height: 300px;
        position: absolute;
        top: -50px;
        left: -45px;
        display: block;
        z-index: -1;
        background: #f4f7ff;
        border-radius: 0 200px 0 10px;
    }
    .ordemElementos{
        display: flex;
        flex-wrap: wrap;
    }
    .bannerPromocional {
        background-image: url(images/fundobanner.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 12px;
        padding: 60px 20px;
        text-align: center;
        background: #F4F7FF;
    }
    .bannerPromocional p br {
        display: none;
    }
    a.ctaPadrao2,
    .ctaPadrao2,
    a.ctaPadrao3,
    .ctaPadrao3{
        display: inline-block;
        margin-bottom: 26px;
        width: 250px;
    }
    .tarefasFazer{
        display: block;
    }
    .tarefaLista{
        width: 100%;
        padding: 30px;
    }
    .tarefaLista:last-child {
        border-top: 1px solid #A3AED0;
        border-left: none;
    }
    .topoContador a.ctaPadrao2, 
    .topoContador .ctaPadrao2{
        width: auto;
    }
    .topoPerguntas{
        background-position: right bottom;
    }
    .topoContador .foto{
        width: 100%;
        margin-left: 0;
        height: 300px;
    }
    .imagemLogin{
        width: 40vw;
    }
}


/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
    .listaMob,
    .deskHid{
        display: none !important;
    }
    .dadosInfo h4{
        width: 70%;
    }
    .sobreHome{
        padding: 80px 0;
    }
    .infoSolucoes .infoSolucoesTopo h4 {
        width: 80%;
        vertical-align: middle;
        margin-bottom: 0;
    }
    .infoSolucoes.ativo .infoSolucoesTexto p{
        margin-top: 15px;
    }
    .preco {
        font-size: 50px;
    }

}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { 
    .listaMob,
    .deskHid{
        display: none !important;
    }	

}










