@font-face {
font-family: Carving Soft;
src: url(../fonts/MADECarvingSoftPERSONALUSE-Light.otf);
font-weight: 200;
}

@font-face {
font-family: Carving Soft;
src: url(../fonts/MADECarvingSoftPERSONALUSE-Regular.otf);
font-weight: 400;
}

@font-face {
font-family: Carving Soft;
src: url(../fonts/MADECarvingSoftPERSONALUSE-Medium.otf);
font-weight: 500;
}

@font-face {
font-family: Carving Soft;
src: url(../fonts/MADECarvingSoftPERSONALUSE-SemiBold.otf);
font-weight: 600;
}

@font-face {
font-family: Carving Soft;
src: url(../fonts/MADECarvingSoftPERSONALUSE-Bold.otf);
font-weight: 700;
}

:root {

	--verde-claro: #EAFFDB;
	--verde: #87FC33;
	--aqua: #009FAB;
	--cinza-claro: #F9F9F9;
	--cinza: #515151;
	--cinza-escuro: #3D3D3D;
	--preto: #0D0D0D;
	--branco: #FFFFFF;
	--azul: #009FAB;

	--padding-x-global: 6.25rem;
	--padding-x-global-mobile: 2rem;
	--section-y-global: 5rem;
	--section-y-global-mobile: 3rem;

	--Montserrat: "Montserrat", sans-serif;
	--CarvingSoft: "Carving Soft", sans-serif;

	--h1-fs: 3.25rem;
	--h1-fs: 2.4rem;
	--h1-lh: 1.2em;
	--h2-fs: 2.4rem;
	--h2-fs: 1.875rem;
	--h2-lh: 1.2em;
	--h3-fs: 1.4rem;
	--h3-lh: 1.2em;
	--h4-fs: 1.375rem;
	--h4-lh: 1.2em;
	--h5-fs: 1rem;
	--h5-lh: 1.2em;
	--h6-fs: 1.125rem;
	--h6-lh: 1.2em; 

	--h1-fs-mobile: 2rem;
	--h1-lh-mobile: 1.2em;
	--h2-fs-mobile: 1.75rem;
	--h2-lh-mobile: 1.2em;
	--h3-fs-mobile: 1.5rem;
	--h3-lh-mobile: 1.2em;
	--h4-fs-mobile: 1.375rem;
	--h4-lh-mobile: 1.2em;
	--h5-fs-mobile: 1.25em;
	--h5-lh-mobile: 1.2em;
	--h6-fs-mobile: 1.125rem;
	--h6-lh-mobile: 1.2em; 
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--CarvingSoft);
	font-weight: 400;
}

.h1, h1 {
	font-size: var(--h1-fs);
	line-height: var(--h1-lh);
}

.h2, h2 {
	font-size: var(--h2-fs);
	line-height: var(--h2-lh);
}

.h3, h3 {
	font-size: var(--h3-fs);
	line-height: var(--h3-lh);
}

.h4, h4 {
	font-size: var(--h4-fs);
	line-height: var(--h4-lh);
}

.h5, h5 {
	font-size: var(--h5-fs);
	line-height: var(--h5-lh);
}

.h6, h6 {
	font-size: var(--h6-fs);
	line-height: var(--h6-lh);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--Montserrat);
/* 	font-size: calc(12px + 0.390625vw); */
	/* 	font-size: calc(12px + 0.25vw); */
	color: var(--cinza);
}

a{
	transition: 0.5s;
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;
	color: var(--verde);
}

ul, ol {
	list-style: none;
	padding: 0;
}

button.btn,
button.btn:active,
button.btn:focus,
input:active,
input:focus,
textarea:active,
textarea:focus {
	outline: none !important;
	box-shadow: none !important;
}

button.btn:active {
	outline: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
}

.form-control:focus {
	box-shadow: none;
}

.main{
	margin-top: 8rem;
}
@media(max-width: 576px){
	.main{
		margin-top: 5rem;
	}
}

.wrapper {
	padding: var(--section-y-global) 0;
	overflow: hidden;
}

.padding{
	padding: var(--section-y-global) 0;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding: 0 var(--padding-x-global);
	max-width: 80rem;
}

.container-person{
	padding-left: 4rem;
}

@media(max-width: 576px){
	.container-person{
		padding: var(--padding-x-global-mobile);
	}
}

.subtitle{
	color: var(--verde);
	font-weight: 600;
	text-decoration: underline var(--verde);
}

.subtitle.azul{
	color: var(--azul);
	text-decoration: underline var(--azul);
}

.subtitle.branco{
	color: var(--branco);
	text-decoration: underline var(--branco);
}

.subtitle.cinza{
	color: var(--cinza);
	text-decoration: underline var(--cinza);
}

/* FORMULÁRIO CONTACT FORM 7 */
.wpcf7 {
	display: none;
}

/* BORDA VERDE */
.border-green{
	padding: 0;
	background-color: var(--verde);
}

.border-green.mobile{
	display: none;
}

@media(max-width: 1024px){
	.border-green.mobile{
		display: block;
	}

	.border-green.desktop{
		display: none;
	}
}

/* BOTÃO PADRÃO*/
.btn-default {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 260px;
	height: 55px;
	transition-delay: 0.8s;
	overflow: hidden;
}

.btn-default .box {
	position: absolute;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s ease;
	border-radius: 5px;
	border: 1px solid var(--preto);
}

.btn-default .box p{
	margin-bottom: 0;
	color: var(--preto);
	font-size: 18px;
	font-weight: 600;
	transition: transform 0.8s ease;
}

.btn-default .box.one p{
	transition: transform 0.8s ease, opacity 0.8s ease;
	transform: scale(0.8);
	opacity: 0;
}

.btn-default .box.two{
	background: var(--verde);
}

.btn-default:hover .box.one p{
	transform: scale(1);
	opacity: 1;
}

.btn-default:hover .box.two {
	transform: translateY(240px);
}

/* BOTÃO PADRÃO ONE */
.btn-default.one .box img {
	position: absolute;
	width: 100%;
	height: 100%;
    display: block;
	object-fit: contain;
	object-position: 100px 15px;
	z-index: -1;
	transition: transform 0.8s ease;
}

.btn-default.one .box.one{
	background: var(--verde-claro);
	border: 1px solid transparent;
}

.btn-default.one:hover img {
	transform: scale(4.1);
}

/* BOTÃO PADRÃO TWO */
.btn-default.two .box.one{
	border: 1px solid var(--verde);
	background: var(--preto);
}

.btn-default.two .box.one p{
	color: var(--verde);
}

/* BOTÃO PADRÃO THREE */
.btn-default.three .box p{
	color: var(--verde);
}

.btn-default.three .box.one,
.btn-default.three .box.two{
	border: 1px solid var(--verde);
	background: var(--preto);
}

/* BOTÃO FORMULÁRIOS */
.btn-default.btn-form.newsletter {
    border-radius: 5px;
    color: var(--preto);
    font-size: 18px;
    font-weight: 600;
    background: var(--verde);
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0.8rem;
    height: auto;
	max-width: 100%;
}

.btn-default.btn-form.newsletter:hover{
	transform: scale(1.05);
	box-shadow: 3px 3px 12px var(--verde);
}

.btn-default.btn-form.newsletter:active {
	transform: scale(1);
}

#button-form.btn-default{
	background: none;
	border: none;
}

/* INPUTS FORM NEWSLETTER*/
#contact-newsletter .form-control{
	border-radius: 0.313rem;
/* 	text-align: center; */
	background: transparent;
	color: var(--branco);
	border: 1px solid var(--verde);
	padding: 0.8rem 0.5rem;
}

#contact-newsletter .form-control::placeholder{
	transform: 0.4s;
	color: var(--branco);
}

#contact-newsletter .form-control:focus{
	text-align: start;
	background: transparent;
	border: 1px solid var(--verde);
}

/* INPUTS FORM HOME*/
.form-control {
    border-radius: 12.5rem;
    background: var(--branco);
    border: 1px solid var(--branco);
    padding: 0.5rem;
	color: var(--cinza);
}

.form-control::placeholder{
	transform: 0.4s;
}

.form-control:focus{
	border: 1px solid var(--verde);
}

/* BANNERS PAGES */
#main-banner {
	height: 700px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

#main-banner .title {
	color: var(--branco);
}

#main-banner .title.full{
	font-size: 4rem;
}

#main-banner .title p{
	color: var(--branco);
}

#main-banner .description {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	max-width: 90%;
	color: var(--branco);
	z-index: 3;
}

.banner:before {
	content: "";
	position: absolute;
	display: block;
	background-image: url('../images/alvo.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 29rem;
	height: 100%;
	opacity: 0.2;
}

.banner.right:before {
	bottom: 0;
	right: 0;
	z-index: 2;
}

.banner.left:before {
	bottom: 0;
	left: 0;
	transform: rotate(-180deg);
	z-index: 0;
}

.banner.bottom:before {
    bottom: -90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
/* 	width: 90vw; */
	width: 100vw;
}

.banner.right-bottom:before {
    bottom: -15rem;
    right: -10rem;
	opacity: 1;
	z-index: 1;
}

.overlay-main-banner{
	background-color: rgba(0,0,0, 0.3);
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

.title{
	position: relative;
	margin: 0 0 1.75rem 0;
}

@media(max-width: 576px){

	#main-banner {
		height: 350px;
/* 		background-position-x: 60%; */
	}

	#main-banner .title.full {
		font-size: var(--h1-fs-mobile);
	}
	
	.banner.right-bottom:before {
		bottom: -10rem;
		right: -10rem;
		width: 20rem;
		height: 20rem;
	}
	
	.banner.right:before {
		height: 35rem;
        left: 33%;
        top: 10%;
	}
	
}

/* BACKGROUND IMAGES GREEN AND AQUA */
.images-single{
	position: relative;
}

.background-image{
	transform: translate(-30px, 30px);
}

.images-single img{
	border-bottom-left-radius: 3rem;
	border-top-right-radius: 3rem;
	width: 100%;
	position: absolute;
	object-fit: cover;
	background: var(--cinza);
}

/* HEADER */
header {
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}

header .navbar {
    padding: 2rem 3rem;
    background-color: rgba(135, 252, 51, 0.7);
    border-top-left-radius: 3.5rem;
    border-bottom-left-radius: 3.5rem;
    border-bottom-right-radius: 3.5rem;
    color: var(--cinza);
/* 	opacity: 0.7; */
}

.navbar-brand:focus, .navbar-brand:hover {
	color: var(--verde);
}

header .navbar .menu {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

header .navbar .menu .menu-item-has-children:first-child {
	display: none;
}

header .navbar .menu li {
	margin-left: 30px; 
}

header .navbar .menu li a,
#offcanvasMenu .menu li a {
	font-weight: 600;
	border: 3px solid transparent;
	border-radius: 3rem;
    padding: 0.25rem 0.5rem;
	color: var(--preto);
    transition: 0.3s;
}

header .navbar .menu li a:hover,
#offcanvasMenu .menu li a:hover {
	background-color: rgba(255, 255, 255 , 0.6);
	color: var(--cinza);
}

header .navbar.desktop .dropdown-button > a:after,
#offcanvasMenu .dropdown-button > a:after {
	content: "\f103";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-left: 0.25rem;
    font-size: 10px;
}

header .navbar.desktop .sub-menu {
	list-style: none;
	position: absolute;
/* 	display: block; */
	display: grid;
    grid-template-columns: 1fr 1fr;
	width: calc(100% - 6rem);
	left: 3rem;
	top: 7.5rem;
	border-radius: 10px;
	padding: 1rem;
	background: var(--branco);
	box-shadow: 0px 3px 6px #00000029;
	visibility: hidden;
}

header .navbar.desktop .sub-menu li {
	margin: 0.5rem 0;
}

body > header > div > .navbar.desktop > div > ul > li:nth-child(2) .sub-menu li {
	margin: 0;
}

header .navbar.desktop .sub-menu li a {
	position: relative;
	display: block;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	height: 100%;
	border: 5px;
	border-radius: 0;
	width: auto;
	transition: 0.3s;
}

header .navbar.desktop .sub-menu li a:hover {
	background-color: var(--verde-claro);
}

header .navbar.desktop .sub-menu .card {
	border: none;
	border-radius: 5px;
/* 	max-width: 70%; */
	background-color: transparent;
}

header .navbar.desktop .sub-menu .card .card-body {
	padding: 0 var(--bs-card-spacer-x);	
}

header .navbar.desktop .sub-menu .card .card-body i {
	font-size: 28px;
	margin-top: 5px;
	color: var(--preto);
}

header .navbar.desktop .sub-menu .card .col-md-3 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	background-color: rgba(135, 252, 51);
}

header .navbar.desktop .sub-menu .card .img-fluid {
	position: relative;
	height: 40px;
    width: 40px;
	margin-bottom: 5px;
    object-fit: contain;
}

/* header .navbar.desktop .sub-menu .card .col-md-3 i {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	margin-bottom: 5px;
	font-size: 28px;
} */

/* header .navbar.desktop .sub-menu .card .col-md-3:before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: rgba(135, 252, 51, 0.5);
	z-index: 1;
} */

header .navbar.desktop .sub-menu .card .card-title {
	font-weight: 700;
}

header .navbar.desktop .sub-menu .card .card-text {
	display: flex;
	align-items: center;
	font-weight: 300;
	font-size: 14px;
	max-width: 90%;
}

/* MENU MOBILE */

header .menu-btn {
	display: none;
	font-size: 28px;
    transform: scaleX(1.3);
}

#offcanvasMenu {
	width: calc(100% - 3.5rem);
	height: fit-content;
	margin: 0 auto;
	background: rgba(135, 252, 51, 1);
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}

/* #offcanvasMenu .offcanvas-body {
	overflow: initial;
} */

#offcanvasMenu .menu li {
	padding: 0.5rem;
}

#offcanvasMenu .sub-menu {
	overflow: hidden;
}

#offcanvasMenu .menu .sub-menu li {
	padding: 1.25rem 1.25rem 0.25rem;
}

#offcanvasMenu .menu .sub-menu li a {
	font-weight: 400;
	border: none;
	border-radius: 0;
    padding: 0;
    transition: 0.3s;
}

#offcanvasMenu .menu .sub-menu li a:hover {
	background-color: transparent;
	color: var(--cinza);
}

@media(max-width: 1320px){
	
	header {
		position: fixed;
	}
	
	header .navbar {
		padding: 1rem;
	}
	
	header .navbar-brand img{
		height: 1.875rem;
	}
	
	header .container{
		padding: 0 0.2rem;
	}
	
	header .navbar .menu li {
		margin-left: 10px;
	}
	
	header .dropdown-button a {
		pointer-events: none;
	}
	
	header .navbar.desktop .sub-menu {
		top: 5.2rem;
	}
	
	header .navbar.desktop .sub-menu .card {
		max-width: 80%;
	}
	
}

@media(max-width: 992px){
	
	header .navbar.desktop .sub-menu .card {
		max-width: 100%;
	}
	
}

@media(max-width: 768px) {
	
	header .navbar-brand img {
		height: 1.875rem;
	}
	
	header .container{
		padding: 0 0.2rem;
	}

	header .navbar {
		padding: 0.25rem 1.5rem 0.5rem 1rem;
		background-color: rgba(135, 252, 51, 1);
	}
	
	header .navbar.desktop .dropdown-button.menu-item {
		display: none;
	}
	
	header .navbar .menu .menu-item-has-children:first-child {
		display: block;
	}
	
	header .navbar.desktop .menu-header-container {
		display: none;
	}
	
	header .menu-btn {
		display: block;	
	}
	
	#offcanvasMenu {
		padding-top: 3.35rem;
	}
	
}

/* SEÇÃO VIDEO DEMONSTRATIVO */
#video{
	background: var(--aqua);
}

#video .title{
	color: var(--branco);
	max-width: 400px;
}

#video .description{
	color: var(--branco);
	max-width: 450px;
}

#video .video-apresentacao {
/* 	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 5px; */
	position: relative;
	padding-bottom: 56.25%;
	width: 100%;
	height: 100%;
	background: var(--aqua);
	border-radius: 5px;
    overflow: hidden;
}

#video .video-apresentacao video {
	position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

#video .video-apresentacao img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

@media(max-width: 768px){
	
	#video .text-banner{
		text-align: center;
	}
	
	#video .btn-default {
		margin: 2rem auto 0;
	}
	
}

@media(max-width: 576px) {
	
	#video .row {
		flex-direction: column-reverse;
	}
	
	#video .video-apresentacao {
		margin-bottom: 2rem;
		height: 400px;
	}
	
}

/* SEÇÃO SOLUÇÕES */
#solucoes .solutions.desktop {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 2rem;
}

/* #solucoes .solutions.mobile {
	display: none;
} */

#solucoes h2 {
	max-width: 77%;
    margin: 0 auto;
}

#solucoes .card{
	border: none;
	background: var(--cinza-claro);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#solucoes .card .card-body {
	padding: 1rem 2rem;
	font-size: 1rem;
}

#solucoes .card .card-text {
	margin-bottom: 3.5rem;
	min-height: 10rem;
}

#solucoes .card .card-body h4 {
	/* font-size: 1rem; */
	font-weight: 500;
	min-height: 3rem;
	color: var(--cinza);
}

#solucoes .card .card-body p{
	font-size: 0.8rem;
	font-weight: 300;
}

#solucoes .card-icone {
	clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
	transform: rotate(-90deg);
	background: var(--verde);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 65px;
	height: 65px;
}

#solucoes .card-icone i {
	transform: rotate(90deg);
	color: var(--preto);
	font-size: 25px;
/* 	margin-top: 5px; */
}

#solucoes .card-icone img {
	transform: rotate(90deg);
	height: 25px;
}

.divisor{
	margin: 1rem 0;
	background: var(--preto);
	height: 1px;
}

.btn-card{
	border: 1px solid var(--verde);
	background: var(--verde);
	padding: 0.5rem 1rem;
	color: var(--preto);
	border-radius: 200px;
	font-size: 0.8rem;
}

.btn-card:hover{
	border: 1px solid var(--preto);
	color: var(--preto);
	text-decoration: underline var(--preto);
}

#solucoes .card:hover {
	transform: translate(-10px, -10px);
	box-shadow: 10px 10px 10px rgba(135, 252, 51, 0.5);
	cursor: pointer;
}

#solucoes .btn-box-card {
	position: absolute;
    bottom: 1.25rem;
    right: 2rem;
    width: calc(100% - 4rem);
}

#solucoes .icon-info {
	margin-right: 1rem;
	margin-bottom: 1rem;
}

@media(max-width: 1024px) {
	
	#solucoes .solutions.desktop {
		grid-template-columns: repeat(2, 1fr);
	}
	
}

@media(max-width: 992px) {
	
	#solucoes .text-info {
	text-align: center;
}
	
}

@media(max-width: 576px){
	
	#solucoes h2 {
		max-width: 100%;
	}
	
	#solucoes .solutions.desktop {
		grid-template-columns: 1fr;
	}
	
	
/* 	#solucoes .solutions.desktop {
		display: none;
	}

	#solucoes .solutions.mobile {
		display: block;
		overflow-x: auto;
	}

	#solucoes .solutions.mobile .table-solutions {
		display: flex;
		min-width: 990px;
	}

	#solucoes .solutions.mobile .table-solutions .card {
		min-width: 15rem;
		margin-right: 1rem;
	}
	
	#solucoes .solutions.mobile .group-button {
		width: 75%;
		position: absolute;
		bottom: 2rem;
		right: 2rem;
	} */
}

/* SEÇÃO POSTS */
#posts .posts-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1rem;
}

#posts .card {
	border: none;
	/* background: var(--cinza-claro); */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

#posts .card .card-body {
	padding: 0;
	font-size: 1rem;
}

#posts .card .card-image {
	position: relative;
	height: 15rem;
}

#posts .card .card-image img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#posts .card .card-text {
	padding: 1rem;
	margin: -9rem 2rem 0 2rem;
	border-radius: 5px;
	z-index: 1;
	position: relative;
	background: var(--verde);
	min-height: calc(100% - 7rem);
}

#posts .card .card-text .btn-box-card {
	position: absolute;
	bottom: 1rem;
	left: 0.5rem;
}

#posts .card .card-body h4{
	font-size: 1.25rem;
	font-weight: 500;
}

#posts .card .card-body p{
	font-size: 1rem;
	font-weight: 300;
	margin-bottom: 2rem;
}

#posts .btn-box-card a{
	font-size: 0.75rem;
	border-radius: 3rem;
	padding: 2px 7px 5px;
}

#posts .btn-box-card a:hover {
	background-color: rgba(255, 255, 255 , 0.6);
	color: var(--cinza);
}

#posts .date{
	display: flex;
	align-items: center;
}

@media(max-width: 992px) {
	
	#posts .posts-wrapper {
		grid-template-columns: 1fr;
		grid-row-gap: 2rem;
	}
	
}

/* SEÇÃO CONTATO */
#contact{
	position: relative;
	overflow: hidden;
}

#contact .contact-form {
	background: var(--aqua);
	padding: 2rem;
	max-width: 40rem;
    margin: 0 auto;
}

#contact .contact-form label{
	color: var(--branco);
}

#contact .contact-form .invalid-feedback {
	margin-top: 0;
	margin-bottom: 0.5rem;
	color: #b30000;
}

#contact .contact-form .alert .col-md-3 {
	display: none;
}

/* FOOTER */
footer{
	background-color: var(--preto);
}

footer a,
footer p,
footer small,
footer h4,
footer h5{
	color: var(--branco);
}

footer li {
	margin: 0.5rem 0;
}

@media(max-width: 1024px) {
	.logo-footer{
		margin: 0 auto 1rem;
	}
	
	.form-newsletter{
		margin-top: 1rem;
	}

}

@media(max-width: 768px) {

	* {
/* 		font-size: calc(14px + 0.390625vw); */
	}

	.wrapper {
		padding: var(--section-y-global-mobile) 0;
	}

	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		padding: 0 var(--padding-x-global-mobile);
	}

	.h1, h1 {
		font-size: var(--h1-fs-mobile);
		line-height: var(--h1-lh-mobile);
	}

	.h2, h2 {
		font-size: var(--h2-fs-mobile);
		line-height: var(--h2-lh-mobile);
	}

	.h3, h3 {
		font-size: var(--h3-fs-mobile);
		line-height: var(--h3-lh-mobile);
	}

	.h4, h4 {
		font-size: var(--h4-fs-mobile);
		line-height: var(--h4-lh-mobile);
	}

	.h5, h5 {
		font-size: var(--h5-fs-mobile);
		line-height: var(--h5-lh-mobile);
	}

	.h6, h6 {
		font-size: var(--h6-fs-mobile);
		line-height: var(--h6-lh-mobile);
	}

}

@media(max-width: 576px) {
	
	.footer-credits,
	#contact-newsletter{
		text-align: center;
	}
	
	.form-newsletter #contact-newsletter .alert .col-md-3 {
		display: none;
	}
	
	.input-item{
		padding: 0;
		margin-bottom: 0.8rem;
	}
	
}

/* LOADING ANIMAÇÃO */
.preloader {
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
/* 	background: var(--preto); */
	background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
	color: var(--verde);
	z-index: 99999;
	transition: 1s;
}

@keyframes spin2 { 
	0% {transform: rotatey(0deg);}
	100% {transform: rotatey(360deg);}
}

#logo{
	animation: spin2 2s linear infinite;
}

#logo:before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: blur(6px);
}