* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
}
@font-face {
	font-family: 'Majesty-regular';
	src: url('/assets/fonts/majesty-regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Myriadpro';
	src: url('/assets/fonts/myriadpro-regular.ttf') format('truetype');
}

:root {
	--orange: #e66608;
	--white: #ffffff;
	--off-white: #f6f6f6;
	--green: #13ed07;
	--blue: #5f52ec;
	--black: #261d21;
	--gray: #58585a;
	--light-gray: #cccccc;
	--footer-white: rgba(255, 255, 255, 0.7);
	--majesty: 'Majesty-regular', sans-serif;
	--mitir: 'Mitr', sans-serif;
	--open-sans: 'Open Sans', sans-serif;
	--myria-regular: 'Myriadpro';
}

::-webkit-scrollbar {
	width: 0.8rem;
}

::-webkit-scrollbar-track {
	background: var(--white);
	border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
	background: var(--light-gray);
	border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--light-gray);
}

.menu-lateral {
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 9.6rem;
	right: 0rem;
	padding-top: 3.2rem;
	z-index: 20;
	background-color: var(--white);
	opacity: 0;
	pointer-events: none;
	transition: all 0.2s ease-in-out;
	z-index: 10;
}

.menu-lateral ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2.6rem;
}

.menu-lateral ul li {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.menu-lateral ul li::after {
	content: '';
	width: 100%;
	height: 1px;
	background-color: var(--off-white);
	position: absolute;
	bottom: -2rem;
	left: 0;
}
.menu-lateral ul li a {
	color: var(--orange);
	font-size: 2.4rem;
	font-family: var(--mitir);
	padding-block: 0.6rem;
	transition: color 0.2s ease;
}

.menu-opened .menu-lateral,
.menu-opened .menu-lateral {
	opacity: 1;
	transform: translateY(0%);
	pointer-events: all;
}

header.transparent {
	background-color: rgb(255, 255, 255, 0.9);
	box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.26);
}

body {
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	font-size: 62.5%;
}

@media (max-width: 320px) {
	html {
		font-size: 55%;
	}
}

img {
	display: block;
	max-width: 100%;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

button {
	cursor: pointer;
	background-color: transparent;
	border: none;
}

.hamburger {
	padding: 15px 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}
.hamburger:hover {
	opacity: 0.7;
}
.hamburger.is-active:hover {
	opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #000;
}

.hamburger-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 40px;
	height: 4px;
	background-color: var(--gray);
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
	content: '';
	display: block;
}
.hamburger-inner::before {
	top: -10px;
}
.hamburger-inner::after {
	bottom: -10px;
}

.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in,
		transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out,
		transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.container {
	width: 100%;
	max-width: 124.6rem;
	padding: 0 1.5rem;
	margin: 0 auto;
}

.btn-primary {
	font-size: 2rem;
	padding: 1.6rem 2.2rem;
	color: var(--white);
	background-color: var(--orange);
	border-radius: 2.9rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: filter 0.2s ease;
}

.btn-primary:hover {
	filter: brightness(0.9);
}

@media (max-width: 991px) {
	.btn-primary {
		font-size: 2rem;
	}
}

@media (max-width: 600px) {
	.btn-primary {
		font-size: 1.6rem;
		width: 100%;
	}
}

h1,
h2 {
	font-family: var(--mitir);
	font-weight: 500;
	line-height: 120%;
}

.show-modal .modal {
	opacity: 1;
	pointer-events: all;
}

.show-modal .modal .box {
	transform: translateY(0px);
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}
.modal .overlay {
	position: fixed;
	z-index: 2022;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 19;
}
.modal .box {
	position: relative;
	z-index: 20;
	width: 100%;
	max-width: 95%;
	border-radius: 2.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transform: translateY(-50px);
	transition: transform 0.3s;
}
.modal .box .close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	cursor: pointer;
	transition: filter 0.2s ease;
}
.modal .box .close:hover {
	filter: brightness(0.8);
}

.modal .box .modal-map {
	border-radius: 3rem;
}

.modal .box .rotate-phone {
	display: none;
}

@media (max-width: 668px) {
	.modal .box {
		max-width: 95%;
	}
	.modal .box .close {
		top: 1rem;
		right: 0.6rem;
	}
	.modal .box .close img {
		max-width: 80%;
	}
	.modal .box .rotate-phone {
		display: block;
		margin-top: 1.2rem;
		width: 100%;
		max-width: 16%;
	}
}

header {
	width: 100%;
	height: 9.6rem;
	background-color: var(--white);
	position: sticky;
	top: 0;
	left: 0;
	z-index: 10;
	display: flex;
	align-items: center;
}

header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .logo-bel {
	width: 100%;
	max-width: 16rem;
	padding-top: 1.6rem;
}

header .logo-bel img {
	transition: opacity 0.2s ease;
}

header .logo-bel img:hover {
	opacity: 0.9;
}

header .nav-web {
	display: flex;
	align-items: center;
	gap: 2rem;
}

header .nav-web li {
	display: flex;
	gap: 2rem;
}

header .nav-web li:not(:last-child)::after {
	content: '';
	width: 1px;
	height: 2rem;
}

header .nav-web li a {
	font-size: 1.8rem;
	font-family: var(--mitir);
	color: var(--gray);
	transition: color 0.2s ease;
}

header .nav-web li a:hover {
	color: var(--orange);
}

header .hamburger {
	display: none;
}

@media (max-width: 1200px) {
	header .nav-web {
		width: 100%;
		max-width: 56%;
	}
}

@media (max-width: 1200px) {
	header .nav-web {
		display: none;
	}

	header .hamburger {
		display: block;
	}
}

@media (max-width: 600px) {
	header .logo-bel img {
		max-width: 70%;
	}
	header .hamburger {
		display: block;
	}
}

.s-hero {
	width: 100%;
	padding-top: 3rem;
	padding-bottom: 4.3rem;
	background-color: var(--off-white);
}

.s-hero main {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
}

.s-hero main .video-hero {
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 0;
	border-radius: 2.9rem;
	width: 100%;
	z-index: 0;
}

.s-hero main::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgb(0, 0, 0, 0.5);
	border-radius: 2.9rem;
	z-index: 1;
}

.s-hero main h1 {
	font-family: var(--mitir);
	font-size: 6rem;
	font-weight: 500;
	color: var(--off-white);
	position: absolute;
	z-index: 2;
}

@media (max-width: 1024px) {
	.s-hero {
		padding: 0;
	}
	.s-hero .container {
		padding: 0;
	}

	.s-hero main::after {
		border-radius: 0;
	}
	.s-hero main .video-hero {
		border-radius: 0;
	}
}

@media (max-width: 800px) {
	.s-hero main h1 {
		font-size: 3.2rem;
	}
}

@media (max-width: 600px) {
	.s-hero main h1 {
		font-size: 2.6rem;
	}
}
@media (max-width: 500px) {
	.s-hero main h1 {
		font-size: 2.4rem;
	}
}
.s-sobre-nos {
	width: 100%;
	padding-block: 5rem;
}

.s-sobre-nos .container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.s-sobre-nos .left-content {
	width: 100%;
	max-width: 46%;
}

.s-sobre-nos .right-content {
	width: 100%;
	max-width: 44%;
}

.s-sobre-nos .right-content .title-sobre-nos {
	font-size: 4rem;
	color: var(--gray);
	font-family: var(--mitir);
	margin-bottom: 2.4rem;
}

.s-sobre-nos .right-content .subtitle-sobre-nos {
	font-size: 2.8rem;
	color: var(--blue);
	font-family: var(--open-sans);
	font-weight: 700;
	margin-bottom: 2rem;
}

.s-sobre-nos .right-content .text-sobre-nos {
	font-size: 2rem;
	color: var(--gray);
	margin-bottom: 8rem;
}

.s-sobre-nos .right-content .text-sobre-nos strong {
	display: block;
	margin-top: 2rem;
}

@media (max-width: 1024px) {
	.s-sobre-nos .left-content {
		max-width: 44%;
		display: flex;
		justify-content: flex-end;
	}
	.s-sobre-nos .right-content {
		max-width: 50%;
	}
	.s-sobre-nos .right-content .text-sobre-nos {
		margin-bottom: 3rem;
	}
}

@media (max-width: 991px) {
	.s-sobre-nos .right-content {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	.s-sobre-nos .right-content .title-sobre-nos {
		font-size: 3.2rem;
		margin-bottom: 1rem;
	}
	.s-sobre-nos .right-content .subtitle-sobre-nos {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
	.s-sobre-nos .right-content .subtitle-sobre-nos br {
		display: none;
	}
	.s-sobre-nos .right-content .text-sobre-nos {
		margin-bottom: 2.6rem;
	}
	.s-sobre-nos .right-content .text-sobre-nos strong {
		margin-top: 1rem;
	}
}

@media (max-width: 800px) {
	.s-sobre-nos .container {
		flex-direction: column-reverse;
		gap: 4rem;
	}

	.s-sobre-nos .left-content {
		max-width: 100%;
		display: flex;
		justify-content: center;
	}
	.s-sobre-nos .right-content {
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.s-sobre-nos {
		padding-top: 3rem;
		padding-bottom: 0rem;
	}
	.s-sobre-nos .right-content .title-sobre-nos {
		font-size: 2.6rem;
	}
	.s-sobre-nos .right-content .subtitle-sobre-nos {
		font-size: 1.8rem;
	}
	.s-sobre-nos .right-content .text-sobre-nos {
		font-size: 1.4rem;
	}
}

.s-localizacoes {
	width: 100%;
	padding-top: 3rem;
	padding-bottom: 6rem;
	background-color: var(--off-white);
}

.s-localizacoes .container {
	display: flex;
	flex-direction: column;
}

.s-localizacoes .top-content {
	width: 100%;
	margin-bottom: 4rem;
}

.s-localizacoes .top-content h2 {
	color: var(--orange);
	font-size: 4rem;
	margin-bottom: 1rem;
}

.s-localizacoes .top-content p {
	color: var(--gray);
	font-size: 2.4rem;
}

.s-localizacoes .bottom-content {
	position: relative;
}

.s-localizacoes .bottom-content .map-box {
	padding: 2rem;
	border-radius: 2.5rem;
	background-color: var(--white);
	border: 0.1rem solid rgb(178, 178, 178, 0.2);
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	transition: filter 0.2s ease;
	cursor: pointer;
}

.s-localizacoes .bottom-content .map-box:hover {
	filter: brightness(0.8);
}

@media (max-width: 1280px) {
	.s-localizacoes .top-content h2 {
		font-size: 3rem;
	}
	.s-localizacoes .top-content p {
		font-size: 2rem;
	}
}

@media (max-width: 700px) {
	.s-localizacoes .top-content {
		margin-bottom: 2rem;
	}
	.s-localizacoes .top-content h2 {
		font-size: 2.8rem;
	}
	.s-localizacoes .top-content p {
		font-size: 1.8rem;
		padding-left: 0;
	}
}

@media (max-width: 600px) {
	.s-localizacoes {
		padding-bottom: 4rem;
	}
	.s-localizacoes .top-content h2 {
		font-size: 2rem;
	}
	.s-localizacoes .top-content p {
		font-size: 1.6rem;
	}
}

.s-integracao {
	width: 100%;
	padding-block: 7.6rem;
	background-color: #3b3b3b;
	background-image: url('../assets/ondas-white.svg');
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.s-integracao .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.s-integracao .top-content {
	width: 100%;
	max-width: 90rem;
	margin-bottom: 4rem;
}

.s-integracao .top-content h2 {
	color: var(--white);
	font-size: 3.4rem;
	text-align: center;
}

.s-integracao .middle-content {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 4rem;
}

.s-integracao .middle-content ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.4rem;
}

.s-integracao .middle-content ul li {
	display: flex;
	align-items: center;
	gap: 1rem;
	border: 2px solid var(--green);
	width: 100%;
	max-width: 41rem;
	padding-block: 0.8rem;
	padding-inline: 2rem;
	padding-block: 1.8rem;
	border-radius: 10rem;
}

.s-integracao .middle-content ul li img {
	padding: 0.8rem;
	width: 100%;
	max-width: 20%;
}

.s-integracao .middle-content ul li span {
	color: var(--white);
	font-size: 2.4rem;
}

@media (max-width: 991px) {
	.s-integracao .top-content h2 {
		font-size: 3.6rem;
	}
}

@media (max-width: 600px) {
	.s-integracao {
		padding-block: 4rem;
	}
	.s-integracao .container {
		align-items: flex-start;
		justify-content: flex-start;
	}
	.s-integracao .top-content {
		max-width: 100%;
		margin-bottom: 2.6rem;
	}
	.s-integracao .top-content h2 {
		font-size: 2rem;
		text-align: left;
	}

	.s-integracao .middle-content {
		align-items: flex-start;
		justify-content: flex-start;
		width: 100%;
	}

	.s-integracao .middle-content ul {
		gap: 1rem;
	}
	.s-integracao .middle-content ul li {
		padding: 1rem;
	}
	.s-integracao .middle-content ul li span {
		font-size: 1.8rem;
	}
	.s-integracao .bottom-content {
		width: 100%;
	}
}

@media (max-width: 500px) {
	.s-integracao .middle-content {
		margin-bottom: 2.6rem;
	}
	.s-integracao .middle-content ul {
		width: 100%;
		gap: 0.8rem;
	}
	.s-integracao .middle-content ul li {
		gap: 0.4rem;
		padding: 0.4rem;
	}
	.s-integracao .middle-content ul li img {
		max-width: 30%;
	}
	.s-integracao .middle-content ul li span {
		font-size: 1.2rem;
	}
}

.s-negocios {
	width: 100%;

	background-image: url('../assets/ondas-gray.svg');
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	padding-top: 10rem;
	padding-bottom: 10rem;
}

.s-negocios .container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

@media (max-width: 1280px) {
	.s-negocios {
		padding-bottom: 4rem;
	}
}

@media (max-width: 500px) {
	.s-negocios {
		padding-top: 3rem;
		padding-bottom: 0rem;
	}
}

.s-slider {
	width: 100%;
	padding-block: 4rem;
	position: relative;
}

.s-slider .top-content {
	width: 100%;
	margin-bottom: 4rem;
}
.s-slider .top-content h2 {
	font-size: 4rem;
	line-height: 100%;
	font-family: var(--mitir);
	font-weight: 500;
	color: var(--gray);
	margin-bottom: 2rem;
	width: 100%;
	max-width: 66%;
}
.s-slider .top-content h5 {
	font-size: 2.6rem;
	font-family: var(--open-sans);
	color: var(--gray);
	margin-bottom: 2rem;
	font-weight: normal;
}
.s-slider .slide {
	position: relative;
}

.s-slider .slide .swiper .swiper-wrapper {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 80%;
}

.s-slider .slide .swiper .swiper-wrapper .swiper-slide img {
	width: 100%;
	max-width: 60%;
}

.s-slider .slide .swiper-button-next {
	right: -8rem;
}
.s-slider .slide .swiper-button-prev {
	left: -12rem;
}

.s-slider .slide .swiper-button-next,
.s-slider .slide .swiper-button-prev {
	width: 5.7rem;
	height: 5.7rem;
}
.s-slider .slide .swiper-button-next::after,
.s-slider .slide .swiper-button-prev::after {
	display: none;
}

@media (max-width: 1400px) {
	.s-slider .slide .swiper {
		max-width: 80%;
	}
	.s-slider .slide .swiper-button-next {
		right: 0;
	}

	.s-slider .slide .swiper-button-prev {
		left: 0;
	}
}
@media (max-width: 991px) {
	.s-slider .top-content h2 {
		font-size: 3rem;
	}
	.s-slider .top-content h5 {
		font-size: 2rem;
	}
	.s-slider {
		overflow: hidden;
	}
	.s-slider .slide .swiper-button-next img,
	.s-slider .slide .swiper-button-prev img {
		width: 3.7rem;
		height: 3.7rem;
	}
}

@media (max-width: 800px) {
	.s-slider .top-content h2 {
		font-size: 3rem;
		max-width: 100%;
	}

	.s-slider .top-content h5 {
		font-size: 1.6rem;
	}
}

@media (max-width: 600px) {
	.s-slider .top-content {
		padding-top: 2rem;
		margin-bottom: 0;
	}
	.s-slider .top-content h2 {
		font-size: 2rem;
	}

	.s-slider {
		padding-top: 0;
		padding-bottom: 2rem;
	}

	.s-slider .slide .swiper {
		max-width: 100%;
		margin-left: 1rem;
	}

	.s-slider .slide .swiper-button-next {
		display: none;
	}

	.s-slider .slide .swiper-button-prev {
		display: none;
	}
}
@media (max-width: 500px) {
	.s-slider .top-content h2 {
		font-size: 2.4rem;
		max-width: 100%;
	}
}

.s-projetos {
	width: 100%;
	background-color: var(--off-white);
	padding-block: 4rem;
}

.s-projetos .container {
	display: flex;
	flex-direction: column;
}

.s-projetos .top-content {
	margin-bottom: 4rem;
}

.s-projetos .top-content h2 {
	color: var(--gray);
	font-size: 4rem;
	margin-bottom: 2.6rem;
}

.s-projetos .top-content h2 span {
	color: var(--blue);
	font-family: var(--mitir);
	display: inline-block;
}

.s-projetos .top-content p,
.s-projetos .top-content h4 {
	color: var(--gray);
	font-size: 2.6rem;
	font-weight: 400;
}

.s-projetos .top-content p span {
	color: var(--blue);
}

.s-projetos .top-content h4 {
	margin-top: 1.6rem;
}

.s-projetos .bottom-content {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
}

.s-projetos .bottom-content .left-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	width: 100%;
	max-width: 56%;
}

.s-projetos .bottom-content .left-cards .card {
	width: 100%;
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 3rem;
	background-color: var(--white);
	padding: 4rem;
	cursor: pointer;
}

.s-projetos .bottom-content .left-cards .card:first-child {
	padding-top: 5.3rem;
}
.s-projetos .bottom-content .left-cards .card img {
	transition: all 0.1s ease-in-out;
	overflow: hidden;
}
.s-projetos .bottom-content .left-cards .card .card-image:hover {
	transform: scale(1.01);
	filter: brightness(0.8);
}

.s-projetos .bottom-content .left-cards .card .card-arrow {
	position: absolute;
	top: 0rem;
	right: 0rem;
	padding: 1rem;
	background-color: var(--blue);
	border-radius: 50%;
	z-index: 10;
}

.s-projetos .bottom-content .left-cards .card .card-arrow.active {
	background-color: var(--green);
	transform: rotate(90deg);
}

.s-projetos .bottom-content .right-large-card {
	width: 100%;
	max-width: 50rem;
	background-color: var(--blue);
	padding: 3rem 3rem 4rem 3rem;
	border-radius: 4.8rem;
	box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
	opacity: 0;
	pointer-events: none;
	display: none;

	position: relative;
}

.s-projetos .bottom-content .right-large-card .tag-card {
	position: absolute;
	padding-block: 1.4rem;
	top: -1rem;
	right: -1rem;
	width: 100%;
	max-width: 20%;
	border-radius: 0 2.9rem 0 2.9rem;
	border: 3px solid var(--white);
	background-color: var(--green);
}

.s-projetos .bottom-content .right-large-card.active {
	display: block;
	opacity: 1;
	pointer-events: all;
}

.s-projetos .bottom-content .right-large-card h4 {
	font-size: 4rem;
	color: var(--white);
	margin-bottom: 0.8rem;
	font-family: var(--mitir);
	font-weight: 500;
}

.s-projetos .bottom-content .right-large-card .scroll-hide .top-card h6,
.s-projetos .bottom-content .right-large-card .scroll-hide .top-card h5 {
	font-size: 2rem;
	color: var(--white);
	font-weight: 300;
}

.s-projetos .bottom-content .right-large-card .scroll-hide .top-card h6 {
	margin-bottom: 1.2rem;
}

.s-projetos .bottom-content .right-large-card .scroll-hide .bottom-card {
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.s-projetos .bottom-content .right-large-card .scroll-hide .bottom-card ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.s-projetos .bottom-content .right-large-card .scroll-hide .bottom-card ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
}

.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide
	.bottom-card
	ul
	li
	img {
	width: 100%;
	max-width: 3%;
	padding-top: 0.6rem;
}

.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide
	.bottom-card
	ul
	li
	span {
	color: var(--white);
	font-size: 2rem;
}

.s-projetos .bottom-content .right-large-card .scroll-hide-credit {
	overflow-y: scroll;
	height: 40rem;
	padding-right: 1rem;
	margin-top: 3rem;
}

.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.top-card-01
	h5,
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.top-card-01
	h6 {
	font-size: 2rem;
	color: var(--white);
	font-weight: 300;
}
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.top-card-02
	h5,
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.top-card-02
	h6 {
	font-size: 2rem;
	color: var(--white);
	font-weight: 300;
}

.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.top-card-03
	h5,
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.top-card-03
	h6 {
	font-size: 2rem;
	color: var(--white);
	font-weight: 300;
}
.s-projetos .bottom-content .right-large-card .scroll-hide-credit .top-card-01,
.s-projetos .bottom-content .right-large-card .scroll-hide-credit .top-card-02,
.s-projetos .bottom-content .right-large-card .scroll-hide-credit .top-card-03 {
	margin-bottom: 1rem;
}

.s-projetos .bottom-content .right-large-card .scroll-hide-credit .top-card-02,
.s-projetos .bottom-content .right-large-card .scroll-hide-credit .top-card-03 {
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-01
	ul,
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-02
	ul,
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-03
	ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-01
	ul
	li,
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-02
	ul
	li,
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-03
	ul
	li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
}

.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-01
	ul
	li
	img,
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-02
	ul
	li
	img,
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-03
	ul
	li
	img {
	width: 100%;
	max-width: 3%;
	padding-top: 0.6rem;
}

.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-01
	ul
	li
	span,
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-02
	ul
	li
	span,
.s-projetos
	.bottom-content
	.right-large-card
	.scroll-hide-credit
	.bottom-card-03
	ul
	li
	span {
	color: var(--white);
	font-size: 2rem;
}

@media (max-width: 1100px) {
	.s-projetos .bottom-content .left-cards {
		gap: 1rem;
	}

	.s-projetos .bottom-content .right-large-card h4 {
		font-size: 3.4rem;
	}
	.s-projetos .bottom-content .right-large-card .scroll-hide .top-card h6,
	.s-projetos .bottom-content .right-large-card .scroll-hide .top-card h5 {
		font-size: 1.6rem;
	}
}

@media (max-width: 800px) {
	.s-projetos .top-content h2 {
		font-size: 3rem;
	}
	.s-projetos .top-content p,
	.s-projetos .top-content h4 {
		font-size: 2rem;
	}

	.s-projetos .bottom-content .left-cards {
		grid-template-columns: repeat(2, 1fr);
		max-width: 44%;
	}
	.s-projetos .bottom-content .right-large-card h4 {
		font-size: 2rem;
	}

	.s-projetos .bottom-content .right-large-card .scroll-hide .top-card h6,
	.s-projetos .bottom-content .right-large-card .scroll-hide .top-card h5,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-01
		h5,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-01
		h6,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-02
		h5,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-02
		h6,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-03
		h5,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-03
		h6 {
		font-size: 1.4rem;
	}
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide
		.bottom-card
		ul
		li
		span,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.bottom-card-01
		ul
		li
		span,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.bottom-card-02
		ul
		li
		span,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.bottom-card-03
		ul
		li
		span {
		font-size: 1.6rem;
	}
}

@media (max-width: 668px) {
	.s-projetos .top-content h2 {
		font-size: 2.4rem;
	}
	.s-projetos .top-content p,
	.s-projetos .top-content h4 {
		font-size: 1.6rem;
	}
	.s-projetos .bottom-content {
		flex-direction: column;
	}
	.s-projetos .bottom-content .left-cards {
		max-width: 100%;
		grid-template-columns: repeat(6, 1fr);
	}
	.s-projetos .bottom-content .left-cards .card:first-child {
		padding-top: 2.6rem;
	}
	.s-projetos .bottom-content .left-cards .card {
		padding-block: 2rem;
		padding-inline: 1rem;
	}
	.s-projetos .bottom-content .left-cards .card .card-arrow {
		max-width: 34%;
	}
	.s-projetos .bottom-content .right-large-card {
		max-width: 100%;
	}

	.s-projetos .bottom-content .right-large-card .tag-card {
		max-width: 10%;
	}

	.s-projetos .bottom-content .right-large-card .scroll-hide .top-card h6,
	.s-projetos .bottom-content .right-large-card .scroll-hide .top-card h5,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-01
		h5,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-01
		h6,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-02
		h5,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-02
		h6,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-03
		h5,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.top-card-03
		h6 {
		font-size: 1.4rem;
	}
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide
		.bottom-card
		ul
		li
		span,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.bottom-card-01
		ul
		li
		span,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.bottom-card-02
		ul
		li
		span,
	.s-projetos
		.bottom-content
		.right-large-card
		.scroll-hide-credit
		.bottom-card-03
		ul
		li
		span {
		font-size: 1.4rem;
	}
}

@media (max-width: 568px) {
	.s-projetos .bottom-content {
		gap: 1.6rem;
	}
	.s-projetos .bottom-content .left-cards {
		gap: 0.6rem;
	}
	.s-projetos .bottom-content .left-cards .card:first-child {
		padding-top: 3rem;
	}
	.s-projetos .bottom-content .left-cards .card {
		padding-block: 2.6rem;
		padding-inline: 1rem;
	}
	.s-projetos .bottom-content .left-cards .card .card-arrow {
		max-width: 40%;
	}
}

@media (max-width: 540px) {
	.s-projetos .bottom-content .left-cards {
		max-width: 100%;
		grid-template-columns: repeat(3, 1fr);
	}
	.s-projetos .bottom-content .left-cards .card:first-child {
		padding-top: 3.4rem;
	}
	.s-projetos .bottom-content .left-cards .card .card-arrow {
		max-width: 34%;
	}
	.s-projetos .bottom-content .right-large-card {
		padding: 2.4rem 1.8rem 2.4rem 1.8rem;
	}
	.s-projetos .bottom-content .right-large-card .tag-card {
		max-width: 15%;
		right: -0.6rem;
	}
}
.s-ajuda-projetos {
	width: 100%;
	padding-top: 4rem;
	padding-bottom: 6rem;
	background-color: var(--off-white);
}

.s-ajuda-projetos .container {
	display: flex;
	flex-direction: column;
	gap: 5rem;
}

.s-ajuda-projetos .top-content h2 {
	color: var(--blue);
	font-size: 4rem;
	margin-bottom: 4rem;
}

.s-ajuda-projetos .top-content p {
	font-size: 2.6rem;
	color: var(--gray);
}

.s-ajuda-projetos .top-content p strong {
	display: block;
}

@media (max-width: 991px) {
	.s-ajuda-projetos .top-content h2 {
		font-size: 3.6rem;
	}
	.s-ajuda-projetos .top-content p {
		font-size: 2.2rem;
	}
}

@media (max-width: 600px) {
	.s-ajuda-projetos {
		padding-block: 3rem;
	}
	.s-ajuda-projetos .top-content h2 {
		font-size: 3.2rem;
		margin-bottom: 2rem;
	}
	.s-ajuda-projetos .top-content p {
		font-size: 2rem;
	}
}

@media (max-width: 500px) {
	.s-ajuda-projetos .container {
		gap: 2.4rem;
	}
	.s-ajuda-projetos .top-content h2 {
		font-size: 2rem;
	}
	.s-ajuda-projetos .top-content p {
		font-size: 1.6rem;
	}
}

.s-fale-conosco {
	width: 100%;
	padding-block: 6rem;
	background-color: var(--green);
}

.s-fale-conosco .container {
	display: flex;
	align-items: flex-start;
}

.s-fale-conosco .main-content {
	background-color: var(--off-white);
	width: 100%;
	max-width: 80rem;
	border-radius: 4.8rem;
	position: relative;
	padding-top: 3.4rem;
	padding-left: 3.4rem;
}

.s-fale-conosco .main-content .tag-fale-conosco {
	position: absolute;
	top: 0;
	right: -2rem;
	z-index: 1;
	width: 100%;
	max-width: 16rem;
}

.s-fale-conosco .main-content .title {
	margin-bottom: 2.6rem;
	width: 100%;
}

.s-fale-conosco .main-content .title h2 {
	font-size: 3.2rem;
	color: var(--gray);
	margin-bottom: 2.4rem;
}
.s-fale-conosco .main-content .title p {
	font-size: 2rem;
	color: var(--gray);
}

.s-fale-conosco .main-content .form {
	width: 100%;
	max-width: 63rem;
}

.s-fale-conosco .main-content .form .form-inputs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
	margin-bottom: 1rem;
	width: 100%;
}

.s-fale-conosco .main-content .form textarea,
.s-fale-conosco .main-content .form .form-inputs input,
.s-fale-conosco .main-content .form .form-inputs select {
	padding: 2rem 1rem 2rem 3rem;
	font-size: 1.8rem;
	color: var(--gray);
	border-radius: 1.3rem;
	background-color: var(--white);
	border: none;
}

.s-fale-conosco .main-content .form textarea {
	width: 100%;
	border: none;
	height: 20rem;
	resize: none;
	margin-bottom: 3.6rem;
}

.s-fale-conosco .main-content .mask-img {
	position: absolute;
	right: -44rem;
	top: 2rem;
	z-index: 0;
	width: 100%;
	max-width: 54rem;
}

@media (max-width: 1280px) {
	.s-fale-conosco .main-content {
		max-width: 60%;
	}
	.s-fale-conosco .main-content .tag-fale-conosco {
		right: -10rem;
	}
	.s-fale-conosco .main-content .mask-img {
		right: -50rem;
	}

	.s-fale-conosco .main-content .form {
		max-width: 55rem;
	}
}

@media (max-width: 1200px) {
	.s-fale-conosco .container {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.s-fale-conosco .main-content {
		max-width: 80%;
		padding-inline: 3.4rem;
	}
	.s-fale-conosco .main-content .tag-fale-conosco {
		right: -5rem;
	}
	.s-fale-conosco .main-content .form {
		max-width: 100%;
	}
	.s-fale-conosco .main-content .mask-img {
		display: none;
	}
}

@media (max-width: 1024px) {
	.s-fale-conosco .main-content {
		max-width: 90%;
	}
	.s-fale-conosco .main-content .tag-fale-conosco {
		max-width: 12rem;
		right: -3rem;
	}
}

@media (max-width: 800px) {
	.s-fale-conosco .main-content .title h2 {
		font-size: 3.6rem;
	}
	.s-fale-conosco .main-content .title p {
		font-size: 2rem;
	}
	.s-fale-conosco .main-content .tag-fale-conosco {
		max-width: 12rem;
		right: -3rem;
	}
}

@media (max-width: 600px) {
	.s-fale-conosco .main-content .tag-fale-conosco {
		max-width: 9rem;
		right: -2rem;
	}
	.s-fale-conosco .main-content .title h2 {
		font-size: 2.6rem;
	}
	.s-fale-conosco .main-content .title p {
		font-size: 1.6rem;
	}
	.s-fale-conosco .main-content .form .form-inputs {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 500px) {
	.s-fale-conosco {
		padding-block: 4rem;
	}
	.s-fale-conosco .main-content {
		max-width: 100%;
		padding: 3rem 3rem 1rem 3rem;
	}
	.s-fale-conosco .main-content .tag-fale-conosco {
		max-width: 6rem;
		right: -1rem;
	}
	.s-fale-conosco .main-content .title h2 {
		font-size: 2rem;
	}
	.s-fale-conosco .main-content .form textarea,
	.s-fale-conosco .main-content .form .form-inputs input,
	.s-fale-conosco .main-content .form .form-inputs select {
		padding: 2rem;
		font-size: 1.6rem;
	}

	.s-fale-conosco .main-content .form textarea {
		height: 12rem;
		margin-bottom: 2rem;
	}
}

footer {
	width: 100%;
	padding-block: 5rem;
	background-color: var(--gray);
	position: relative;
}

footer .container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

footer .voltar {
	position: absolute;
	right: 10rem;
	top: -2.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

footer .voltar .footer-arrow {
	padding: 1rem;
	background-color: var(--white);
	border-radius: 50%;
	transition: transform 0.3s ease-in-out;
}

footer .voltar .footer-arrow:hover {
	transform: translateY(-0.2rem);
}
footer .voltar .footer-arrow img {
	width: 3rem;
}

footer .voltar span {
	font-size: 1.2rem;
	color: var(--footer-white);
	text-align: center;
}

footer .left-content {
	width: 100%;
	max-width: 46%;
	padding-top: 2rem;
}

footer .left-content a .logo-footer {
	max-width: 24%;
	margin-bottom: 2.8rem;
}

footer .left-content .infos ul {
	margin-bottom: 4rem;
}

footer .left-content .infos ul li {
	display: flex;
	align-items: center;
	gap: 1rem;
}

footer .left-content .infos ul li p,
footer .left-content .infos ul li a {
	color: var(--white);
	font-size: 2rem;
}

footer .left-content .infos ul li a {
	transition: color 0.2s ease;
}

footer .left-content .infos ul li a:hover {
	color: var(--orange);
}

footer .left-content .infos ul li img {
	max-width: 2rem;
}

footer .left-content .infos ul li .link-email {
	display: flex;
	align-items: center;
	gap: 1rem;
}

footer .left-content .infos .footer-copy {
	font-size: 1.2rem;
	color: var(--footer-white);
}

footer .right-content {
	width: 100%;
	max-width: 44%;
}

footer .right-content h3 {
	font-size: 4rem;
	color: var(--white);
	margin-bottom: 4rem;
}

footer .right-content .redes {
	display: flex;
	align-items: center;
}

footer .right-content .redes a {
	transition: filter 0.2s ease-in;
}
footer .right-content .redes a img {
	max-width: 80%;
}

footer .right-content .redes a:hover {
	filter: brightness(0.8);
}

@media (max-width: 1024px) {
	footer .voltar {
		right: 5rem;
	}
}

@media (max-width: 800px) {
	footer .voltar {
		right: 3rem;
	}
	footer .left-content {
		max-width: 100%;
	}
	footer .right-content {
		max-width: 30%;
	}
	footer .right-content h3 {
		font-size: 3rem;
		margin-bottom: 2rem;
	}
}

@media (max-width: 600px) {
	footer {
		padding-block: 2.6rem;
	}
	footer .container {
		flex-direction: column-reverse;
		gap: 2rem;
	}
	footer .right-content {
		max-width: 100%;
	}
	footer .left-content {
		max-width: 100%;
	}

	footer .left-content .infos ul {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	footer .left-content .infos ul li {
		gap: 0.6rem;
	}

	footer .left-content .infos ul li p,
	footer .left-content .infos ul li a {
		font-size: 1.4rem;
	}

	footer .left-content footer .right-content {
		max-width: 100%;
	}
	footer .right-content h3 {
		font-size: 2.6rem;
	}
	footer .right-content .redes {
		gap: 0rem;
	}
	footer .right-content .redes a img {
		max-width: 70%;
	}
}

.overlay-cookies {
	width: 100%;
	height: 100%;
	z-index: 19;
	background-color: rgb(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease-in;
}

.cookies-msg {
	width: 90%;
	background-color: var(--white);
	overflow: hidden;
	position: fixed;
	bottom: 5%;
	left: 50%;
	padding-block: 4rem;
	transform: translateX(-50%);
	border-radius: 1.6rem;
	z-index: 20;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease-in;
}

.cookies-msg .container {
	display: flex;
	align-items: center;
}

.cookies-msg.show,
.overlay-cookies.show {
	opacity: 1;
	pointer-events: all;
}

.cookies-msg .cookies-txt {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 2rem;
}

.cookies-msg .cookies-txt p {
	font-weight: 400;
	font-size: 1.8rem;
	width: 100%;
	max-width: 80%;
}

@media (max-width: 1150px) {
	.cookies-msg {
		padding-block: 2rem;
		width: 100%;
		max-width: 80%;
		left: 10rem;
		transform: none;
	}
	.cookies-msg .container {
		justify-content: center;
		flex-direction: column;
	}
	.cookies-msg .cookies-txt p {
		font-size: 1.6rem;
		margin-right: 0;
		max-width: 100%;
	}
	.cookies-msg .cookies-txt p strong {
		display: block;
	}
	.cookies-msg .cookies-txt .btn-primary {
		width: 100%;
		max-width: 40%;
		font-size: 1.8rem;
	}
}

@media (max-width: 600px) {
	.cookies-msg {
		width: 100%;
		max-width: 90%;
		left: 2rem;
		transform: none;
	}
	.cookies-msg .cookies-txt p {
		font-size: 1.4rem;
	}
	.cookies-msg .cookies-txt .btn-primary {
		width: 100%;
		max-width: 100%;
		font-size: 1.8rem;
	}
}
