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

:root {

/*FONTE*/	
--theme-font: 'Poppins', sans-serif;
	
/*CORES DA MARCA*/
--primary-50-color: #E41815;	
--primary-100-color: #BD1513;

/*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(--theme-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: 1432px;
	}	
	
}



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

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


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

}


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


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


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



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

/*BASE CSS E CELULAR PADRAO*/
h2, .h2,
h3, .h3,
h4, .h4 {
	color: var(--neutral-50-color);
	font-weight: 600;
	line-height: 1.16;
	letter-spacing: -.01em;
}

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

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

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

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

.accent {
	color: var(--primary-50-color);
}

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

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

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

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

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

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

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

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

	p, ul, ol, li {
		font-size: 17px;
	}	
	
}



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


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


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


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

/* 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: 13px;
	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: linear-gradient(to right, var(--waze-50-color) 0%, var(--waze-50-color) 100%);
}

.btn.maps {
	background: linear-gradient(to right, var(--maps-50-color) 0%, var(--maps-50-color) 100%);
}

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

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

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

.btn-center_ttl {
    color: var(--neutral-50-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 16px;
}


/*TABLET*/
@media (min-width: 768px) {
	
	.btn-center, .btn-left {
		margin: 56px 0 0;
	}
	
	.btn-center_ttl {
		font-size: 19px;
		margin: 0 0 20px;
	}
	
}


/*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, .btn.maps:hover  {
		opacity: .64;
	}

	.btn-ic {
		width: 18px;
	}

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


/* 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: 17px;
		gap: 12px;
		padding: 14px 28px;
	}	

	.btn-ic {
		width: 22px;
	}

	.btn-center {
		margin: 104px 0 0;
	}
	
	.btn-center_ttl {
		font-size: 20px;
		margin: 0 0 24px;
	}

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



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

/*BASE CSS E CELULAR PADRAO*/
.form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
	gap: 8px;
}

.form_field-area {
	position: relative;
}	

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

.form_field-select::before {
    content: '';
    position: absolute;
    top: 13px;
    right: 14px;
    width: 5px;
    height: 5px;
    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: 12px;
	line-height: 1.4;
	border: 1px solid var(--neutral-500-color);
	border-radius: 4px;
	outline: none;
	padding: 15px 15px 15px 34px;
	transition: .4s;
}

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

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

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

.form_textarea {
	height: 96px;
}

.form_label {
    cursor: text;
    position: absolute;
    top: 12px;
    left: 25px;
    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: 12px;
}

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

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

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

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


/*CELULAR GRANDE E TABLETS PEQUENOS*/
@media (min-width: 640px) {
	
	.form, .form_field-group {
		gap: 8px;
	}
	
	.form_field {
		font-size: 12.5px;
		padding: 15px 15px 15px 40px;
	}
	
	.form_field-select::before {
		top: 12px;
		width: 6px;
		height: 6px;
	}
	
	.form_input, .form_select {
		height: 36px;
	}
	
	.form_select {
		padding: 0 15px 0 39px;
	}
	
	.form_icon {
		left: 14px;
		top: 12.5px;
		width: 13px;
	}
	
	.form_label {
		left: 31px;
	}
	
	.form_label, .form_select {
		font-size: 12.5px;
	}
	
}


/*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: 12px;
	}

	.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);
	}	
	
}



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


/*****************************************
**************** PLAY ********************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.play {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 56px;
	height: 56px;
	background-color: #FFFFFFE5;
	fill: var(--primary-50-color);
	border-radius: 50%;
	padding: 0 0 0 3px;
	margin: auto;
	z-index: 4;
}

.play::before, .play::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 90%;
	height: 90%;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	margin: auto;
	z-index: 3;
	animation: pulsePlay 2s linear infinite;
}

.play::after {
	animation-delay: 1s;
}

.play-ic {
	width: 24px;
}

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


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

	.play {
		width: 64px;
		height: 64px;
	}

	.play-ic {
		width: 28px;
	}

}


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

	.play {
		width: 64px;
		height: 64px;
	}

	.play-ic {
		width: 22px;
	}

}


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

	.play {
		width: 72px;
		height: 72px;
	}

	.play-ic {
		width: 28px;
	}

}


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

	.play {
		width: 80px;
		height: 80px;
		padding: 0 0 0 4px;
	}

	.play-ic {
		width: 34px;
	}

}



/*****************************************
************* SWIPER NAVS ****************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.swp_navs {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin: 12px 0 0;
}

.swp_nav-prev, .swp_nav-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	fill: var(--primary-50-color);
	border: 2px solid var(--primary-50-color);
	border-radius: 50%;
	transition: .5s ease;
}

.swp_nav-prev {
	padding: 0 2px 0 0;
}

.swp_nav-next {
	padding: 0 0 0 2px;
}

.swp_nav-ic {
	width: 12px;
}


/*TABLET*/
@media (min-width: 768px) {
	
	.swp_navs {
		margin: 16px 0 0;
	}

	.swp_nav-prev, .swp_nav-next {
		width: 38px;
		height: 38px;
	}

	.swp_nav-ic {
		width: 15px;
	}

}


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

	.swp_nav-prev, .swp_nav-next {
		width: 40px;
		height: 40px;
	}

	.swp_nav-prev:hover, .swp_nav-next:hover {
		background-color: var(--primary-50-color);
		fill: var(--white-color);
	}

	.swp_nav-ic {
		width: 16px;
	}

}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	.swp_navs {
		justify-content: flex-start;
		margin: 0;
	}

	.swp_nav-prev, .swp_nav-next {
		width: 42px;
		height: 42px;
	}

	.swp_nav-ic {
		width: 17px;
	}

}


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

	.swp_nav-prev, .swp_nav-next {
		width: 44px;
		height: 44px;
	}

	.swp_nav-ic {
		width: 18px;
	}

}



/*****************************************
************* SWIPER NAVS 2 **************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.swp_navs-box-2 {
	position: relative;
}

.swp_nav-prev-2, .swp_nav-next-2 {
	display: none;
	position: absolute;
	top: 50%;
	fill: var(--primary-50-color);
	transform: translateY(-50%);
	transition: .5s ease;
}

.swp_nav-prev-2 {
	left: -24px;
}

.swp_nav-next-2 {
	right: -24px;
}

.swp_nav-ic-2 {
	width: 16px;
}


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

	.swp_nav-prev-2, .swp_nav-next-2 {
		display: block;
	}

	.swp_nav-prev-2:hover, .swp_nav-next-2:hover {
		opacity: .4;
	}

	.swp_nav-prev-2 {
		left: -28px;
	}

	.swp_nav-next-2 {
		right: -28px;
	}

	.swp_nav-ic-2 {
		width: 18px;
	}

}


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

	.swp_nav-prev-2 {
		left: -30px;
	}

	.swp_nav-next-2 {
		right: -30px;
	}

	.swp_nav-ic-2 {
		width: 19px;
	}

}


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

	.swp_nav-prev-2 {
		left: -32px;
	}

	.swp_nav-next-2 {
		right: -32px;
	}

	.swp_nav-ic-2 {
		width: 20px;
	}

}



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

.nav {
	width: 100%;
	background-color: var(--white-color);
	padding: 12px 0;
	z-index: 998;
	transition: .5s ease;
}


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

.nav_logo {
	width: 96px;
}

.nav_btn {
	height: 33.5px;
	font-size: 10.5px;
	fill: currentColor;
	padding: 9px 16px;
}

.nav_btn-ic {
	width: 11px;
}


/*TABLET*/
@media (min-width: 768px) {
	
	.nav {
		padding: 16px 0;
	}	
	
	.nav_logo {
		width: 104px;
	}
	
	.nav_btn {
		height: 39.5px;
		font-size: 12px;
		padding: 11px 17px;
	}	
	
	.nav_btn-ic {
		width: 14px;
	}
	
}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	.nav_logo {
		width: 128px;
	}
	
	.nav_btn {
		height: auto;
	}	
	
}


/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
	.nav {
		padding: 20px 0;
	}	
	
	.nav_logo {
		width: 152px;
	}
	
	.nav_btn {
		font-size: 14px;
		padding: 12px 22px;
	}
	
	.nav_btn-ic {
		width: 17px;
	}
	
}


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

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

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

.hero_bg-area::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, var(--neutral-100-color) 0%, transparent 110%);
	opacity: .96;
	z-index: 2;
}

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

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

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

.hero_txt-area br {
	display: none;
}

.hero_tag {
	width: fit-content;
    background-color: var(--primary-50-color);
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 2.5vw;
	letter-spacing: .05em;
	border-radius: 99px;
    padding: 6px 12px;
	margin: 0 auto;
}

.hero_ttl {
    color: var(--white-color);
	text-wrap: balance;
    font-size: 5vw;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.025em;
	text-shadow: 0 0 12px #00000040;
    margin: 8px 0;
}

.hero_txt {
	color: var(--white-color);
	text-wrap: balance;
	font-size: 3.2vw;
	font-weight: 500;
	line-height: 1.44;
	text-shadow: 0 0 12px #00000040;
}

.hero_btn {
	margin: 24px 0 0;
}

.hero_form-area {
	display: none;
}

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

	.hero_tag {
		font-size: 11px;
	}

	.hero_ttl {
		font-size: 22px;
	}

	.hero_txt {
		font-size: 13px;
	}

}


/*TABLET PEQUENO*/
@media (min-width: 640px) {
	
	.hero_container {
		height: 496px;
	}	

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

	.hero_tag {
		font-size: 12.5px;
	}

	.hero_ttl {
		font-size: 28px;
		margin: 4px 0 8px;
	}

	.hero_txt {
		font-size: 14px;
	}

}


/*TABLET GRANDE*/
@media (min-width: 768px) {
	
	.hero_container {
		align-items: center;
	}	

	.hero_tag {
		font-size: 12px;
	}

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

	.hero_txt {
		font-size: 15.5px;
	}

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
	
	 .hero_bg-area::before {
        background: linear-gradient(to right, var(--neutral-100-color) 8%, transparent 100%);
        opacity: .88;
    }

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

	.hero_txt-area br {
		display: block;
	}	
	
	.hero_tag {
		margin: 0;
	}

	.hero_btn {
		display: none;
	}

	.hero_form-area {
		display: block;
		width: 35%;
		overflow: hidden;
		box-shadow: 0 0 24px #00000032;
		border-radius: 12px;
	}

	.hero_form-head {
		display: flex;
		align-items: center;
		background-color: var(--whatsapp-50-color);
		padding: 14px 20px;
	}

	.hero_form-head-ic {
		width: 34px;
		fill: var(--white-color);
		margin: 0 10px 0 0;
	}

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

	.hero_form-ttl {
		color: var(--white-color);
		font-size: 15px;
		font-weight: 600;
		letter-spacing: .016em;
		line-height: 1.24;
		margin: 0 0 3px;
	}

	.hero_form-txt {
		color: var(--white-color);
		font-size: 10.2px;
		line-height: 1.32;
	}

	.hero_form-body {
		background-color: var(--white-color);
		padding: 20px;
	}

}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	.hero_form-area {
		width: 28.5%;
	}
	
	.hero_form-head-ic {
		width: 38px;
		margin: 0 12px 0 0;
	}

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

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

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


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

	.hero_container {
		height: 608px;
	}

	.hero_tag {
		font-size: 14px;
	}

	.hero_ttl {
		font-size: 48px;
		margin: 8px 0 24px;
	}

	.hero_txt {
		font-size: 19.6px;
	}

	.hero_form-area {
		width: 29.2%;
	}

	.hero_form-head {
		padding: 18px 24px;
	}

	.hero_form-head-ic {
		width: 44px;
		margin: 0 12px 0 0;
	}

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

	.hero_form-ttl {
		font-size: 18px;
		margin: 0 0 3px;
	}

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

	.hero_form-body {
		padding: 24px;
	}

}



/*****************************************
************** BENEFITS ******************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.bnf {
    padding: 32px 0 0;
}

.bnf_container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

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

.bnf_ic {
    fill: var(--primary-50-color);
    width: 24px;
    margin: 2px 10px 0 0;
}

.bnf_txt-area {
    width: calc(100% - 24px - 10px);
}

.bnf_ttl {
	color: var(--neutral-50-color);
	font-size: 12px;
	font-weight: 600;
    line-height: 1.36;
}

.bnf_txt {
    font-size: 12px;
    line-height: 1.36;
}

.bnf_div {
    display: none;
}


/*CELULAR GRANDE E TABLETS PEQUENOS*/
@media (min-width: 640px) {

	.bnf {
		padding: 40px 0 0;
	}

	.bnf_container {
		gap: 24px;
	}

	.bnf_box {
		width: 254px;
		margin: 0 auto;
	}	

	.bnf_ic {
		width: 32px;
		margin: 0 12px 0 0;
	}

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

	.bnf_txt br {
		display: none;
	}	
	
}


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

	.bnf {
		padding: 48px 0 0;
	}

	.bnf_container {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 16px;
	}

	.bnf_box {
		width: unset;
		margin: 0;
	}

}


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

	.bnf_txt {
		font-size: 14px;
	}	
	
	.bnf_div {
		display: block;
		background-color: var(--neutral-550-color);
		width: 1.5px;
		border: 0;
		margin: 0;
	}
	
}


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

	.bnf {
		padding: 56px 0 0;
	}

	.bnf_container {
		gap: 32px;
	}	

	.bnf_ic {
		width: 38px;
		margin: 0 14px 0 0;
	}

	.bnf_txt-area {
		width: calc(100% - 38px - 14px);
	}

	.bnf_ttl {
		font-size: 16px;
	}	

	.bnf_txt {
		font-size: 15px;
	}	

}



/*****************************************
**************** CARDS *******************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/

.cards_grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.cards_box {
	overflow: hidden;
	border-radius: 16px;
}

.cards_txt-area {
    background-color: var(--neutral-600-color);
    text-align: center;
    border-top: 3px solid var(--primary-50-color);
    padding: 16px 20px 20px;
}

.cards_ic-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--primary-50-color);
    fill: var(--white-color);
    border-radius: 50%;
    margin: -40px auto 14px;
    z-index: 2;
}

.cards_ic {
	width: 20px;
}

.cards_ttl {
	font-size: 18px;
}

.cards_txt {
	line-height: 1.44;
	margin: 4px 0 16px;
}

.cards_cta {
	position: relative;
	color: var(--primary-50-color);
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	transition: .5s ease;
}

.cards_cta::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	transform-origin: left;
	transition: .5s ease;
}


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

	.cards_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 48px;
	}
	
	.cards_txt-area {
		padding: 24px 20px 28px;
	}
	
	.cards_ic-area {
        width: 48px;
        height: 48px;
        margin: -48px auto 16px;
    }

	.cards_ic {
		width: 22px;
	}

}


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

	.cards_grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}
	
	.cards_ttl {
		font-size: 18px;
	}
	
	.cards_cta:hover {
		color: var(--primary-100-color);
	}

	.cards_cta:hover::before {
		transform: scaleX(0);
	}

}


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

	.cards_grid {
		gap: 40px;
	}
	
	.cards_ttl {
		font-size: 19px;
	}

}


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

	.cards_grid {
		gap: 56px;
	}
	
	.cards_txt-area {
		padding: 32px 24px 40px;
	}
	
	.cards_ic-area {
		width: 56px;
		height: 56px;
		margin: -56px auto 24px;
	}

	.cards_ic {
		width: 24px;
	}

	.cards_ttl {
		font-size: 21px;
	}
	
	.cards_txt {
		margin: 8px 0 24px;
	}
	
	.cards_cta {
		font-size: 15px;
	}

}



/*****************************************
***************** FOR ********************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.for {
	background-color: var(--neutral-100-color);
	padding: 56px 0 40px;
}

.for_div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: fit-content;
	height: 32px;
	overflow: hidden;
	margin: 0 auto;
}

.for_div-shape {
	width: auto;
	height: 100%;
}

.for_div-base {
	fill: var(--white-color);
}

.for_div-arrow {
	fill: var(--primary-50-color);
}

.for h2, .for h3 {
	color: var(--white-color);
}

.for_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.for_box {
	text-align: center;
}

.for_ic-area {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white-color);
	width: 56px;
	height: 56px;
	fill: var(--primary-50-color);
	border-radius: 50%;
	margin: 0 auto 12px;
}

.for_ic {
	width: 24px;
}

.for_ttl {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
}


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

	.for {
		padding: 72px 0 48px;
	}
	
	.for_div {
		height: 40px;
	}

	.for_ic-area {
		width: 64px;
		height: 64px;
		margin: 0 auto 22px;
	}

	.for_ic {
		width: 28px;
	}

	.for_ttl {
		font-size: 17px;
	}

}


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

	.for {
		padding: 80px 0 56px;
	}

	.for_grid {
		grid-template-columns: repeat(6, 1fr);
		gap: 24px;
	}

	.for_ic-area {
		width: 72px;
		height: 72px;
	}

	.for_ic {
		width: 32px;
	}

}


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

	.for {
		padding: 88px 0 64px;
	}

	.for_grid {
		gap: 28px;
	}

	.for_ic-area {
		width: 76px;
		height: 76px;
		margin: 0 auto 24px;
	}

	.for_ic {
		width: 34px;
	}

}


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

	.for {
		padding: 104px 0 72px;
	}
	
	.for_div {
		height: 48px;
	}

	.for_grid {
		gap: 32px;
	}

	.for_ic-area {
		width: 80px;
		height: 80px;
	}

	.for_ic {
		width: 36px;
	}

	.for_ttl {
		font-size: 19px;
	}

}



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

/*BASE CSS E CELULAR PADRAO*/
.gal_swiper, .gal_swiper .swiper-wrapper {
	overflow: visible;
}

.gal_swiper .swiper-slide {
	pointer-events: none;
	opacity: 0.4;
	transition: opacity 0.3s;
}

.gal_swiper .swiper-slide-active,
.gal_swiper .swiper-slide-next {
	pointer-events: all;
	opacity: 1;
}

.gal_link {
	position: relative;
	display: block;
	overflow: hidden;
	border: 1px solid var(--neutral-550-color);
	border-radius: 16px;
}

.gal_swiper .swiper-slide-active .gal_link::before,
.gal_swiper .swiper-slide-next .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_swiper .swiper-slide-active .gal_link::after,
.gal_swiper .swiper-slide-next .gal_link::after {
	content: url("../svg/zoom.svg");
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 48px;
	height: 48px;
	transform: scale(0);
	opacity: 0;
	margin: auto;
	z-index: 3;
	transition: .5s ease;
}


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

	.gal_swiper .swiper-slide-active .gal_link::after,
	.gal_swiper .swiper-slide-next .gal_link::after {
		width: 52px;
		height: 52px;
	}

}


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

	.gal_swiper .swiper-slide-active .gal_link:hover::before,
	.gal_swiper .swiper-slide-next .gal_link:hover::before {
		opacity: .64;
	}

	.gal_swiper .swiper-slide-active .gal_link:hover::after,
	.gal_swiper .swiper-slide-next .gal_link:hover::after {
		transform: scale(1);
		opacity: 1;
	}

	.gal_swiper .swiper-slide-active .gal_link::after,
	.gal_swiper .swiper-slide-next .gal_link::after {
		width: 56px;
		height: 56px;
	}

}


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

	.gal_swiper .swiper-slide-active .gal_link::after,
	.gal_swiper .swiper-slide-next .gal_link::after {
		width: 60px;
		height: 60px;
	}

}


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

	.gal_swiper .swiper-slide-active .gal_link::after,
	.gal_swiper .swiper-slide-next .gal_link::after {
		width: 64px;
		height: 64px;
	}

}



/*****************************************
**************** ICONS *******************
*****************************************/

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

.icons_grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 24px;
}

.icons_box {
	background-color: var(--white-color);
	border-radius: 8px;
	padding: 24px;
}

.icons_ic-area {
	fill: var(--primary-50-color);
}

.icons_ic {
	width: 28px;
}

.icons_ttl {
	font-size: 18px;
	margin: 16px 0 8px;
}


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

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

	.icons_box {
		padding: 28px;
	}

	.icons_ic {
		width: 32px;
	}

	.icons_ttl {
		margin: 20px 0 8px;
	}

}


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

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

	.icons_ttl {
		font-size: 18px;
	}

}


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

	.icons_ic {
		width: 36px;
	}

	.icons_ttl {
		margin: 22px 0 8px;
	}

}


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

	.icons_grid {
		grid-gap: 32px;
	}

	.icons_box {
		padding: 32px;
	}

	.icons_ic {
		width: 40px;
	}

	.icons_ttl {
		font-size: 20px;
		margin: 24px 0 8px;
	}

}



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

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

.about_ttl-area {
	order: 1;
}

.about_img-area {
	order: 2;
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 16px;
	width: 96%;
	margin: 0 auto;
}

.about_img-area::before {
	content: '';
	position: absolute;
	top: -4%;
	left: -3.5%;
	width: 48px;
	height: 48px;
	border: 8px solid var(--primary-50-color);
	border-radius: 50%;
	z-index: -1;
}

.about_img-area::after {
	content: '';
	position: absolute;
	bottom: 3%;
	right: 3%;
	width: 64px;
	height: 108px;
	background-image: radial-gradient(circle, #00000010 50%, transparent 51%), radial-gradient(circle, #00000010 50%, transparent 51%), radial-gradient(circle, #00000010 50%, transparent 51%), radial-gradient(circle, #00000010 50%, transparent 51%), radial-gradient(circle, #00000010 50%, transparent 51%), radial-gradient(circle, #00000010 50%, transparent 51%), radial-gradient(circle, #00000010 50%, transparent 51%), radial-gradient(circle, #00000010 50%, transparent 51%);
	background-size: 6px 11px;
	background-position: 0 0, 14px 0, 28px 0, 42px 0, 56px 0, 70px 0, 84px 0, 98px 0;
	background-repeat: repeat-y;
	transform: rotate(90deg);
	z-index: -1;
}

.about_img {
	border-radius: 16px;
}

.about_img:nth-child(1) {
	position: relative;
	display: block;
	grid-area: 1 / 1 / 2 / 3;
	width: 88%;
	overflow: hidden;
	border-radius: 16px;
}

.about_img:nth-child(1)::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;
}

.about_img:nth-child(1):hover::before {
	opacity: .4;
}

.about_img:nth-child(2) {
	position: relative;
	top: -10%;
	right: -9.5%;
	grid-area: 2 / 1 / 3 / 2;
	transform: scale(.8);
}

.about_img:nth-child(3) {
	grid-area: 2 / 2 / 3 / 3;
}

.about_txt-area {
	order: 3;
}

.about_txt:first-of-type {
	color: var(--neutral-50-color);
	font-weight: 600;
	border-left: 3px solid var(--primary-50-color);
	padding: 0 0 0 16px;
}

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


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

	.about_img-area {
		width: 80%;
		grid-gap: 20px;
	}

	.about_img-area::before {
		left: -4.5%;
		width: 64px;
		height: 64px;
		border-width: 10px;
	}

	.about_img-area::after {
		right: 2%;
		width: 80px;
		height: 140px;
	}

}


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

	.about_container {
		grid-template-columns: 1fr .8fr;
		grid-gap: 80px;
	}

	.about_ttl-area {
		order: 0;
	}

	.about_img-area {
		order: 0;
		width: 100%;
		grid-gap: 20px;
		margin: 0;
	}

	.about_img-area::before {
		left: -5%;
		width: 72px;
		height: 72px;
		border-width: 12px;
	}

	.about_img-area::after {
		right: 0;
		width: 96px;
		height: 168px;
	}
	
	.about_txt-area {
		order: 0;
	}

}


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

	.about_container {
		grid-gap: 96px;
	}

	.about_img-area {
		grid-gap: 22px;
	}

	.about_img-area::before {
		width: 80px;
		height: 80px;
		border-width: 13px;
	}

	.about_img-area::after {
		width: 104px;
		height: 182px;
	}

}


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

	.about_container {
		grid-gap: 104px;
	}

	.about_img-area {
		grid-gap: 24px;
	}

	.about_img-area::before {
		left: -5.25%;
		width: 88px;
		height: 88px;
		border-width: 14px;
	}

	.about_img-area::after {
		width: 112px;
		height: 196px;
	}

}



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

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

.testi_box {
	background-color: var(--white-color);
	border-radius: 8px;
	padding: 24px;
}

.testi_quotes {
	fill: var(--primary-50-color);
	width: 36px;
	margin: 0 0 24px;
}

.testi_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testi_footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 20px 0 0;
}

.testi_footer-id {
	display: flex;
	align-items: center;
}

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

.testi_id-txt {
	width: calc(100% - 48px - 12px);
	font-size: 14px;
}

.testi_id-name {
    display: block;
    color: var(--neutral-50-color);
    font-weight: 500;
    margin: -4px 0 6px;
}

.testi_id-role {
	display: block;
	font-size: 88%;
	letter-spacing: .08em;
}

.testi_rating {
	fill: var(--primary-50-color);
	width: 56px;
}


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

	.testi_box {
		padding: 28px;
	}

	.testi_quotes {
		width: 40px;
		margin: 0 0 28px;
	}

	.testi_footer {
		margin: 22px 0 0;
	}

	.testi_img {
		width: 56px;
		height: 56px;
		margin: 0 14px 0 0;
	}

	.testi_id-txt {
		width: calc(100% - 56px - 14px);
	}

	.testi_rating {
		width: 64px;
	}

}


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

	.testi_box {
		padding: 32px;
	}

	.testi_quotes {
		width: 44px;
		margin: 0 0 32px;
	}

	.testi_footer {
		margin: 24px 0 0;
	}

	.testi_img {
		width: 60px;
		height: 60px;
		margin: 0 16px 0 0;
	}

	.testi_id-txt {
		width: calc(100% - 60px - 16px);
		font-size: 16px;
	}

	.testi_rating {
		width: 70px;
	}

}


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

	.testi_quotes {
		width: 46px;
		margin: 0 0 36px;
	}

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

	.testi_id-txt {
		width: calc(100% - 62px - 16px);
	}

	.testi_rating {
		width: 73px;
	}

}


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

	.testi_box {
		padding: 36px;
	}

	.testi_quotes {
		width: 48px;
		margin: 0 0 40px;
	}

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

	.testi_id-txt {
		width: calc(100% - 64px - 16px);
	}

	.testi_rating {
		width: 76px;
	}

}



/*****************************************
**************** LOGOS *******************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.logos_swiper .swiper-wrapper {
	align-items: center;
	padding: 4px 0;
}

.logos_area {
	margin: 40px 0 0;
}

.logos_img {
	width: auto;
	max-width: 100px;
	max-height: 60px;
	margin: 0 auto;
}

.logos_img.adj_sm-1 {transform: scale(.98);}
.logos_img.adj_sm-2 {transform: scale(.96);}
.logos_img.adj_sm-3 {transform: scale(.94);}
.logos_img.adj_sm-4 {transform: scale(.92);}
.logos_img.adj_sm-6 {transform: scale(.90);}
.logos_img.adj_sm-7 {transform: scale(.88);}
.logos_img.adj_sm-8 {transform: scale(.84);}

.logos_img.adj_lg-1 {transform: scale(1.02);}
.logos_img.adj_lg-2 {transform: scale(1.04);}
.logos_img.adj_lg-3 {transform: scale(1.06);}
.logos_img.adj_lg-4 {transform: scale(1.08);}
.logos_img.adj_lg-6 {transform: scale(1.12);}
.logos_img.adj_lg-7 {transform: scale(1.14);}
.logos_img.adj_lg-8 {transform: scale(1.16);}


/*TABLET*/
@media (min-width: 768px) {
	
	.logos_area {
		margin: 48px 0 0;
	}

	.logos_img {
		max-width: 112px;
		max-height: 68px;
	}

}


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

	.logos_img {
		max-width: 120px;
		max-height: 72px;
	}

}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	.logos_area {
		margin: 56px 0 0;
	}

	.logos_img {
		max-width: 126px;
		max-height: 76px;
	}

}


/* DESKTOP GRANDE E RETINA */
@media (min-width: 1560px) {
	
	.logos_area {
		margin: 64px 0 0;
	}

	.logos_img {
		max-width: 132px;
		max-height: 80px;
	}

}



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

/*BASE CSS E CELULAR PADRAO*/
.cont_map-area {
	display: none;
}

.cont_map-origin {
	display: none;
}

.cont_map {
	display: block;
	width: 100%;
	height: 300px;
	margin: 0 0 48px;
}

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

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

.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_btns {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 8px;
}

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


/*TABLET GRANDE*/
@media (min-width: 768px) {
	
.cont_map {
	margin: 0 0 56px;
}		

.cont_container {
	grid-gap: 48px;
}

.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;
}
	
.cont_btns {
	grid-template-columns: 1fr 1fr;
}	

}


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
	
.cont_map-area {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	right: 0;
	width: 48%;
	height: 100%;
}

.cont_map-origin {
	display: block;
	width: 100%;
	height: 100%;
}

.cont_map {
	height: 100%;
	margin: 0;
}	

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

.cont_cards {
	gap: 24px;
}

.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_cards {
	gap: 32px;
}	

.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_cards {
	gap: 40px;
}		

}


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

/*BASE CSS E CELULAR PADRAO*/
.footer {
    background-color: var(--neutral-100-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-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 {
	color: var(--white-color);
    font-size: 13px;
    font-weight: 600;
    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-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: 15px;
		margin: 0 0 8px;
	}

	.footer_lgpd-link, .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: 8vw;
    fill: var(--white-color);
    margin: 4px 3vw 0 0;
}

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

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

.modal_header-description {
    color: var(--white-color);
    font-size: 2.5vw;
    font-weight: 400;
    line-height: 1.24;
}

.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_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: 4px 14px 0 0;
	}	

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

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

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

	.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: 4px 18px 0 0;
	}	

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

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

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

	.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: 12px;
	}		
	
}


/*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: 13px;
	}	

}



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

