/*
Theme Name:         EasyWeb
Description:        EasyWeb Theme
Version:            1.0
Author:             wevolved - Diogo Lopes

Text Domain:        EasyWeb
*/

@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wdth,wght@75..100,400..700&display=swap");

/* Configurações BASE */
* {
	box-sizing: border-box;
}

html,
body {
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
    position: relative;
}

body {
	background-color: var(--green-900);
	overflow-x: hidden;
	font-family: "Instrument Sans", sans-serif;

}

/* desativar scroll quando adicionada a classe disableScroll ao HTML */
html.disableScroll {
	overflow-y: hidden;
}

img {
	max-width: 100%;
}

/********* Alterar o scroll bar **********/
html {
	scrollbar-width: thin;
	/* Adjust the width of the scrollbar */
	scrollbar-color: #888 transparent;
	/* Adjust the color of the scrollbar */
}

/* Define the style for the scrollbar track */
html::-webkit-scrollbar {
	width: 4px;
	/* Adjust the width of the scrollbar */
}

/* Define the style for the scrollbar thumb */
html::-webkit-scrollbar-thumb {
	background-color: #888;
	/* Adjust the color of the scrollbar thumb */
	border-radius: 4px;
	/* Adjust the border radius of the scrollbar thumb */
}

/* Style for scrollbar track (background) */
html::-webkit-scrollbar-track {
	background-color: white;
	/* Background color of the scrollbar track */
}

/********* FIM DE Alterar o scroll bar **********/

/* Reset comportamento de links */
a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
input {
	margin: 0px;
	/* para que as fonts fiquem com linha mais fina */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a,
span {
	/* para que as fonts fiquem com linha mais fina */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	overflow-wrap: anywhere;
}

/**************** COMPONENTES DE FORMULARIOS **************/
input:focus,
select:focus {
	outline: none !important;
}

/* Remover incremento de número - Chrome, Safari, Edge, Opera  */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* remover espaçamentos */
.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid>li,
.vc_btn3-container {
	margin-bottom: 0px !important;
}

ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}


/**************** FONTS ****************/

/* Variáveis p/ reutilizar */
:root {
	--green-900: #17292b;
	--green-800: #1f3132;
	--green-700: #2c3e3c;
	--green-500: #485953;
	--green-400: #a1c378;
	--green-300: #c4e98b;
	--dark-300: #2c3e3c;
	--dark-200: #4c5d56;
	--light-100: #f9f9f9;
	--black: #09090B;

	--font-inst: 'Instrument Sans', sans-serif;

	/* Headings */
	--h1-size: 96px;
	--h1-weight: 400;
	--h1-letter-spacing: -0.03em;

	--h2-size: 80px;
	--h2-weight: 400;
	--h2-letter-spacing: -0.03em;

	--h3-size: 48px;
	--h3-weight: 400;
	--h3-letter-spacing: -0.03em;

	--h4-size: 20px;
	--h4-weight: 500;
	--h4-letter-spacing: 0;

	--h5-size: 32px;
	--h5-weight: 400;
	--h5-letter-spacing: -0.02em;

	--h6-size: 16px;
	--h6-weight: 600;
	--h6-letter-spacing: 0;

	/* Body */
	--paragraph-size: 16px;
	--paragraph-weight: 500;
	--paragraph-letter-spacing: 0;

	--menu-size: 14px;

	--menu-line: 20px;

	--weight-700: 700;

	--line-28: 28px;

	--vf-wght: 700;
    --vf-wdth: 75;
}

.container {
	width: calc(100% - 100px);
	margin: auto;
	padding: 0px !important;
}

nav {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	justify-content: space-between;
}

header {
	padding: 24px 50px 24px 50px;
	margin-bottom: 40px !important;
}

.nav-menu {
	display: flex;
	gap: 23px;
	align-items: center;

}

.nav-menu li {
	margin: 0;
	background-color: var(--dark-300);
	padding: 8px 16px;
	border-radius: 6px;
	transition: all 0.3s ease;
		overflow: hidden;

}

.nav-menu li:hover{
background-color: var(--dark-200);
border: 1px solid;
border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0) 100%);
 transform: scale(1.10);
}

.nav-menu li a {
	color: var(--light-100);
	font-weight: var(--h6-weight);
	font-size: var(--menu-size);
	line-height: var(--menu-line);
}

.nav-menu li:last-child {
	background: var(--light-100);
	border: 1px solid rgba(9, 9, 11, 0.20);
	font-weight: var(--h6-weight);
	font-size: var(--menu-size);
	line-height: var(--menu-line);
	transition: all 0.3s ease;
	overflow: hidden;
}

.nav-menu li:last-child:hover,p.sol:hover, p.sol.v2:hover{
 transform: scale(1.10);
 background-color: var(--green-300);
color: var(--black);
border: 1px solid;
border-image-source: linear-gradient(180deg, rgba(9, 9, 11, 0.05) 0%, rgba(9, 9, 11, 0.05) 16%, rgba(9, 9, 11, 0.05) 86%, rgba(9, 9, 11, 0) 100%);
}

.nav-menu li:last-child a {
	color: var(--black);
}

footer {
	padding: 80px 50px 29px 50px;
	display: flex;
	justify-content: space-between;
	z-index: 2;
	position: relative;
}

footer a,
footer p {
	font-weight: var(--h6-weight);
	font-size: var(--menu-size);
	line-height: var(--menu-line);
	color: var(--light-100) !important;
}

/****************************** PARTE 1 ************************************/
.parte1{
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  position: relative;
}

.hero__text{
	width: 100%;
}

.parte1 h1 {
	margin: 0;
	color: var(--green-300);
	font-size: var(--h1-size);
	font-style: normal;
	line-height: 105%;
	letter-spacing: -2.88px;
	text-transform: uppercase;
    margin-bottom: 20px !important;
	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);

	font-weight: var(--vf-wght);
}

/* Defensive fallback */
@supports not (font-variation-settings: normal) {
	.hero__title {
		font-weight: 700;
	}
}


.parte1 h4 {
	font-weight: var(--h4-weight);
	font-size: var(--h4-size);
	line-height: var(--line-28);
	color: var(--light-100);
	width: 40%;
	max-width: 100%;
	margin: auto;
	margin-bottom: 40px !important;
}


.sol-orc a{
	font-weight: var(--h6-weight);
	font-size: var(--menu-size);
	line-height: 20px;
	color: var(--green-900);
	
}

p.sol{
	padding:8px 16px;
	background-color: var(--light-100);
	border: 1px solid var(--light-100);
	display: inline-block;
	border-radius: 6px;
	margin-bottom: 80px !important;
	overflow: hidden;
		transition: all 0.3s ease;

}

.sol-orc{
	display: flex;
	flex-direction: row;
	justify-content: center;
}

/* Container principal da galeria */
.galeria {
    margin: 0 auto;
    padding: 7px;
    box-sizing: border-box;
	
}

/* Imagens responsivas */
.galeria1 img {
    width: 100%;             /* ou 100% se quiser responsivo */
    object-fit: cover;        /* corta o excesso sem deformar */
    border-radius: 8px;
    display: block;
	height: auto;
}

/* Owl stage – container dos itens */
.owl-stage {
    display: flex !important;
}

/* Owl item – cada slide */
.owl-item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.owl-nav.disabled{
	display: none;
}


.owl-carousel .owl-stage {
  display: flex;
  transition: transform 0s linear !important; /* remove suavidade de slide padrão */
}

.owl-carousel .owl-item {
  flex: 0 0 auto; /* força os slides na horizontal */
}
.galeria3 .owl-stage {
  display: flex !important;
  width: max-content !important;
  animation: scroll-left 60s linear infinite;
}

.galeria3 .owl-item {
  flex: 0 0 auto !important;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0); /* começa com o primeiro item cortado */
  }
  100% {
    transform: translateX(-50%); /* metade da track para loop contínuo */
  }
}

/* Galeria2: scroll contínuo da direita para a esquerda */
.galeria2 .owl-stage {
  display: flex !important;
  width: max-content !important;
  animation: scroll-right 60s linear infinite;
}

.galeria2 .owl-item {
  flex: 0 0 auto !important;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%); /* começa com último item cortado */
  }
  100% {
    transform: translateX(0); /* termina no início */
  }
}

.galeria3{
	margin-bottom:114px !important ;
}


/****************************** SECTION 2 ************************************/
.sec2 h2{
font-size: var(--h2-size);
font-weight: var(--weight-700);
letter-spacing: var(--h2-letter-spacing);
line-height: 105%;
color: var(--green-300);
margin-bottom: 20px !important;
text-transform: uppercase;
font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);

	font-weight: var(--vf-wght);
}

.sec2 h4{
font-size: var(--h4-size);
line-height: var(--line-28);
letter-spacing: 0%;
color: var(--light-100);
font-weight: var(--h4-weight);
margin-bottom: 80px !important;
}

.topcs{
	margin-bottom:200px ;
}


.topcs h6 {
    font-size: var(--h6-size);
    line-height: var(--line-28);
    font-weight: 600;
    color: var(--green-300);
    position: relative;
    margin-left: 27px;
    margin-bottom: 4px !important;
}

.topcs h6::before {
    content: '';
    position: absolute;
    background-image: url('/wp-content/uploads/2026/01/blocks.svg');
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
    top: 4px;
    left: -27px;
}

.topcs p {
    font-weight: var(--paragraph-weight);
    font-size: var(--paragraph-size);
    line-height: 24px;
    letter-spacing: 0;
    color: var(--light-100);
    width: 100%;
    padding-left: 27px;
}

.topcs .vc_column_inner{
	padding: 0 !important;
}

.op1{
	padding: 16px;
	border-radius: 16px;
    margin-bottom: 16px !important;
	position: relative;
	cursor: pointer;
	opacity: 0.4;
	width:373px ;
}

.op1.ativo{
	opacity: 1;
	background-color: var(--green-800);

}

.topcs img{
	height: 437px !important;
	border-radius: 16px;
	border: 1px solid #09090B1A;
	object-fit: cover;
}

.foto {
  display: none;
}

.foto.visivel {
    display: block;
}


/****************************** SECTION 3 ************************************/
.proc h2{
font-weight: var(--weight-700);
font-size: var(--h2-size);
line-height: 105%;
letter-spacing: var(--h2-letter-spacing);
color: var(--green-300);
margin-bottom: 80px !important;
font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);
	font-weight: var(--vf-wght);
}


.todos-proc h3{
	font-size: var(--h3-size);
	line-height: 105%;
	letter-spacing: var(--h3-letter-spacing);
	text-transform: uppercase;
	color: var(--light-100);
	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);

	font-weight: var(--vf-wght);
}

.todos-proc p{
	font-size: var(--h3-size);
	line-height: 105%;
	letter-spacing: var(--h3-letter-spacing);
	text-transform: uppercase;
	color: var(--green-300);

	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);

	font-weight: var(--vf-wght);
}


.todos-proc {
    padding: 40px; 
    border-radius: 25px;
    background-color: var(--green-800);
    margin-bottom: 20px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.todos-proc:hover {
    background-color: var(--green-300);
	padding: 40px 60px;
}

.todos-proc .wpb_wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}


.todos-proc h3,
.todos-proc p {
    transition: color 0.3s ease;
}

.todos-proc:hover h3,
.todos-proc:hover p {
    color: var(--green-800);
}

.proc{
	margin-bottom: 200px !important;
}
/****************************** SECTION 4 ************************************/
.sec4 h2{
font-weight: var(--weight-700);
font-size: var(--h2-size);
line-height: 105%;
letter-spacing: var(--h3-letter-spacing);
color: var(--green-300);

font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);

	font-weight: var(--vf-wght);
}

.sec4 h3{
	font-weight: var(--weight-700);
	font-size: var(--h2-size);
	line-height: 105%;
	letter-spacing: var(--h3-letter-spacing);
	color: var(--light-100);
	margin-bottom: 20px !important;
	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);
	font-weight: var(--vf-wght);
}

.sec4 p{
	font-weight: 500;
	font-size: var(--h4-size);
	line-height: var(--line-28);
	color: var(--light-100);
	width: 47%;
	max-width: 100%;
	margin-bottom: 80px !important;
}

.sec4 h6{
	font-size: var(--h6-size);
	line-height: var(--line-28);
	font-weight: var(--h6-weight);
	color: var(--green-300);
	margin-bottom: 8px !important;
	padding-left: 80px;
}

.cards p{
	font-weight: var(--paragraph-weight);
	font-size: var(--h6-size);
	line-height: 24px;
	font-size: var(--paragraph-size);
	color: var(--light-100);
	width:86%;
	max-width: 100%;
	padding-left:80px;
}

.card1{
	position: relative;
}

.card1::before{
	content: '';
	position: absolute;
	background-image: url('/wp-content/uploads/2026/01/icon.png');
	background-repeat: no-repeat;
	width: 56px ;
	height: 56px ;
	left: 15px;
	top: 5px;
}

.card2::before{
		content: '';
	position: absolute;
	background-image: url('/wp-content/uploads/2026/01/icon-2.png');
	background-repeat: no-repeat;
	width: 56px ;
	height: 56px ;
	left: 15px;
	top: 5px;
}

.card3::before{
	content: '';
	position: absolute;
	background-image: url('/wp-content/uploads/2026/01/icon-1.png');
	background-repeat: no-repeat;
	width: 56px ;
	height: 56px ;
	left: 15px;
	top: 5px;
}

.cards{
	margin-bottom: 120px !important;
}

.com h5{
	font-weight: var(--weight-700);
	font-size: var(--h5-size);
	line-height: 105%;
	letter-spacing: var(--h5-letter-spacing);
	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);
	font-weight: var(--vf-wght);
	color: var(--green-300);
}

.com h5 strong{
	color: var(--light-100);
}


.sol-orc.v2 a{
	font-weight: var(--h6-weight);
	font-size: var(--menu-size);
	line-height: 20px;
	color: var(--green-900);
	
}

p.sol.v2{
	padding:8px 16px;
	background-color: var(--light-100);
	border: 1px solid var(--light-100);
	display: inline-block;
	border-radius: 6px;
	margin-bottom: 80px !important;
	overflow: hidden;
		transition: all 0.3s ease;
}

.sol-orc.v2{
	display: block;
	margin-top: 20px !important;
}

p.sol.v2{
	margin-bottom: calc(119.8px + 80px) !important;
}

/****************************** FAQ ************************************/
.faq h2{
	font-size: var(--h2-size);
	letter-spacing: var(--h2-letter-spacing);
    line-height: 105%;
	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);
	font-weight: var(--vf-wght);
	color: var(--green-300);
	text-transform: uppercase;
	margin-bottom: 80px !important;
}

.faq h5{
	font-size: var(--h5-size);
	line-height: 105%;
	letter-spacing: var(--h5-letter-spacing);
	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);
	font-weight: var(--vf-wght);
	color: var(--light-100);
	margin-bottom: 19.6px !important;
}

.fala{
	padding: 8px 16px;
	background-color: var(--dark-300);
	display: inline-block;
	border-radius: 6px;
	color: var(--light-100);
	font-weight:var(--h6-weight);
	font-size: var(--menu-size);
	line-height: 20px;
	letter-spacing: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

a.fala:focus{
color: var(--light-100);
border: none;
outline: none;
background-color: var(--dark-300);
}

.fala:hover{
	background-color: var(--dark-200) ;
	color: var(--light-100) ;
	transform: scale(1.10);
}

.vc_toggle_title{
	padding: 16px !important;
	border-radius: 8px;
	background-color: var(--green-800);
	border: 1px solid var(--dark-300);
	border-radius: 8px;
	display: flex !important;
	transition: all 0.3s ease;
}

.vc_toggle_title::after{
	content: '';
	position: absolute;
    background-image: url('/wp-content/uploads/2026/01/Frame-7.svg');
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	right: 16px;
	top: 18px;
}

.vc_toggle_active .vc_toggle_title::after{
	content: '';
	position: absolute;
    background-image: url('/wp-content/uploads/2026/01/Frame-7-1.svg');
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	right: 16px;
	top: 18px;
}

.vc_toggle_title h4{
	color: var(--light-100) ;
    font-weight: var(--h6-weight);
	font-size: var(--h6-size);
	line-height: var(--line-28);
}

.vc_toggle_active .vc_toggle_title{
	padding: 16px;
	background-color: var(--green-300);
	border: 1px solid var(--light-100);
	border-radius:8px;
		transition: all 0.3s ease;

}

.vc_toggle_active .vc_toggle_title h4{
	color: var(--green-900) ;
    font-weight: var(--h6-weight);
	font-size: var(--h6-size);
	line-height: var(--line-28);
}

.vc_toggle_content{
	margin-top: 16px !important;
	margin-bottom: 20px !important;
}

.vc_toggle_content p{
	color: var(--light-100);
	font-weight: var(--h4-weight);
	font-size: var(--h6-size);
	line-height: 24px;
	letter-spacing: 0;
	width: 90%;
	max-width: 100%;
}

.faq{
	margin-bottom:160px !important;
}

/****************************** FIM ************************************/
.fim{
	position: relative;
}
.logo{
	margin-bottom:40px !important ;
}

.fim h2{
	font-weight: var(--weight-700);
	font-size: var(--h1-size);
	line-height: 105%;
	letter-spacing: var(--h2-letter-spacing);
	color: var(--light-100);
	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);
	font-weight: var(--vf-wght);
	margin-bottom: 40px !important;
}

.fim h2 strong{
	color: var(--green-300);
}

.sol-orc.v3{
	margin-bottom: 80px !important;
}

.sombra {
  position: absolute;
  bottom: 0;
  left: 50%;

  width: 100%;
  height: 300px;

  transform: translateX(-50%);

  background: radial-gradient(
    ellipse at center bottom,
    var(--green-300) 0%,
    rgba(0, 0, 0, 0) 60%
  );

  filter: blur(120px);
  pointer-events: none;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
	position: relative;
	margin-top: 13px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    display: block;
}

/* ESTADO ATIVO (X) */
.hamburger.active span:nth-child(1) {
    opacity: 0;
}

.hamburger.active span:nth-child(2) {
    opacity: 1;
}

.hamburger.active span:nth-child(3) {
   opacity: 0;
}

.mais-mobile{
	display: none;
}

.sombra.v2{
	display: none;
}
/****************************** MEDIA QUERIES ************************************/
/* Size considerado para Tablet modo portrait*/
@media only screen and (max-width: 767.5px) {

	.logo-dif {
    position: relative;
    z-index: 9999;
}

.hamburger {
    display: flex;
    z-index: 1001;
}

.nav-menu {
    position: fixed;
    top: calc(200px - 80px);
    right: 0;
    width: 100vw;
    height: calc(100vh - 24px);
    background: var(--green-900);
    flex-direction: column;
    padding: 24px 30px 24px 30px;
    display: flex;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.nav-menu.active {
    transform: translateX(0);
}

.logo{
	z-index: 3;
	padding-left: 10px;
}

header {
    padding: 24px 30px 24px 30px;
    margin-bottom: 0px !important;
}

.nav-menu li {
    background-color: transparent;
	width: 100%;
	margin-bottom: 40px;
	padding: 8px 0px;
}

.nav-menu li:last-child a {
    font-weight: var(--h6-weight);
    font-size: var(--menu-size);
    line-height: 20px;
    color: var(--green-900);
	text-transform: none;
	width: 100%;
}

.nav-menu li a{
	font-weight: var(--vf-wght);
	font-size: var(--h3-size);
	line-height: 105%;
	letter-spacing: var(--h3-letter-spacing);
	text-transform: uppercase;
	color: var(--green-300);
	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);
	display: flex;
    width: 80%;
	max-width: 100%;
}

.nav-menu li:last-child {
    padding: 8px 16px;
    display: block;
    width: fit-content;
    margin-right: auto;
}

.menu-geral.active .mais-mobile {
    display: grid;
    z-index: 99999;
    position: absolute;
    transition: all 0.5s ease;
    grid-template-columns: 0.3fr 1fr;
    gap: 16px;
    top: 8%;
    left: 0px;
	padding: 80px 30px;
	width: 100%;
}

.menu-geral.active .mais-mobile h5{
	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);
	font-weight: var(--vf-wght);
	font-size: var(--h5-size);
	line-height: var(--h5-letter-spacing);
	color: var(--light-100);
	text-transform: uppercase;
	z-index: 9999;
}

.sombra.v2 {
    position: absolute;
    bottom: -125px;
    left: 56%;
    width: 100%;
    height: 244px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center bottom, #c4e98b00 0%, #c4e98b 60%);
    filter: blur(120px);
    pointer-events: none;
    display: flex;
}

body.active{
	position: fixed;
  width: 100%;
}

.parte1 h1{
	font-size:60px ;
}

.sec2 h2, .proc h2,.sec4 h2, .fim h2 strong, .fim h2, .faq h2{
	font-size: 50px;
}

.parte1 h4 {
    width: 57%;
    max-width: 100%;
}

.op1 {
    margin: auto;
	margin-bottom: 20px !important;
}

.todos-proc h3, .todos-proc p, .sec4 h3{
	font-size: 40px;
}

.fala{
	margin-bottom: 80px !important;
}

p.sol{
	padding: 8px;
}

}

@media only screen and (max-width: 600px) {
footer {
    padding: 80px 50px 29px 50px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.nav-menu li a {
    font-size: 10px;
}

.nav-menu li {
    padding: 8px;
}

.nav-menu {
    gap: 5px;
    
}

}

/* Size considerado Mobile - 430px*/
@media only screen and (max-width: 430px) {
.parte1 h1{
	font-size:40px ;
}

.sec2 h2, .proc h2,.sec4 h2, .fim h2 strong, .fim h2, .faq h2{
	font-size:30px;
}

.parte1 h4 {
    width: 100%;
}

.op1 {
    margin: auto;
}

.todos-proc h3, .todos-proc p, .sec4 h3{
	font-size: 25px;
}

.sec4 p, .vc_toggle_title h4 {
    width: 90%;
	font-size: 13px;
}

.com h5,.faq h5{
	font-size: 27px;
}

.hamburger {
    display: flex;
    z-index: 1001;
}

.nav-menu {
    position: fixed;
    top: calc(200px - 80px);
    right: 0;
    width: 100vw;
    height: calc(100vh - 24px);
    background: var(--green-900);
    flex-direction: column;
    padding: 24px 30px 24px 30px;
    display: flex;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.nav-menu.active {
    transform: translateX(0);
}

.logo{
	z-index: 3;
	padding-left: 10px;
}

header {
    padding: 24px 30px 24px 30px;
    margin-bottom: 0px !important;
}

.nav-menu li {
    background-color: transparent;
	width: 100%;
	margin-bottom: 40px;
}

.nav-menu li:last-child a {
    font-weight: var(--h6-weight);
    font-size: var(--menu-size);
    line-height: 20px;
    color: var(--green-900);
	text-transform: none;
	width: 100%;
}

.nav-menu li a{
	font-weight: var(--vf-wght);
	font-size: var(--h3-size);
	line-height: 105%;
	letter-spacing: var(--h3-letter-spacing);
	text-transform: uppercase;
	color: var(--green-300);
	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);
	display: flex;
    width: 80%;
	max-width: 100%;
}

.nav-menu li:last-child {
    padding: 8px 16px;
    display: block;
    width: fit-content;
    margin-right: auto;
}

.menu-geral.active .mais-mobile {
    display: grid;
    z-index: 99999;
    position: absolute;
    transition: all 0.5s ease;
    grid-template-columns: 0.3fr 1fr;
    gap: 16px;
    top: 8%;
    left: 0px;
	padding: 80px 30px;
	width: 100%;
}

.menu-geral.active .mais-mobile h5{
	font-optical-sizing: auto;
	font-stretch: calc(var(--vf-wdth) * 1%);
	font-synthesis: none;
	font-synthesis-weight: none;
	font-synthesis-style: none;
	font-synthesis-small-caps: none;
	font-kerning: normal;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-variation-settings: "wdth" var(--vf-wdth);
	font-weight: var(--vf-wght);
	font-size: var(--h5-size);
	line-height: var(--h5-letter-spacing);
	color: var(--light-100);
	text-transform: uppercase;
	z-index: 9999;
}

.sombra.v2 {
    position: absolute;
    bottom: -125px;
    left: 56%;
    width: 100%;
    height: 244px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center bottom, #c4e98b00 0%, #c4e98b 60%);
    filter: blur(120px);
    pointer-events: none;
    display: flex;
}

body.active{
	position: fixed;
  width: 100%;
}

.logo-dif{
	position: relative;
	z-index: 9999;
}

.op1 {
    width: 331px;
}
}

/* smartphones normais  */
@media only screen and (max-width: 378px) {
.op1 {
    width: 280px;
}

.sec4 p, .vc_toggle_title h4 {
    width: 90%;
    font-size: 13px;
}

.todos-proc h3, .todos-proc p, .sec4 h3 {
    font-size: 20px;
}

.com h5, .faq h5 {
    font-size: 17px;
}
}

/* iphone 5 <=  */
@media only screen and (max-width: 320px) {
.op1 {
    width: 237px;
}

.sec4 p, .vc_toggle_title h4 {
    width: 79%;
    font-size: 13px;
}

.feito{
	text-align: center;
}
}