@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;700&display=swap');

body {
    color: #243027;
    font-family: 'Poppins', sans-serif !important;
}

.session__title h2 {
    font-family: 'Poppins', sans-serif;
    color: #243027;
    font-weight: 600;
    font-size: 5rem;
    letter-spacing: 0px;
    margin: 2rem auto 8rem auto;
    padding: 0;
    float: initial;
    border: 0;
}

.session__title_light h2 {
    color: #243027;
}

@media(max-width:450px) {
    .session__title h2 {
        font-size: 35px;
        margin: 2rem auto 4rem auto;
    }
}



/* -------------------------------------------------------------
 * HEADER 
 * -----------------------------------------------------------*/
.topnav {
    overflow: hidden;
    padding: 2rem 4%;
    background: transparent;
    width: 101%;
    z-index: 99;
    left: 0;
    display: flex;
    align-items: center;
}

.topnav .itens-menu a {
    color: #243027;
    padding: 8px 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.topnav .itens-menu a:hover {
    transform: scale(1);
    transition: .2s;
    color: #fff;
    background-color: #00985e;
}

.topnav img {
    float: left;
    width: 360px;
}

@media (max-width: 1300px) {

.topnav {
    overflow: hidden;
    padding: 1rem 1%;
    background: transparent;
    width: 101%;
    z-index: 99;
    left: 0;
    display: flex;
    align-items: center;
}

}


@media screen and (max-width: 1024px) {
	
	.topnav img {
    float: left;
    max-width: 310px;
}
	
	.topnav {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
}

    .topnav.responsive {
        background-color: #d5f5dc;
        padding-left: 2rem;
    }
}



@media(max-width:450px) {
	
	.topnav img {
	float: left;
	max-width: 210px;
	padding-left: 10px;
	}

	.topnav {
		display: initial;
	}
}



/* -------------------------------------------------------------
 * SLIDER 
 * -----------------------------------------------------------*/
#background-topo {
    background-image: linear-gradient(to top, #00975bd1, #00ff9687, #ffffff), url(../img/bg-header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 85%);
    position: relative;
    z-index: 2;
    height: 840px;
}

.header-slider .slider-content {
    padding: 0;
    margin-top: 8%;
}

.header-slider .slider-content .row {
    justify-content: center;
}

.header-slider .slider-content h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 6.5rem;
    font-weight: bold;
    letter-spacing: -1px;
    padding: 10px 0;
    width: 80%;
    color: #243027;
    margin: 0 auto;
    text-shadow: 0px 3px 14px #ffffff80;
}

@media(max-width:767px) {
    #background-topo {
		background-image: linear-gradient(to top, #00975bd1, #00ff9687, #ffffff), url(../img/bg-header.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;
		position: relative;
		z-index: 2;
		clip-path: none !important;
		height: 560px;
	}

	.header-slider .slider-content h2 {
		font-family: 'Poppins', sans-serif;
		text-align: center;
		font-size: 5rem;
		font-weight: bold;
		letter-spacing: -1px;
		padding: 10px 0;
		width: 80%;
		color: #243027;
		margin: 0 auto;
		text-shadow: 0px 3px 14px #ffffff80;
	}

}

@media(max-width:450px) {
	
	#background-topo {
	background-image: linear-gradient(to top, #0bd786d1, #29ffa7a6, #ffffff), url(../img/bg-header.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: inherit;
	background-size: cover;
	position: relative;
	z-index: 2;
	clip-path: none !important;
	height: 420px;
	}

	.header-slider .slider-content {
		margin-top: 20%;
	}

	.header-slider .slider-content h2 {
		font-size: 3rem;
	}
}


/* -------------------------------------------------------------
 * SOBRE NOS
 * -----------------------------------------------------------*/
#sobre {
	padding: 2% 0% 3% 0%;
    /* margin-top: -13rem; */
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    text-align: center;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 85%) !important;
}

#sobre .row {
    justify-content: center;
}

#sobre .session__title h2 {
    margin-bottom: 2rem;
}

#sobre p {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    color: #243027;
    line-height: normal;
    text-align: center;
    float: initial;
}

#sobre a {
    font-family: 'Poppins', sans-serif;
    background-color: #00975c;
    padding: 10px 20px;
    color: #FFF;
    font-size: 2rem;
    border: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 2rem;
}

#sobre a:hover {
    background-color: #243027;
    transition: .2s;
    color: #fff;
    transition: .3s;
}

@media(max-width:767px) {
	#sobre {
	clip-path: none !important;
	padding: 5%;
	}
}


@media(max-width:450px) {
	#sobre p {
		font-family: 'Poppins', sans-serif;
		font-size: 1.8rem;
		color: #243027;
		line-height: normal;
		text-align: center;
		float: initial;
	}
	#sobre a {
    font-family: 'Poppins', sans-serif;
    background-color: #00975c;
    padding: 7px 20px;
    color: #FFF;
    font-size: 1.5rem;
    border: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 2rem;
}
}


/* -------------------------------------------------------------
 * VIDEO
 * -----------------------------------------------------------*/
#video {
    background: #FFF;
    padding: 0 0 6rem 0;
    position: relative;
    z-index: 2;
}

#video .video-container {
    display: flex;
    justify-content: center;
}

#video video {
    width: 100%;
    margin-top: -25rem;
    border: 15px solid #00985e;
}





/* -------------------------------------------------------------
 * SOLUÇÔES CONTABIL
 * -----------------------------------------------------------*/
#box-solucoes {
    padding: 2rem 11% 10rem;
}

#box-solucoes p {
    font-size: 3rem;
    color: #243027;
    line-height: 36px;
    margin: 0 auto;
    font-weight: 700;
    width: 90%;
    text-transform: uppercase;
    padding: 6% 0%;
}

#box-solucoes img{
    width: 35%;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

#box-solucoes img:hover{
    transition: 0.4s;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}


@media(max-width:767px) {

	.session__title h2 {
		font-family: 'Poppins', sans-serif;
		color: #243027;
		font-weight: 600;
		font-size: 5rem;
		letter-spacing: 0px;
		margin: 2rem auto 2rem auto;
		padding: 0;
		float: initial;
		border: 0;
		width: 100%;
	}
}

@media(max-width:450px) {
	
	#box-solucoes img {
    width: 80px;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

	#box-solucoes p {
    font-size: 1.75rem;
    color: #243027;
    line-height: initial;
    margin: 0 auto;
    font-weight: 700;
    width: 100%;
    text-transform: uppercase;
    padding: 3% 0%;
}
	
	.session__title h2 {
    font-family: 'Poppins', sans-serif;
    color: #243027;
    font-weight: 600;
    font-size: 2.65rem;
    letter-spacing: 0px;
    margin: 2rem auto 3rem auto;
    padding: 0;
    float: initial;
    border: 0;
    width: 100%;
}

}

/* -------------------------------------------------------------
 * VANTAGENS
 * -----------------------------------------------------------*/
#vantagens {
    padding: 15rem 15% 12rem;
    font-family: 'Poppins', sans-serif;
    background-color: #00985e;
    text-align: left;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
}

#vantagens .session__title h2 {
    font-size: 6rem;
    font-weight: 700;
    color: #fff;
    width: 100%;
}

#vantagens .row {
    display: flex;
    align-items: center;
}

#vantagens .vantagens p {
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #FFF;
    line-height: inherit;
    text-align: left;
    float: initial;
    font-weight: 500;
}

#vantagens .vantagens i {
    color: #FFF;
    font-size: 3rem;
    margin-right: 10px;
}

@media(max-width:1024px) {

	#vantagens .session__title h2 {
		font-size: 4rem;
		font-weight: 700;
		color: #fff;
		width: 100%;
	}
	

}

@media(max-width:767px) {
    #vantagens {
        clip-path: none;
        padding: 3rem 5%;
    }

    #vantagens .session__title h2 {
        font-size: 40px;
    }

    #vantagens .row {
        display: initial;
    }
}


@media(max-width:450px) {
	
	#vantagens .vantagens p {
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-size: 1.65rem;
    color: #FFF;
    line-height: inherit;
    text-align: left;
    float: initial;
    font-weight: 500;
}
	
	#vantagens .session__title h2 {
		font-size: 2.5rem;
	}

}

/* -------------------------------------------------------------
 * SERVICOS
 * -----------------------------------------------------------*/
#servicos {
    padding: 5% 10% 7% 10%;
}

#servicos .servicos-container {
    display: flex;
    justify-content: center;
}

#servicos .efeito-hover {
    min-height: 430px;
    background: #d5f5dc;
    margin-bottom: 2rem;
    border-radius: 16px;
    text-align: left;
    padding: 8%;
}

#servicos .efeito-hover h3 {
    color: #243027;
    font-size: 2.3rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: inherit;
    width: auto;
    margin: 0;
    padding: 4% 0%;
}

#servicos .efeito-hover p {
    color: #243027;
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.7rem;
    line-height: inherit;
}

#servicos .efeito-hover:hover {
    background: #00985e;
    transition: .3s;
}

#servicos .efeito-hover:hover h3,
#servicos .efeito-hover:hover p {
    color: #FFF;
}

@media(max-width:767px) {

	#servicos .efeito-hover {
		min-height: auto;
		background: #d5f5dc;
		margin-bottom: 2rem;
		border-radius: 16px;
		text-align: left;
		padding: 8%;
	}
}

@media(max-width:450px) {

	#servicos .efeito-hover h3 {
		color: #243027;
		font-size: 1.8rem;
		font-weight: 600;
		text-transform: uppercase;
		margin: inherit;
		width: auto;
		margin: 0;
		padding: 4% 0%;
	}

}


/* -------------------------------------------------------------
 * CATEGORIA 
 * -----------------------------------------------------------*/
.sessao-vantagens {
    padding: 15rem 15%;
    font-family: 'Poppins', sans-serif;
    background-color: #00985e;
    text-align: left !important;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
}

.sessao-vantagens .session__title h2 {
    font-size: 6rem;
    font-weight: 700;
    color: #fff;
    width: 100%;
}

.sessao-vantagens .row {
    display: flex;
    align-items: center;
}

.sessao-vantagens .categorias p {
    display: flex;
    font-size: 2rem;
    color: #FFF;
    line-height: 30px;
    text-align: left;
    font-weight: 500;
}

.sessao-vantagens i {
    color: #FFF;
    font-size: 3rem;
    margin-right: 10px;
}

.sessao-vantagens .lista-categoria {
    padding: 0;
}

@media(max-width:1024px) {

	.sessao-vantagens .session__title h2 {
		font-size: 4rem;
		font-weight: 700;
		color: #fff;
		width: 100%;
	}

}

@media(max-width:767px) {
    .sessao-vantagens {
        clip-path: none;
        padding: 3rem 5%;
    }

    .sessao-vantagens .session__title h2 {
        font-size: 40px;
    }

    .sessao-vantagens .row {
        display: initial;
    }
}

@media(max-width:450px) {

	.sessao-vantagens .session__title h2 {
		font-size: 2.55rem;
	}
	.sessao-vantagens .categorias p {
    display: flex;
    font-size: 1.65rem;
    color: #FFF;
    line-height: initial;
    text-align: left;
    font-weight: 500;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

}

/* -------------------------------------------------------------
 * ARTIGOS E NOTICIAS 
 * -----------------------------------------------------------*/
.sessao-artigo {
    font-family: 'Poppins', sans-serif;
    color: #243027;
    padding: 2rem 0 5em;
}

.sessao-artigo .artigos-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.sessao-artigo .card-conteudo {
    background-color: #FFFF;
    color: #243027;
    padding: 0;
    height: 10rem;
}

.sessao-artigo .card-conteudo span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #00985e;
    padding: 0;
    font-weight: 600;
}

.sessao-artigo .card-conteudo h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    padding: 0;
    text-align: left;
}

.sessao-artigo .artigos-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-top: 5px;
    color: #243027;
    padding: 0;
    text-align: left;
}

.sessao-noticia {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: #243027;
    padding: 0% 0% 5% 0%;
}

.sessao-noticia .card-conteudo {
    background-color: transparent;
}

.sessao-noticia .noticias-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.85rem;
    padding: 0;
    text-align: left;
    color: #243027;
    font-weight: 500;
    line-height: inherit;
}

#box-noticias .session__title h2 {
    font-family: 'Poppins', sans-serif;
    color: #243027;
    font-weight: 600;
    font-size: 5rem;
    letter-spacing: 0px;
    margin: 2rem auto 4rem auto;
    padding: 0;
    float: initial;
    border: 0;
}

.sessao-noticia .noticias-content span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    color: #243027;
    font-weight: 600;
    padding: 0;
}

.sessao-artigo .link-artigos a,
.sessao-noticia .link-noticias a {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #243027;
    border: 0;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.5rem;
}

.sessao-artigo .link-artigos a:hover,
.sessao-noticia .link-noticias a:hover {
    color: #243027;
    background: #ffff;
    transition: .3s;
}

@media(max-width:767px) {
    .sessao-noticia {
        clip-path: none;
        padding: 3rem 5% 5rem;
    }
}

@media(max-width:450px) {

	#box-noticias .session__title h2 {
		font-family: 'Poppins', sans-serif;
		color: #243027;
		font-weight: 600;
		font-size: 3rem;
		letter-spacing: 0px;
		margin: 2rem auto 2rem auto;
		padding: 0;
		float: initial;
		border: 0;
	}

}


/* -------------------------------------------------------------
 * NEWSLETTER
 * -----------------------------------------------------------*/
.sessao-newsletter {
    font-family: 'Poppins', sans-serif;
    background-color: #00985e;
    color: #FFF;
    padding: 10rem 0 10rem;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
}

.sessao-newsletter input {
    margin-bottom: 20px;
    height: 60px;
    border-radius: 8px;
    border: none;
    font-size: 2rem;
    color: #243027;
    font-weight: bold;
}

.sessao-newsletter button {
    display: inline-block;
    border: 0;
    background-color: #3d405b;
    padding: 8px 25px;
    color: #FFF;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 8px;
}

.sessao-newsletter button:hover {
    background-color: #F4F1DE;
    transition: .2s;
    color: #243027;
    transition: .3s;
}

@media(max-width:767px) {
    .sessao-newsletter {
        clip-path: none;
        padding: 3rem 3%;
    }
}



/* -------------------------------------------------------------
 * PERGUNTAS
 * -----------------------------------------------------------*/
.sessao-perguntas {
    padding: 5% 20%;
    background-color: #FFF;
    clip-path: none;
}

.sessao-perguntas .perguntas-centralizar {
    padding-left: 0%;
    padding-right: 0%;
}

.accordion {
    font-family: 'Poppins', sans-serif;
    background-color: #d5f5dc;
    color: #243027;
    padding: 20px 30px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 600;
    border-radius: 8px;
}

.active,
.accordion:hover {
    background-color: #00985e;
    color: #FFF;
    transition: .3s;
}

.panel p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: left;
    padding: 2px 0 0 10px;
}



/* -------------------------------------------------------------
 * GALERIA
 * -----------------------------------------------------------*/
.galeria {
    font-size: 100%;
    padding: 0rem 15% 4% 15%;
}

.galeria .btn a {
    font-family: 'Poppins', sans-serif;
    color: #FFF;
    background: #243027;
    border: 0;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.6rem;
}

.galeria .btn a:hover {
    color: #FFF;
    background: #00985e;
    transition: .3s;
}

.gallery__img {
    border-radius: 2rem;
}

@media(max-width:450px) {
    .galeria .btn a {
        display: block;
        margin-bottom: 1rem;
        max-width: 250px;
    }
}



/* -------------------------------------------------------------
 * REDE SOCIAL
 * -----------------------------------------------------------*/
.sessao-redes-sociais {
    font-family: 'Poppins', sans-serif;
    background-color: #F4F1DE;
    color: #00985e;
    padding: 5rem 0 5rem;
}

.sessao-redes-sociais a {
    background-color: transparent;
    color: #00985e;
    padding: 19px 17px;
    margin: 3px;
    border-radius: 8px;
}

.sessao-redes-sociais a:hover {
    background-color: transparent;
    color: #3d405b;
    transition: .3s;
}

.sessao-redes-sociais i {
    font-size: 7rem;
}

@media(max-width:450px) {
    .sessao-redes-sociais i {
        font-size: 4rem;
    }
}



/* -------------------------------------------------------------
 * FOOTER
 * -----------------------------------------------------------*/
#footer-session {
    font-family: 'Poppins', sans-serif;
    background: #00985e;
    padding: 2rem 5% 3rem;
}

#footer-session h2 {
    margin-bottom: 4rem;
}

#footer-session .background-card-pequeno {
    background-color: #243027;
    padding: 10px;
    border-radius: 8px;
}

#footer-session .botoes-contato{
	padding: 0% 20%;
}

#footer-session .background-card-pequeno i,
#footer-session .background-card-pequeno p {
    color: #FFF;
}

#footer-session .background-card-pequeno:hover {
    transform: scale(1);
    transition: .3s;
    background-color: #f4f1de;
}

#footer-session .background-card-pequeno:hover i,
#footer-session .background-card-pequeno:hover p {
    color: #243027;
}


#footer-session .footer-btn-form {
    font-family: 'Poppins', sans-serif;
    background: #243027;
    color: #FFF;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 8px !important;
}

#footer-session .contato-rodape input[type="submit"],
#footer-session .contato-rodape input[type="reset"] {
    border-radius: 8px !important;
}

#footer-session .contato-rodape {
    background: #00985e;
    padding: 2rem 10rem;
    border-radius: 8px;
}

#footer-session .footer-certificado .footer-certificado-flex {
    display: flex;
    align-items: center;
}

#footer-session .footer-certificado img {
    margin-right: 1rem;
}

#footer-session .footer-certificado p {
    text-align: right !important;
}

#footer-session .footer-btn-up {
    position: absolute;
    right: 4rem;
}

@media(max-width:1024px) {

	#footer-session .contato-rodape {
		background: #00985e;
		padding: 0rem 0rem;
		border-radius: 8px;
	}
	#footer-session .footer-certificado .footer-certificado-flex {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    text-align: center;
    padding: 5% 0% 0% 0%;
}

#footer-session .footer-certificado p {
    text-align: center!important;
    padding-top: 6%;
}

}




@media(max-width:991px) {
    .campos-mesma-linha { padding-left: 0 !important; padding-right: 0 !important; }
}

@media(max-width:768px) {
	
	#footer-session .contato-rodape {
	background: #00985e;
	padding: 0rem 0rem;
	border-radius: 8px;
	margin-bottom: 10%;
	}

	#footer-session .botoes-contato {
		padding: 0% 5%;
	}
	#footer-session .footer-certificado .footer-certificado-flex {
		
	}
	#footer-session .footer-certificado p {
	text-align: center!important;
	padding-top: 6%;
	font-size: 1.15rem;
	}

}

@media(max-width:450px) {
	
	#footer-session .background-card-pequeno {
    width: 100%;
    margin: 0 auto 0rem auto;
}
	
	#footer-session h2 {
    display: block;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #fff;
}

#footer-session .background-card-pequeno p {
    display: inline-block;
    margin-left: 0px;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
}

    #footer-session .contato-rodape {
        padding: 2rem;
    }
}