
/* HERO SECTION */

.hero-video {
	position: relative;
	height: 100vh;
}

.hero-video video {
	width: 100%;
	height: calc(100vh + 40px);
	object-fit: cover;
	object-position: center;
}

.logo-hero {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
    padding: 0 var(--spacing-wrapper);
}


.hero-links {
	position: absolute;
    width:100%;
    height:100vh;
    top:0;
	left: 0;
	right: 0;
    z-index: 2;
	padding: clamp(12px, 1vw, 1%);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

/* LANGUAGE SELECTOR */
.language-selector {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	z-index: 3;
}

.language-selector-button {
	display: inline-flex;
	align-items: center;
	gap: clamp(8px, 0.6vw, 12px);
	border: none;
	background: rgba(38, 50, 27, 0.8);
	backdrop-filter: blur(15.399999618530273px);
	padding: 12px 15px;
	color: #fff;
	font-family: 'Founders Grotesk', sans-serif;
	font-size:15px;
	font-weight: 400;
	cursor: pointer;
	transition: background-color 0.15s ease-out, border-radius 0.1s ease-out;
}

.language-selector-button:hover {
	background: rgba(38, 50, 27, 1);
}

.language-selector-button[aria-expanded="true"] .language-selector-arrow svg {
	transform: rotate(180deg);
}

.language-selector-globe,
.language-option-globe {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.language-selector-globe svg,
.language-option-globe svg {
	width: clamp(15px, 1vw, 18px);
	height: clamp(15px, 1vw, 18px);
}

.language-selector-text {
	white-space: nowrap;
}

.language-selector-arrow,
.language-option-arrow {
	display: flex;
	align-items: center;
	margin-left: auto;
	transition: transform 0.15s ease-out;
}

.language-selector-arrow svg,
.language-option-arrow svg {
	width: clamp(10px, 0.7vw, 12px);
	height: clamp(10px, 0.7vw, 12px);
}

.language-selector-dropdown {
	background: rgba(38, 50, 27, 0.8);
	backdrop-filter: blur(15.399999618530273px);
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transform-origin: bottom;
	flex-direction: column;
	gap: clamp(4px, 0.3vw, 6px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: max-height 0.15s ease-out;
}

.language-selector[data-open="true"] .language-selector-dropdown {
	max-height: 300px;
}

.language-option {
	display: flex;
	align-items: center;
	gap: clamp(8px, 0.6vw, 12px);
	background: transparent;
	border: none;
	padding: 12px 15px;
	color: #ffff;
	font-family: 'Founders Grotesk', sans-serif;
	font-size: 15px;
	font-weight: 400;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.15s ease-out, border-radius 0.1s ease-out;
	width: 100%;
	justify-content: flex-start;
}

.language-option:hover {
	background-color: rgba(38, 50, 27, 0.8);
}

.language-option[data-selected="true"] {
	background-color: rgba(38, 50, 27, 0.8);
	justify-content: space-between;
}

.language-option-globe,
.language-option-arrow {
	display: none;
}

.language-option[data-selected="true"] .language-option-globe,
.language-option[data-selected="true"] .language-option-arrow {
	display: flex;
}

.language-option-text {
	white-space: nowrap;
}


/*

TRABALHE
CONOSCO

*/

.trabalhe-conosco {
	z-index: 3;
}

.trabalhe-conosco a {
	display: inline-flex;
	min-width: 326px;
	padding: 6px;
	align-items: stretch;
	gap: 15px;
	flex-shrink: 0;
	border-radius: 10px;
	background: rgba(38, 50, 27, 0.8);
	backdrop-filter: blur(15px);
	color: #fff;
	text-decoration: none;
}

.trabalhe-conosco a:hover {
	background-color: rgba(38, 50, 27, 1);
}

.trabalhe-conosco a:hover .image-wrapper img {
	scale: 1.1;
}

.trabalhe-conosco .image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width:145px;
	border-radius: 7px;
}

.trabalhe-conosco .image-wrapper img {
	transition: scale 0.15s ease-out;
	width: 44px;
    height: auto;
}

.trabalhe-conosco .text-wrapper {
	position: relative;
	padding: 10px 10px 10px 0;
}

.trabalhe-conosco .hr {
	height: 1px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.3);
	opacity: 0.3;
	margin: 8px 0;
}

.trabalhe-conosco .text-wrapper p {
	margin: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
}

.trabalhe-conosco .text-wrapper .upper-text {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	justify-content: space-between;
}

.trabalhe-conosco .text-wrapper .upper-text p {
	font-size:17px;
}

.trabalhe-conosco .text-wrapper svg {
	margin-top:3px;
	width: 14px;
	height:auto;
	opacity: 0.3;
}

@media (max-width: 768px) {
	.trabalhe-conosco a	{ flex-direction: column; gap:8px; width:170px; min-width:170px; align-items:flex-start; }
	.trabalhe-conosco .text-wrapper { padding:7px; padding-top:0; width:100%; }
	.trabalhe-conosco .text-wrapper svg { display:none;}
	.trabalhe-conosco .image-wrapper { width:100%; aspect-ratio: 16/9; }
	.trabalhe-conosco .text-wrapper .upper-text p br { display:none; }
}



.next-section {
	position: absolute;
	bottom: 2%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.next-section a {
	width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-orange);
    text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.next-section img {
	rotate: 90deg;
}

@media (max-width: 500px) {
	.next-section {
		display: none;
	}
}