:root {
	--fonte-poppins: "Poppins", sans-serif;
	--fonte-open-sans: "Open Sans", sans-serif;
	--fonte-roboto: "Roboto", sans-serif;
	--fonte-playfair: "Playfair Display", serif;
	--branco: #ffffff;
	--preto: #000000;
	--azul: #354775;
	--cinza-titulo: #4B4B4C;
	--cinza-texto: #444346;
	--cinza-claro: #849698;
	--vermelho: #CA1015;
	--bg-cinza: #F7F6FB;
	--verde: #377D65;
}

html {
	height: 100%;
}

body {
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	font-size: 1em;
}

p {
	font-family: var(--fonte-open-sans);
	color: var(--cinza-texto);
	font-size: 0.875em;
}

/* ===== TOPO - MENU ===== */
#topo .menu-area,
#topo .barra {
	height: 80px;
	width: 100%;
	position: fixed;
	z-index: 3;
	background-color: var(--azul);
}

#topo .menu-area .navegar {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
}

#topo .menu-area .navegar .menu-desktop {
	width: 100%;
}

#topo .menu-area .navegar .menu-desktop ul {
	display: grid;
	height: 100%;
	grid-template-columns: 1fr 350px 1fr;
	gap: 20px;
}

#topo .menu-area .navegar .menu-desktop .nav-direita,
#topo .menu-area .navegar .menu-desktop .nav-esquerda {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

#topo .menu-area .navegar .menu-desktop .nav-centro {
	margin-inline: auto;
}

#topo .menu-area .navegar .menu-desktop ul li {
	list-style-type: none;
}

#topo .menu-area .navegar .menu-desktop ul .nav-esquerda li,
#topo .menu-area .navegar .menu-desktop ul .nav-direita li {
	display: flex;
	align-items: center;
	flex-grow: 1;
}

#topo .menu-area .navegar .menu-desktop ul .nav-esquerda li:not(:last-of-type):after,
#topo .menu-area .navegar .menu-desktop ul .nav-direita li:not(:last-of-type):after {
	content: "";
	width: 1px;
	height: 20px;
	background-color: rgba(238, 238, 238, 25%);
}

#topo .menu-area .navegar .menu-desktop ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
	height: 100%;
	font-family: var(--fonte-poppins);
	font-size: 1.25em;
	font-weight: 600;
	color: var(--branco);
}

/* #topo .menu-area .navegar nav ul li.active a:after {
	content: "";
	width: 50%;
	height: 3px;
	background-color: var(--branco);
} */

#topo .menu-area .navegar .menu-desktop .container-logo,
#topo .barra .container-logo {
	position: relative;
	display: flex;
	height: 80px;
	width: 213px;
	margin-inline: auto;
}

#topo .menu-area .navegar .menu-desktop .logo,
#topo .barra .logo {
	width: 213px;
	height: 80px;
	object-fit: contain;
	position: absolute;
	top: 15px;
}

#topo .menu-area .navegar .menu-desktop .bg-logo,
#topo .barra .bg-logo {
	position: absolute;
	left: 50%;
	top: 15px;
	transform: translateX(-50%);
	z-index: -1;
}

#topo nav.responsivo ul .menu-produtos,
#topo .menu-area .navegar nav ul .menu-produtos {
	position: relative;
	display: flex;
	align-items: center;
}

#topo nav.responsivo ul .menu-produtos {
	gap: 10px;
	color: var(--branco);
}

#topo nav.responsivo ul .menu-produtos i,
#topo .menu-area .navegar nav ul .menu-produtos i {
	font-size: 12px;
	transition: transform 0.3s ease;
	cursor: pointer;
}

#topo nav.responsivo ul .menu-produtos i,
#topo .menu-area .navegar nav ul .menu-produtos i {
	font-size: 14px;
	padding-block: 8px;
}

#topo nav.responsivo ul .menu-produtos i.rotacionado,
#topo .menu-area .navegar nav ul .menu-produtos i.rotacionado {
	transform: rotate(180deg);
}

#topo nav.responsivo ul .sub-menu,
#topo .menu-area .navegar nav ul .sub-menu {
	position: absolute;
	display: flex;
	flex-direction: column;
	background-color: var(--branco);
	border-radius: 0 0 5px 5px;
	transform: translateX(-50%) translateY(10px);
	left: 50%;
	top: 25px;
	padding-top: 20px;
	padding-inline: 10px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 10;
	box-shadow: rgba(99, 99, 99, 0.3) 1px 3px 8px 0px;
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#topo nav.responsivo ul .menu-produtos .sub-menu.ativo,
#topo .menu-area .navegar nav ul .menu-produtos:hover .sub-menu,
#topo .menu-area .navegar nav ul .menu-produtos .sub-menu.ativo {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

#topo .menu-area .navegar nav ul li:hover>i {
	transform: rotate(180deg);
}

#topo nav.responsivo ul .menu-produtos .sub-menu.ativo {
	width: fit-content;
	padding: 10px 30px;
	top: 25px;
	max-height: 270px;
	overflow-y: auto;
	display: block;
	line-height: 2.5;
}

#topo nav.responsivo ul .sub-menu li a,
#topo .menu-area .navegar nav ul .sub-menu li a {
	white-space: nowrap;
	color: #000000;
}

#topo .menu-area .navegar nav ul .sub-menu li a.active {
	color: #D69F5F;
}

#topo .menu-area .navegar nav ul .sub-menu li a:hover {
	color: #D69F5F;
}

#topo .barra {
	display: none;
}

#topo .barra .menu-mobile-ativador {
	position: absolute;
	z-index: 5;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
}

#topo .barra .hamburger .line {
	width: 40px;
	height: 4px;
	background-color: var(--branco);
	display: block;
	margin: 8px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#topo .barra .hamburger.is-active .line:nth-child(1) {
	-webkit-transform: translateY(13px) rotate(45deg);
	-ms-transform: translateY(13px) rotate(45deg);
	-o-transform: translateY(13px) rotate(45deg);
	transform: translateY(11px) rotate(45deg);
}

#topo .barra .hamburger.is-active .line:nth-child(2) {
	opacity: 0;
}

#topo .barra .hamburger.is-active .line:nth-child(3) {
	-webkit-transform: translateY(-13px) rotate(-45deg);
	-ms-transform: translateY(-13px) rotate(-45deg);
	-o-transform: translateY(-13px) rotate(-45deg);
	transform: translateY(-14px) rotate(-45deg);
}

#topo .responsivo {
	width: 100%;
	height: auto;
	padding-top: 120px;
	top: 0px;
	position: fixed;
	margin: 0;
	left: -100%;
	transition: 0.5s ease-in-out;
	background-color: var(--azul);
	z-index: 2;
}

#topo .responsivo.mostrar-menu {
	overflow-y: scroll;
	left: 0;
}

#topo .responsivo ul {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#topo .responsivo ul li {
	position: relative;
	width: fit-content;
	list-style: none;
	margin-bottom: 25px;
}

#topo .responsivo ul li a {
	color: var(--branco);
	font-size: 1.625em;
	font-family: var(--fonte-poppins);
	font-weight: 600;
}

/* #topo .responsivo ul li.active:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 4px;
	background-color: var(--branco);
} */

@media (max-width: 1440px) {
	#topo .menu-area .navegar .menu-desktop ul {
		grid-template-columns: 1fr 300px 1fr;
		gap: 0;
	}
}

@media (max-width: 1200px) {
	#topo .menu-area {
		display: none;
	}

	#topo .barra {
		display: block;
		border-bottom: 2px solid var(--verde);
	}

	#topo .menu-area .navegar .menu-desktop .container-logo,
	#topo .barra .container-logo {
		margin-inline: 0 auto;
	}

	#topo .menu-area .navegar .menu-desktop .logo,
	#topo .barra .logo {
		position: unset;
		height: 60px;
		margin-block: auto;
	}

	#topo .menu-area .navegar .menu-desktop .bg-logo,
	#topo .barra .bg-logo {
		display: none;
	}
}

@media (min-width: 1200px) {
	#topo .responsivo {
		display: none;
	}
}


/* ===== TOPO - BANNER ===== */
#topo .slick-dots li button:before {
	background: transparent !important;
	content: "" !important;
	display: block !important;
	height: 13px !important;
	width: 13px !important;
	border-radius: 50%;
	border: 1px solid var(--branco);
}

#topo .slick-dots li.slick-active button:before,
#topo .slick-dots li button:hover:before {
	background: var(--branco) !important;
}

#topo .conteudo-banners {
	position: absolute;
	top: 50%;
	width: 100%;
	left: 50%;
	transform: translateX(-50%);
	color: var(--branco);
	font-family: var(--fonte-open-sans);
	text-align: center;
	text-shadow: -2px 2px 4px rgb(0 0 0 / 65%);
	z-index: 1;
	-webkit-transition: margin-left .4s ease-in-out, opacity .4s ease-in-out;
	transition: margin-left .4s ease-in-out, opacity .4s ease-in-out;
}

#topo .conteudo-banners h1 {
	font-size: 3.125em;
	font-family: var(--fonte-playfair);
}

#topo .conteudo-banners h2 {
	font-size: 1.5625em;
	font-family: var(--fonte-open-sans);
}

#topo .lista-banners {
	clip-path: ellipse(85% 85% at 50% 15%);
	-webkit-clip-path: ellipse(85% 85% at 50% 15%);
}

#topo nav a.mobile {
	display: none;
}

#topo .slick-dotted.slick-slider {
	margin: 0 !important;
}

#topo .item {
	position: relative;
	height: 100%;
}

#topo .item.interno img {
	width: 100%;
}

#topo video {
	width: 100%;
	object-position: center;
	position: relative;
	top: 0;
	left: 0;
	object-fit: cover;
}

#topo .sombra-banner {
	position: absolute;
	width: 100%;
	top: 0;
}

.dots-container {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%)
}

ul.banner-dots {
	display: flex;
	gap: 10px;
	padding: 5px;
	border-radius: 20px;
	background-color: var(--azul);
	/* transform: translateX(-50%); */
}

ul.banner-dots li {
	display: flex;
	align-items: center;
	justify-content: center;
}

ul.banner-dots li button {
	height: 8px;
	width: 8px;
	border: none;
	border-radius: 50%;
	background-color: var(--branco);
	cursor: pointer;
	transition: 0.3s ease;
}

ul.banner-dots li.slick-active button {
	background-color: var(--verde) !important;
	transform: scale(1.25);
}

@media (max-width: 480px) {
	#topo .lista-banners {
		clip-path: ellipse(115% 85% at 50% 15%);
		-webkit-clip-path: ellipse(115% 85% at 50% 15%);
	}

	#topo .sombra-banner {
		top: -80px;
	}
}

/* ===== SOBRE ===== */
#sobre {
	display: flex;
	justify-content: center;
	position: relative;
	padding-top: 100px;
	margin-bottom: -40px;
	scroll-margin-top: 50px;
	overflow-x: clip;
}

#sobre .area-um {
	max-width: 960px;
}

#sobre .area-um h2 {
	font-size: 3em;
	font-weight: 700;
	color: var(--cinza-titulo);
	margin-bottom: 40px;
	font-family: var(--fonte-playfair);
}

#sobre .area-um .center-maior p {
	text-align: left;
	font-size: 0.875em;
	margin-bottom: 15px;
}

#sobre .area-um .center-maior p:last-of-type {
	margin-bottom: 285px;
}

#sobre .area-texto {
	display: flex;
	background-color: var(--azul);
	position: absolute;
	width: 100%;
	min-height: 155px;
	bottom: 40px;
	padding-block: 30px;
}

#sobre .area-texto .center-maior {
	display: flex;
	justify-content: center;
}

#sobre .area-texto .center-maior .area-1 {
	display: flex;
	flex-direction: column;
	max-width: 960px;
	width: 100%;
	justify-content: center;
	align-items: center;
}

#sobre .area-texto .center-maior .area-2 {
	min-width: 420px;
}

#sobre .area-texto .center-maior h2 {
	max-width: 815px;
	color: var(--branco);
	font-family: var(--fonte-roboto);
	font-size: 1.625em;
	font-weight: 500;
	line-height: 120%;
	margin-bottom: 30px;
	text-align: center;
}

#sobre .area-texto .center-maior p {
	max-width: 700px;
	color: var(--branco);
	font-family: var(--fonte-roboto);
	font-style: italic;
	font-size: 1.25em;
	line-height: 140%;
	font-weight: 300;
	text-align: center;
}

#sobre .area-dois {
	min-width: 420px;
	min-height: 540px;
	max-width: 420px;
	max-height: 540px;
	z-index: 1;
	padding-right: 20px;
	margin-block: auto 0;
	align-content: flex-end;
}

#sobre .area-dois a {
	display: flex;
}

#sobre .area-dois a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 1024px) {
	#sobre {
		flex-direction: column;
		margin-bottom: 100px;
	}

	#sobre .area-um {
		max-width: 100%;
	}

	#sobre .area-um h2 {
		text-align: center;
	}

	#sobre .area-um .center-maior p:last-of-type {
		margin-bottom: 0;
	}

	#sobre .area-texto {
		position: unset;
		margin-block: 35px;
	}

	#sobre .area-texto .center-maior .area-2 {
		display: none;
	}

	#sobre .area-dois {
		margin-inline: auto;
		padding: 0;
		min-width: auto;
		min-height: auto;
		width: 95%;
	}
}

@media (max-width: 480px) {
	#sobre .area-um .center-maior p {
		text-align: justify;
	}
}

/* ===== INSTITUCIONAL ===== */

#principios {
	background-color: #F6F7F9;
	padding-block: 100px;
	scroll-margin-top: 50px;
}

#principios .principios-lista-itens {
	justify-content: space-around;
}

#principios .slick-dots {
	bottom: -35px;
}

#principios .slick-dots li button:before {
	opacity: 1;
	color: var(--cinza-texto);
	font-size: 10px;
}

#principios .slick-dots li.slick-active button:before {
	font-size: 14px;
	color: var(--verde);
	display: flex;
	transition: 0.3s ease;
	justify-content: center;
}

#principios .principios-item {
	display: flex;
	flex-direction: column;
	max-width: 400px;
	width: 100%;
	align-items: center;
	text-align: center;
	gap: 10px;
	margin-inline: auto;
}

#principios .principios-item img {
	width: 80px;
	height: 80px;
}

#principios .principios-item h4 {
	font-size: 1.5625em;
	color: var(--cinza-titulo);
	font-family: var(--fonte-playfair);
}

/* ===== PORTFOLIO ===== */

#portfolio {
	padding-block: 100px;
	scroll-margin-top: 50px;
}

#portfolio p {
	margin-bottom: 40px;
	margin-inline: 15px;
	text-align: center;
}

#portfolio p:last-of-type {
	margin-bottom: 60px;
}

#portfolio .mosaico-grid {
	display: grid;
	max-width: 1920px;
	margin-inline: auto;
	grid-template-rows: repeat(2, 1fr);
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	padding-inline: 10px;
}

#portfolio .mosaico-item {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#portfolio .mosaico-item.item-1 {
	grid-row: 1;
	grid-column: 1;
}

#portfolio .mosaico-item.item-2 {
	grid-row: 2;
	grid-column: 1;
}

#portfolio .mosaico-item.item-3 {
	grid-row: 1 / span 2;
	grid-column: 2;
	max-width: 455px;
	max-height: 650px;
}

#portfolio .mosaico-item.item-4 {
	grid-row: 1;
	grid-column: 3 / span 2;
	max-width: 940px;
	max-height: 315px;
}

#portfolio .mosaico-item.item-5 {
	grid-row: 2;
	grid-column: 3;
}

#portfolio .mosaico-item.item-6 {
	grid-row: 2;
	grid-column: 4;
}

#portfolio .mosaico-item.item-1,
#portfolio .mosaico-item.item-2,
#portfolio .mosaico-item.item-5,
#portfolio .mosaico-item.item-6 {
	max-width: 455px;
	max-height: 315px;
}

#portfolio .mosaico-item.item-3 {
	max-width: 455px;
	max-height: 650px;
}

#portfolio .mosaico-item.item-4 {
	max-width: 940px;
	max-height: 315px;
}

#portfolio .mosaico-item img {
	display: flex;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1100px) {
	#portfolio p {
		margin-inline: 0px;
	}
}

@media (max-width: 900px) {
	#portfolio .mosaico-grid {
		grid-template-rows: repeat(4, 1fr);
		grid-template-columns: repeat(2, 1fr);
	}

	#portfolio .mosaico-item.item-4 {
		grid-row: 3;
		grid-column: 1 / span 2;
	}

	#portfolio .mosaico-item.item-5 {
		grid-row: 4;
		grid-column: 1;
	}

	#portfolio .mosaico-item.item-6 {
		grid-row: 4;
		grid-column: 2;
	}
}

@media (max-width: 480px) {
	#portfolio p {
		text-align: justify;
	}
}

/* ===== SEJA FORNECEDOR ===== */
#seja-fornecedor {
	background-color: var(--azul);
	padding-block: 65px;
	scroll-margin-top: 150px;
}

#seja-fornecedor .center {
	min-height: 150px;
}

#portfolio h2,
#seja-fornecedor h2,
#contato h2,
#certificacoes h2,
#politica-privacidade .center>h2 {
	font-weight: 700;
	font-size: 3.125em;
	font-family: var(--fonte-playfair);
	color: var(--cinza-titulo);
	text-align: center;
	margin-bottom: 40px;
}

#seja-fornecedor h2 {
	color: var(--branco);
	line-height: 1;
}

#seja-fornecedor form {
	display: flex;
	background-color: var(--branco);
	width: 630px;
	justify-self: center;
	align-items: center;
	padding: 5px;
	border-radius: 5px;
}

#seja-fornecedor .container-input {
	display: flex;
	align-items: center;
}

#seja-fornecedor img {
	width: 20px;
	height: 20px;
	padding: 10px;
}

#seja-fornecedor input {
	border: none;
	margin-inline: 0 auto;
	font-family: var(--fonte-open-sans);
	padding: 13px 10px;
	font-size: 1em;
}

#seja-fornecedor .seja-fornecedor-select {
	border: none;
}

#seja-fornecedor .select2 {
	position: relative;
	margin-inline: 5px;
}

#seja-fornecedor .select2:before {
	content: "";
	left: -6px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	width: 1px;
	height: 55px;
	background-color: var(--cinza-claro);
}

#seja-fornecedor .select2-container--default .select2-selection--single {
	border: none;
}

#seja-fornecedor .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--cinza-claro);
	font-family: var(--fonte-open-sans);
	font-size: 1em;
}

#seja-fornecedor .select2-container--default .select2-selection--single .select2-selection__arrow b {
	transform: scale(1.5);
}

.select2-dropdown {
	border: none;
}

.select2-results__option {
	font-family: var(--fonte-open-sans);
	font-size: 1em;
	color: var(--cinza-claro);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: var(--verde);
}

#seja-fornecedor button {
	border: none;
	background-color: var(--verde);
	font-family: var(--fonte-roboto);
	font-size: 1.125em;
	color: var(--branco);
	width: 155px;
	height: 50px;
	border-radius: 3px;
	margin-inline: auto 0;
	cursor: pointer;
}

#seja-fornecedor #area-mensagem {
	display: none;
	height: 60px;
}

#seja-fornecedor #area-mensagem p {
	color: var(--branco);
	font-family: var(--fonte-open-sans);
	font-size: 1.125em;
	text-align: center;
}

@media (max-width: 768px) {
	#seja-fornecedor .container-input {
		display: flex;
		align-items: center;
		width: 100%;
		box-shadow: 2px 2px 4px -3px var(--cinza-claro);
		border-radius: 5px;
		overflow: hidden;
	}

	#seja-fornecedor form {
		flex-direction: column;
		gap: 15px;
		max-width: 630px;
		width: 100%;
	}

	#seja-fornecedor button {
		margin-inline: auto;
	}

	#seja-fornecedor .select2:before {
		display: none;
	}

	#seja-fornecedor input {
		width: 100%;
	}

	#seja-fornecedor .select2 {
		box-shadow: 2px 2px 4px -3px var(--cinza-claro);
		width: 100% !important;
		text-align: center;
		border-radius: 5px;
	}

	#seja-fornecedor .select2-container--default .select2-selection--single {
		height: 48px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#seja-fornecedor .select2-container--default .select2-selection--single .select2-selection__arrow {
		position: relative;
	}
}

/* ===== CERTIFICAÇÕES ===== */
#certificacoes {
	background-color: #F6F7F9;
	padding-block: 100px;
	scroll-margin-top: 50px;
}

#certificacoes .slick-dots {
	bottom: -35px;
}

#certificacoes .slick-dots li button:before {
	opacity: 1;
	color: var(--cinza-texto);
	font-size: 10px;
}

#certificacoes .slick-dots li.slick-active button:before {
	font-size: 14px;
	color: var(--verde);
	display: flex;
	transition: 0.3s ease;
	justify-content: center;
}

#certificacoes .certificacoes-item {
	display: flex;
	flex-direction: column;
	max-width: 275px;
	max-height: 150px;
	width: 100%;
	height: 100%;
	align-items: center;
	text-align: center;
	gap: 10px;
	margin-inline: auto;
}

#certificacoes .certificacoes-item a {
	position: relative;
}

#certificacoes .certificacoes-item a:before,
#certificacoes .certificacoes-item a:after {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 35px;
	color: var(--azul);
	transition: opacity 0.3s ease;
}

#certificacoes .certificacoes-item a:before {
	content: "";
	opacity: 1;
	pointer-events: none;
}

#certificacoes .certificacoes-item a:after {
	content: "\f35d";
	opacity: 0;
	pointer-events: none;
}

#certificacoes .certificacoes-item a:hover:before {
	opacity: 0;
}

#certificacoes .certificacoes-item a:hover:after {
	opacity: 1;
}

#certificacoes .certificacoes-item img {
	max-width: 275px;
	max-height: 150px;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#certificacoes .certificacoes-item h4 {
	font-size: 1.5625em;
	color: var(--cinza-titulo);
	font-family: var(--fonte-playfair);
}

/* ===== CONTATO ===== */
#contato {
	padding-block: 100px;
	scroll-margin-top: 50px;
	overflow-x: clip;
}

#contato .itens {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}

#contato .itens::after {
	content: "";
	display: table;
	clear: both;
}

#contato .esquerda {
	width: 32%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

#contato .esquerda .item {
	display: flex;
	align-items: center;
	gap: 10px;
	transition: var(--transicao);
}

#contato .esquerda .item:not(.nao):hover {
	transform: scale(1.03);
}

#contato .esquerda .item.nao a {
	transition: var(--transicao);
}

#contato .esquerda .item.nao a:hover {
	transform: scale(1.03);
}

#contato .esquerda .item:nth-child(1),
#contato .esquerda .item:nth-child(2),
#contato .esquerda .item:nth-child(5) {
	align-items: flex-start;
}

#contato .esquerda .area-1 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
}

#contato .esquerda .area-1 i {
	color: #2323A6;
	font-size: 50px;
}

#contato .esquerda .area-2 {
	display: flex;
	font-family: var(--fonte-textos);
	padding: 0 80px 0 8px;
	box-sizing: border-box;
	line-height: 180%;
	flex-direction: column;
}

#contato .esquerda .area-2 a {
	color: var(--cinza-texto);
	font-family: var(--fonte-open-sans);
	font-weight: 500;
	font-size: 0.875em;
}

#contato .esquerda .area-2 a p {
	font-size: 1em;
}

#contato .direita {
	width: 68%;
}

#contato .formulario input {
	width: 100%;
	height: 55px;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 20px;
	border: none;
	box-sizing: border-box;
	background: #ffffff;
	border: 1px solid #d2d2d2;
	font-size: 1em !important;
	color: #2B3E4B;
}

#contato .formulario textarea {
	width: 100%;
	height: 230px;
	border: none;
	background: #ffffff;
	border: 1px solid #d2d2d2;
	font-size: 1em !important;
	color: #2B3E4B;
	padding: 16px;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	margin-bottom: 28px;
}

#contato .btn_enviar {
	width: 250px;
	height: 55px;
	background-color: var(--verde);
	border: none;
	color: var(--branco);
	border-radius: 3px;
	font-family: var(--fonte-open-sans);
	font-size: 1.125em;
	float: right;
	cursor: pointer;
}

#contato .captcha-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 1000px) {
	#contato .itens {
		flex-direction: column-reverse;
	}

	#contato .esquerda,
	#contato .direita {
		width: 100%;
	}

	#contato .esquerda {
		margin-top: 30px;
	}

	#contato .esquerda .area-1 {
		width: fit-content;
	}

	#contato .esquerda .area-2 {
		width: 100%;
		padding: 0;
	}
}

@media (max-width: 768px) {
	#contato .captcha-area {
		flex-direction: column;
		gap: 30px;
	}
}

/*===== COPYRIGHT =====*/
#copyright {
	background-color: var(--azul);
	color: var(--branco);
	font-family: var(--fonte-open-sans);
	font-size: 0.875em;
}

#copyright .center-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1120px;
	min-height: 80px;
	margin-inline: auto;
	width: 95%;
}

#copyright .texto {
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0%;

}

#copyright .center-footer .texto,
#copyright .center-footer a.hostche {
	padding-block: 15px;
}

#copyright span {
	white-space: nowrap;
}

@media (max-width: 768px) {
	#copyright .center {
		flex-direction: column;
		gap: 10px;
		text-align: center;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	#copyright .center-footer {
		flex-direction: column;
		text-align: center;
	}

	#copyright .center-footer a.hostche {
		padding-block: 0 15px;
	}
}

/* ===== REDES SOCIAIS ===== */
.redes-sociais {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.redes-sociais a {
	text-decoration: none;
}

.redes-sociais-right {
	height: auto;
	position: fixed;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	transition: 1s;
}

.redes-sociais-right.redes-whatsapp {
	top: auto !important;
	bottom: 10% !important;
}

.redes-sociais-right.redes-whatsapp .fa-whatsapp {
	font-size: 1.9em;
}

.redes-sociais-right.redes-whatsapp .bolinha-social {
	width: 70px;
	height: 70px;
}

.redes-sociais-right a {
	text-decoration: none;
	margin: 5px 0px;
	height: 50px;
	display: flex;
	align-items: center;
}

.bolinha-social {
	background: #efefef;
	width: 42px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	text-decoration: none;
	font-size: 1.250em;
	color: #989898;
	margin: 0 5px;
	transition: 0.5s;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-whatsapp {
	color: #25D366;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-youtube {
	color: #FF0000;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-instagram {
	color: #C13584;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-facebook-f {
	color: #3b5998;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-linkedin {
	color: #2867B2;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-twitter {
	color: #1DA1F2;
}


.redes-sociais-right .fa-facebook-f {
	color: var(--branco);
}

.redes-sociais-right .fa-twitter {
	color: var(--branco);
}

.redes-sociais-right .fa-linkedin {
	color: var(--branco);
	font-size: 1.1em;
}

.redes-sociais-right .fa-instagram {
	color: var(--branco);
	font-size: 1.1875em;
}

.redes-sociais-right .fa-whatsapp {
	color: var(--branco);
	font-size: 1.2em;
}

.redes-sociais-right .fa-youtube {
	color: var(--branco);
	font-size: 1.1em;
}

.bolinha-facebook {
	background: #3b5998 !important;
}

.bolinha-linkedin {
	background: #2867B2 !important;
}

.bolinha-instagram {
	background: #C13584 !important;
}

.bolinha-twitter {
	background: #1DA1F2 !important;
}

.bolinha-x {
	background: #000000 !important;
}

.bolinha-whatsapp {
	background: #25D366 !important;
}

.bolinha-youtube {
	background: #FF0000 !important;
}

.redes-sociais-right .bolinha-social:hover {
	transform: scale(1.2);
}

@media (max-width: 1024px) {
	.redes-sociais-right .ocultarMobile {
		display: none;
	}

	.redes-sociais-right2 {
		height: auto;
		position: fixed;
		bottom: 60px;
		right: 10px;
		z-index: 999;
		display: flex;
		flex-direction: column;
		transition: 1s;
		transform: scale(1.2);
	}

	.redes-sociais-right2 a i {
		color: var(--branco);
	}

}

@media (max-width: 768px) {
	.redes-sociais-right {
		top: -100%;
	}

	.mostrar-redes-sociais {
		top: 100px;
		transform: none;
	}
}