/*****************************************
***************** GLOBAL ***************** 
*****************************************/

:root {
	
/*Fonte*/	
	
--theme-font: 'Outfit', sans-serif;	
	
	
/*Cores - Primárias*/
	
--primary-color: #208765;
--primary-color-medium: #e4efeb;	
--primary-color-light: #f4f9f7;
--primary-color-dark: #071810;
--primary-color-extra-dark: #06150e;	
	
	
/*Cores - Secundárias*/
	
--secondary-color: #e7b042;
--secondary-color-light: #e7b04280;	
	
	
/*Cores - Tons de Cinza*/
	
--gray-1: #121212;	
--gray-2: #646464;
--gray-3: #bebebe;	
--gray-4: #dcdcdc;
--gray-5: #f2f2f2;	
--gray-6: #fbfbfb;
	

/*Cores - Sombras*/
	
--shadow-1: #00000030;
--shadow-2: #00000015;	
--shadow-3: #00000012;
--shadow-4: #00000010;	
--shadow-5: #00000008;	

	
/*Cores - Auxiliares*/	
	
--black: #000000;	
--gold: #ffd700;	
--white: #ffffff;	
--warning: #e10000;	
--whatsapp: #028916;	
	
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, a, button, small, strike, strong, sub, sup, ol, ul, li, form, input, select, textarea, label, table, tbody, tfoot, thead, tr, th, td, article, aside, footer, header, nav, section, picture, img {
	box-sizing: border-box;
	border: 0;
	vertical-align: baseline;
	font-family: var(--theme-font);
	font-size: 100%;
	text-rendering: geometricPrecision;
	margin: 0;
	padding: 0
}

article, aside, footer, header, nav, section {
	display: block
}

body {
	line-height: 1
}

ol, ul {
	list-style: none
}

a, button {
    cursor: pointer;
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    border: none;
    outline: none;
    padding: 0;
}

img {
	width: 100%;
	height: unset
}

span, strike {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
}

strong {
    color: var(--gray-1);
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    letter-spacing: inherit;
    line-height: inherit;
}

section {
	position: relative;
	overflow: hidden;
	padding: 120px 0;
	z-index: 1;
}

@media (max-width: 1390px) {
	
section {
    padding: 96px 0;
}	
	
}

@media (max-width: 992px) {
	
section {
    padding: 72px 0;
}	
	
}

@media (max-width: 575px) {
	
section {
    padding: 64px 0;
}	
	
}



/*****************************************
***************** GRIDS ***************** 
*****************************************/

.container {
	width: 100%;
	max-width: 1360px;
	padding: 0 15px;
	margin: 0 auto
}

.container-full {
	width: 100%;
	max-width: 1920px;
	padding: 0 65px;
	margin: 0 auto
}

.box {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.box.beetween {
	justify-content: space-between
}

.box.center, .grid.center {
	align-items: center
}

.grid {
	position: relative;
	display: grid;
}

@media (max-width: 1390px) {

.container {
	max-width: 1140px;
}	
	
}

@media (max-width: 992px) {
	
.container {
	max-width: 767px;
}	
	
.container-full {
	max-width: 100%;
	padding: 0 15px;
}	
	
}

@media (max-width: 575px) {
	
.container {
	max-width: 100%;
}	
	
}



/*****************************************
**************** TYPE ******************** 
*****************************************/

html, body, main, p, ol, ul, li, a, button, small, input, textarea, td {
	color: var(--gray-2);
}

h2, .h2, h3, .h3, h4, .h4 {
	color: var(--gray-1);
	font-weight: 500;
	line-height: 1.2;
}

h2, .h2 {
    font-size: 42px;
}

h3, .h3 {
    font-size: 32px;
}

h4, .h4 {
	font-size: 20px;
}

p, ul, li, td {
    font-size: 18.5px;
    font-weight: 300;
    line-height: 1.48;
}

td {
	line-height: 1.4;
}

.sec-ttl_center {
	text-align: center;
	margin: 0 0 90px;
}

.sec-ttl_center h2::after,
.sec-ttl_center .h2::after {
    content: '';
	display: block;
	width: 70px;
	height: 1px;
	background-color: var(--primary-color);
	margin: 10px auto 15px;
}

.sec-ttl_left {
    margin: 0 0 28px;
}

.sec-ttl_left h2::after,
.sec-ttl_left .h2::after {
    content: '';
	display: block;
	width: 70px;
	height: 1px;
	background-color: var(--primary-color);
	margin: 10px 0 15px;
}

.sec-ttl_line {
	display: flex;
	justify-content: space-between;
	margin: 0 0 90px;
}

.sec-ttl_line-title {
    width: 40%;
}

.sec-ttl_line-description {
    width: 58%;
}

@media (min-width: 993px) {
	
.sec-ttl_line-title h2,
.sec-ttl_line-title .h2 {
    border-left: 1px solid var(--primary-color);
    padding: 0 0 0 20px;
}	
	
.sec-ttl_center p {
    width: 80%;
    margin: 0 auto;
}
	
}

@media (max-width: 1390px) {
		
h2, .h2 {
    font-size: 36px;
}

h3, .h3 {
    font-size: 28px;
}

h4, .h4 {
	font-size: 19px;
}

p, ul, li, td {
    font-size: 18px;
}
	
.sec-ttl_center, .sec-ttl_line {
    margin: 0 0 70px;
}	
	
.sec-ttl_line-description {
    width: 59%;
}	
	
}

@media (max-width: 992px) {
	
.sec-ttl_line {
	flex-wrap: wrap;
}	
	
.sec-ttl_line-title, 
.sec-ttl_line-description {
	width: 100%;
}	
		
.sec-ttl_left, .sec-ttl_center, .sec-ttl_line {
    text-align: center;
    margin: 0 0 36px;
}

.sec-ttl_left h2::after,
.sec-ttl_left .h2::after,
.sec-ttl_center h2::after,
.sec-ttl_center .h2::after,
.sec-ttl_line h2::after,
.sec-ttl_line .h2::after {
	content: '';
	display: block;
    width: 60px;
	height: 1px;
	background-color: var(--primary-color);
    margin: 8px auto 13px;
}	
	
}

@media (max-width: 575px) {
		
h2, .h2 {
    font-size: 24px;
}

h3, .h3 {
    font-size: 20px;
}

h4, .h4 {
	font-size: 16px;
}

p, ul, li, td {
    font-size: 15px;
    line-height: 1.6;
}
	
}



/*****************************************
**************** FORM ********************
*****************************************/

.form_field-area {
	position: relative;
}

.form_field-area:not(:last-child) {
	margin: 0 0 10px;
}

.form_field-select label {
	display: none;
}

.form_field-select::before {
    content: '';
    position: absolute;
    top: 13px;
    right: 12px;
    width: 7px;
    height: 7px;
    border: 2px var(--gray-2);
    border-top-style: solid;
    border-left-style: solid;
    transform: rotate(225deg);
}

.form_field {
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 1.4;
	border: 1px solid var(--gray-4);
	border-radius: 4px;
	outline: none;
	padding: 15px 15px 15px 47px;
	transition: .4s;
}

.form_field:focus {
	border-color: var(--primary-color);
}

.form_input, .form_select {
	height: 40px;
}

select, .form_select, select.form_select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: var(--gray-2);
	background-color: transparent;
	background-image: none;
	width: 100%;
	font-size: 14px;
	padding: 0 15px 0 44px;	
}

.form_textarea {
	height: 112px;
}

.form_label {
    cursor: text;
    position: absolute;
    top: 13.5px;
    left: 40px;
    background-color: var(--white);
    color: var(--gray-2);
    font-size: 14px;
    padding: 0 8px;
    transition: .4s;
}

.form_field:focus ~ .form_label, .form_field:valid ~ .form_label {
    color: var(--primary-color);
    transform: scale(.8) translate(-9px, -23px);
}

.form_icon {
    position: absolute;
    left: 17px;
    top: 13px;
    width: 16px;
    fill: var(--gray-2);
    transition: .5s ease;
}

.form_button_icon {
    margin-right: 12px;
    fill: var(--secondary-color);
    
}

.form_field:focus ~ .form_icon, .form_field:valid ~ .form_icon {
	fill: var(--primary-color);
}

.form_lgpd-txt {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 10px;
}

.form_checkbox-box {
    margin: 0 0 30px;
}

.form_lgpd-checkbox {
	position: relative;
	top: 0;
	width: 15px;
	height: 15px;
	-webkit-appearance: none;
	outline: none;
	margin: 0 8px 0 0;
	transition: .5s ease;
}

.form_lgpd-checkbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    border: 1px solid var(--gray-3);
	border-radius: 2px;
    transition: .5s ease;
}

.form_lgpd-checkbox:checked::before {
    border-left: none;
    border-top: none;
    width: 7px;
    height: 14px;
    transform: rotate(45deg) translate(1px, -3px);
    border-color: var(--primary-color);
    border-radius: 0;
    transition: .5s ease;
}

.form_lgpd-label {
	position: relative;
	display: block;
    width: fit-content;
    color: var(--gray-1);
    font-size: 14px;
    font-weight: 500;
	transition: .5s ease;
}

.form_lgpd-checkbox:checked ~ .form_lgpd-label {
	color: var(--primary-color);
}

.form_lgpd-label::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
	transform: scaleX(0);
	transform-origin: left;
	transition: .5s ease;
}

.form_lgpd-checkbox:checked ~ .form_lgpd-label::before {
	transform: scaleX(1);
}

.form_lgpd-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: .5s ease;
}

.form_btn {
	display: block;
	width: 100%;
}

.form_btn:disabled {
	pointer-events: none;
    opacity: 0.4;
}

.modal .form_field:focus {
	border-color: var(--whatsapp);
}

.modal .form_field:focus ~ .form_label, .form_field:valid ~ .form_label {
    color: var(--whatsapp);
}

.modal .form_field:focus ~ .form_icon, .form_field:valid ~ .form_icon {
	fill: var(--whatsapp);
}

.modal .form_lgpd-checkbox:checked::before{
	border-color: var(--whatsapp);
}

.modal .form_lgpd-checkbox:checked ~ .form_lgpd-label {
	color: var(--whatsapp);
}

.modal .form_lgpd-label::before {
    background-color: var(--whatsapp);
}

.modal .form_lgpd-link {
	color: var(--whatsapp);
}

@media (min-width: 993px) {
	
.form_lgpd-link:hover {
	color: var(--gray-1);
}	
	
}

@media (max-width: 575px) {
	
.form_field-select::before {
    top: 16px;
}	
	
.form_input {
    height: 45px;
    padding: 12px 12px 12px 35px;
}	
	
select, .form_select, select.form_select {
	height: 45px;
    font-size: 13.5px;
    padding: 0 15px 0 37px;
}	
	
.form_textarea {
    height: 135px;
}	
	
.form_icon {
    left: 12px;
    top: 15px;
    width: 14px;
}
	
.form_label {
    top: 17px;
    left: 29px;
    font-size: 13.5px;
}
	
.form_field:focus ~ .form_label, .form_field:valid ~ .form_label {
    transform: scale(.9) translate(-5px,-23px);
}	
	
.form_lgpd-txt {
    font-size: 11px;
}
	
.form_checkbox-box {
    margin: 0 0 25px;
}	
	
.form_lgpd-label {
    font-size: 13px;
}	
	
}

/*****************************************
*************** BOTÕES *******************
*****************************************/

.btn {
    position: relative;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    font-size: 18.5px;
    font-weight: 500;
    letter-spacing: .5px;
    border: 2px solid;
    border-radius: 99px;
    padding: 20px 36px;
    transition: .5s ease;
}

.btn.primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white);
}

.btn.secondary {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
	color: var(--white);
    fill: var(--white);
	text-shadow: 0 0 16px #00000048;
}

.btn.wpp {
	background-color: var(--whatsapp);
	border-color: var(--whatsapp);
	color: var(--white);
}

.btn_wpp-icon {
    position: relative;
    top: 0px;
    fill: currentColor;
    width: 23px;
    height: 23px;
    vertical-align: sub;
    margin: 0 7px 0 0;
}


.btn-center {
	text-align: center;
	margin: 90px 0 0;
}

@media (min-width: 993px) {

.btn.primary:hover {
	background-color: var(--white);
	color: var(--primary-color);
}
	
.btn.secondary:hover {
	background-color: var(--white);
	color: var(--secondary-color);
    fill: var(--secondary-color);
}	
	
.btn.wpp:hover {
	background-color: var(--white);
	color: var(--whatsapp);
}	
	
}

@media (max-width: 1390px) {
	
.btn {
    font-size: 16px;
    padding: 17px 24px;
}	
	
.btn_wpp-icon {
    width: 21px;
    height: 21px;
}	
	
.btn-center {
	margin: 70px 0 0;
}		
	
}

@media (max-width: 992px) {
	
.btn {
    font-size: 15px;
    padding: 15px 22px;
}
	
.btn_wpp-icon {
    width: 18px;
    height: 18px;
}		
	
.btn-center {
	margin: 45px 0 0;
}		
	
}

@media (max-width: 575px) {
	
.btn {
    font-size: 14.5px;
    padding: 14px 28px;
    line-height: 1.4;
}
	
}

/*****************************************
**************** NAVBAR ******************
*****************************************/

.navbar {
    position: absolute;
	top: 0;
	left: 0;
	right: 0;
    width: 100%;
    background-color: transparent;
    padding: 16px 0;
    z-index: 997;
}

.navbar_logo-area {
    display: block;
    width: 168px;
}

.navbar_logo {
	filter: grayscale(1) brightness(9);
}

@media (max-width: 992px) {

.navbar_box {
    justify-content: center;
}	
	
}

@media (max-width: 575px) {
	
.navbar {
    padding: 17px 0;
}	
		
.navbar_logo-area {
    width: 118px;
}
	
}



/*****************************************
***************** HERO *******************
*****************************************/

.hero {
	position: relative;
	display: flex;
	align-items: center;
	height: 648px;
	z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color-dark) 36%, transparent 148%);
    opacity: .72;
    z-index: -1;
}

.hero_img-area {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero_img {
    object-fit: cover;
    object-position: left;
    width: 100%;
    height: 100%;
}

.hero_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero_txt-area {
	width: fit-content;
}

.hero_ttl {
    color: var(--white);
    font-size: 54px;
    font-weight: 500;
    line-height: 1.12;
    text-shadow: 0 0 20px #00000064;
    margin: 0 0 44px;
}

.hero_ttl strong {
	color: var(--secondary-color);
}

.hero_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.hero_list-item {
	display: flex;
	align-items: center;
}

.hero_list-icon {
    fill: var(--secondary-color);
    width: 32px;
    height: 32px;
    margin: -2px 12px 0 0;
}

.hero_list-txt {
    display: block;
    color: var(--white);
    text-shadow: 0 0 20px #00000064;
    line-height: 1.16;
}

.hero_list-txt strong {
	color: var(--white);
	font-weight: 500;
}

.hero_btn {
    display: none;
}	

.hero_form-area {
    width: 34.25%;
    background-color: var(--white);
    box-shadow: 0 0 30px var(--shadow-1);
    border-radius: 16px;
    padding: 24px 32px 20px 32px;
}

.hero_form-head {
	display: flex;
	margin: 0 0 20px;
}

.hero_form-head-form-icon {
	fill: var(--whatsapp);
	width: 44px;
	height: 44px;
	margin: 3px 16px 0 0;
}

.hero_form-head-txt-area {
	width: calc(100% - 44px - 16px);
}

.hero_form-head-ttl {
	color: var(--gray-1);
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 6px;
}

.hero_form-head-txt {
    font-size: 15px;
    line-height: 1.16;
}

.hero_form-btn {
	padding: 18px 0;
}

@media (max-width: 1390px) {
	
.hero_ttl {
    font-size: 48px;
}	
	
}

@media (max-width: 992px) {
	
.hero_txt-area {
	margin: 0 auto;
}	
	
.hero_ttl {
    text-align: center;
	margin: 32px 0 0;
}	
	
.hero_list {
    margin: 20px 0 48px;
}	
	
.hero_btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}	
	
.hero_btn-icon {
    fill: var(--white);
    vertical-align: sub;
    width: 20px;
    height: 20px;
    margin: 0 6px 0 0;
}	
	
.hero_form-area {
    display: none;
}	
	
}

@media (max-width: 575px) {
	
.hero {
    height: 480px;
}	
	
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color-dark);
    opacity: .64;
    z-index: -1;
}	
	
.hero_ttl {
    font-size: 7.8vw;
}	
	
.hero_list-icon {
    width: 5vw;
    height: 5vw;
    margin: 0 2vw 0 0;
}
	
.hero_list-txt {
    font-size: 3.15vw;
}		
	
}


/*****************************************
**************** INTRO *******************
*****************************************/

.intro_grid {
    grid-template-columns: 1.06fr 1fr;
    grid-gap: 90px;
}

.intro_grid.intro_pinus-grid {
	grid-template-columns: 1fr 1.06fr;
}

.intro_grid + .intro_grid {
	margin: 170px 0 0;
}

.intro_img-area {
	position: relative;
}

.intro_img-area::before,
.intro_img-area::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    border: solid var(--primary-color);
    border-width: 1px 0 0 1px;
}

.intro_img-area::before {
    top: -10px;
    left: -19px;
}

.intro_img-area::after {
    top: -20px;
    left: -10px;
}

.intro_pinus-grid  .intro_img-area::before,
.intro_pinus-grid  .intro_img-area::after {
    border-width: 1px 1px 0 0;
}

.intro_pinus-grid .intro_img-area::before {
    top: -10px;
	left: unset;
    right: -19px;
}

.intro_pinus-grid .intro_img-area::after {
    top: -20px;
	left: unset;
    right: -10px;
}

.intro_detach-box {
    position: absolute;
    left: 0;
    bottom: 55px;
    background-color: var(--white);
    box-shadow: 0 0 30px var(--shadow-4);
    padding: 25px 20px;
    transition: .5s ease;
}

.intro_pinus-grid .intro_detach-box {
    left: unset;
    right: 0;
}

.intro_detach-icon {
    fill: var(--secondary-color);
    width: 40px;
    height: 40px;
    margin: 0 13px 0 0;
    transition: .5s ease;
}

.intro_detach-txt {
    width: calc(100% - 53px);
    font-size: 17px;
    line-height: 1.3;
    transition: .5s ease;
}

.intro_detach-txt-highlight {
	color: var(--gray-1);
	font-weight: 500;
}

.intro_stamp {
    position: absolute;
    top: 55px;
    right: 80px;
    width: 170px;
}

.intro_stamp-txt {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 81%;
	height: fit-content;
	margin: auto;
	z-index: 1;
}

.intro_benefits-item:not(:last-child) {
    margin: 0 0 18px;
}

.intro_benefits-icon-area {
	position: relative;
    display: inline-block;
    fill: var(--primary-color);
    vertical-align: middle;
    margin: 0 10px 0 0;
	transition: .5s ease;
}

.intro_benefits-icon-area,
.intro_benefits-icon {
	width: 24px;
	height: 24px;
}

.intro_benefits-txt {
    display: inline-block;
    color: var(--gray-1);
    font-size: 19px;
    font-weight: 400;
    transition: .5s ease;
}

.intro_benefits_divider {
    display: block;
    width: 1px;
    background-color: var(--primary-color-medium);
    border: none;
}

.intro_btn {
	margin: 65px 0 0;
}
.pinus_btn{
    margin: 20px 0 0 0;
}

@keyframes stampRotate {
	to {
		transform: rotate(360deg);
	}
}

@media (min-width: 993px) {
	
.intro_detach-box:hover {
	background-color: var(--primary-color);
}

.intro_detach-box:hover .intro_detach-icon {
	fill: var(--secondary-color);
}

.intro_detach-box:hover .intro_detach-txt,
.intro_detach-box:hover .intro_detach-txt-highlight {
    color: var(--white);
}	
	
.intro_benefits-icon-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 100%;
	opacity: 0;
    transform: scale(0);
    z-index: -1;
	transition: .5s ease;
}

.intro_benefits-item:hover .intro_benefits-icon-area {
    fill: var(--white);
    transform: scale(0.85);
}

.intro_benefits-item:hover .intro_benefits-icon-area::before {
	opacity: 1;
	transform: scale(1.9);
}

.intro_benefits-item:hover .intro_benefits-txt {
	color: var(--primary-color);
	transform: translateX(6px);
}	
	
}

@media (max-width: 1390px) {
	
.intro_grid + .intro_grid {
	margin: 140px 0 0;
}	
	
.intro_img-area::before, .intro_img-area::after {
    width: 30px;
    height: 30px;
}	
	
.intro_benefits-icon-area, .intro_benefits-icon {
    width: 24px;
    height: 24px;
}	
	
.intro_stamp {
    top: 50px;
    right: 65px;
    width: 130px;
}	
	
.intro_detach-box {
    bottom: 35px;
    padding: 20px 15px;
}	
	
.intro_detach-icon {
    width: 30px;
    height: 30px;
    margin: 0 8px 0 0;
}	
	
.intro_detach-txt {
    width: calc(100% - 38px);
    font-size: 15px;
}	
	
.intro_benefits-txt {
    font-size: 18px;
}	
	
}

@media (max-width: 992px) {
	
.intro_grid, .intro_grid.intro_pinus-grid {
    grid-template-columns: 1fr;
    grid-gap: 60px;
}
	
.intro_grid + .intro_grid {
    margin: 80px 0 0;
}	
	
.intro_txt-area {
    order: 1;
}		
	
.intro_img-area {
    order: 2;
}	
	
.intro_img {
    display: block;
    width: 80%;
    margin: 0 auto;
}	
	
.intro_img-area::before, .intro_img-area::after {
    display: none;
}	
	
.intro_detach-box {
    left: 70px;
}
	
.intro_stamp {
    right: 145px;
}	
	
.intro_btn {
    display: block;
    width: fit-content;
    margin: 45px auto 0;
}
	
}

@media (max-width: 575px) {
	
.intro_img {
    width: 100%;
}
	
.intro_stamp {
    top: 30px;
    right: 36px;
    width: 115px;
}	
	
.intro_detach-box {
    bottom: 25px;
    left: 0;
    padding: 15px;
}	
	
.intro_detach-icon {
    width: 28px;
    height: 28px;
    margin: 0 8px 0 0;
}	
	
.intro_detach-txt {
    width: calc(100% - 36px);
    font-size: 13px;
}	
	
.intro_benefits_divider {
	display: none;
}	
	
.intro_benefits-item,	
.intro_benefits-item:not(:last-child) {
	width: 100%;
    margin: 0 0 13px;
}	
	
.intro_benefits-icon-area,
.intro_benefits-icon {
    width: 18px;
    height: 18px;
	margin: 0 6px 0 0;
}
	
.intro_benefits-txt {
    font-size: 15px;
}
	
.intro_btn {
    margin: 40px auto 0;
}
	
}



/*****************************************
************ EUCALIPTO SERRADO ***********
*****************************************/

.offer {
	background-color: var(--primary-color-light);
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    width: 28%;
    height: 100%;
    border-radius: 120px 0 0 0;
    z-index: -1;
}

.offer_grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.offer_txt-area {
	width: 50%;
}

.offer_tag {
    display: inline-block;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 2px solid var(--primary-color);
    border-radius: 99px;
    padding: 3px 6px 3px 8px;
	margin: 0 0 6px;
}

.offer_item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.offer_item + .offer_item {
	margin-top: 20px;
}

.offer_item-icon {
	fill: var(--primary-color);
	width: 40px;
	height: auto;
	margin: 0 12px 0 0;
}

.offer_item-txt {
	width: calc(100% - 40px - 12px);
	line-height: 1.4;
}

.offer_btn {
	margin: 44px 0 0;
}

.offer_img-area {
	position: relative;
	width: 42%;
}

.offer_img-area::before {
    content: '';
    position: absolute;
    bottom: -6px;
    right: -6px;
    background-color: var(--secondary-color);
    width: 56px;
    height: 56px;
    z-index: -1;
}

@media (min-width: 1391px){
	
.offer {
    padding: 80px 0;
}	
	
}

@media (max-width: 1800px) {
	
.offer::before {
    width: 24%;
}	
	
}

@media (max-width: 992px) {
	
.offer::before {
	top: unset;
	bottom: 0;
    width: 100%;
    height: 400px;
    border-radius: 80px 0 0 0;
}	
	
.offer_grid {
    flex-direction: column;
}	
	
.offer_txt-area {
	width: 100%;
}	
	
.offer_item {
    width: 84%;
    margin: 0 auto;
}	
	
.offer_item + .offer_item {
    margin-top: 16px;
}	
	
.offer_btn {
	display: block;
	width: fit-content;
	margin: 48px auto 0;
}	
	
.offer_img-area {
    width: 64%;
    margin: 80px 0 0;
}	
	
}

@media (max-width: 575px) {
	
.offer::before {
    height: 200px;
}	

.offer_tag {
    font-size: 10px;
}	
	
.offer_item {
    width: 100%;
}
	
.offer_btn {
    margin: 28px auto 0;
}		
	
.offer_img-area {
    width: 88%;
    margin: 64px 0 0;
}
	
	
}



/*****************************************
************** PROCESSOS *****************
*****************************************/

.process_container {
	position: relative;
}

.process_container::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 0;
    background-color: var(--primary-color-medium);
    width: 100%;
    height: 1.5px;
}

.process_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 80px;
}

.process_step {
	position: relative;
	text-align: center;
}

.process_step-num {
    position: absolute;
    top: 24px;
    left: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    width: 48px;
    height: 48px;
    color: var(--white);
    font-size: 22px;
    font-weight: 500;
    border-radius: 50%;
	z-index: 2;
}

.process_img-area {
	position: relative;
    display: block;
    width: 280px;
	height: 280px;
    margin: 0 auto;
	z-index: 1;
}

.process_img-area::before {
    content: '';
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color-medium);
    border-radius: 50%;
    z-index: -2;
}

.process_step-img {
	border-radius: 50%;
}

.process_ttl {
	font-size: 20px;
	margin: 40px 0 8px;
}

@media (max-width: 1390px) {
	
.process_container::before {
    top: -100px;
}	
	
}


@media (max-width: 992px) {

.process_container::before {
    top: -80px;
}		
	
.process_grid {
	grid-template-columns: repeat(2, 1fr);
}	
	
.process_step-num {
    top: 12px;
    left: 48px;
}
	
}

@media (max-width: 575px) {
	
.process_container::before {
    top: -70px;
	left: 0;
	right: 0;
	width: calc(100% - 30px);
	margin: 0 auto;
}		
	
.process_grid {
	grid-template-columns: 1fr;
	grid-gap: 56px;
}	
	
.process_step-num {
    left: 112px;
    width: 32px;
    height: 32px;
    font-size: 16px;
}	
	
.process_img-area {
    width: 200px;
    height: 200px;
}	
	
.process_ttl {
    font-size: 18px;
    margin: 32px 0 4px;
}	
	
}



/*****************************************
*************** PROJETOS *****************
*****************************************/

.projects {
	background-color: var(--primary-color-light);
	transition: .5s ease;
}

.projects h2,
.projects .h2,
.projects h2::after,
.projects .h2::after,
.projects p,
.projects_warning-highlight {
	transition: .5s ease;
}

.projects_grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.projects_item {
	position: relative;
	display: block;
	overflow: hidden;
    border-radius: 4px;
}

.projects_img {
	display: block;
}

.projects_warning {
    font-size: 17px;
    margin: 15px 0 0;
}

.projects_warning-highlight {
	color: var(--gray-1);
	font-weight: 500;
}


/*LAYOUT ESCURO*/

.projects.dark {
	background-color: var(--primary-color-dark);
}

.projects.dark h2,
.projects.dark .h2 {
	color: var(--white);
}

.projects.dark h2::after,
.projects.dark .h2::after {
	background-color: var(--secondary-color);
}

.projects.dark p,
.projects.dark .projects_warning-highlight {
	color: var(--gray-6);
}


/*FILTROS - INTERNA*/

.projects_filters-area {
	justify-content: center;
	gap: 15px;
	margin: 0 0 45px;
}

.projects_filter-btn {
	cursor: pointer;
    width: 20%;
    color: var(--primary-color);
    font-size: 21px;
    border: 1px solid var(--primary-color);
    border-radius: 99px;
    padding: 15px 10px;
	transition: .5s ease;
}

.projects_filter-btn.filter_active {
	background-color: var(--primary-color);
	color: var(--white);
}

.projects_filter-icon {
    fill: currentColor;
    width: 25px;
    height: 25px;
    vertical-align: sub;
    margin: 0 10px 0 0;
}

.mfp-bottom-bar {
	display: none;
}

@media (min-width: 993px) {
	
.projects_item::before,
.projects_item::after {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	transition: .5s ease;
}

.projects_item::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: var(--secondary-color);
	z-index: 1;
}

.projects_item::after {
	content: url("../svg/zoom.svg");
	width: 55px;
	height: 55px;
	transform: scale(0);
	margin: auto;
	z-index: 2;
	transition-delay: .125s;
}

.projects_item:hover::before {
	opacity: .88;
}

.projects_item:hover::after {
	opacity: 1;
	transform: scale(1);
}
	
.projects_filter-btn:not(.filter_active):hover {
	background-color: var(--primary-color-medium);
}	
	
}

@media (max-width: 1390px) {
	
.projects_grid {
    grid-gap: 20px;
}	
	
.projects_warning {
    font-size: 15px;
}	
	
.projects_filter-btn {
    width: 25%;
    font-size: 19px;
    padding: 13px 10px;
}	
	
.projects_filter-icon {
    fill: currentColor;
    width: 22px;
    height: 22px;
    vertical-align: sub;
    margin: 0 8px 0 0;
}	
	
}

@media (max-width: 992px) {
	
.projects_grid {
    grid-template-columns: repeat(2, 1fr);
}	
	
.projects_filter-btn {
    width: 31.5%;
    font-size: 17px;
}	
	
}

@media (max-width: 575px) {
	
.projects_grid {
    grid-gap: 10px;
}	
	
	
	
.projects_warning {
    font-size: 14px;
}
	
.projects_filters-area {
    gap: 10px;
    margin: 0 0 30px;
}	
	
.projects_filter-btn {
    width: 48.1%;
    font-size: 16px;
}		
	
.projects_filter-btn:first-child {
	width: 100%;
}	
	
}

/*****************************************
************* DEPOIMENTOS ****************
*****************************************/

.testimonials {
    padding-bottom: 75px;
}

.testimonials_container {
    position: relative;
}

.testimonials_item {
	padding: 16px 0;
}

.testimonials_card {
    position: relative;
    flex-direction: column;
    border: 1px solid var(--primary-color-medium);
    border-radius: 16px;
    padding: 35px 35px 30px;
}

.testimonials_card-txt {
    line-height: 1.5;
    margin: 0 0 20px;
}

.testimonials_card-txt::before {
    content: url(../svg/aspas.svg);
    display: block;
    width: 55px;
    line-height: 0;
    margin: -55px 0 25px;
}

.testimonials_card-client-img {
    width: 50px!important;
    height: 50px;
    border: 3px solid var(--white);
    border-radius: 100%;
    box-shadow: 0 0 20px var(--shadow-2);
    margin: 0 12px 0 0;
}

.testimonials_card-client-name {
    width: calc(100% - 62px);
    color: var(--gray-1);
    font-weight: 400;
    margin: 0 0 10px;
}

.testimonials_card-client-name::after {
    content: url(../svg/cinco-estrelas.svg);
    display: block;
    width: 67px;
    line-height: 0;
    margin: 2px 0 0;
}

.testimonials_carousel .owl-dots {
	width: fit-content;
	margin: 10px auto 0;
}

.testimonials_carousel .owl-dot span {
	display: block;
	width: 13px;
	height: 13px;
	background-color: var(--white);
	border: 1px solid var(--primary-color);
	border-radius: 100%;
	margin: 0 5px;
	transition: .5s ease;
}

.testimonials_carousel .owl-dot.active span {
	background-color: var(--primary-color);
}

.testimonials_carousel .owl-prev,
.testimonials_carousel .owl-next {
    position: absolute;
    top: 45%;
    fill: var(--primary-color);
    transition: .5s ease;
}

.testimonials_carousel .owl-prev {
	left: -35px;
}

.testimonials_carousel .owl-next {
	right: -35px;
}

.testimonials_arrow {
	width: 20px;
	height: 20px;
}

@media (min-width: 993px) {
	
.testimonials_carousel .owl-dot:not(.active):hover span {
	background-color: var(--primary-color-medium);
}	
	
.testimonials_carousel .owl-prev:hover,
.testimonials_carousel .owl-next:hover {
    fill: var(--secondary-color);
}	
	
}

@media (min-width: 1451px) {
	
.testimonials_card-txt {
    font-size: 18px;
}	
	
}

@media (max-width: 1390px) {
	
.testimonials_card {
    padding: 30px 30px 25px;
}
	
.testimonials_card-txt::before {
    width: 45px;
    margin: -45px 0 20px;
}	
	
.testimonials_card-client-img {
    width: 45px!important;
    height: 45px;
}	
	
.testimonials_card-client-name {
    width: calc(100% - 57px);
}
	
}

@media (max-width: 575px) {
	
.testimonials {
    padding-bottom: 55px;
}	
	
.testimonials_card {
    padding: 20px 20px 15px;
}
	
.testimonials_card-txt::before {
    width: 40px;
    margin: -35px 0 15px;
}
	
.testimonials_card-client-img {
    width: 40px!important;
    height: 40px;
    margin: 0 10px 0 0;
}
	
.testimonials_card-client-name {
    width: calc(100% - 50px);
}
	
.testimonials_carousel .owl-dots {
    margin: 3px auto 0;
}	
	
.testimonials_carousel .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 4px;
}	
	
.testimonials_carousel .owl-nav {
    display: none;
}	
	
}



/*****************************************
************** CLIENTES ******************
*****************************************/

.clients {
    padding-top: 0;
}

.clients_ttl-area {
    width: 12%;
}

.clients_ttl {
    line-height: 1.1;
}

.clients_carousel-area {
    width: 83%;
}

.clients_carousel .owl-stage {
	display: flex;
	align-items: center;
}

.clients_item {
	padding: 15px 5px;
}

.clients_logo {
    max-width: 120px;
    max-height: 62px;
    margin: 0 auto;
    transition: .5s ease;
}

.clients_logo.w-increasse {
    max-width: 160px;
}

.clients_logo.h-decreasse {
    max-height: 50px;
}

@media (min-width: 993px) {
	
.clients_logo:hover {
	transform: scale(1.08);
}	
	
}

@media (min-width: 1451px) {
	
.clients_box {
    padding: 0 12px;
}
	
.clients_carousel .owl-stage {
	justify-content: space-between;
	width: 100%!important;
}	

.clients_carousel .owl-item {
    width: auto!important;
}	
	
.owl-carousel .owl-stage:after {
    display: none!important;
}	
	
}

@media (max-width: 1390px) {
	
.clients_logo {
    max-width: 115px;
    max-height: 57px;
}

.clients_logo.w-increasse {
    max-width: 150px;
}

.clients_logo.h-decreasse {
    max-height: 45px;
}	
		
}

@media (max-width: 992px) {
	
.clients_ttl-area,
.clients_carousel-area {
    width: 100%;
}
	
.clients_ttl-area {
    text-align: center;
    margin: 0 0 24px;
}
	
.clients_item {
    padding: 0;
}	

.clients_logo {
    max-width: 105px;
    max-height: 55px;
}

.clients_logo.w-increasse {
    max-width: 140px;
}

.clients_logo.h-decreasse {
    max-height: 45px;
}
	
}



/*****************************************
**************** SOBRE *******************
*****************************************/

.mfp-iframe-holder .mfp-content {
    max-width: 1330px;
}

.about {
	background-color: var(--primary-color-light);
}

.about::before {
    content: url(../svg/icone-citriodora.svg);
    position: absolute;
    left: -3%;
    bottom: -10%;
    width: 23vw;
    height: auto;
    opacity: .03;
    z-index: -1;
}

.about_txt-area {
    width: 47.8%;
}

.about_txt:not(:last-of-type) {
    margin: 0 0 15px;
}

.about_btn {
	margin: 55px 0 0;
}

.about_img-area {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 46.5%;
    height: 100%;
}

.about_img-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.1;
    z-index: 0;
}

.about_video-play-area {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #00000032;
    fill: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    padding: 0 0 0 6px;
    margin: auto;
    transition: .5s ease;
}

.about_video-play {
	display: block;
	width: 32px;
	height: 32px;
}

.about_video-play-area::before, .about_video-play-area::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: 1px solid var(--white);
	border-radius: 50%;
	margin: auto;
	animation: pulsePlay 2.5s linear infinite;
}

.about_video-play-area::after {
	animation-delay: .5s;
}

.about_img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}


@keyframes pulsePlay {
	
100%, 70% {
    transform: scale(2);
    opacity: 0;
}	
	
}

@media (min-width: 1921px) {
	
.about::before {
	left: -1%;
    width: 18vw;
}
	
.about_img-area {
    width: 45%;
}	
	
}

@media (min-width: 993px) {
	
.about_video-play-area:hover {
    background-color: var(--white);
    fill: var(--primary-color);
}		
	
}

@media (max-width: 1390px) {

.about_btn {
	margin: 35px 0 0;
}	
	
}

@media (max-width: 992px) {
	
.about::before {
    display: none;
}	

.about_txt-area	{
    width: 100%;
}	
	
.about_btn {
    display: block;
    width: fit-content;
    margin: 24px auto 0;
}	
	
.about_img-area {	
    position: relative;
    width: 100%;
    max-width: 767px;
    height: auto;
    border-radius: 8px;
    margin: 32px auto 0;
}
	
.about_video-play-area {
    width: 56px;
    height: 56px;
}	
	
.about_video-play {
    width: 20px;
    height: 20px;
}	
	
.about_img {
    aspect-ratio: 16 / 9;
}		
	
}



/*****************************************
*************** FOOTER *******************
*****************************************/

.footer {
    background-color: var(--primary-color);
    padding: 32px 0;
}

.footer_grid {
	grid-template-columns: 1fr 3.3fr 1fr;
}

.footer_lgpd-link, .footer_copyright-title, .footer_copyright-disclaimer, .footer_author-text {
    color: var(--white);
    font-size: 14px;
}

.footer_lgpd-link {
	transition: .5s ease;
}

.footer_lgpd-link::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border: solid var(--secondary-color);
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    margin: 0 10px 2px 0;
}

.footer_copyright-area {
	text-align: center;
}

.footer_copyright-title {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 5px;
}

.footer_copyright-disclaimer {
	line-height: 1.4;
}

.footer_author-area {
	text-align: right;
}

.footer_author-logo {
    width: 55px;
    margin: 0 0 -1px 5px;
}

@media (min-width: 993px) {
				
.footer_lgpd-link:hover {
	color: var(--secondary-color);
}
	
}

@media (max-width: 1390px) {
	
.footer_lgpd-link, .footer_copyright-title, .footer_copyright-disclaimer, .footer_author-text {
    font-size: 13px;
}
	
.footer_copyright-title {
	text-wrap: balance;
    font-size: 14px;
}	
		
}


@media (max-width: 992px) {
				
.footer_grid {
    grid-template-columns: 1fr;
	grid-gap: 20px;
}	
	
.footer_copyright-area {
    order: 1;
}	
	
.footer_lgpd-area {
	order: 2;
}	
	
.footer_author-area {
	order: 3;
}	
	
.footer_lgpd-area, 	.footer_author-area {
    text-align: center;
}
	
}

@media (max-width: 575px) {
	
.footer {
	padding: 30px 0;
}
	
.footer_author-logo {
    width: 50px;
}	
	
}


/*****************************************
************ WHATSAPP FIXO ***************
*****************************************/

.fixed-whatsapp_area {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 998;
}

.fixed-whatsapp {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	background-color: var(--whatsapp);
	fill: var(--white);
	border: 2px solid var(--whatsapp);
	border-radius: 100%;
	transition: .5s ease;
}

.fixed-whatsapp::before,
.fixed-whatsapp::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: var(--whatsapp);
	opacity: 0.5;
	transform: scale(1);
	z-index: -1;
}

.fixed-whatsapp.pulse::before {
	animation: wppPulse 2.5s infinite;
}

.fixed-whatsapp.pulse::after {
	animation: wppPulse 2.5s infinite .6s;
}

.fixed-whatsapp_icon {
	position: relative;
	top: -2px;
	width: 35px;
	height: 35px;
}

.fixed-whatsapp_icon.shake {
	animation: wppShake 1.5s infinite;
}

.fixed-whatsapp_badge {
    position: absolute;
    top: 4px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #fb0707;
    border-radius: 50%;
    animation: wppGrow 0.4s ease-out;
}


@keyframes wppPulse {
	0% { transform: scale(1); opacity: 0.4; }
	70% { transform: scale(1.8); opacity: 0; }
	100% { opacity: 0; }
}

@keyframes wppShake {
	0%, 100% { transform: rotate(0deg) translateX(0); }
	25% { transform: rotate(-3deg) translateX(-1px); }
	50% { transform: rotate(3deg) translateX(1px); }
	75% { transform: rotate(-2deg) translateX(-1px); }
}

@keyframes wppGrow {
	from { transform: scale(0); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}


@media (min-width: 993px) {
	
.fixed-whatsapp:hover {
	background-color: var(--white);
	fill: var(--whatsapp);
}		
	
}

@media (max-width: 1390px) {
	
.fixed-whatsapp {
    width: 58px;
    height: 58px;
}	
	
.fixed-whatsapp_icon {
    width: 29px;
    height: 29px;
}		
	
}

@media (max-width: 575px) {
	
.fixed-whatsapp_area {
    bottom: 10px;
    right: 10px;
}	
	
.fixed-whatsapp {
    width: 50px;
    height: 50px;
}	
	
.fixed-whatsapp_icon {
    width: 26px;
    height: 26px;
}		
	
.fixed-whatsapp_badge {
    top: 1px;
    right: 0;
    width: 10px;
    height: 10px;
}	
	
}



/*****************************************
**************** MODAL *******************
*****************************************/

.modal {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	text-align: center;
    overflow: auto;
	z-index: 999;
}

.modal::before {
	content: '';
	box-sizing: border-box;
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin: 0 -0.05em 0 0
}

.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: .88;
}

.modal_holder {
    position: relative;
    display: inline-block;
    width: 650px;
    max-width: 95%;
    vertical-align: middle;
	text-align: left;
    overflow: hidden;
	padding: 45px 0;
}

.modal_box {
	overflow: hidden;
	border-radius: 8px;
}

.modal_header {
	background-color: var(--whatsapp);
	padding: 30px 40px;
}

.modal_header-icon {
	width: 55px;
	height: 55px;
	fill: var(--white);
	margin: 0 20px 0 0;
}

.modal_header-title-area {
	width: calc(100% - 75px - 45px);
}

.modal_header-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 12px;
}

.modal_close {
	cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
    width: 25px;
    height: 25px;
	margin: 0 0 0 20px;
	opacity: .5;
	transition: .5s ease;
}

.modal_close:before, .modal_close:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--white);
}

.modal_close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_header-description {
    color: var(--white);
    font-size: 17px;
    font-weight: 300;
}

.modal_body {
	background-color: var(--white);
	padding: 40px;
}

@media (max-width: 575px) {
	
.modal_header, .modal_body {
    padding: 20px;
}
	
.modal_header-icon {
    width: 9vw;
    height: auto;
    margin: 0 3.5vw 0 0;
}
	
.modal_header-title-area {
    width: calc(100% - 22.5vw);
}	
	
.modal_header-title {
    font-size: 4.25vw;
    margin: 0 0 7px;
}	
	
.modal_header-description {
    font-size: 3vw;
    line-height: 1.2;
}
	
.modal_close {
    width: 5vw;
    height: 5vw;
    margin: 0 0 0 5vw;
}	
	
}



/*****************************************
***************** LGPD *******************
*****************************************/

.warning {
    position: fixed;
    left: 0;
    bottom: 15px;
    right: 0;
    margin: 0 auto;
    z-index: 997;
}

.warning-wrapper {
	background-color: var(--white);
    box-shadow: 0 0 20px var(--shadow-3);
    border-radius: 8px;
    padding: 15px;
}

.warning_text-area {
    width: 88%;
}

.warning_text {
	display: block;
	font-size: 14px;
	line-height: 1.4;
}

.warning_link {
    color: var(--primary-color);
    font-weight: 600;
    transition: .5s ease;
}

.warning_button-area {
	width: 9%;
}

.warning_button {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    padding: 8px;
	transition: .5s ease;
}

.lgpd_text-area p {
	line-height: 1.6;
}

.lgpd_text-area p:not(:last-child) {
	margin: 0 0 15px;
}

.lgpd_text-area h3 {
	margin: 40px 0 15px;;
}

@media (min-width: 993px) {
	
.warning_link:hover {
    color: var(--gray-1);
}	
	
.warning_button:hover {
    background-color: var(--white);
    color: var(--primary-color);
}	
	
}

@media (max-width: 1390px) {
					
.warning_text-area {
    width: 90%;
}	
	
.warning_text {
    font-size: 12px;
}
	
.warning_button {
	font-size: 12px;
}
	
.warning_button-area {
    width: 9%;
}	
		
}

@media (max-width: 575px) {
							
.warning_container .box {
	justify-content: center;
}	
	
.warning_text-area {
    width: 100%;
}	
		
.warning_text {
	text-align: center;
    font-size: 11px;
	line-height: 1.65;
}
	
.warning_button-area {
    width: 25%;
    text-align: center;
    margin: 10px 0 0;
}
	
.warning_button {
	font-size: 11px;
}	
	
}



/******************************************
**************** SPIN FORM ****************
*************************** **************/

.form-loading {
    display: none;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.form-loading::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 4px solid #ccc;
    border-top: 4px solid #4D863F; /* Cor do destaque */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
