/*****************************************
*************** VARIABLES ****************
*****************************************/

:root {

/*FONTE*/	
--ttl-font: 'Oxanium', sans-serif;	
--txt-font: 'Ubuntu', sans-serif;
	
/*CORES DA MARCA*/
--primary-50-color: #DA161D;	
--primary-100-color: #A60D12;

/*CORES NEUTRAS*/	
--neutral-50-color: #161616;
--neutral-100-color: #323232;
--neutral-150-color: #484848;
--neutral-200-color: #565656;	
--neutral-250-color: #707070;	
--neutral-300-color: #9A9A9A;
--neutral-350-color: #BABABA;	
--neutral-400-color: #C5C5C5;
--neutral-450-color: #C5C5C5;	
--neutral-500-color: #D4D4D4;
--neutral-550-color: #E7E7E7;
--neutral-600-color: #FAFAFA;	
	
/*CORES DO WHATSAPP*/	
--whatsapp-50-color: #028916;
--whatsapp-100-color: #036110;
	
/*CORES DO WAZE*/	
--waze-50-color: #68C5E1;
--waze-100-color: #55A7C0;	
	
/*CORES DO MAPS*/
--maps-50-color: #E12C29;
--maps-100-color: #BB2321;

/*CORES BASE*/	
--black-color: #000000;	
--white-color: #FFFFFF;
		
}



/*****************************************
*************** CSS RESET **************** 
*****************************************/

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, svg {
	box-sizing: border-box;
	vertical-align: baseline;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-family: var(--txt-font);
	border: 0;
	margin: 0;
	padding: 0
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	line-height: 1;
}

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

ol, ul {
	list-style: none
}

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

img, video, svg {
	display: block;
	width: 100%;
	height: auto;
}

picture {
	display: contents;
}

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

strong {
	color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    letter-spacing: inherit;
    line-height: inherit;
}



/*****************************************
*************** CONTAINER **************** 
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.container {
	width: 100%;
	padding: 0 16px;
	margin: 0 auto;
}


/*CELULAR GRANDE E TABLETS PEQUENOS*/
@media (min-width: 640px) {
	
	.container {
		max-width: 640px;
	}	
	
}


/*TABLET*/
@media (min-width: 768px) {
	
	.container {
		max-width: 768px;
	}		
	
}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
	
	.container {
		max-width: 1024px;
	}	
	
}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	.container {
		max-width: 1320px;
	}	
	
}


/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
	.container {
		max-width: 1408px;
	}	
	
}



/*****************************************
**************** SECTION ***************** 
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
section {
	position: relative;
	overflow: hidden;
	padding: 56px 0;
	z-index: 1;
}


/*TABLET*/
@media (min-width: 768px) {
	
	section {
		padding: 88px 0;
	}		

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
	
	section {
		padding: 96px 0;
	}		
	
}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	section {
		padding: 112px 0;
	}	
	
}


/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
	section {
		padding: 128px 0;
	}	
	
}



/*****************************************
************** TYPOGRAPHY **************** 
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
h2, .h2,
h3, .h3,
h4, .h4,
.sec_label {
	color: var(--neutral-50-color);
	text-transform: uppercase;
	font-family: var(--ttl-font);
	line-height: 1.16;
}

h2, .h2 {
    font-size: 22px;
	font-weight: 600;
}

h3, .h3 {
	font-size: 18px;
	font-weight: 600;
}

h4, .h4 {
	font-size: 15px;
	font-weight: 600;
}

p, ul, ol, li {
	color: var(--neutral-200-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.56;
	letter-spacing: .01em;
}

.sec_label {
    display: block;
    color: var(--primary-50-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 4px 0;
}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

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

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

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

	p, ul, ol, li {
		font-size: 15px;
	}	
	
	.sec_label {
		font-size: 14px;
		letter-spacing: 3px;
		margin: 0 0 6px 3px;
	}
	
}

/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	h2, .h2 {
		font-size: 36px;
	}

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

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

	p, ul, ol, li {
		font-size: 16px;
	}
	
	.sec_label {
		font-size: 15px;
	}
	
}

/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
	h2, .h2 {
		font-size: 46px;
	}

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

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

	p, ul, ol, li {
		font-size: 17.5px;
	}
	
	.sec_label {
		font-size: 16px;
	}
	
}



/*****************************************
*************** TITLES ******************* 
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.ttl-center, .ttl-left, .ttl-line {
	text-align: center;
	margin: 0 0 48px;
}

.ttl-line p, .ttl-center p, .ttl-left p {
    margin: 10px 0 0;
}

.ttl-line br, .ttl-center br, .ttl-left br {
    display: none;
}

.sec_ttl, .sec_sub-ttl {
	text-wrap: balance;
}


/*TABLET*/
@media (min-width: 768px) {
	
	.ttl-line, .ttl-left, .ttl-center {
			margin: 0 0 72px;
	}	
	
}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
	
	.ttl-line, .ttl-center {
		margin: 0 0 80px;
	}	
	
	.ttl-left {
		text-align: left;
	}
	
}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	.ttl-line {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		text-align: left;
	}	

	.ttl-line, .ttl-center {
		margin: 0 0 88px;
	}

	.ttl-left {
		margin: 0 0 32px;
	}

	.ttl-center p, .ttl-left p {
		margin: 12px 0 0;
	}	
	
	.ttl-line br, .ttl-center br, .ttl-left br {
		display: block;
	}
	
	.sec-ttl, .sec_sub-ttl {
		text-wrap: normal;
	}
	
}

/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
	.ttl-line, .ttl-center {
		margin: 0 0 104px;
	}

	.ttl-left {
		margin: 0 0 40px;
	}

	.ttl-center p, .ttl-left p {
		margin: 16px 0 0;
	}	
	
}



/*****************************************
*************** BUTTONS ****************** 
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: var(--primary-50-color);
	color: var(--white-color);
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .02em;
	line-height: normal;
	border-radius: 8px;
	padding: 12px 24px;
	transition: .5s ease;
}

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

.btn.waze {
	background-color: var(--waze-50-color);
}

.btn.maps {
	background-color: var(--maps-50-color);
}

.btn-ic {
	fill: currentColor;
	width: 16px;
}

form .btn {
	display: block;
	width: 100%;
}

.btn-center, .btn-left {
	text-align: center;
    margin: 48px 0 0;
}


/*TABLET*/
@media (min-width: 768px) {
	
	.btn-center, .btn-left {
		margin: 72px 0 0;
	}
	
}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
	
	.btn {
		font-size: 15px;
	}	
	
	.btn:hover {
		background-color: var(--primary-100-color);
	}
	
	.btn.wpp:hover {
		background-color: var(--whatsapp-100-color);
	}
	
	.btn.waze:hover {
		background-color: var(--waze-100-color);
	}

	.btn.maps:hover {
		background-color: var(--maps-100-color);
	}

	.btn-ic {
		width: 18px;
	}

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


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	.btn {
		font-size: 16px;
		gap: 10px;
		padding: 12px 24px;
	}	

	.btn-ic {
		width: 20px;
	}

	.btn-center {
		margin: 88px 0 0;
	}

	.btn-left {
		margin: 32px 0 0;
	}	
	
}


/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
	.btn {
		font-size: 18px;
		gap: 12px;
		padding: 16px 28px;
	}	

	.btn-ic {
		width: 22px;
	}

	.btn-center {
		margin: 104px 0 0;
	}

	.btn-left {
		margin: 40px 0 0;
	}	
	
}



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

/*BASE CSS*/
.form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
	gap: 10px;
}

.form_field-area {
	position: relative;
}	

.form_field-group {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
	
.form_field-group.group-3 {
    grid-template-columns: 1fr;
}

.form_field-select::before {
    content: '';
    position: absolute;
    top: 13.5px;
    right: 14px;
    width: 6px;
    height: 6px;
    border: 2px var(--neutral-300-color);
    border-top-style: solid;
    border-left-style: solid;
    transform: rotate(225deg);
}

.form_field-select label {
	opacity: 0;
}

.form_field {
    display: block;
    width: 100%;
    background-color: transparent;
    color: var(--neutral-150-color);
    font-size: 13px;
    line-height: 1.4;
    border: 1px solid var(--neutral-500-color);
    border-radius: 4px;
    outline: none;
    padding: 15px 15px 15px 40px;
    transition: .4s;
}

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

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

.form_select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: transparent;
	background-image: none;
	padding: 0 15px 0 39px;	
}

.form_textarea {
	height: 96px;
}

.form_label {
    cursor: text;
    position: absolute;
    top: 12px;
    left: 31px;
    background-color: var(--white-color);
    font-weight: 400;
    transform-origin: left;
    padding: 0 8px;
    transition: .4s;
}

.form_label, .form_select {
	color: var(--neutral-250-color);
	font-size: 13px;
}

.form_field:focus ~ .form_label, .form_field.valid ~ .form_label {
  color: var(--whatsapp-50-color);
  transform: scale(0.78) translate(4px, -24px);
}

.form_select.valid {
	color: var(--neutral-50-color);	
}

.form_icon {
    position: absolute;
    left: 14px;
    top: 12.5px;
    width: 13px;
    fill: var(--neutral-300-color);
    transition: .5s ease;
}

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


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

	.form_field-group {
		grid-template-columns: repeat(2, 1fr);
	}

	.form_field-group.group-3 {
		grid-template-columns: repeat(3, 1fr);
	}	
	
}


/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {		
	
	.form, .form_field-group {
		gap: 14px;
	}

	.form_field {
		font-size: 14px;
		padding: 15px 15px 15px 45px;
	}	

	.form_field-select::before {
		top: 14px;
		right: 16px;
		width: 7px;
		height: 7px;
	}		

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

	.form_select {
		padding: 0 15px 0 44px;
	}	

	.form_textarea {
		height: 112px;
	}		

	.form_icon {
		left: 16px;
		top: 14.5px;
		width: 14px;
	}	

	.form_label {
		top: 14px;
		left: 36px;
	}

	.form_label, .form_select {
		color: var(--neutral-250-color);
		font-size: 14px;
	}	

	.form_field:focus ~ .form_label, .form_field.valid ~ .form_label {
		transform: scale(0.78) translate(4px, -26px);
	}	
	
}


/* CELULAR */
@media (max-width: 639px) {
	
	.form, .form_field-group {
		gap: 8px;
	}	
	
	.form_field {
		font-size: 12px;
		padding: 15px 15px 15px 34px;
	}
	
	.form_field-select::before {
		top: 13px;
		width: 5px;
		height: 5px;
	}

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

	.form_label, .form_select {
		font-size: 12px;
	}	
	
	.form_select {
        padding: 0 15px 0 32px;
    }
	
    .form_icon {
        left: 12px;
        top: 12px;
        width: 12px;
    }
	
	.form_label {
		top: 12px;
		left: 25px;
	}
	
	
	
}


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

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

.fixed-whatsapp {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: var(--whatsapp-50-color);
	fill: var(--white-color);
	border: 2px solid var(--whatsapp-50-color);
	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-50-color);
	opacity: 0.5;
	transform: scale(1);
	z-index: -1;
}

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

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

.fixed-whatsapp_icon {
    position: relative;
    top: -1px;
    width: 26px;
}

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

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

/*ANIMACOES*/
@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; }
}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
	
	.fixed-whatsapp_area {
		bottom: 16px;
		right: 16px;
	}

	.fixed-whatsapp {
		width: 64px;
		height: 64px;
	}	
	
	.fixed-whatsapp:hover {
		background-color: var(--white-color);
		fill: var(--whatsapp-50-color);
	}		
	
	.fixed-whatsapp_icon {
		top: -2px;
		width: 32px;
	}	
	
	.fixed-whatsapp_badge {
		top: 3px;
		right: 2px;
		width: 12px;
		height: 12px;
	}	
	
}


/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
	.fixed-whatsapp_area {
		bottom: 20px;
		right: 20px;
	}	

	.fixed-whatsapp {
		width: 72px;
		height: 72px;
	}	

	.fixed-whatsapp_icon {
		width: 36px;
	}	

	.fixed-whatsapp_badge {
		width: 14px;
		height: 14px;
	}	
	
}

/*****************************************
************** AUXILIARYS ****************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.clr-prim {
	color: var(--primary-50-color);
}

.clr-dark {
	color: var(--neutral-50-color);
}

.swiper_navs {
	display: flex;
}

.swiper_prev, .swiper_next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	fill: var(--primary-50-color);
	border: 1.5px solid var(--primary-50-color);
	transition: .5s ease;
}

.swiper_prev {
	border-right: none;
	border-radius: 4px 0 0 4px;
	padding: 0 2px 0 0;
}

.swiper_next {
	border-radius: 0 4px 4px 0;
	padding: 0 0 0 2px;
}

.swiper_nav-ic {
	width: 14px;
}

.footer_decor {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1112px;
	height: auto;
	z-index: 2;
}

.footer_decor-svg {
	display: block;
	width: 100%;
	height: auto;
	fill: var(--primary-50-color);
}


/*TABLET*/
@media (min-width: 640px) {

.swiper_prev, .swiper_next {
	width: 40px;
	height: 40px;
}

.swiper_nav-ic {
	width: 15px;
}

}


/*TABLET GRANDE*/
@media (min-width: 768px) {

.swiper_prev, .swiper_next {
	width: 42px;
	height: 42px;
}

.swiper_nav-ic {
	width: 16px;
}
	
.footer_decor {
	width: 1720px;
}		
	

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

.swiper_prev, .swiper_next {
	width: 44px;
	height: 44px;
}

.swiper_nav-ic {
	width: 17px;
}

.swiper_prev:hover, .swiper_next:hover {
	background-color: var(--primary-50-color);
	fill: var(--white-color);
}

}


/*NOTEBOOK E DESKTOP PADRAO*/
@media (min-width: 1320px) {

.swiper_prev, .swiper_next {
	width: 46px;
	height: 46px;
}

.swiper_nav-ic {
	width: 18px;
}
	
}


/*DESKTOP GRANDE E RETINA*/
@media (min-width: 1560px) {

.swiper_prev, .swiper_next {
	width: 52px;
	height: 52px;
}

.swiper_nav-ic {
	width: 20px;
}
	
.footer_decor {
	width: 2560px;
}	

}

/*****************************************
***************** NAV ********************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 998;
}

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

.nav_logo {
	width: 116px;
}

.nav_btn {
	display: flex;
	align-items: center;
	gap: 8px;
	fill: var(--white-color);
	color: var(--white-color);
	font-size: 12.5px;
	font-weight: 500;
	background-color: var(--primary-50-color);
	border-radius: 8px;
	padding: 10px 14px;
	transition: .5s ease;
}

.nav_btn-ic {
	width: 13px;
}


/*TABLET*/
@media (min-width: 768px) {
	
	.nav_logo {
		width: 132px;
	}
	
	.nav_btn {
		gap: 8px;
		font-size: 14px;
		padding: 10px 16px;
	}
	
	.nav_btn-ic {
		width: 15px;
	}
	
}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
	
	.nav {
		padding: 12px 0;
	}
	
	.nav_logo {
		width: 152px;
	}
	
	.nav_btn {
		font-size: 14px;
		padding: 12px 20px;
	}
	
	.nav_btn-ic {
		width: 15px;
	}
	
}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	.nav_btn:hover {
		background-color: var(--primary-100-color);
	}
	
}


/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
	.nav {
		padding: 18px 0;
	}
	
	.nav_logo {
		width: 172px;
	}
	
	.nav_btn {
		gap: 12px;
		font-size: 16px;
		padding: 16px 24px;
	}
	
	.nav_btn-ic {
		width: 18px;
	}
	
}



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

/*BASE CSS E CELULAR PADRAO*/
.hero {
	overflow: visible;
	overflow-x: clip;
	padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #16161694 43%, transparent 100%), linear-gradient(to bottom, #16161685 10%, transparent 74%);
    opacity: .64;
    z-index: 2;
}

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

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

.hero_container {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	height: 496px;
	z-index: 9;
}

.hero_txt-area {
	text-align: center;
	margin: 0 auto 32px;
}

.hero_ttl {
	color: var(--white-color);
	text-transform: uppercase;
	font-family: var(--txt-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-shadow: 0 0 12px #00000044;
}

.hero_headline {
	color: var(--white-color);
	text-transform: uppercase;
	font-family: var(--ttl-font);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.16;
	text-shadow: 0 0 12px #00000044;
	margin: 8px 0 12px;
}

.hero_sub-headline {
	color: var(--white-color);
	font-size: 15px;
	line-height: 1.32;
	text-shadow: 0 0 12px #00000044;
}

.hero_headline br, .hero_sub-headline br {
	display: none;
}

.hero_list {
	display: none;
}

.hero_btn {
	display: inline-flex;
	margin: 20px 0 0;
}

.hero_form-area {
	display: none;
}


/*TABLET*/
@media (min-width: 640px) {

.hero_container {
	height: 580px;
}

.hero_txt-area {
	margin: 0 auto 40px;
}

.hero_ttl {
	font-size: 12px;
}

.hero_headline {
	font-size: 27px;
	margin: 9px 0 14px;
}

.hero_sub-headline {
	font-size: 17.5px;
}

.hero_btn {
	margin: 24px 0 0;
}

}


/*TABLET GRANDE*/
@media (min-width: 768px) {

.hero::before {
	background: linear-gradient(to top, var(--neutral-50-color) 24%, transparent 164%);
}

.hero_container {
	height: 600px;
}

.hero_ttl {
	font-size: 14px;
	letter-spacing: 1.5px;
}

.hero_headline {
	font-size: 30px;
}

.hero_sub-headline {
	font-size: 17px;
}
	
.hero_headline br, .hero_sub-headline br {
	display: block;
}	

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

.hero_container {
	height: 532px;
}

.hero_ttl {
	font-size: 19px;
	letter-spacing: 5px;
}

.hero_headline {
	font-size: 52px;
	margin: 10px 0 16px;
}

.hero_sub-headline {
	font-size: 19px;
}

}


/*NOTEBOOK E DESKTOP PADRAO*/
@media (min-width: 1320px) {

.hero::before {
	background: linear-gradient(to right, var(--neutral-50-color) 28%, transparent 132%);
}

.hero_container {
	align-items: center;
}

.hero_txt-area {
	text-align: left;
	margin: 0;
}

.hero_ttl {
	font-size: 13px;
	letter-spacing: 2px;
}

.hero_headline {
	font-size: 32px;
	margin: 6px 0 12px;
}

.hero_sub-headline {
	font-size: 18px;
}

.hero_list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1.5px solid #9a9a9a8a;
	padding: 24px 0 0;
	margin: 24px 0 0;
}

.hero_item {
	display: flex;
	align-items: center;
}

.hero_item-ic {
	width: 24px;
	fill: var(--primary-50-color);
	margin: 0 12px 0 0;
}

.hero_item-txt {
	width: calc(100% - 24px - 12px);
	color: var(--white-color);
	font-size: 14px;
	line-height: 1.36;
	text-shadow: 0 0 12px #00000044;
}

.hero_btn {
	display: none;
}

.hero_form-area {
	position: absolute;
	top: 116px;
	right: 15px;
	display: block;
	width: 25.5%;
	background-color: var(--white-color);
	box-shadow: 0 0 30px #00000036;
	border-radius: 16px;
	padding: 18px 20px;
}

.hero_form_head {
	display: flex;
	margin: 0 0 20px;
}

.hero_form-ic {
	fill: var(--whatsapp-50-color);
	width: 32px;
	margin: 0 12px 0 0;
}

.hero_form-txt-area {
	width: calc(100% - 32px - 12px);
}

.hero_form-ttl {
	color: var(--neutral-100-color);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.2;
}

.hero_form-txt {
	font-size: 13px;
	line-height: 1.2;
	margin: 3px 0 0;
}

}


/*DESKTOP GRANDE E RETINA*/
@media (min-width: 1560px) {
	
.hero_container {
	height: 614px;
}	

.hero_ttl {
	font-size: 16px;
	letter-spacing: 3px;
}

.hero_headline {
	font-size: 40px;
	margin: 10px 0 16px;
}

.hero_sub-headline {
	font-size: 22.5px;
}

.hero_list {
	padding: 32px 0 0;
	margin: 32px 0 0;
}

.hero_item-ic {
	width: 28px;
	margin: 0 14px 0 0;
}

.hero_item-txt {
	width: calc(100% - 28px - 14px);
	font-size: 16px;
}

.hero_form-area {
	top: 132px;
	padding: 20px 24px;
}

.hero_form_head {
	margin: 0 0 24px;
}

.hero_form-ic {
	width: 36px;
	margin: 0 14px 0 0;
}

.hero_form-txt-area {
	width: calc(100% - 36px - 14px);
}

.hero_form-ttl {
	font-size: 18.5px;
}

.hero_form-txt {
	font-size: 14px;
}

}



/*****************************************
*************** BRANDS *******************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.brands_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    grid-gap: 24px;
    border-bottom: 1px solid var(--neutral-500-color);
    padding: 20px 0;
}

.brands_img {
	max-width: 96px;
	max-height: 48px;
	margin: 0 auto;
}


/*TABLET GRANDE*/
@media (min-width: 768px) {

.brands_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 56px 0 40px;
}

.brands_img {
	max-width: 120px;
	max-height: 64px;
	margin: 0;
}

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

.brands_img {
	max-width: 124px;
	max-height: 68px;
}

}


/*DESKTOP GRANDE E RETINA*/
@media (min-width: 1560px) {

.brands_img {
	max-width: 132px;
	max-height: 72px;
}

}



/*****************************************
************** PRODUCTS ******************
*****************************************/


/*BASE CSS E CELULAR PADRAO*/
.prod_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 16px;
}

.prod_img {
	border-radius: 8px;
}

.prod_card-info-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	margin: 12px 0 0;
	text-align: center;
}

.prod_ttl {
	font-size: 15px;
}

.prod_cta {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-50-color);
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .5px;
	transition: .5s ease;
}

.prod_cta-txt {
	position: relative;
}

.prod_cta-txt::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1.5px;
	background-color: var(--primary-50-color);
	transition: .5s ease;
}

.prod_cta::after {
	content: url("../svg/seta.svg");
	display: block;
	width: 15px;
	height: 15px;
	margin: auto -4px auto 2px;
	transition: .5s ease;
}

.prod_btn-ttl {
	font-size: 15px;
	margin: 0 0 16px;
}


/*TABLET PEQUENO*/
@media (min-width: 450px) {

.prod_grid {
	grid-gap: 24px;
}

}


/*TABLET*/
@media (min-width: 640px) {

.prod_grid {
	grid-gap: 28px;
}

.prod_ttl {
	font-size: 16px;
}

.prod_btn-ttl {
	font-size: 19px;
	margin: 0 0 24px;
}

}


/*TABLET GRANDE*/
@media (min-width: 768px) {

.prod_card-info-area {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	margin: 18px 0 0;
	text-align: left;
}

.prod_ttl {
	font-size: 15px;
}
	
.prod_cta {
    font-size: 12px;
}	
	
.prod_cta::after {
    width: 18px;
    height: 18px;
}	

.prod_btn-ttl {
	font-size: 20px;
}

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

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

.prod_ttl {
	font-size: 16px;
}

.prod_cta {
	font-size: 13px;
}

.prod_cta:hover {
	opacity: .72;
}

.prod_cta:hover .prod_cta-txt::before {
	width: 0;
}

.prod_cta:hover::after {
	margin: auto -4px auto 6px;
}

.prod_btn-ttl {
	font-size: 21px;
	margin: 0 0 28px;
}

}


/*NOTEBOOK E DESKTOP PADRAO*/
@media (min-width: 1320px) {

.prod_grid {
	grid-gap: 36px;
}

.prod_ttl {
	font-size: 17px;
}

.prod_btn-ttl {
	font-size: 22px;
}

}


/*DESKTOP GRANDE E RETINA*/
@media (min-width: 1560px) {

.prod_grid {
	grid-gap: 64px;
}

.prod_card-info-area {
	margin: 20px 0 0;
}

.prod_ttl {
	font-size: 18px;
}

.prod_cta {
	font-size: 14px;
}

.prod_btn-ttl {
	font-size: 24px;
	margin: 0 0 32px;
}

}



/*****************************************
************* PROD BRANDS ****************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.prod_brands_box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	grid-gap: 32px 20px;
	padding: 48px 0 32px;
}

.prod_brands_img {
	width: auto;
	max-width: 90px;
	max-height: 32px;
	margin: 0 auto;
}

.prod_brands_img.adj {
    transform: scale(1.6);
}


/*TABLET*/
@media (min-width: 640px) {

.prod_brands_box {
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 36px 24px;
	padding: 52px 0 36px;
}

.prod_brands_img {
	max-width: 72px;
	max-height: 24px;
}

}


/*TABLET GRANDE*/
@media (min-width: 768px) {

.prod_brands_img {
	max-width: 88px;
	max-height: 32px;
}

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
	
.prod_brands_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 72px 0 16px;
}	

.prod_brands_img {
	max-width: 112px;
	max-height: 24px;
	margin: 0;
}

}


/*DESKTOP GRANDE E RETINA*/
@media (min-width: 1560px) {

.prod_brands_img {
    max-width: 124px;
    max-height: 28px;
}

}

/*****************************************
************** GALLERY *******************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.gal {
	background-color: var(--neutral-50-color);
}

.gal_div {
	position: absolute;
	top: -2px;
	width: 100%;
	height: 16px;
}

.gal_div-shape {
	width: 100%;
	height: 100%;
	fill: var(--white-color);
}

.gal .ttl-line {
	align-items: center;
}

.gal .sec_ttl {
	color: var(--white-color);
}

.gal .swiper_navs {
	justify-content: center;
	margin: 24px 0 0;
}

.gal_swiper {
	overflow: visible;
}

.gal_swiper .swiper-slide {
	width: 220px;
}

.gal_link {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.gal_link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: var(--neutral-50-color);
	opacity: 0;
	z-index: 2;
	transition: .5s ease;
}

.gal_link::after {
	content: url("../svg/zoom.svg");
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 60px;
	height: 60px;
	transform: scale(0);
	opacity: 0;
	margin: auto;
	z-index: 3;
	transition: .5s ease;
}

.gal_img {
	object-fit: cover;
	transition: .88s ease;
}


/*TABLET PEQUENO*/
@media (min-width: 450px) {

.gal_swiper .swiper-slide {
	width: 260px;
}

}


/*TABLET*/
@media (min-width: 640px) {

.gal_swiper .swiper-slide {
	width: 300px;
}

}


/*TABLET GRANDE*/
@media (min-width: 768px) {
	

.gal_div {
    height: 44px;
}

.gal_div-shape {
    width: auto;
    height: auto;
}	

.gal_swiper .swiper-slide {
	width: 340px;
}

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

.gal_swiper .swiper-slide {
	width: 320px;
}

.gal_link:hover::before {
	opacity: .72;
}

.gal_link:hover::after {
	transform: scale(1);
	opacity: 1;
}

.gal_link:hover .gal_img {
	filter: grayscale(1);
	transform: scale(1.12);
}

}


/*NOTEBOOK E DESKTOP PADRAO*/
@media (min-width: 1320px) {

.gal .ttl-line {
	align-items: flex-end;
}

.gal .swiper_navs {
	justify-content: flex-end;
	margin: 0 0 8px;
}

.gal_swiper .swiper-slide {
	width: 360px;
}

}


/*DESKTOP GRANDE E RETINA*/
@media (min-width: 1560px) {

.gal_swiper .swiper-slide {
	width: 480px;
}

}



/*****************************************
**************** DIFS ********************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.difs_grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 28px;
}

.difs_card {
	display: flex;
}

.difs_ic-area {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1.5px solid var(--primary-50-color);
	fill: var(--primary-50-color);
	border-radius: 50%;
	margin: 0 12px 0 0;
}

.difs_ic {
	width: 18px;
}

.difs_txt-area {
	width: calc(100% - 42px - 12px);
}

.difs_ttl {
	font-size: 14px;
	margin: 0 0 6px;
}


/*TABLET*/
@media (min-width: 640px) {

.difs_grid {
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 28px;
}

.difs_ic-area {
	width: 46px;
	height: 46px;
	margin: 0 14px 0 0;
}

.difs_ic {
	width: 20px;
}

.difs_txt-area {
	width: calc(100% - 46px - 14px);
}

.difs_ttl {
	font-size: 15px;
}

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

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

.difs_ic-area {
	width: 48px;
	height: 48px;
	margin: 0 14px 0 0;
}

.difs_ic {
	width: 20px;
}

.difs_txt-area {
	width: calc(100% - 48px - 14px);
}

.difs_ttl {
	font-size: 16px;
}

}


/*NOTEBOOK E DESKTOP PADRAO*/
@media (min-width: 1320px) {

.difs_grid {
	grid-gap: 36px;
}

.difs_ic-area {
	width: 52px;
	height: 52px;
	margin: 0 16px 0 0;
}

.difs_ic {
	width: 22px;
}

.difs_txt-area {
	width: calc(100% - 52px - 16px);
}

.difs_ttl {
	font-size: 17px;
}

}


/*DESKTOP GRANDE E RETINA*/
@media (min-width: 1560px) {

.difs_grid {
	grid-gap: 64px;
}

.difs_ic-area {
	width: 58px;
	height: 58px;
	margin: 0 18px 0 0;
}

.difs_ic {
	width: 24px;
}

.difs_txt-area {
	width: calc(100% - 58px - 18px);
}

.difs_ttl {
	font-size: 18px;
}

}




/*****************************************
***************** CTA ********************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.cta {
	overflow: visible;
	overflow-x: clip;
	padding: 0;
}

.cta_box {
	position: relative;
	background-color: var(--neutral-50-color);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px;
	padding: 40px 20px;
}

.cta_img {
    width: 64%;
    max-width: 280px;
    margin: -104px auto 0;
}

.cta_txt-area {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.cta_ttl {
	color: var(--white-color);
}

.cta_txt {
	color: var(--white-color);
	margin: 0;
}


/*TABLET*/
@media (min-width: 640px) {

.cta_box {
	gap: 32px;
	padding: 64px 24px;
}

.cta_img {
    max-width: 300px;
    margin: -136px 0 0;
}

}


/*TABLET GRANDE*/
@media (min-width: 768px) {

.cta_box {
	padding: 80px 36px;
}

.cta_img {
    max-width: 388px;
    margin: -156px 0 0;
}

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

.cta_box {
	flex-direction: row;
	align-items: center;
	text-align: left;
	gap: 56px;
	padding: 96px 56px;
}

.cta_img {
	position: absolute;
	left: 0;
	bottom: 24px;
	width: 42%;
	max-width: none;
	margin: 0;
}

.cta_txt-area {
	width: fit-content;
	align-items: flex-start;
	gap: 20px;
	margin: 0 0 0 auto;
}

.cta_txt {
	margin: 4px 0 24px;
}

}


/*NOTEBOOK E DESKTOP PADRAO*/
@media (min-width: 1320px) {

.cta_box {
	gap: 64px;
	padding: 104px 64px 104px 48px;
}

.cta_img {
	width: 38%;
}

}


/*DESKTOP GRANDE E RETINA*/
@media (min-width: 1560px) {

.cta_box {
	padding: 112px 72px;
}

.cta_img {
	bottom: 12px;
	width: 42%;
}

}



/*****************************************
************* TESTIMONIALS ***************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.testi_container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.testi_ttl-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
}

.testi .sec_ttl {
	margin: 2px 0 0;
}

.testi .swiper_navs {
	justify-content: center;
	margin: 24px 0 0;
}

.testi_swiper-area {
	width: 100%;
	margin: 32px 0 0;
}

.testi_swiper {
	padding: 4px 4px 16px;
}

.testi_card {
	display: flex;
	flex-direction: column;
	height: 228px;
	border: 1px solid var(--neutral-500-color);
	border-radius: 16px;
	padding: 32px;
	margin: 0 auto;
}

.testi_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--neutral-500-color);
	padding: 0 0 24px;
	margin: 0 0 24px;
}

.testi_id {
	display: flex;
	align-items: center;
}

.testi_img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin: 0 16px 0 0;
}

.testi_name-area {
	width: calc(100% - 48px - 16px);
}

.testi_name {
	font-family: var(--txt-font);
	font-size: 15px;
	text-transform: none;
}

.testi_name::after {
    content: "";
    display: block;
    width: 72px;
    height: 14px;
    background-image: url(../svg/estrelas.svg);
    background-size: 72px;
    background-repeat: no-repeat;
    background-position: center;
    margin: 6px 0 0;
}

.testi_logo {
	width: 28px;
}


/*TABLET GRANDE*/
@media (min-width: 768px) {

.testi_swiper-area {
	margin: 40px 0 0;
}

.testi_swiper {
	padding: 8px 8px 24px;
}

.testi_card {
	height: 250px;
	padding: 36px;
}

.testi_head {
	padding: 0 0 28px;
	margin: 0 0 28px;
}

.testi_img {
	width: 52px;
	height: 52px;
}

.testi_name-area {
	width: calc(100% - 52px - 16px);
}

.testi_logo {
	width: 30px;
}

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

.testi_container {
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}

.testi_ttl-area {
	align-items: flex-start;
	text-align: left;
	width: 38%;
}

.testi .sec_ttl {
	margin: 12px 0 72px;
}

.testi .swiper_navs {
	justify-content: flex-start;
	margin: 0;
}

.testi_swiper-area {
	width: 60%;
	margin: 0;
}

.testi_card {
	height: 258px;
	padding: 44px;
}

.testi_head {
	padding: 0 0 32px;
	margin: 0 0 32px;
}

.testi_img {
	width: 56px;
	height: 56px;
}

.testi_name-area {
	width: calc(100% - 56px - 16px);
}

.testi_logo {
	width: 32px;
}

}


/*NOTEBOOK E DESKTOP PADRAO*/
@media (min-width: 1320px) {

.testi_ttl-area {
	width: 33%;
}

.testi_swiper-area {
	width: 64%;
}

.testi_swiper {
	padding: 8px 8px 32px;
}
	
.testi_card {
	height: 270px;
	padding: 36px;
}	

}


/*DESKTOP GRANDE E RETINA*/
@media (min-width: 1560px) {

.testi_ttl-area {
	width: 40%;
}

.testi_swiper-area {
	width: 57%;
}
	
.testi_card {
	height: 320px;
	padding: 44px;
}	

}



/*****************************************
**************** ABOUT *******************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.about {
	background-color: var(--neutral-600-color);
}

.about_container {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	grid-gap: 36px;
}

.about .sec_ttl {
    margin: 0 0 -26px;
}

.about_txt + .about_txt {
	margin: 16px 0 0;
}

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

.about_img-area {
	justify-self: center;
}

.about_img {
	width: 100%;
	margin: 20px auto 0;
}


/*TABLET GRANDE*/
@media (min-width: 768px) {

.about_container {
	grid-gap: 48px;
}
	
.about .sec_ttl {
    margin: 0;
}	

.about_img {
	max-width: 520px;
}

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

.about {
	position: relative;
}

.about::before {
	content: url(../svg/ic.svg);
	position: absolute;
	top: 0;
	left: -24%;
	bottom: 0;
	width: 950px;
	height: min-content;
	opacity: .02;
	margin: auto 0;
	z-index: 0;
}

.about_container {
	position: relative;
	grid-template-columns: 1.2fr 1fr;;
	grid-gap: 56px;
	z-index: 1;
}

.about_txt-area {
	text-align: left;
}

.about_img-area {
	justify-self: end;
}

.about_img {
	width: 100%;
	max-width: none;
	margin: 0;
}

}


/*NOTEBOOK E DESKTOP PADRAO*/
@media (min-width: 1320px) {

.about_container {
	grid-gap: 88px;
}

}


/*DESKTOP GRANDE E RETINA*/
@media (min-width: 1560px) {

.about_container {
	grid-gap: 80px;
}

}


/*RETINA*/
@media (min-width: 1920px) {

.about::before {
	left: -16%;
}

}


/*****************************************
************** CONTACT *******************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.cont_container {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr;
	grid-gap: 32px;
}

.cont .sec_ttl {
    margin: 0 0 -26px;
}

.cont_map {
	display: block;
	width: 100%;
	height: 320px;
	border-radius: 16px;
}

.cont_cards {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cont_card {
	display: flex;
	align-items: center;
	width: fit-content;
	transition: .5s ease;
}

.cont_ic-area {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	fill: var(--primary-50-color);
	border: 1.5px solid var(--primary-50-color);
	border-radius: 50%;
	margin: 0 12px 0 0;
	transition: .5s ease;
}

.cont_ic {
	width: 16px;
}

.cont_info-area {
	width: calc(100% - 40px - 12px);
	text-align: left;
}

.cont_info-ttl {
	display: block;
	color: var(--neutral-50-color);
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 3px;
	transition: .5s ease;
}

.cont_info-txt {
	color: var(--neutral-200-color);
	display: block;
	font-size: 13px;
	line-height: 1.28;
	transition: .5s ease;
}

.cont_line {
	width: 100%;
	height: 1.5px;
	background-color: var(--neutral-550-color);
	border: none;
}

.cont_btns {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 8px;
}

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


/*TABLET*/
@media (min-width: 640px) {

.cont_container {
	grid-gap: 40px;
}
	
.cont .sec_ttl {
    margin: 0;
}	

.cont_map {
	height: 380px;
}

.cont_cards {
	gap: 11px;
}

.cont_btns {
	grid-template-columns: repeat(2, 1fr);
}

.cont_ic-area {
	width: 42px;
	height: 42px;
	margin: 0 13px 0 0;
}

.cont_ic {
	width: 17px;
}

.cont_info-area {
	width: calc(100% - 42px - 13px);
}

.cont_info-ttl {
	font-size: 15px;
	margin: 0 0 4px;
}

.cont_info-txt {
	font-size: 14px;
}

}


/*TABLET GRANDE*/
@media (min-width: 768px) {

.cont_container {
	grid-gap: 48px;
}

.cont_map {
	height: 440px;
}

.cont_ic-area {
	width: 44px;
	height: 44px;
	margin: 0 14px 0 0;
}

.cont_ic {
	width: 18px;
}

.cont_info-area {
	width: calc(100% - 44px - 14px);
}

.cont_info-ttl {
	font-size: 16px;
	margin: 0 0 5px;
}

.cont_info-txt {
	font-size: 15px;
}

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {

.cont_container {
	grid-template-columns: 1.14fr 1fr;
	grid-gap: 56px;
}

.cont_map {
	height: 480px;
}

.cont_cards {
	gap: 12px;
}

.cont_txt-area {
	text-align: left;
}

.cont_ic-area {
	width: 46px;
	height: 46px;
	margin: 0 15px 0 0;
}

.cont_ic {
	width: 19px;
}

.cont_info-area {
	width: calc(100% - 46px - 15px);
}

.cont_info-ttl {
	font-size: 17px;
	margin: 0 0 5px;
}

.cont_info-txt {
	font-size: 16px;
}

a.cont_card:hover .cont_ic-area {
	background-color: var(--primary-50-color);
	fill: var(--white-color);
}

a.cont_card:hover .cont_info-ttl, a.cont_card:hover .cont_info-txt {
	color: var(--primary-50-color);
}

}


/*NOTEBOOK E DESKTOP PADRAO*/
@media (min-width: 1320px) {

.cont_container {
	grid-gap: 72px;
}

.cont_map {
	height: 560px;
}

.cont_ic-area {
	width: 48px;
	height: 48px;
	margin: 0 16px 0 0;
}

.cont_ic {
	width: 20px;
}

.cont_info-area {
	width: calc(100% - 48px - 16px);
}

.cont_info-ttl {
	font-size: 18px;
	margin: 0 0 6px;
}

.cont_info-txt {
	font-size: 17px;
}

}


/*DESKTOP GRANDE E RETINA*/
@media (min-width: 1560px) {

.cont_container {
	grid-gap: 96px;
}

.cont_map {
	height: 700px;
}

}


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

/*BASE CSS E CELULAR PADRAO*/
.footer {
    background-color: var(--neutral-50-color);
    padding: 18px 0;
}

.footer_container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

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

.footer_lgpd-list {
	display: flex;
	justify-content: center;
	gap: 12px;
}

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

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

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

.footer_copyright-title {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 4px;
}

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

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

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

.footer_author-logo {
	display: inline-block;
    width: 44px;
    margin: 0 0 -1px 5px;
}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
				
	.footer_lgpd-link:hover, .footer_author-link:hover {
		opacity: .64;
	}
	
}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	.footer {
        padding: 24px 0;
    }
	
	.footer_container {
		flex-direction: row;
		gap: 0;
	}
	
	.footer_lgpd-area {
		order: 1;
	}
	
	.footer_copyright-area {
		order: 2;
	}
	
	.footer_author-area {
		order: 3;
	}

	.footer_copyright-area {
		width: 56%;
	}
	
	.footer_copyright-title {
		font-size: 14px;
		margin: 0 0 6px;
	}

	.footer_lgpd-link, .footer_copyright-title, .footer_copyright-disclaimer, .footer_author-text {
		font-size: 13px;
	}	
	
	.footer_lgpd-list {
		display: block;
	}
	
	.footer_lgpd-link::before {
		width: 4px;
		height: 4px;
		margin: 0 10px 1px 0;
	}
	
    .footer_author-logo {
        width: 48px;
    }	
	
}


/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
    .footer {
        padding: 32px 0;
    }
	
	.footer_copyright-title {
		font-size: 16px;
		margin: 0 0 8px;
	}

	.footer_lgpd-link, .footer_copyright-title, .footer_copyright-disclaimer, .footer_author-text {
		font-size: 14px;
	}	
	
	.footer_lgpd-link::before {
		width: 5px;
		height: 5px;
		margin: 0 10px 1px 0;
	}
	
    .footer_author-logo {
        width: 60px;
    }
	
}


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

/*BASE CSS*/
.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-color);
    opacity: .8;
}

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

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

.modal_header {
    display: flex;
    background-color: var(--whatsapp-50-color);
    padding: 16px 5.5vw;
}

.modal_header-icon {
    width: 8.5vw;
    fill: var(--white-color);
    margin: 0 3vw 0 0;
}

.modal_header-title-area {
	width: calc(100% - 8.5vw - 3vw - 4vw - 3vw);
}

.modal_header-title {
    color: var(--white-color);
    font-size: 4.3vw;
    font-weight: 500;
	line-height: 1.16;
    margin: 0 0 4px;
}

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

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

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

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

.modal_header-description {
    color: var(--white-color);
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.16;
    opacity: .8;
}

.modal_body {
	background-color: var(--white-color);
	padding: 5.5vw;
}


/*CELULAR PEQUENO*/
@media (min-width: 450px) {
	
	.modal_holder {
		max-width: 420px;
	}	

	.modal_header {
		padding: 18px 24px;
	}

	.modal_header-icon {
		width: 36px;
		margin: 0 14px 0 0;
	}	

	.modal_header-title-area {
		width: calc(100% - 36px - 14px - 16px - 14px);
	}	

	.modal_header-title {
		font-size: 18px;
	}	

	.modal_header-description {
		font-size: 12.7px;
	}	

	.modal_close {
		width: 16px;
		height: 16px;
		margin: 0 0 0 14px;
	}	

	.modal_body {
		padding: 24px;
	}	
	
}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 768px) {
	
	.modal_holder {
		max-width: 480px;
	}

	.modal_header {
		padding: 20px 26px;
	}	

	.modal_body {
		padding: 26px;
	}	
	
}


/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
	.modal_holder {
		max-width: 580px;
	}		

	.modal_header {
		padding: 24px 36px;
	}	

	.modal_header-icon {
		width: 50px;
		margin: 0 18px 0 0;
	}	

	.modal_header-title-area {
		width: calc(100% - 50px - 18px - 22px - 18px);
	}	

	.modal_header-title {
		font-size: 23px;
		margin: 0 0 6px;
	}

	.modal_header-description {
		font-size: 16px;
	}	

	.modal_close {
		width: 22px;
		height: 22px;
		margin: 0 0 0 18px;
	}

	.modal_body {
		padding: 36px;
	}	
	
}


/*****************************************
************** LGPD POPUP ****************
*****************************************/

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

.warning-wrapper {
    background-color: var(--white-color);
    border: 1px solid var(--neutral-550-color);
    border-radius: 8px;
    padding: 12px;
}

.warning_box {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
}

.warning_text {
	font-size: 11px;
	line-height: 1.4;
}

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

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


/*TABLET*/
@media (min-width: 768px) {
	
	.warning_box {
		gap: 12px;
	}	

	.warning_text, .warning_button {
		font-size: 13px;
	}		
	
}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
	
	.warning_link:hover, .warning_button:hover {
	   opacity: .64;
	}	
		
}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	.warning_box {
		flex-direction: row;
		gap: 0;
		text-align: left;
	}	

	.warning-wrapper {
		padding: 10px 14px;
	}	

	.warning_text-area {
		width: 92%;
	}	

	.warning_button-area {
		width: 8%;
	}			
	
}


/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
	.warning_text, .warning_button {
		font-size: 14px;
	}	

}



/*****************************************
************** LGPD PAGE *****************
*****************************************/

.lgpd-header {
	background-color: var(--white-color);
	border-bottom: 1px solid var(--neutral-550-color);
	padding: 12px 0;
}

.lgpd-header_container {
	display: flex;
	justify-content: center;
}

.lgpd-header_link {
	display: block;
}

.lgpd_header-logo {
	width: 80px;
}

.lgpd {
	min-height: 100vh;
}

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

.lgpd_text-area h3 {
	margin: 32px 0 12px;
}

@media (min-width: 1024px) {

.lgpd-header {
	padding: 16px 0;
}	
	
.lgpd_header-logo {
	width: 120px;
}	
	
.lgpd_text-area h3 {
	margin: 40px 0 16px;
}	
	
}

/******************************************
**************** 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); }
}

