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

:root {

/*FONTE*/	
--theme-font: 'Lato', sans-serif;
	
/*CORES DA MARCA*/
--primary-50-color: #020F1B;	
--primary-100-color: #061B30;
--primary-150-color: #0147AD;
--primary-200-color: #3A80CC;
--primary-250-color: #DEE5F4;
--primary-300-color: #F1F8FF;	

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



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



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

/*BASE CSS E CELULAR PADRAO*/
h2, .h2,
h3, .h3,
h4, .h4 {
	text-transform: uppercase;
	color: var(--primary-100-color);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: -.01em;
}

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

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

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

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


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

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

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

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


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

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

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

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



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

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

.ttl-line p, .ttl-center p, .ttl-left p {
    margin: 12px 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 72px;
	}	
	
}


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


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



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

/*BASE CSS E CELULAR PADRAO*/
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	overflow: hidden;
	background: linear-gradient(45deg, var(--primary-150-color) 8%, var(--primary-200-color) 128%);
	color: var(--white-color);
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .05em;
	line-height: normal;
	border: 1px solid var(--primary-150-color);
	border-radius: 8px;
	padding: 12px 24px;
	transition: .6s ease;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    transform-origin: left;
    transform: scaleX(0);
    transition: .5s ease;
}

.btn-txt, .btn-arrow {
	position: relative;
	z-index: 9;
	transition: .6s ease;
}

.btn-txt-duplicate {
	color: var(--primary-150-color);
}

.btn-arrow {
	fill: currentColor;
	width: 10px;
    transform: rotate(-45deg);
}

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

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

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


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


/*NOTEBOOK PEQUENO*/
@media (min-width: 1024px) {
	
	.btn {
		font-size: 15px;
	}	
	
	.btn:hover {
		color: var(--primary-150-color);
	}
	
	.btn:hover::before {
		transform: scaleX(1);
	}
	
	.btn:hover .btn-arrow {
		transform: rotate(0);
		fill: var(--primary-150-color);
	}
	
	.btn-arrow {
		width: 12px;
	}

	.btn-ic {
		width: 18px;
	}

	.btn-center {
		margin: 80px 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 26px;
    }
	
	.btn-arrow {
		width: 15px;
	}

	.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(--primary-250-color);
    border-radius: 4px;
    outline: none;
    padding: 15px 15px 15px 40px;
    transition: .4s;
}

.form_field:focus {
	border-color: var(--primary-150-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(--primary-150-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(--primary-150-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: 12px;
	}

	.form_field {
		font-size: 15px;
		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: 15px;
		width: 14px;
	}	

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

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

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



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

/*BASE CSS E CELULAR PADRAO*/
.nav {
	position: absolute;
	top: 0;
	background-color: var(--white-color);
	width: 100%;
	border-bottom: 1px solid var(--primary-250-color);
	padding: 12px 0;
	z-index: 998;
}

.nav.fixed {
	position: fixed;
	transform: translateY(-100%);
	animation: navFix .8s both; 
}

@keyframes navFix {
	to {
		transform: translateY(0);
	}
}

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

.nav_logo-link {
	display: block;
	width: 96px;
}

.menu-open {
	overflow: hidden;
}

.nav_menu {
	position: fixed;
	top: 59.5px;
	left: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	background-color: var(--white-color);
	transform-origin: top;
	transform: scaleY(0);
	padding: 0;
	margin: 0;
	transition: .5s ease;
}

.menu-open .nav_menu {
	transform: scaleY(1);
}

.nav_menu-item:not(:last-child) {
	border-bottom: 1px solid var(--neutral-550-color);
}

.nav_menu-link, .nav_btn, .nav_dropdown-link {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .06em;
	transition: .6s ease;
}

.nav_menu-link, .nav_dropdown-link {
	display: block;
	position: relative;
	color: var(--primary-100-color);
	max-width: 640px;
	font-size: 11px;
	padding: 10px 15px;
	margin: 0 auto;
}

.nav_menu-link.active,
.nav_menu-link.active:hover {
	color: var(--primary-150-color);
}

.nav_menu-item--dropdown {
	width: 100%;
}

.nav_menu-primary {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 640px;
    gap: 4px;
    margin: 0 auto;
}

.nav_menu-item--dropdown .nav_menu-link {
    flex: 1;
}

.nav_dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	background: transparent;
	border: none;
	color: var(--primary-150-color);
	transition: transform .3s ease;
}

.nav_dropdown-toggle:focus-visible {
	outline: 2px solid var(--primary-200-color);
	outline-offset: 2px;
}

.nav_dropdown-caret {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
	padding: 0 0 2px;
    transition: transform .4s ease;
}

.nav_menu-item--dropdown.is-open .nav_dropdown-caret {
	transform: rotate(135deg);
}

.nav_dropdown {
	width: 100%;
	background-color: var(--neutral-600-color);
	overflow: scroll;
	overflow-x: clip;
	max-height: 0;
	opacity: 0;
	transition: max-height .35s ease, opacity .25s ease, padding .25s ease;
	padding: 0;
	border-top: none;
}

.nav_dropdown::-webkit-scrollbar {
  width: 4px;
}

.nav_dropdown::-webkit-scrollbar-track {
  background: var(--primary-250-color);
}

.nav_dropdown::-webkit-scrollbar-thumb {
  background-color: var(--primary-150-color);
  border-radius: 4px;
}

.nav_dropdown.is-open {
	opacity: 1;
	border-top: 1px solid var(--neutral-550-color);
}

.nav_dropdown-link {
	white-space: nowrap;
}

.nav_dropdown-link:hover {
	color: var(--primary-150-color);
}

.nav_dropdown-item + .nav_dropdown-item {
	border-top: 1px solid var(--neutral-550-color);
}

.nav_dropdown-item.active .nav_dropdown-link,
.nav_dropdown-link.active {
	color: var(--primary-150-color);
	font-weight: 700;
}

.nav_btn {
	display: none;
	color: var(--primary-150-color);
	font-size: 11px;
	border: 1.5px solid var(--primary-150-color);
	border-radius: 6px;
	padding: 8px 12px;
}

.nav_toggler {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 26px;
	height: 16px;
}

.nav_toggler span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--primary-150-color);
	transition: .5s ease;
}

.menu-open .nav_toggler span:nth-child(1) {
	transform: translate(1px, 8px) rotate(45deg);
}

.menu-open .nav_toggler span:nth-child(2) {
	opacity: 0;
}

.menu-open .nav_toggler span:nth-child(3) {
	transform: translate(0px, -6px) rotate(-45deg);
}


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

	.nav {
		padding: 14px 0;
	}

	.nav_logo-link {
		width: 108px;
	}

	.nav_menu {
		position: static;
		flex-direction: row;
		gap: 20px;
		width: auto;
		transform: none;
		padding: 0;
		margin: 0 0 0 8px;
	}

	.nav_menu-item:not(:last-child) {
		border-bottom: none;
	}

	.nav_menu-link {
		max-width: none;
		font-size: 11.5px;
		padding: 0;
		margin: 0;
	}

	.nav_menu-primary {
		display: block;
		width: auto;
	}

	.nav_dropdown-toggle {
		display: none;
	}

    .nav_dropdown {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        width: fit-content;
		overflow: hidden;
        background: var(--white-color);
        border: 1px solid var(--neutral-550-color);
		border-radius: 4px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: .5s ease all .124s;
        max-height: none;
    }

	.nav_dropdown.is-open {
		padding: 14px 0;
		border-top: none;
	}

	.nav_menu-item--dropdown {
		position: relative;
		width: auto;
	}

	.nav_menu-item--dropdown:hover .nav_dropdown,
	.nav_menu-item--dropdown:focus-within .nav_dropdown {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
	
	.nav_dropdown-list {
		height: 240px;
		overflow-x: hidden;
		overflow-y: scroll;
	}

	.nav_dropdown-list::-webkit-scrollbar {
	  width: 4px;
	}

	.nav_dropdown-list::-webkit-scrollbar-track {
	  background: var(--primary-250-color);
	}

	.nav_dropdown-list::-webkit-scrollbar-thumb {
	  background-color: var(--primary-150-color);
	  border-radius: 4px;
	}
	
	.nav_dropdown-item + .nav_dropdown-item {
		border-top: none;
	}

	.nav_dropdown-link {
		text-transform: none;
		font-size: 13px;
		font-weight: 600;
		letter-spacing: 0;
		padding: 7px 14px;
	}

	.nav_dropdown-link:hover {
		background-color: var(--neutral-600-color);
	}

	.nav_dropdown-item.active .nav_dropdown-link,
	.nav_dropdown-link.active {
		background-color: var(--neutral-600-color);
	}

	.nav_toggler {
		display: none;
	}

}


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

	.nav_logo-link {
		width: 116px;
	}

	.nav_menu {
		gap: 24px;
		margin: 0;
	}

	.nav_menu-link:hover {
		color: var(--primary-150-color);
	}

	.nav_menu-link::before {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0px;
		width: 100%;
		height: 1.5px;
		background-color: var(--primary-150-color);
		transform: scaleX(0);
		transition: .5s ease;
	}

	.nav_menu-link.active::before,
	.nav_menu-link.active:hover::before {
		transform: scaleX(1);
	}

	.nav_menu-link:hover::before {
		transform: scaleX(1);
	}

	.nav_btn {
		display: block;
		font-size: 10.5px;
	}

	.nav_btn:hover {
		background-color: var(--primary-150-color);
		color: var(--white-color);
	}

}


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

	.nav {
		padding: 16px 0;
	}

	.nav_logo-link {
		width: 128px;
	}

	.nav_menu {
		gap: 32px;
		margin: 0 0 0 8px;
	}

	.nav_menu-link {
		font-size: 12.5px;
	}

	.nav_btn {
		font-size: 11.5px;
		padding: 10px 15px;
	}

}


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

	.nav {
		padding: 20px 0;
	}

	.nav_logo-link {
		width: 148px;
	}

	.nav_menu {
		gap: 40px;
		margin: 0 0 0 12px;
	}

	.nav_menu-link {
		font-size: 14px;
	}

	.nav_btn {
		font-size: 13.5px;
		padding: 12px 16px;
	}

}



/*****************************************
************** LANG SELECT ***************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.lang-select {
    display: flex;
    justify-content: flex-end;
    position: relative;
    min-width: 132px;
    margin: 0 20px 0 auto;
}

.lang-current {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--white-color);
	color: var(--neutral-100-color);
	justify-content: space-between;
	border: 1px solid var(--neutral-500-color);
	border-radius: 6px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	padding: 9px 7px;
	transition: .24s ease;
}

.lang-current-inner {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.lang-label {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.lang-label-name {
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	color: var(--primary-100-color);
}

.lang-dropdown .lang-label-name {
	font-size: 11px;
}

.lang-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 6px;
}

.lang-arrow svg {
	width: 12px;
	height: 12px;
	stroke: var(--neutral-250-color);
	transition: 0.24s ease;
}

.lang-select.is-open .lang-arrow svg {
	transform: rotate(180deg);
}

.lang-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	width: 100%;
	background: var(--white-color);
	border-radius: 8px;
	border: 1px solid var(--neutral-500-color);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 6px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	opacity: 0;
	transform: translateY(-4px);
	pointer-events: none;
	transition: .24s ease;
	z-index: 10;
}

.lang-select.is-open .lang-dropdown {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.lang-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	width: 100%;
	border: none;
	background: transparent;
	border-radius: 8px;
	padding: 6px 8px;
	cursor: pointer;
	font-family: inherit;
	font-size: 12px;
	color: var(--neutral-100-color);
	transition: .2s ease;
}

.lang-option-main {
	display: flex;
	align-items: center;
	gap: 6px;
}

.lang-option-sub {
	font-size: 10px;
	color: var(--neutral-200-color);
}

.lang-option.is-active {
	cursor: default;
	background: var(--primary-250-color);
}

.lang-option.is-active .lang-label-name {
	color: var(--primary-150-color);
}

.lang-flag {
	width: 18px;
	border-radius: 4px;
	overflow: hidden;
	flex-shrink: 0;
}

.lang-flag img {
	width: 100%;
	height: 100%;
	display: block;
}

.lang-flag--br img {
	background: #009b3a;
}

.lang-flag--us img {
	background: #b22234;
}


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

	.lang-select {
		min-width: 142px;
		margin: 0;
	}

	.lang-current {
		border-radius: 12px;
		padding: 10px 8px;
	}

	.lang-current-inner {
		gap: 7px;
	}

	.lang-label-name {
		font-size: 12.5px;
	}

	.lang-dropdown .lang-label-name {
		font-size: 11.5px;
	}

	.lang-arrow {
		margin-left: 7px;
	}

	.lang-arrow svg {
		width: 13px;
		height: 13px;
	}

	.lang-dropdown {
		gap: 7px;
	}

	.lang-option {
		gap: 7px;
		font-size: 12.5px;
	}

	.lang-option-main {
		gap: 7px;
	}

	.lang-option-sub {
		font-size: 10.5px;
	}

	.lang-flag {
		width: 19px;
	}

}


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

	.lang-current:hover {
		background: var(--primary-300-color);
		border-color: var(--primary-200-color);
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	}

	.lang-current:active {
		transform: translateY(0);
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
	}

	.lang-label-name {
		font-size: 13px;
	}

	.lang-option {
		font-size: 13px;
	}

	.lang-option:hover:not(.is-active) {
		background: var(--primary-300-color);
		transform: translateY(-2px);
	}

	.lang-option:active {
		transform: translateY(0);
	}

	.lang-option-sub {
		font-size: 11px;
	}

}


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

	.lang-current-inner {
		gap: 7.5px;
	}

	.lang-label-name {
		font-size: 13.25px;
	}

	.lang-arrow {
		margin-left: 7.5px;
	}

	.lang-arrow svg {
		width: 13.5px;
		height: 13.5px;
	}

	.lang-dropdown {
		gap: 7.5px;
	}

	.lang-option {
		gap: 7.5px;
	}

	.lang-option-main {
		gap: 7.5px;
	}

	.lang-flag {
		width: 19.5px;
	}

}


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

	.lang-current {
		padding: 11px 9px;
	}

	.lang-current-inner {
		gap: 8px;
	}

	.lang-label-name {
		font-size: 13.5px;
	}

	.lang-dropdown .lang-label-name {
		font-size: 12px;
	}

	.lang-arrow {
		margin-left: 8px;
	}

	.lang-arrow svg {
		width: 14px;
		height: 14px;
	}

	.lang-dropdown {
		gap: 8px;
	}

	.lang-option {
		gap: 8px;
	}

	.lang-option-main {
		gap: 8px;
	}

	.lang-flag {
		width: 20px;
	}

}


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

/*BASE CSS E CELULAR PADRAO*/
.hero {
	padding: 0;
}

.hero::before, .hero::after {
	display: none;
}

.hero_glow {
	display: none;
}

.hero_swiper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 9;
}

.hero_swiper .swiper-wrapper,
.hero_swiper .swiper-slide,
.hero_slide {
	height: 100%;
}

.hero_slide {
	position: relative;
	width: 100%;
}

.hero_img-area {
	pointer-events: none;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero_img-area::before {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, #030d17b5 40%, transparent 100%);
	z-index: 1;
}

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

.hero_container {
	position: relative;
	display: flex;
	align-items: flex-end;
	height: 540px;
	padding-bottom: 32px;
	z-index: 9;
}

.hero_content {
	text-align: center;
	width: 100%;
}

.hero_ttl {
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 4.7vw;
	font-weight: 800;
	line-height: 1.24;
	letter-spacing: -.005em;
	text-shadow: 0 0 12px #00000056;
	text-align: center;
}

.hero_ttl br {
	display: none;
}

.hero_sub {
	color: var(--white-color);
	font-size: 3.4vw;
	text-shadow: 0 0 12px #00000056;
	text-align: center;
	margin: 8px 0 24px;
}

.hero_sub br {
	display: none;
}

.hero_btn {
	width: fit-content;
	display: flex;
	margin: 0 auto;
}

.hero_prev, .hero_next {
	position: absolute;
	top: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	fill: var(--white-color);
	border-radius: 50%;
	border: 1px solid var(--white-color);
	transform: translateY(-50%);
	z-index: 9;
	transition: .5s ease;
}

.hero_pagination.swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
	opacity: .64;
}

.hero_prev {
	left: 14px;
	padding: 0 2px 0 0;
}

.hero_next {
	right: 14px;
	padding: 0 0 0 2px;
}

.hero_nav .hero_nav-ic {
	width: 14px;
}

.hero_pagination.swiper-pagination {
	position: absolute;
	left: 0;
	bottom: 10px;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 4px;
}

.hero_pagination.swiper-pagination .swiper-pagination-bullet {
	position: relative;
	overflow: hidden;
	width: 24px;
	height: 2px;
	background-color: var(--white-color);
	border-radius: 1px;
	opacity: .32;
	margin: 0;
	transition: .5s ease;
}

.hero_pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: .88;
}

.hero_pagination.swiper-pagination .swiper-pagination-bullet::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-150-color);
	transform-origin: left;
	transform: scaleX(0);
}

.hero_pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	animation: dotProgress 5.9s both linear;
}

@keyframes dotProgress {
	to {
		transform: scaleX(1);
	}
}


/*CELULAR PEQUENO*/
@media (min-width: 450px) {
	
	.hero_img {
		object-position: 92%;
	}
	
	.hero_ttl {
		font-size: 24px;
	}
	
	.hero_sub {
		font-size: 15px;
	}
	
}


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

	.hero::before, .hero::after {
		content: url(../svg/pattern-1.svg);
		display: block;
		position: absolute;
		left: 7%;
		bottom: -24%;
		width: 100%;
		max-width: 180px;
		transform: rotate(270deg);
		z-index: 4;
	}

	.hero::after {
		content: url(../svg/pattern-2.svg);
		top: -12%;
		left: unset;
		bottom: unset;
		right: 0;
	}

	.hero_glow {
		display: block;
		position: absolute;
		top: -24%;
		left: 84%;
		width: 200px;
		height: 200px;
		background-color: #74afea;
		border-radius: 50%;
		filter: blur(120px);
		opacity: .72;
		mix-blend-mode: plus-lighter;
		z-index: 3;
	}

	.hero_glow.bottom {
		top: unset;
		left: unset;
		bottom: -14%;
		right: 86%;
	}
	
	.hero_img-area::before {
		background: linear-gradient(to right, #030d17b0 8%, transparent 108%), linear-gradient(210deg, #041221b8 6%, transparent 28%);
	}
	
	.hero_img {
		object-position: 92%;
	}

	.hero_container {
		align-items: center;
		height: 480px;
		padding-bottom: 0;
	}
	
	.hero_txt-area {
		max-width: 644px;
	}

	.hero_content {
		text-align: left;
	}

	.hero_label {
		text-align: left;
	}

	.hero_ttl {
		font-size: 34px;
		text-align: left;
	}

	.hero_ttl br {
		display: block;
	}

	.hero_sub {
		font-size: 16.5px;
		text-align: left;
		margin: 10px 0 28px;
	}

	.hero_sub br {
		display: block;
	}
	
	.hero_btn {
		width: auto;
		display: inline-flex;
		margin: 0;
	}
	
	.hero_pagination.swiper-pagination {
		bottom: 12px;
		gap: 6px;
	}

	.hero_pagination.swiper-pagination .swiper-pagination-bullet {
		width: 26px;
	}

}


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

	.hero::before, .hero::after {
		max-width: 200px;
	}

	.hero_glow {
		width: 220px;
		height: 220px;
	}

	.hero_container {
		height: 540px;
	}

	.hero_ttl {
		font-size: 38px;
	}

	.hero_sub {
		font-size: 17.5px;
		margin: 10px 0 32px;
	}

}


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

	.hero::before, .hero::after {
		max-width: 220px;
	}

	.hero_glow {
		width: 250px;
		height: 250px;
	}

	.hero_container {
		height: 620px;
	}

	.hero_ttl {
		font-size: 41px;
	}

	.hero_sub {
		font-size: 18.5px;
		margin: 11px 0 36px;
	}

	.hero_img {
		object-position: 82%;
	}
	
	.hero_pagination.swiper-pagination {
		bottom: 20px;
		gap: 8px;
	}

	.hero_pagination.swiper-pagination .swiper-pagination-bullet {
		width: 32px;
		height: 3px;
	}

}


/* CUSTOM BREAKPOINT NAVS */
@media (min-width: 1440px) {
	
	.hero_prev, .hero_next {
		display: flex;
	}
	
	.hero_prev:hover, .hero_next:hover {
		background-color: var(--white-color);
		fill: var(--primary-150-color);
	}
	
}


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

	.hero::before, .hero::after {
		max-width: 240px;
	}

	.hero_glow {
		width: 280px;
		height: 280px;
	}

	.hero_container {
		height: 736px;
	}

	.hero_ttl {
		font-size: 44px;
	}

	.hero_sub {
		font-size: 19.85px;
		margin: 12px 0 40px;
	}

}



/*****************************************
*************** SERVICES *****************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.serv_sec-ttl-area {
	align-items: center;
}

.serv_controls {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	margin: 20px 0 0;
}

.serv_progress {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 3px;
	background-color: var(--primary-250-color);
	border-radius: 99px;
}

.serv_progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: var(--progress);
	background-color: var(--primary-150-color);
	transition: .5s ease;
}

.serv_navs {
	display: flex;
	gap: 4px;
}

.serv_prev, .serv_next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	fill: var(--primary-150-color);
	border: 1.5px solid var(--primary-150-color);
	border-radius: 50%;
	transition: .5s ease;
}

.serv_prev {
	padding: 0 3px 0 0;
}

.serv_next {
	padding: 0 0 0 3px;
}

.serv_nav-ic {
	width: 10px;
}

.serv_swiper {
	overflow: visible;
}

.serv_swiper .swiper-slide {
	width: min-content;
}

.serv_grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.serv_grid .serv_card-link {
	display: block;
	height: 100%;
}

.serv_grid .serv_card {
	width: 100%;
}

.serv_grid-internal .serv_card-link {
	height: auto;
}

@media (max-width: 767px) {
	.serv_grid-internal .serv_card {
		height: 240px;
	}
}

.serv_card {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    width: 255px;
    height: 320px;
    border: 1.5px solid var(--primary-250-color);
    border-radius: 12px;
    padding: 20px;
    transition: .5s ease;
}

.serv_img-area {
	position: absolute;
	inset: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	transition: .5s ease;
}

.serv_img {
	object-fit: cover;
	height: 100%;
	filter: grayscale(1);
	transition: .88s ease .1s;
}

.serv_ic-area {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	fill: var(--primary-150-color);
	border: 1.5px solid var(--primary-150-color);
	border-radius: 50%;
	z-index: 9;
	transition: .5s ease;
}

.serv_ic-area::before {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	z-index: 8;
	transition: .6s ease;
}

.serv_ic {
	position: relative;
	width: 20px;
	z-index: 9;
}

.serv_txt-area {
	position: relative;
	z-index: 9;
}

.serv_ttl {
	border-bottom: 1.5px solid var(--primary-250-color);
	padding: 0 0 12px;
	margin: 0 0 12px;
	transition: .5s ease;
}

.serv_txt {
	line-height: 1.48;
	transition: .5s ease;
}

.serv_cta-area {
	width: fit-content;
	max-height: 0;
	visibility: hidden;
	opacity: 0;
	transition: .88s ease ;
}

.serv_cta {
	display: inline-block;
	background-color: var(--white-color);
	color: var(--primary-150-color);
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
	border-radius: 4px;
	transform-origin: right;
	padding: 8px 12px;
	margin: 16px 0 0;
}

.serv_btn-cta {
    text-transform: none;
    margin: 0 0 16px;
}

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

	.serv_controls {
		gap: 18px;
		margin: 24px 0 0;
	}

	.serv_prev, .serv_next {
		width: 32px;
		height: 32px;
	}

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

	.serv_nav-ic {
		width: 11px;
	}

	.serv_card {
		width: 290px;
		height: 350px;
		padding: 32px;
	}

	.serv_ic-area {
		width: 54px;
		height: 54px;
	}

	.serv_ic {
		width: 22px;
	}

	.serv_ttl {
		padding: 0 0 14px;
		margin: 0 0 14px;
	}

	.serv_cta {
		font-size: 12px;
		padding: 8px 14px;
		margin: 18px 0 0;
	}
	
	.serv_btn-cta {
		margin: 0 0 20px;
	}
	
	.serv_btn {
		margin: 0 0 -44px;
	}

}


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

	.serv_controls {
		margin: 32px 0 0;
	}

	.serv_prev, .serv_next {
		width: 36px;
		height: 36px;
	}

	.serv_prev {
		padding: 0 3px 0 0;
	}

	.serv_next {
		padding: 0 0 0 3px;
	}

	.serv_nav-ic {
		width: 12px;
	}

	.serv_grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 28px;
	}

    .serv_card {
        width: 335px;
        height: 390px;
        padding: 40px;
    }

	.serv_ic-area {
		width: 56px;
		height: 56px;
	}

	.serv_ic {
		width: 22px;
	}

	.serv_ttl {
		padding: 0 0 16px;
		margin: 0 0 16px;
	}

	.serv_cta {
		font-size: 12px;
		padding: 8px 14px;
		margin: 20px 0 0;
	}

	.serv_prev:hover, .serv_next:hover {
		background-color: var(--primary-150-color);
		fill: var(--white-color);
	}

	.serv_card:hover {
		background-color: var(--primary-150-color);
		border-color: transparent;
	}

	.serv_card:hover .serv_img-area {
		visibility: visible;
		opacity: .2;
	}

	.serv_card:hover .serv_img {
		transform: scale(1.08);
	}

	.serv_card:hover .serv_ic-area {
		border-color: transparent;
	}

	.serv_card:hover .serv_ic-area::before {
		transform: scale(1);
	}

	.serv_card:hover .serv_ttl {
		color: var(--white-color);
		border-color: var(--white-color);
	}

	.serv_card:hover .serv_txt {
		color: var(--white-color);
	}

	.serv_card:hover .serv_cta-area {
		max-height: 68px;
		visibility: visible;
		opacity: 1;
	}

	.serv_card .serv_cta-area:hover {
		transform: scale(1.02);
		opacity: .72;
	}

}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
.serv_controls {
	gap: 18px;
	width: 52%;
	margin: 0;
}
	
}


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

	.serv_controls {
		gap: 22px;
	}

	.serv_prev, .serv_next {
		width: 42px;
		height: 42px;
	}

	.serv_prev {
		padding: 0 4px 0 0;
	}

	.serv_next {
		padding: 0 0 0 4px;
	}

	.serv_nav-ic {
		width: 14px;
	}

	.serv_grid {
		gap: 32px;
	}

	.serv_card {
		width: 400px;
		height: 460px;
		padding: 48px;
	}

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

	.serv_ic {
		width: 30px;
	}

	.serv_ttl {
		padding: 0 0 18px;
		margin: 0 0 18px;
	}

	.serv_cta {
		font-size: 14px;
		padding: 10px 16px;
		margin: 24px 0 0;
	}
	
	.serv_btn-cta {
		margin: 0 0 24px;
	}

}



/*****************************************
************** SEGMENTS ******************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.segm {
	background: linear-gradient(45deg, #061b30, #0a2138);
}

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

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

.segm_segm-sec-ttl-area {
	margin-top: 0;
}

.segm_sec-ttl {
	color: var(--white-color);
}

.segm_sec-txt {
	color: var(--neutral-500-color);
}

.segm_grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 20px;
}

.segm_card {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

.segm_card::before, .segm_card::after{
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, var(--black-color), transparent 72%);
	opacity: .64;
	z-index: 2;
	transition: .5s ease;
}

.segm_card::after {
	background: var(--black-color);
	opacity: 0;
	z-index: 3;
	transition: .5s ease;
}

.segm_img {
	object-fit: cover;
	height: 100%;
	transition: .88s ease .1s;
}

.segm_txt-area {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 92%;
	padding: 12px 0;
	margin: 0 auto;
	z-index: 9;
	transition: .8s ease;
}

.segm_ttl {
	color: var(--white-color);
	text-shadow: 0 0 12px #00000056;
}


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

	.segm::before, .segm::after {
		content: url("../svg/pattern-1.svg");
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		max-width: 240px;
	}

	.segm::after {
		content: url("../svg/pattern-2.svg");
		top: unset;
		left: unset;
		bottom: 0;
		right: 0;
	}

	.segm_glow {
		position: absolute;
		top: -14%;
		left: 76%;
		width: 280px;
		height: 280px;
		background-color: var(--primary-300-color);
		border-radius: 50%;
		filter: blur(120px);
		opacity: 0.72;
		mix-blend-mode: soft-light;
	}

	.segm_glow.bottom {
		top: unset;
		left: unset;
		bottom: -14%;
		right: 76%;
	}

	.segm_div {
		height: 44px;
	}
	
	.segm_div-shape {
		width: auto;
		height: auto;
	}

	.segm_grid {
		grid-gap: 32px;
	}

	.segm_txt-area {
		padding: 14px 0;
	}

}


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

	.segm::before, .segm::after {
		max-width: 280px;
	}

	.segm_glow {
		width: 340px;
		height: 340px;
	}
	
	.segm_segm-sec-ttl-area {
		margin-top: 22px;
	}

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

	.segm_txt-area {
		padding: 15px 0;
	}

}


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

	.segm::before, .segm::after {
		max-width: 320px;
	}

	.segm_glow {
		width: 380px;
		height: 380px;
	}

	.segm_grid {
		grid-gap: 32px;
	}

	.segm_txt-area {
		padding: 17px 0;
	}

}


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

	.segm::before, .segm::after {
		max-width: 364px;
	}

	.segm_glow {
		width: 450px;
		height: 450px;
	}

	.segm_segm-sec-ttl-area {
		margin-top: 44px;
	}

	.segm_grid {
		grid-gap: 40px;
	}

	.segm_txt-area {
		padding: 20px 0;
	}

}



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

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

.about_lf {
	text-align: center;
}

.about_label{
	color: var(--primary-150-color);
	letter-spacing: .1em;
}

.about_ttl {
	margin: 6px 0 64px;
}

.about_ttl br {
	display: none;
}

.about_ttl span {
	color: var(--primary-150-color);
}

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

.about_img {
	border-radius: 12px;
}

.about_rt {
	display: block;
}

.about_txt-area {
    margin: 32px 0;
}

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

.about_btn {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}


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

	.about_container {
		grid-gap: 40px;
	}
	
	.about_imgs {
		grid-gap: 40px;
	}

	.about_ttl {
		margin: 6px 0 72px;
	}
	
	.about_txt-area {
		margin: 44px 0;
	}

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

}


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

	.about_container {
		grid-template-columns: 1.5fr 1fr;
		grid-gap: 44px;
	}
	
	.about_lf {
		text-align: left;
	}

	.about_ttl {
		margin: 7px 0 44px;
	}
	
	.about_ttl br {
		display: block;
	}
	
	.about_rt {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: baseline;
	}
	
	.about_imgs {
		display: none;
	}
	
	.about_txt-area {
		margin: 0;
	}

	.about_txt + .about_txt {
		margin: 17px 0 0;
	}
	
	.about_btn {
		display: inline-flex;
		width: auto;
		margin: 0;
	}

}


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

	.about_ttl {
		margin: 7px 0 48px;
	}

	.about_imgs {
		display: grid;
		grid-gap: 22px;
	}

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

}


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

	.about_ttl {
		margin: 8px 0 56px;
	}

	.about_imgs {
		grid-gap: 24px;
	}

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

}

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

/*BASE CSS E CELULAR PADRAO*/
.difs {
	padding: 0;
}

.difs_boxes {
	display: flex;
	flex-direction: column;
	gap: 32px;
	border: 1.5px solid var(--primary-250-color);
	border-radius: 12px;
	padding: 32px 24px;
}

.difs_box {
	display: flex;
	align-items: center;
	width: 100%;
}

.difs_ic {
	fill: var(--primary-150-color);
	width: 22px;
	margin: 0 12px 0 0;
}

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

.difs_txt {
	line-height: 1.32;
}

.divs_hr {
	display: none;
}


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

	.difs_boxes {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 0;
		padding: 40px 32px;
	}

	.difs_box {
		width: 48%;
		margin-bottom: 32px;
	}

	.difs_box:nth-last-of-type(-n+2) {
		margin-bottom: 0;
	}

	.difs_ic {
		width: 30px;
		margin: 0 14px 0 0;
	}

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

}


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

	.difs_boxes {
		flex-wrap: nowrap;
		padding: 48px 40px;
	}

	.difs_box {
		width: 19%;
		margin-bottom: 0;
	}

	.difs_box:nth-last-child(-n+2) {
		margin-bottom: 0;
	}

	.difs_ic {
		width: 32px;
		margin: 0 14px 0 0;
	}

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

	.divs_hr {
		display: block;
		width: 1.5px;
		background-color: var(--primary-250-color);
		border: none;
	}

}


/* NOTEBOOK E DESKTOP PADRAO */

@media (min-width: 1320px) {

	.difs_boxes {
		padding: 56px 48px;
	}

	.difs_ic {
		width: 34px;
		margin: 0 15px 0 0;
	}

	.difs_txt-area {
		width: calc(100% - 34px - 15px);
	}

}


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

	.difs_boxes {
		padding: 64px 56px;
	}

	.difs_ic {
		width: 36px;
		margin: 0 16px 0 0;
	}

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

}



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

/*BASE CSS E CELULAR PADRAO*/
.cont_container {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.cont_form-area,
.cont_info-area {
	width: 100%;
}

.cont_info-area {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0;
}

.cont_info-box {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	border: 1.5px solid var(--primary-250-color);
	border-radius: 12px;
	width: 100%;
	text-decoration: none;
	transition: .5s ease;
}

.cont_info-ic {
	fill: var(--primary-150-color);
	width: 26px;
	margin: 0;
	transition: .5s ease;
}

.cont_info-ic-area {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cont_info-txt-area {
	display: flex;
	flex-direction: column;
}

.count_info-ttl {
	display: block;
	color: var(--primary-100-color);
	font-size: 12px;
	font-weight: 700;
	margin: 0 0 3px;
	transition: .5s ease;
}

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

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

	.cont_info-area {
		gap: 20px;
	}

	.cont_info-box {
		padding: 28px;
	}

	.cont_info-ic {
		width: 28px;
	}

	.count_info-ttl {
		font-size: 13px;
		margin: 0 0 3px;
	}

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

}


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

	.cont_info-ic {
		width: 30px;
	}
	
	a.cont_info-box:hover *, a.count_info-txt:hover {
		color: var(--primary-150-color);
	}

	.cont_info-box:hover .cont_info-ic {
		transform: scale(1.08);
	}

}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1320px) {
	
	.cont_container {
		flex-direction: row;
		align-items: stretch;
		gap: 56px;
	}
	
	.cont_form-area {
		flex: 1 1 55%;
	}
	
	.cont_info-area {
        flex: 1 1 45%;
        flex-direction: column;
        gap: 24px;
    }

	.cont_info-box {
		flex: 1 1 0;
	}

	.cont_info-ic {
		width: 32px;
		margin: 0;
	}

}


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

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

	.count_info-ttl {
		font-size: 13px;
		margin: 0 0 4px;
	}

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


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

/*BASE CSS E CELULAR PADRAO*/
.footer {
    background-color: transparent;
    padding: 0;
}

.footer_container {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 28px;
}

.footer_bottom .footer_container {
	flex-direction: column;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	width: 100%;
}

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

.footer_top .footer_container {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 32px 16px;
}

.footer_col {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1 1 calc(50% - 8px);
	min-width: 160px;
}

.footer_logo-link {
	display: inline-flex;
	align-items: center;
}

.footer_logo {
	width: 140px;
	margin: 0 0 8px;
}

.footer_desc {
	color: var(--white-color);
	font-size: 13px;
	line-height: 1.6;
	max-width: 380px;
}

.footer_social {
	list-style: none;
	padding: 4px 0 0;
	margin: 12px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.footer_social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .32);
	color: var(--white-color);
	transition: .3s ease;
}

.footer_social-link:hover {
	background: var(--white-color);
	border-color: var(--white-color);
	color: var(--primary-100-color);
	transform: translateY(-2px);
}

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

.footer_social-text {
	color: inherit;
	font-size: 13px;
}

.footer_col-ttl {
	color: var(--white-color);
	margin: 0;
	font-size: 15px;
}

.footer_links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 4px;
}

.footer_link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--white-color);
	font-size: 13px;
	transition: .4s ease;
}

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

.footer_divider {
    display: none;
    border: none;
    background-color: var(--white-color);
    opacity: .12;
    width: 1px;
}

.footer_bottom {
    background-color: var(--primary-100-color);
    border-top: 1px solid #ffffff28;
    padding: 20px 0;
}

.footer_bottom .footer_container {
	justify-content: center;
}

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

.footer_copyright-disclaimer {
	display: block;
	text-wrap: balance;
}

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

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

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

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

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


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

	.footer_container {
		gap: 32px;
	}

	.footer_bottom .footer_container {
		gap: 14px;
	}

	.footer_logo {
		width: 152px;
		margin: 0 0 10px;
	}

	.footer_desc {
		max-width: 520px;
		font-size: 13px;
	}

	.footer_social {
		margin: 16px 0 0;
	}

	.footer_social-link {
		width: 40px;
		height: 40px;
	}

	.footer_social-ic {
		width: 18px;
		height: 18px;
	}
	
	.footer_link:hover, .footer_lgpd-link:hover, .footer_author-link:hover {
		opacity: .72;
	}
	
}


/* NOTEBOOK E DESKTOP PADRAO */
@media (min-width: 1024px) {
	
	.footer_top {
        padding: 36px 0;
    }

	.footer_bottom {
		padding: 24px 0;
	}
	
	.footer_container {
		gap: 34px;
	}
	
	.footer_bottom .footer_container {
		gap: 14px;
	}
	
	.footer_logo {
		width: 164px;
		margin: 0 0 12px;
	}

	.footer_social {
		margin: 20px 0 0;
	}

	.footer_social-link {
		width: 42px;
		height: 42px;
	}

	.footer_social-ic {
		width: 19px;
		height: 19px;
	}
	
	.footer_top .footer_container {
		justify-content: space-between;
		flex-wrap: nowrap;
		gap: 18px;
	}

	.footer_col--brand {
		flex: 0 1 388px;
		max-width: 388px;
	}

	.footer_col:not(.footer_col--brand) {
		flex: 0 0 auto;
		width: max-content;
	}
	
	.footer_col {
		flex: 1 1 auto;
	}
	
	.footer_col-ttl {
		font-size: 16px;
	}
	
	.footer_desc, .footer_link {
		font-size: 15px;
	}
	
	.footer_divider {
		display: block;
		align-self: stretch;
	}
	
	.footer_bottom .footer_container {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
		flex-wrap: wrap;
	}

	.footer_lgpd-area {
		order: 1;
	}

	.footer_copyright-area {
		order: 2;
		flex: 1 1 50%;
		text-align: center;
	}

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

	.footer_lgpd-list {
		justify-content: flex-start;
	}

	.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_top {
        padding: 72px 0;
    }

	.footer_bottom {
		padding: 28px 0;
	}

	.footer_logo {
		width: 180px;
		margin: 0 0 16px;
	}
	
	.footer_copyright-title {
		font-size: 16px;
		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_social {
		margin: 24px 0 0;
	}

	.footer_social-link {
		width: 44px;
		height: 44px;
	}

	.footer_social-ic {
		width: 20px;
		height: 20px;
	}
	
    .footer_author-logo {
        width: 60px;
    }
	
}



/*****************************************
************** 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-150-color);
    font-weight: 600;
    transition: .5s ease;
}

.warning_button {
    display: block;
    width: 100%;
    background-color: var(--primary-150-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;
}	
	
}



/*****************************************
************* BREADCRUMB *****************
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.breadc {
	background-color: var(--primary-100-color);
	padding: calc(80px - 18px) 0 80px;
}

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

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

.breadc_container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 12px;
	z-index: 9;
}

.breadc_ttl {
	color: var(--white-color);
	font-size: 24px;
}

.breadc_path-item {
	display: inline-block;
	color: var(--white-color);
	font-size: 13px;
}

.breadc_path-item:not(:last-child)::after {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	border: 2px solid var(--white-color);
	border-top: none;
	border-left: none;
	transform: rotate(315deg);
	margin: 0 6px 1px 4px;
}

.breadc_path-item:first-child::before {
	content: url(../svg/home.svg);
	display: inline-block;
	width: 10px;
	line-height: 1;
	margin: 0 4px 0 0;
}

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

.breadc_div {
	position: absolute;
	bottom: -2px;
	width: 100%;
	height: 18px;
	transform: scaleY(-1);
	z-index: 8;
}

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


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

	.breadc {
		padding: calc(120px - 40px) 0 120px;
	}

	.breadc_container {
		gap: 28px;
	}

	.breadc_ttl {
		font-size: 36px;
	}

	.breadc_path-item {
		font-size: 15px;
	}
	
	.breadc_path-item:not(:last-child)::after {
		width: 5px;
		height: 5px;
	}

	.breadc_path-item:first-child::before {
		width: 13px;
	}

	.breadc_div {
		height: 36px;
	}

}


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

	.breadc {
		padding: calc(136px - 36px) 0 136px;
	}

	.breadc_img-area::before,
	.breadc_img-area:after {
		content: '';
		position: absolute;
		width: 240px;
		height: 240px;
		background-color: var(--primary-300-color);
		border-radius: 50%;
		filter: blur(100px);
		opacity: 0.8;
		mix-blend-mode: soft-light;
	}

	.breadc_img-area::before {
		top: -20%;
		left: 76%;
	}

	.breadc_img-area:after {
		bottom: -20%;
		right: 76%;
	}

	.breadc_container {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		text-align: left;
		gap: 0;
	}

	.breadc_ttl {
		font-size: 36px;
	}

	.breadc_path-link:hover {
		opacity: .5;
	}

	.breadc_div {
		height: 36px;
	}

}


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

	.breadc {
		padding: calc(144px - 44px) 0 144px;
	}

	.breadc_div {
		height: 40px;
	}

}


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

	.breadc {
		padding: calc(172px - 52px) 0 172px;
	}

	.breadc_img-area::before,
	.breadc_img-area:after {
		width: 280px;
		height: 280px;
		filter: blur(120px);
	}

	.breadc_ttl {
		font-size: 44px;
	}

	.breadc_path-item {
		font-size: 17px;
	}

	.breadc_path-item:not(:last-child)::after {
		width: 6px;
		height: 6px;
		margin: 0 8px 1px 4px;
	}

	.breadc_path-item:first-child::before {
		width: 14px;
	}

	.breadc_div {
		height: 44px;
	}

}



/*****************************************
*********** RESSEGURO INTERNA ************
*****************************************/

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

.serv-i_ttl {
	text-wrap: balance;
}

.serv-i_txt + .serv-i_txt {
	margin: 20px 0 0;
}


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

	.serv-i_grid {
		grid-gap: 40px;
	}

	.serv-i_img {
		max-width: 488px;
		margin: 0 auto;
	}

}


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

	.serv-i_grid {
		grid-template-columns: 1.16fr 1fr;
		grid-gap: 48px;
	}
	
	.serv-i_img {
		max-width: unset;
		margin: 0;
	}

}


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

	.serv-i_grid {
		grid-gap: 56px;
	}

}


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

	.serv-i_grid {
		grid-gap: 64px;
	}

}



/*****************************************
*********** OTHER SERVICES ***************
*****************************************/

.other-serv {
    background-color: var(--primary-300-color);
}

.other-serv_slider {
    position: relative;
}

.other-serv_swiper-wrap {
    position: relative;
    padding: 0 56px;
}

.other-serv_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.other-serv_prev {
    left: 0;
}

.other-serv_next {
    right: 0;
}

.other-serv_pagination {
    position: static;
    display: flex;
    justify-content: center;
    margin: 32px 0 0 !important;
}

.other-serv_pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--primary-200-color);
    opacity: .5;
    transition: .3s;
}

.other-serv_pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-150-color);
    width: 24px;
    border-radius: 4px;
	opacity: 1;
}

.other-serv_card {
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    height: auto;
    min-height: 100%;
    transition: .4s ease;
    text-decoration: none;
}

.other-serv_img-area {
    position: relative;
    overflow: hidden;
}

.other-serv_img {
	object-fit: cover;
    height: 100%;  
    transition: .8s ease;
}

.other-serv_content {
	position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
}

.other-serv_ic-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--white-color);
    fill: var(--primary-150-color);
    border: 2px solid var(--primary-150-color);
    box-shadow: 0 0 30px #00000024;
    border-radius: 10px;
    margin: -44px 0 16px;
    z-index: 2;
    transition: .4s ease;
}

.other-serv_ic {
    width: 24px;
    height: 24px;
}

.other-serv_name {
    color: var(--primary-100-color);
	font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
	margin: 0 0 24px;
}

.other-serv_btn {
	position: relative;
    align-self: flex-start;
	color: var(--primary-150-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 0 4px;
}

.other-serv_btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-150-color);
    transition: .3s ease;
}

.other-serv_card:hover .other-serv_img {
    transform: scale(1.05);
}

.other-serv_card:hover .other-serv_ic-area {
    background-color: var(--primary-150-color);
	fill: var(--white-color);
} 

.other-serv_card:hover .other-serv_name {
    color: var(--primary-150-color);
} 

.other-serv_card:hover .other-serv_btn::after {
    width: 100%;
}



/*****************************************
*********** ABOUT PAGE - INTRO ***********
*****************************************/

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

.about-intro_content {
	text-align: center;
}

.about-intro_label {
	color: var(--primary-150-color);
	letter-spacing: .1em;
}

.about-intro_ttl {
	margin: 8px 0 24px;
}

.about-intro_ttl span {
	color: var(--primary-150-color);
}

.about-intro_txt-area {
	text-align: left;
}

.about-intro_txt + .about-intro_txt {
	margin: 16px 0 0;
}

.about-intro_imgs {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-intro_img {
	border-radius: 12px;
	object-fit: cover;
	width: 100%;
}

.about-intro_img--main {
	height: 280px;
}

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

.about-intro_imgs-secondary .about-intro_img {
	height: 160px;
}


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

	.about-intro_container {
		grid-gap: 48px;
	}

	.about-intro_ttl {
		margin: 10px 0 28px;
	}

	.about-intro_img--main {
		height: 360px;
	}

	.about-intro_imgs-secondary {
		gap: 24px;
	}

	.about-intro_imgs-secondary .about-intro_img {
		height: 200px;
	}

}


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

	.about-intro_container {
		grid-template-columns: 1fr 1fr;
		grid-gap: 56px;
		align-items: center;
	}

	.about-intro_content {
		text-align: left;
	}

	.about-intro_ttl {
		margin: 10px 0 32px;
	}

	.about-intro_imgs {
		gap: 20px;
	}

	.about-intro_img--main {
		height: 320px;
	}

	.about-intro_imgs-secondary {
		gap: 20px;
	}

	.about-intro_imgs-secondary .about-intro_img {
		height: 180px;
	}

}


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

	.about-intro_container {
		grid-gap: 72px;
	}

	.about-intro_ttl {
		margin: 12px 0 36px;
	}

	.about-intro_txt + .about-intro_txt {
		margin: 18px 0 0;
	}

	.about-intro_imgs {
		gap: 24px;
	}

	.about-intro_img--main {
		height: 380px;
	}

	.about-intro_imgs-secondary {
		gap: 24px;
	}

	.about-intro_imgs-secondary .about-intro_img {
		height: 200px;
	}

}


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

	.about-intro_container {
		grid-gap: 124px;
	}

	.about-intro_ttl {
		margin: 14px 0 40px;
	}

	.about-intro_txt + .about-intro_txt {
		margin: 20px 0 0;
	}

	.about-intro_img--main {
		height: 440px;
	}

	.about-intro_imgs-secondary .about-intro_img {
		height: 220px;
	}

}



/*****************************************
********* ABOUT PAGE - HISTORY ***********
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.about-history {
	background-color: var(--primary-100-color);
}

.about-history_container {
	position: relative;
	z-index: 2;
}

.about-history_header {
	margin-bottom: 48px;
}

.about-history_label {
    color: var(--white-color);
    letter-spacing: .1em;
}

.about-history_ttl {
	color: var(--white-color);
	margin: 8px 0 0;
}

.about-history_ttl span {
	color: var(--primary-200-color);
}

.about-history_timeline {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.about-history_item {
	display: grid;
	grid-template-columns: 80px 24px 1fr;
	gap: 16px;
	align-items: start;
}

.about-history_year {
	color: var(--white-color);
	font-size: 14px;
	font-weight: 700;
	text-align: right;
	padding-top: 2px;
}

.about-history_line {
	position: relative;
	display: flex;
	justify-content: center;
	height: 100%;
	min-height: 100px;
}

.about-history_line::before {
	content: '';
	position: absolute;
	top: 8px;
	width: 2px;
	height: calc(100% + 32px);
	background-color: var(--primary-200-color);
	opacity: .3;
}

.about-history_item:last-child .about-history_line::before {
	display: none;
}

.about-history_dot {
	position: relative;
	width: 12px;
	height: 12px;
	background-color: var(--primary-200-color);
	border-radius: 50%;
	margin-top: 4px;
	z-index: 2;
}

.about-history_txt-area {
	padding-bottom: 8px;
}

.about-history_item-ttl {
	color: var(--white-color);
	margin: 0 0 8px;
}

.about-history_item-txt {
    color: var(--white-color);
    opacity: .88;
}


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

	.about-history_header {
		margin-bottom: 56px;
	}

	.about-history_ttl {
		margin: 10px 0 0;
	}

	.about-history_timeline {
		gap: 40px;
	}

	.about-history_item {
		grid-template-columns: 100px 32px 1fr;
		gap: 20px;
	}

	.about-history_year {
		font-size: 15px;
	}

	.about-history_line {
		min-height: 120px;
	}

	.about-history_line::before {
		height: calc(100% + 40px);
	}

	.about-history_dot {
		width: 14px;
		height: 14px;
	}

}


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

	.about-history_header {
		margin-bottom: 64px;
	}

	.about-history_timeline {
		max-width: 800px;
		margin: 0 auto;
	}

	.about-history_item {
		grid-template-columns: 120px 40px 1fr;
		gap: 24px;
	}

	.about-history_year {
		font-size: 16px;
	}

}


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

	.about-history_header {
		margin-bottom: 72px;
	}

	.about-history_timeline {
		max-width: 900px;
	}

	.about-history_item {
		gap: 28px;
	}

	.about-history_year {
		font-size: 17px;
	}

}


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

	.about-history_header {
		margin-bottom: 80px;
	}

	.about-history_timeline {
		max-width: 1000px;
		gap: 48px;
	}

	.about-history_item {
		grid-template-columns: 140px 48px 1fr;
		gap: 32px;
	}

	.about-history_year {
		font-size: 18px;
	}

	.about-history_line {
		min-height: 140px;
	}

	.about-history_line::before {
		height: calc(100% + 48px);
	}

	.about-history_dot {
		width: 16px;
		height: 16px;
	}

}



/*****************************************
********* ABOUT PAGE - MISSION ***********
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.about-mission_header {
	margin-bottom: 40px;
}

.about-mission_label {
	color: var(--primary-150-color);
	letter-spacing: .1em;
}

.about-mission_grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 48px;
}

.about-mission_box {
	background-color: var(--white-color);
	border-radius: 12px;
	padding: 32px 24px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.about-mission_box--mission {
	border-top: 4px solid var(--primary-150-color);
}

.about-mission_box--vision {
	border-top: 4px solid var(--primary-150-color);
}

.about-mission_box-ttl {
	color: var(--primary-100-color);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.about-mission_box-txt {
	line-height: 1.6;
}

.about-mission_values {
	text-align: center;
}

.about-mission_values-ttl {
	color: var(--primary-100-color);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 32px;
}

.about-mission_values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.about-mission_value {
    text-align: center;
    padding: 24px 16px;
    background-color: var(--white-color);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.about-mission_value-ic-area {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background-color: var(--primary-250-color);
	border-radius: 12px;
	margin: 0 auto 16px;
}

.about-mission_value-ic {
	width: 28px;
	height: 28px;
	fill: var(--primary-150-color);
}

.about-mission_value-ttl {
	color: var(--primary-100-color);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.about-mission_value-txt {
	line-height: 1.32;
}

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

	.about-mission_header {
		margin-bottom: 48px;
	}

	.about-mission_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
		margin-bottom: 56px;
	}

	.about-mission_box {
		padding: 36px 28px;
	}

	.about-mission_values-ttl {
		margin: 0 0 40px;
	}

	.about-mission_values-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.about-mission_value {
		padding: 28px 16px;
	}

}


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

	.about-mission_header {
		margin-bottom: 56px;
	}

	.about-mission_grid {
		gap: 40px;
		margin-bottom: 64px;
	}

	.about-mission_box {
		padding: 40px 32px;
	}

	.about-mission_box-ttl {
		font-size: 20px;
		margin: 0 0 16px;
	}

	.about-mission_values-ttl {
		font-size: 20px;
		margin: 0 0 48px;
	}

	.about-mission_value {
		padding: 32px 20px;
	}

	.about-mission_value-ic-area {
		width: 64px;
		height: 64px;
		margin: 0 auto 20px;
	}

	.about-mission_value-ic {
		width: 32px;
		height: 32px;
	}

	.about-mission_value-ttl {
		font-size: 15px;
		margin: 0 0 10px;
	}

}


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

	.about-mission_grid {
		gap: 48px;
		margin-bottom: 72px;
	}

	.about-mission_box {
		padding: 44px 36px;
	}

	.about-mission_value {
		padding: 36px 24px;
	}

}


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

	.about-mission_header {
		margin-bottom: 64px;
	}

	.about-mission_grid {
		gap: 56px;
		margin-bottom: 80px;
	}

	.about-mission_box {
		padding: 48px 40px;
	}

	.about-mission_box-ttl {
		font-size: 22px;
		margin: 0 0 18px;
	}

	.about-mission_values-ttl {
		font-size: 22px;
		margin: 0 0 56px;
	}

	.about-mission_value {
		padding: 40px 28px;
	}

	.about-mission_value-ic-area {
		width: 72px;
		height: 72px;
		margin: 0 auto 24px;
	}

	.about-mission_value-ic {
		width: 36px;
		height: 36px;
	}

	.about-mission_value-ttl {
		font-size: 16px;
		margin: 0 0 12px;
	}

}



/*****************************************
******* ABOUT PAGE - DIFFERENTIALS *******
*****************************************/

/*BASE CSS E CELULAR PADRAO*/
.about-difs {
	background-color: var(--primary-300-color);
}

.about-difs_header {
	margin-bottom: 48px;
}

.about-difs_label {
	color: var(--primary-150-color);
	letter-spacing: .1em;
}

.about-difs_ttl {
	margin: 8px 0 0;
}

.about-difs_ttl span {
	color: var(--primary-150-color);
}

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

.about-difs_card {
	background-color: var(--white-color);
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
	transition: .4s ease;
}

.about-difs_ic-area {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	background-color: var(--primary-300-color);
	border-radius: 16px;
	margin: 0 auto 20px;
	transition: .4s ease;
}

.about-difs_ic {
	width: 36px;
	height: 36px;
	fill: var(--primary-150-color);
	transition: .4s ease;
}

.about-difs_card-ttl {
	margin: 0 0 12px;
}

.about-difs_card-txt {
	line-height: 1.6;
}


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

	.about-difs_header {
		margin-bottom: 56px;
	}

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

	.about-difs_card {
		padding: 36px 28px;
	}

}


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

	.about-difs_header {
		margin-bottom: 64px;
	}

	.about-difs_grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}

	.about-difs_card {
		padding: 40px 24px;
	}

	.about-difs_card:hover {
		transform: translateY(-8px);
		box-shadow: 0 12px 32px rgba(1, 71, 173, 0.15);
	}

	.about-difs_card:hover .about-difs_ic-area {
		background-color: var(--primary-150-color);
	}

	.about-difs_card:hover .about-difs_ic {
		fill: var(--white-color);
	}

	.about-difs_ic-area {
		width: 80px;
		height: 80px;
		margin: 0 auto 24px;
	}

	.about-difs_ic {
		width: 40px;
		height: 40px;
	}

}


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

	.about-difs_header {
		margin-bottom: 72px;
	}

	.about-difs_grid {
		gap: 32px;
	}

	.about-difs_card {
		padding: 44px 28px;
	}

}


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

	.about-difs_header {
		margin-bottom: 80px;
	}

	.about-difs_grid {
		gap: 40px;
	}

	.about-difs_card {
		padding: 48px 32px;
	}

	.about-difs_ic-area {
		width: 88px;
		height: 88px;
		border-radius: 20px;
		margin: 0 auto 28px;
	}

	.about-difs_ic {
		width: 44px;
		height: 44px;
	}

	.about-difs_card-ttl {
		margin: 0 0 14px;
	}

}



/*****************************************
******** ABOUT PAGE - PARTNERS ***********
*****************************************/

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

.about-partners_content {
	text-align: center;
}

.about-partners_label {
	color: var(--primary-150-color);
	letter-spacing: .1em;
}

.about-partners_ttl {
	margin: 8px 0 16px;
}

.about-partners_ttl span {
	color: var(--primary-150-color);
}

.about-partners_txt {
	line-height: 1.6;
}

.about-partners_locations {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.about-partners_location {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	min-width: 100px;
}

.about-partners_flag-area {
	width: 56px;
	height: 40px;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-partners_flag {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-partners_name {
	color: var(--primary-100-color);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
}


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

	.about-partners_container {
		gap: 48px;
	}

	.about-partners_ttl {
		margin: 10px 0 20px;
	}

	.about-partners_locations {
		gap: 32px;
	}

	.about-partners_location {
		min-width: 120px;
	}

	.about-partners_flag-area {
		width: 64px;
		height: 44px;
	}

	.about-partners_name {
		font-size: 14px;
	}

}


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

	.about-partners_container {
		grid-template-columns: 1fr 1fr;
		gap: 64px;
		align-items: center;
	}

	.about-partners_content {
		text-align: left;
	}

	.about-partners_ttl {
		margin: 10px 0 24px;
	}

	.about-partners_locations {
		justify-content: flex-start;
		gap: 40px;
	}

}


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

	.about-partners_container {
		gap: 80px;
	}

	.about-partners_locations {
		gap: 48px;
	}

	.about-partners_flag-area {
		width: 72px;
		height: 48px;
		border-radius: 8px;
	}

	.about-partners_name {
		font-size: 15px;
	}

}


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

	.about-partners_container {
		gap: 96px;
	}

	.about-partners_ttl {
		margin: 12px 0 28px;
	}

	.about-partners_locations {
		gap: 56px;
	}

	.about-partners_location {
		gap: 16px;
		min-width: 140px;
	}

	.about-partners_flag-area {
		width: 80px;
		height: 56px;
	}

	.about-partners_name {
		font-size: 16px;
	}

}
