* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	min-width: 0;
}
@font-face {
	font-family: 'ExoBold';
	src: url(./assets/fonts/Exo-Bold.ttf) format('truetype');
}
@font-face {
	font-family: 'ManiBold';
	src: url(./assets/fonts/ManifoldCF-Bold.otf) format('truetype');
}
@font-face {
	font-family: 'ManiExtraBold';
	src: url(./assets/fonts/ManifoldCF-ExtraBold.otf) format('truetype');
}
@font-face {
	font-family: 'ManiMedium';
	src: url(./assets/fonts/ManifoldCF-Medium.otf) format('truetype');
}
@font-face {
	font-family: 'ManiRegular';
	src: url(./assets/fonts/ManifoldCF-Regular.otf) format('truetype');
}
@font-face {
	font-family: 'OpenSans';
	src: url(./assets/fonts/OpenSans-Regular.ttf) format('truetype');
}
:root {
	--white: #f9f9f9;
	--red: #fa2046;
	--black: #261d21;
	--green: #28fdaa;
	--blue: #5271ff;
	--dark-blue: #093189;
	--pink: #cc33cc;
	--gray: #707070;
	--dark-gray: #606060;
	--orange: #ff6840;
}
html {
	font-size: 62.5%;
}
::-webkit-scrollbar {
	width: 0.8rem;
}
::-webkit-scrollbar-track {
	background: var(--white);
}
::-webkit-scrollbar-thumb {
	background: var(--red);
}
::-webkit-scrollbar-thumb:hover {
	background: var(--red);
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateX(-2rem);
	}
	to {
		opacity: 1;
		transform: translateX(0rem);
	}
}
.menu-lateral {
	position: absolute;
	width: 100%;
	max-width: 52rem;
	height: 48rem;
	top: 7.2rem;
	left: -52rem;
	border-radius: 0 0 1.6rem 1.6rem;
	padding: 1.6rem 3.2rem 3.2rem 3.2rem;
	z-index: 20;
	background-color: var(--black);
	opacity: 0;
	pointer-events: none;
	transition: all 0.2s ease-in-out;
}
.menu-lateral .gradient-border {
	background-clip: padding-box;
	position: relative;
	padding: 7.3rem 4rem 9.2rem 4rem;
	border-radius: 3.6rem;
}
.menu-lateral .gradient-border::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #fff0;
	border-radius: inherit;
	background: linear-gradient(
			0deg,
			#fa2046 0%,
			#ff6840 23%,
			#cc33cc 44%,
			#093189 66%,
			#5271ff 85%,
			#28fdaa 100%
		)
		0% 0%;
	mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
}
.menu-lateral .gradient-border ul {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 2.6rem;
}
.menu-lateral .gradient-border ul li {
	position: relative;
	width: 100%;
}
.menu-lateral .gradient-border ul li::after {
	content: '';
	width: 100%;
	height: 1px;
	background-color: var(--gray);
	position: absolute;
	bottom: -2rem;
	left: 0;
}
.menu-lateral .gradient-border ul li a {
	color: var(--white);
	font-size: 3.8rem;
	font-family: 'ManiBold';
	padding-bottom: 2rem;
	transition: color 0.2s ease;
}
.menu-lateral .gradient-border ul li a:hover {
	color: var(--gray);
}
.menu-opened .menu-lateral,
.menu-opened .menu-lateral {
	opacity: 1;
	transform: translateY(0%);
	pointer-events: all;
}
header.transparent {
	background-color: rgb(0 0 0 / 0.9);
	box-shadow: 0 4px 5px 0 rgb(0 0 0 / 0.26);
}
@media (max-width: 320px) {
	html {
		font-size: 55%;
	}
}
body {
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1 {
	font-size: 4rem;
	font-family: 'ExoBold', sans-serif;
}
h2 {
	font-size: 4rem;
	font-family: 'ExoBold', sans-serif;
}
p {
	color: var(--black);
	font-family: 'ManiRegular', sans-serif;
}
strong {
	font-family: 'ManiBold', sans-serif;
}
span {
	color: var(--black);
}
input,
textarea {
	font-family: 'ManiMedium';
}
img {
	max-width: 100%;
	display: block;
}
a {
	text-decoration: none;
}
li {
	list-style: none;
}
li span {
	font-family: 'ManiBold', sans-serif;
}
span {
	font-family: 'ManiRegular', sans-serif;
}
button {
	background-color: #fff0;
	border: 0;
	cursor: pointer;
}
.title-main {
	width: 100%;
}
.title-main .main-title-purple {
	display: flex;
	align-items: center;
	gap: 3.6rem;
	width: 100%;
}
.title-main .main-title-purple h2 {
	font-family: 'ExoBold', sans-serif;
	color: var(--pink);
	font-size: 4rem;
	width: 80rem;
}
.title-main .main-title-purple-reverse {
	display: flex;
	align-items: center;
	gap: 3.6rem;
	width: 100%;
}
.title-main .main-title-purple::before {
	content: '';
	width: 100%;
	height: 0.4rem;
	display: block;
	background: #fff0 linear-gradient(90deg, #53f4fd 0%, #ca37cd 100%) 0% 0%
		no-repeat padding-box;
}
.title-main .main-title-purple-reverse h1 {
	font-family: 'ExoBold', sans-serif;
	color: var(--pink);
	font-size: 4rem;
}
.title-main .main-title-purple-reverse::after {
	content: '';
	width: 100%;
	height: 0.4rem;
	display: block;
	background: #fff0 linear-gradient(90deg, #ca37cd 0%, #53f4fd 100%) 0% 0%
		no-repeat padding-box;
}
.title-main .main-title-blue {
	display: flex;
	align-items: center;
	gap: 3.7rem;
	width: 100%;
}
.title-main .main-title-blue h2 {
	font-family: 'ExoBold', sans-serif;
	color: var(--blue);
	font-size: 4rem;
	width: 30rem;
}
.title-main .main-title-blue::after {
	content: '';
	width: 100%;
	height: 0.4rem;
	display: block;
	margin-top: 1rem;
	background: #fff0 linear-gradient(90deg, #5176fc 0%, #2af8ad 100%) 0% 0%
		no-repeat padding-box;
}
.title-main .main-title-red {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.title-main .main-title-red h2 {
	font-family: 'ExoBold', sans-serif;
	font-size: 4rem;
	color: var(--orange);
	width: 74rem;
}
.title-main .main-title-red::after {
	content: '';
	width: 100%;
	height: 0.4rem;
	display: block;
	margin-top: 1rem;
	background: #fff0 linear-gradient(90deg, #ffe76d 0%, #fa2046 100%) 0% 0%
		no-repeat padding-box;
}
.title-main .main-title-dark-blue {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.title-main .main-title-dark-blue h2 {
	font-size: 4rem;
	font-family: 'ExoBold', sans-serif;
	color: var(--dark-blue);
	width: 27rem;
}
.title-main .main-title-dark-blue::before {
	content: '';
	width: 100%;
	height: 0.4rem;
	display: block;
	margin-top: 1rem;
	background: #fff0 linear-gradient(90deg, #26f2a8 0%, #0a378a 100%) 0% 0%
		no-repeat padding-box;
}
@media (max-width: 1300px) {
	.title-main .main-title-purple h2 {
		width: 80rem;
	}
	.title-main .main-title-blue {
		gap: 6rem;
	}
	.title-main .main-title-dark-blue h2 {
		width: 31rem;
	}
	.title-main .main-title-red h2 {
		width: 79rem;
	}
}
@media (max-width: 1200px) {
	.title-main .main-title-purple h1 {
		width: 84rem;
	}
}
@media (max-width: 1100px) {
	.title-main .main-title-purple h2 {
		width: 90rem;
	}
	.title-main .main-title-blue {
		gap: 3.7rem;
	}
	.title-main .main-title-blue h2 {
		width: 34rem;
	}
	.title-main .main-title-red h2 {
		width: 100rem;
	}
	.title-main .main-title-dark-blue h2 {
		width: 38rem;
	}
}
@media (max-width: 1000px) {
	.title-main .main-title-purple h2 {
		width: 100rem;
	}
	.title-main .main-title-red h2 {
		width: 120rem;
	}
}
@media (max-width: 860px) {
	.title-main .main-title-purple-reverse {
		gap: 7rem;
	}
	.title-main .main-title-purple-reverse h1 {
		font-size: 3.2rem;
	}
	.title-main .main-title-purple h2 {
		width: 86rem;
		font-size: 3.2rem;
	}
	.title-main .main-title-blue {
		gap: 0rem;
	}
	.title-main .main-title-blue h2 {
		font-size: 3.2rem;
	}
	.title-main .main-title-red h2 {
		width: 80rem;
		font-size: 3.2rem;
	}
	.title-main .main-title-dark-blue h2 {
		width: 30rem;
		font-size: 3.2rem;
	}
}
@media (max-width: 768px) {
	.title-main .main-title-purple h2 {
		width: 120rem;
	}
	.title-main .main-title-blue {
		gap: 3.7rem;
	}
	.title-main .main-title-blue h2 {
		width: 34rem;
	}
	.title-main .main-title-red h2 {
		width: 140rem;
	}
}
@media (max-width: 600px) {
	.title-main .main-title-purple {
		gap: 1.6rem;
	}
	.title-main .main-title-purple h2 {
		font-size: 2.8rem;
		width: 85rem;
	}
	.title-main .main-title-blue h2 {
		font-size: 2.8rem;
		width: 26rem;
	}
	.title-main .main-title-red h2 {
		font-size: 2.8rem;
		width: 90rem;
	}
	.title-main .main-title-dark-blue h2 {
		font-size: 2.8rem;
		width: 29rem;
	}
}
@media (max-width: 500px) {
	.title-main .main-title-purple-reverse {
		gap: 4rem;
	}
	.title-main .main-title-purple-reverse h1 {
		font-size: 2rem;
	}
	.title-main .main-title-purple {
		gap: 0.8rem;
	}
	.title-main .main-title-purple h2 {
		font-size: 2rem;
		width: 80rem;
	}
	.title-main .main-title-blue {
		gap: 1.4rem;
		font-size: 2rem;
	}
	.title-main .main-title-blue h2 {
		font-size: 2rem;
		width: 22rem;
	}
	.title-main .main-title-blue::after {
		margin-top: 0;
	}
	.title-main .main-title-red::after {
		margin-top: 0;
	}
	.title-main .main-title-dark-blue::before {
		margin-top: 0;
	}
	.title-main .main-title-red h2 {
		font-size: 2rem;
		width: 95rem;
	}
	.title-main .main-title-dark-blue h2 {
		font-size: 2rem;
		width: 23rem;
	}
}
.container {
	width: 100%;
	max-width: 1330px;
	padding: 0 15px;
	margin: 0 auto;
}
@media (max-width: 1440px) {
	.container {
		max-width: 124.6rem;
	}
}
.mask-img {
	transition: filter 0.5s ease;
	width: 100%;
}
.mask-img:hover {
	filter: brightness(0.9);
}
.btn {
	color: var(--white);
	font-size: 2.8rem;
	font-family: 'ManiBold', sans-serif;
	padding-top: 1.9rem;
	padding-bottom: 2.8rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 2.1rem;
	transition: all 0.2s ease-in-out;
}
.btn:hover {
	transform: translateY(-1px);
	filter: brightness(0.94);
}
@media (max-width: 500px) {
	.btn {
		padding-top: 1rem;
		padding-bottom: 1.6rem;
		border-radius: 1.6rem;
	}
}
.blue-gradiant {
	background: linear-gradient(
		249deg,
		#5176fc 0%,
		#5078fa 33.8%,
		#4e7ff6 50.3%,
		#4a8cee 63%,
		#449fe2 73.8%,
		#3db7d4 83.4%,
		#34d4c2 91.9%,
		#2af7ad 99.8%,
		#2af8ad 100%
	);
	width: 34.1rem;
}
.blue-gradiant-reverse {
	background: #fff0 linear-gradient(32deg, #0a378a 0%, #26f2a8 100%) 0% 0%
		no-repeat padding-box;
	width: 42.3rem;
}
.purple-gradiant {
	background: linear-gradient(
		245deg,
		#53f4fd 0%,
		#68d2f4 3.9%,
		#7faeeb 8.9%,
		#938de2 14.5%,
		#a472dc 20.7%,
		#b25cd6 28%,
		#bd4bd2 36%,
		#c43fcf 46.2%,
		#c838cd 60.4%,
		#ca37cd 100%
	);
	width: 42.3rem;
}
.purple-gradiant-reverse {
	background: linear-gradient(
		245deg,
		#ca37cd 0%,
		#c838cd 3.9%,
		#c43fcf 8.9%,
		#bd4bd2 14.5%,
		#b25cd6 20.7%,
		#a472dc 28%,
		#938de2 36%,
		#7faeeb 46.2%,
		#68d2f4 60.4%,
		#53f4fd 100%
	);
	width: 42.3rem;
}
.purple-second-gradient {
	background: #fff0
		linear-gradient(
			32deg,
			#ca37cd 0%,
			#c838cd 40%,
			#c43fcf 54%,
			#bd4bd2 64%,
			#b25cd6 72%,
			#a472dc 79%,
			#938de2 85%,
			#7faeeb 91%,
			#68d2f4 96%,
			#53f4fd 100%
		)
		0% 0% no-repeat padding-box;
	width: 26.1rem;
}
.red-gradiant {
	background: linear-gradient(245deg, #fa1944 0%, #ff8c4d 100%);
	width: 42.3rem;
}
.default-blue {
	background-color: var(--blue);
	max-width: 27.6rem;
	padding-block: 2rem;
	font-size: 2.4rem;
}
header {
	width: 100%;
	position: sticky;
	z-index: 5;
	top: 0;
	left: 0;
	height: 7.2rem;
	background-color: var(--black);
	display: flex;
	align-items: center;
}
header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .menu-header {
	transition: filter 0.2s ease;
	display: none;
}
header .menu-header img {
	width: 100%;
	max-width: 80%;
}
header .logo-bel {
	width: 8rem;
}
header .navbar {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 4rem;
}
header .navbar li a {
	color: var(--white);
	font-size: 2rem;
	font-family: 'ManiMedium';
	transition: filter 0.2s ease;
	position: relative;
}
header .navbar li a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: -20%;
	left: 0;
	background: #fff0
		linear-gradient(
			90deg,
			#fa2046 0%,
			#ff6840 23%,
			#cc33cc 44%,
			#093189 66%,
			#5271ff 85%,
			#28fdaa 100%
		)
		0% 0% no-repeat padding-box;
	transform: scaleX(0);
	transition: transform 300ms ease-in-out;
}
header .navbar li a:hover {
	filter: opacity(0.9);
}
header .navbar li a:hover::after {
	transform: scaleX(1);
}
header .divisor {
	display: none;
}
header .menu-header:hover {
	filter: brightness(0.8);
}
@media (max-width: 1024px) {
	header .menu-header {
		display: block;
	}
	header nav {
		display: none;
	}
	header .divisor {
		display: block;
	}
	header .menu-lateral {
		display: block;
		left: 0;
	}
}
@media (max-width: 660px) {
	header {
		padding-inline: 2rem;
	}
	header .menu-header img {
		width: 70%;
	}
	header .logo-bel {
		width: 6rem;
	}
	header .divisor {
		display: none;
	}
	.menu-lateral {
		width: 100%;
		max-width: 100%;
		padding: 1.6rem;
		height: 45rem;
	}
	.menu-lateral .gradient-border ul {
		width: 100%;
	}
	.menu-lateral .gradient-border ul li {
		width: 100%;
	}
	.menu-lateral .gradient-border ul li a {
		font-size: 2rem;
		display: flex;
		align-items: center;
		justify-content: center;
		padding-bottom: 0rem;
		padding-top: 1rem;
		width: 100%;
	}
}
.s-hero {
	width: 100%;
	padding-top: 3.6rem;
	padding-bottom: 6.6rem;
}
.s-hero .swiper {
	width: 100%;
	height: 100%;
	max-width: 100%;
	border-radius: 4.6rem;
	overflow: hidden;
}
.s-hero .swiper-slide {
	text-align: center;
	font-size: 1.8rem;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.s-hero .swiper-slide a {
	transition: all 0.3s ease-in-out;
}
.s-hero .swiper-slide a:hover {
	filter: brightness(0.8);
}
.s-hero .swiper-slide a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.s-hero .swiper-slide .swiper-pagination-bullet-active {
	background-color: var(--red);
}
@media (max-width: 1366px) {
	.s-hero {
		padding-block: 3.6rem;
	}
}
@media (max-width: 660px) {
	.s-hero {
		padding-block: 0rem;
		background-color: var(--black);
	}
	.s-hero .container {
		padding-inline: 0;
	}
	.s-hero .slide-main img {
		width: 100%;
	}
}
.s-sobre {
	width: 100%;
	padding-bottom: 3rem;
}
.s-sobre .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.s-sobre .left-content {
	width: 100%;
	max-width: 60.8rem;
	display: flex;
	flex-direction: column;
	gap: 2.8rem;
}
.s-sobre .left-content p {
	font-size: 2.4rem;
}
.s-sobre .right-content {
	width: 100%;
	max-width: 55rem;
}
@media (max-width: 1100px) {
	.s-sobre {
		padding-bottom: 4rem;
	}
	.s-sobre .container {
		gap: 4rem;
	}
	.s-sobre .left-content {
		width: 100%;
		max-width: 100%;
	}
	.s-sobre .right-content {
		width: 100%;
		max-width: 100%;
	}
	.s-sobre .right-content .mask-img img {
		width: 100%;
	}
}
@media (max-width: 1150px) {
	.s-sobre .container {
		gap: 2rem;
	}
	.s-sobre .right-content {
		max-width: 47rem;
	}
}
@media (max-width: 900px) {
	.s-sobre .container {
		flex-direction: column;
	}
	.s-sobre .left-content {
		max-width: 100%;
	}
	.s-sobre .right-content {
		max-width: 100%;
		padding-top: 0;
	}
}
@media (max-width: 768px) {
	.s-sobre {
		padding-top: 2.4rem;
		padding-bottom: 2rem;
	}
}
@media (max-width: 600px) {
	.s-sobre .left-content p {
		font-size: 2rem;
	}
}
@media (max-width: 500px) {
	.s-sobre .left-content p {
		font-size: 1.6rem;
	}
}
.s-info-produtos {
	width: 100%;
	padding-top: 2rem;
	position: relative;
}
.s-info-produtos .container {
	display: flex;
	flex-direction: column;
}
.s-info-produtos .title::after {
	content: '';
	display: block;
	width: 100%;
	height: 0.4rem;
	background: #fff0
		linear-gradient(
			90deg,
			#fa2046 0%,
			#ff6840 23%,
			#cc33cc 44%,
			#093189 66%,
			#5271ff 85%,
			#28fdaa 100%
		)
		0% 0% no-repeat padding-box;
	margin-top: 8rem;
}
.s-info-produtos .title {
	width: 100%;
	max-width: 130rem;
	margin-bottom: 4rem;
	padding-bottom: 2rem;
}
.s-info-produtos .title p {
	font-size: 2.8rem;
	font-family: 'ManiBold', sans-serif;
}
.s-info-produtos .produtos {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	width: 100%;
	gap: 3rem;
}
.s-info-produtos .produtos > div {
	position: relative;
	transition: filter 0.3s ease;
}
.s-info-produtos .produtos > div:hover {
	filter: brightness(0.9);
}
.s-info-produtos .produtos span {
	position: absolute;
	top: 3rem;
	left: 3.6rem;
	font-size: 2.6rem;
	color: var(--white);
	font-family: 'ExoBold', sans-serif;
}
.s-info-produtos .produtos .nth-2 {
	left: 1rem;
}
@media (max-width: 1366px) {
	.s-info-produtos .produtos .nth-2 {
		left: 2rem;
	}
	.s-info-produtos .produtos > div {
		width: 100%;
	}
	.s-info-produtos .produtos span {
		left: 3rem;
		font-size: 2.8rem;
	}
}
@media (max-width: 1200px) {
	.s-info-produtos {
		padding-bottom: 0;
	}
	.s-info-produtos .produtos span {
		top: 2rem;
		left: 2rem;
	}
	.s-info-produtos .produtos .nth-2,
	.s-info-produtos .produtos .nth-4 {
		font-size: 2.4rem;
		top: 2rem;
	}
	.s-info-produtos .produtos .nth-2 {
		left: 2rem;
	}
	.s-info-produtos .produtos .nth-4 {
		left: 2rem;
	}
}
@media (max-width: 1100px) {
	.s-info-produtos .produtos {
		gap: 1rem;
	}
	.s-info-produtos .produtos .card-produto {
		width: 100%;
		max-width: 80%;
	}
	.s-info-produtos .produtos span {
		font-size: 1.8rem;
	}
	.s-info-produtos .produtos .nth-2 {
		font-size: 1.8rem;
	}
	.s-info-produtos .produtos .nth-4 {
		font-size: 1.8rem;
	}
}
@media (max-width: 800px) {
	.s-info-produtos .produtos .card-produto {
		max-width: 100%;
	}
}
@media (max-width: 660px) {
	.s-info-produtos .title {
		margin-bottom: 2rem;
		max-width: 100%;
	}
	.s-info-produtos .title p {
		font-size: 2.4rem;
	}
	.s-info-produtos .title::after {
		margin-top: 4rem;
	}
	.s-info-produtos .produtos {
		padding-bottom: 0rem;
		grid-template-columns: repeat(3, 1fr);
	}
	.s-info-produtos .produtos .card-produto span,
	.s-info-produtos .produtos .card-produto .nth-2,
	.s-info-produtos .produtos .card-produto .nth-4 {
		left: 2rem;
		top: 2rem;
	}
}
@media (max-width: 560px) {
	.s-info-produtos {
		padding-bottom: 0rem;
	}
	.s-info-produtos .title {
		margin-bottom: 3.2rem;
		max-width: 100%;
	}
	.s-info-produtos .title p {
		font-size: 1.6rem;
	}
	.s-info-produtos .produtos > div {
		max-width: 32%;
	}
	.s-info-produtos .produtos span {
		font-size: 1.8rem;
		left: 2rem;
		top: 2rem;
	}
	.s-info-produtos .produtos .nth-2 {
		left: 1.8rem;
	}
}
@media (max-width: 500px) {
	.s-info-produtos .produtos > div {
		max-width: 25%;
	}
	.s-info-produtos .produtos .card-produto span {
		font-size: 1.2rem;
		left: 1rem;
		top: 1rem;
	}
	.s-info-produtos .produtos .card-produto .nth-2 {
		left: 0.6rem;
		font-size: 1.2rem;
		top: 1rem;
	}
	.s-info-produtos .produtos .card-produto .nth-4 {
		font-size: 1.2rem;
		top: 1rem;
		left: 1rem;
	}
}
.s-televisao {
	width: 100%;
	padding-block: 4rem;
}
.s-televisao .container {
	display: flex;
	flex-direction: column;
}
.s-televisao .main-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.s-televisao .main-content .left-content {
	width: 100%;
	max-width: 56%;
}
.s-televisao .main-content .right-content {
	width: 100%;
	max-width: 43%;
}
.s-televisao .main-content .right-content h4 {
	color: var(--pink);
	font-size: 3rem;
	margin-bottom: 2.6rem;
	font-family: 'ExoBold', sans-serif;
}
.s-televisao .main-content .right-content .text {
	display: flex;
	flex-direction: column;
	gap: 2.6rem;
	margin-bottom: 3rem;
}
.s-televisao .main-content .right-content .text p,
.s-televisao .main-content .right-content .text span,
.s-televisao .main-content .right-content .text strong {
	font-size: 2.6rem;
}
.s-televisao .main-content .right-content .text strong {
	font-family: 'ExoBold', sans-serif;
}
.s-televisao .main-content .right-content .purple-gradiant-reverse {
	width: 100%;
	max-width: 62%;
}
@media (max-width: 1024px) {
	.s-televisao .main-content .right-content .purple-gradiant-reverse {
		font-size: 2rem;
		max-width: 66%;
	}
}
@media (max-width: 800px) {
	.s-televisao .main-content {
		align-items: flex-start;
		gap: 2rem;
	}
	.s-televisao .main-content .left-content {
		max-width: 60%;
	}
	.s-televisao .main-content .right-content {
		padding-top: 3rem;
		max-width: 60%;
	}
	.s-televisao .main-content .right-content .text strong,
	.s-televisao .main-content .right-content .text p,
	.s-televisao .main-content .right-content .text span {
		font-size: 2rem;
	}
	.s-televisao .main-content .right-content .purple-gradiant-reverse {
		max-width: 40%;
	}
}
@media (max-width: 800px) {
	.s-televisao .main-content {
		flex-direction: column-reverse;
	}
	.s-televisao .main-content .right-content {
		max-width: 100%;
	}
	.s-televisao .main-content .left-content {
		max-width: 100%;
	}
}
@media (max-width: 768px) {
	.s-televisao .main-content {
		gap: 0;
	}
}
@media (max-width: 600px) {
	.s-televisao .main-content .right-content h4 {
		font-size: 1.8rem;
	}
	.s-televisao .main-content .right-content .purple-gradiant-reverse {
		max-width: 100%;
	}
	.s-televisao .main-content .right-content .text strong,
	.s-televisao .main-content .right-content .text p,
	.s-televisao .main-content .right-content .text span {
		font-size: 1.6rem;
	}
}
.s-hq-tela {
	width: 100%;
}
.s-hq-tela .container {
	display: flex;
	flex-direction: column;
}
.s-hq-tela .main {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.s-hq-tela .left-content {
	width: 100%;
	max-width: 60rem;
	padding-top: 4rem;
}
.s-hq-tela .left-content h3 {
	font-size: 2.8rem;
	margin-bottom: 3.2rem;
	font-family: 'ExoBold';
	color: var(--pink);
}
.s-hq-tela .left-content .p-hq {
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
}
.s-hq-tela .left-content .p-hq p,
.s-hq-tela .left-content .p-hq span {
	font-size: 2.6rem;
}
.s-hq-tela .left-content .p-hq span {
	color: var(--black);
	font-family: 'ExoBold', sans-serif;
}
.s-hq-tela .left-content .p-hq .purple-gradiant {
	width: 100%;
	max-width: 60%;
	margin-top: 2rem;
}
.s-hq-tela .right-content {
	width: 100%;
	max-width: 83.3rem;
}
.s-hq-tela .right-content .mask-img {
	max-width: 78rem;
}
.s-hq-tela .bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.s-hq-tela .bottom p {
	font-size: 2.8rem;
	color: var(--pink);
	font-family: 'ExoBold';
}
@media (max-width: 1280px) {
	.s-hq-tela .left-content {
		max-width: 100%;
	}
	.s-hq-tela .left-content .p-hq p {
		font-size: 2.2rem;
	}
	.s-hq-tela .right-content {
		max-width: 100%;
		margin: 0 auto;
	}
	.s-hq-tela .right-content .mask-img {
		max-width: 100%;
		width: 100%;
	}
	.s-hq-tela .bottom {
		gap: 3.2rem;
	}
	.s-hq-tela .bottom p {
		font-size: 2.8rem;
	}
}
@media (max-width: 1024px) {
	.s-hq-tela .left-content {
		padding-top: 2rem;
	}
	.s-hq-tela .left-content h3 {
		margin-bottom: 2rem;
	}
	.s-hq-tela .left-content .p-hq {
		gap: 2rem;
	}
	.s-hq-tela .left-content .p-hq span,
	.s-hq-tela .left-content .p-hq p {
		font-size: 2rem;
	}
	.s-hq-tela .left-content .p-hq .purple-gradiant {
		max-width: 66%;
		font-size: 2rem;
	}
}
@media (max-width: 991px) {
	.s-hq-tela {
		padding-block: 2rem;
	}
	.s-hq-tela .bottom {
		flex-direction: column-reverse;
	}
}
@media (max-width: 900px) {
	.s-hq-tela .main {
		flex-direction: column;
	}
	.s-hq-tela .main .left-content {
		max-width: 100%;
	}
	.s-hq-tela .main .right-content {
		max-width: 100%;
		padding-top: 0;
	}
}
@media (max-width: 800px) {
	.s-hq-tela .left-content .p-hq .purple-gradiant {
		max-width: 34%;
	}
}
@media (max-width: 660px) {
	.s-hq-tela .left-content h3 {
		font-size: 2.4rem;
		margin-bottom: 2.8rem;
	}
	.s-hq-tela .left-content .p-hq {
		gap: 2rem;
	}
	.s-hq-tela .left-content .p-hq p {
		font-size: 2rem;
	}
	.s-hq-tela .bottom {
		gap: 1.2rem;
		margin-top: 2rem;
	}
	.s-hq-tela .bottom p {
		font-size: 2rem;
	}
	.s-hq-tela .left-content .p-hq .purple-gradiant {
		max-width: 100%;
	}
}
@media (max-width: 500px) {
	.s-hq-tela .left-content h3 {
		font-size: 1.8rem;
		margin-bottom: 1.8rem;
	}
	.s-hq-tela .left-content .p-hq p,
	.s-hq-tela .left-content .p-hq span {
		font-size: 1.6rem;
	}
	.s-hq-tela .bottom p {
		font-size: 1.4rem;
	}
}
.s-refrig {
	width: 100%;
	padding-top: 7.6rem;
	padding-bottom: 6.6rem;
}
.s-refrig .container {
	display: flex;
	flex-direction: column;
}
.s-refrig .main {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2rem;
}
.s-refrig .main .left-content {
	width: 100%;
	max-width: 60rem;
}
.s-refrig .main .right-content {
	width: 100%;
	max-width: 60rem;
	margin-top: 4rem;
}
.s-refrig .main .right-content .card {
	width: 100%;
	max-width: 53.2rem;
	margin-bottom: 4rem;
}
.s-refrig .main .right-content .card .title h3 {
	font-size: 2.6rem;
	font-family: 'ExoBold', sans-serif;
	color: var(--blue);
}
.s-refrig .main .right-content .card p {
	font-size: 2.4rem;
	color: var(--black);
	width: 46.9rem;
	margin-top: 4rem;
}
.s-refrig .bottom {
	width: 100%;
	margin-top: 3rem;
}
.s-refrig .bottom p {
	font-size: 2.8rem;
	font-family: 'ExoBold', sans-serif;
	color: var(--blue);
}
@media (max-width: 1440px) {
	.s-refrig .main .left-content {
		width: 100%;
		max-width: 50%;
	}
	.s-refrig .main .right-content {
		max-width: 58rem;
		padding-left: 5.4rem;
	}
}
@media (max-width: 1200px) {
	.s-refrig .main .left-content {
		width: 100%;
		max-width: 50%;
	}
	.s-refrig .main .right-content {
		max-width: 50rem;
		padding-inline: 2.6rem;
	}
	.s-refrig .bottom p {
		font-size: 2.8rem;
	}
}
@media (max-width: 1024px) {
	.s-refrig {
		padding-top: 4rem;
	}
	.s-refrig .main {
		gap: 2rem;
	}
	.s-refrig .main .left-content {
		width: 100%;
		max-width: 46%;
	}
	.s-refrig .main .left-content .mask-img img {
		margin: 0 auto;
	}
	.s-refrig .main .right-content {
		max-width: 50%;
		padding-inline: 0rem;
		margin-top: 0rem;
		padding-top: 2rem;
	}
	.s-refrig .main .right-content .card {
		max-width: 100%;
	}
	.s-refrig .main .right-content .card .title h3 {
		font-size: 2.6rem;
	}
	.s-refrig .main .right-content .card p {
		width: 100%;
		margin-top: 3rem;
		font-size: 2rem;
	}
	.s-refrig .main .right-content .blue-gradiant {
		font-size: 2rem;
	}
	.s-refrig .bottom p {
		font-size: 2rem;
	}
}
@media (max-width: 900px) {
	.s-refrig .main {
		flex-direction: column;
	}
	.s-refrig .main .left-content {
		max-width: 100%;
	}
	.s-refrig .main .right-content {
		max-width: 100%;
		padding-top: 0;
	}
}
@media (max-width: 660px) {
	.s-refrig {
		padding-top: 0;
		padding-bottom: 0;
		padding-block: 2.4rem;
	}
}
@media (max-width: 600px) {
	.s-refrig .main {
		gap: 1rem;
	}
	.s-refrig .main .right-content {
		padding: 0rem;
	}
	.s-refrig .main .right-content .card .title h3 {
		font-size: 2.4rem;
	}
	.s-refrig .main .right-content .card p {
		font-size: 2.1rem;
	}
	.btn {
		font-size: 2rem;
	}
	.blue-gradiant {
		width: 100%;
	}
	.s-refrig .bottom p {
		font-size: 2rem;
	}
}
@media (max-width: 500px) {
	.s-refrig .main .right-content .card .title h3 {
		font-size: 1.8rem;
	}
	.s-refrig .main .right-content .card p {
		font-size: 1.6rem;
	}
	.btn {
		font-size: 2rem;
	}
	.blue-gradiant {
		width: 100%;
	}
	.s-refrig .bottom {
		margin-top: 1.6rem;
	}
	.s-refrig .bottom p {
		font-size: 1.8rem;
	}
}
.s-cozinha {
	width: 100%;
	padding-top: 1rem;
	padding-bottom: 6.6rem;
}
.s-cozinha .container {
	display: flex;
	flex-direction: column;
}
.s-cozinha .main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 2.1rem;
}
.s-cozinha .left-content {
	width: 100%;
	max-width: 63.6rem;
}
.s-cozinha .left-content .card {
	width: 100%;
	max-width: 53.2rem;
	display: flex;
	flex-direction: column;
}
.s-cozinha .left-content .card .title h3 {
	font-size: 2.8rem;
	color: var(--orange);
	font-family: 'ExoBold', sans-serif;
}
.s-cozinha .left-content p,
.s-cozinha .left-content span {
	margin-top: 4rem;
	font-size: 2.8rem;
	color: var(--black);
}
.s-cozinha .left-content span {
	margin-bottom: 6rem;
	font-weight: 700;
}
.s-cozinha .right-content {
	width: 100%;
	max-width: 78.9rem;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2rem;
}
.s-cozinha .bottom {
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	margin-top: 4rem;
}
.s-cozinha .bottom p {
	font-size: 2.8rem;
	color: var(--orange);
	font-family: 'ExoBold', sans-serif;
}
@media (max-width: 1200px) {
	.s-cozinha .bottom p {
		font-size: 2.8rem;
	}
}
@media (max-width: 1024px) {
	.s-cozinha {
		padding-bottom: 4rem;
	}
	.s-cozinha .main {
		gap: 2rem;
		margin-bottom: 2rem;
	}
	.s-cozinha .main .left-content {
		max-width: 50%;
	}
	.s-cozinha .left-content p {
		margin-top: 2rem;
	}
	.s-cozinha .left-content span {
		margin-bottom: 0;
		margin-top: 2rem;
	}
	.s-cozinha .left-content p,
	.s-cozinha .left-content span {
		font-size: 2rem;
	}
	.s-cozinha .main .left-content .card {
		max-width: 100%;
		margin-bottom: 4rem;
	}
	.s-cozinha .left-content .card .title h3 {
		font-size: 2.6rem;
	}
	.s-cozinha .main .left-content .red-gradiant {
		font-size: 2rem;
	}
	.s-cozinha .main .right-content {
		max-width: 46%;
	}
	.s-cozinha .bottom p {
		font-size: 2rem;
	}
}
@media (max-width: 900px) {
	.s-cozinha .main {
		flex-direction: column;
	}
	.s-cozinha .main .left-content {
		max-width: 100%;
	}
	.s-cozinha .main .right-content {
		max-width: 100%;
	}
}
@media (max-width: 768px) {
	.s-cozinha .main {
		gap: 4rem;
	}
}
@media (max-width: 600px) {
	.s-cozinha {
		padding-bottom: 2rem;
	}
	.s-cozinha .main .left-content .card .title h3 {
		font-size: 2rem;
	}
	.s-cozinha .main .left-content p,
	.s-cozinha .main .left-content span {
		font-size: 1.8rem;
	}
	.red-gradiant {
		width: 100%;
	}
	.s-cozinha .bottom p {
		font-size: 1.8rem;
	}
}
@media (max-width: 600px) {
	.s-cozinha .main .left-content p,
	.s-cozinha .main .left-content span {
		font-size: 1.6rem;
	}
	.s-cozinha .bottom {
		margin-top: 1.8rem;
	}
}
.s-ar-cond {
	width: 100%;
	padding-bottom: 6.6rem;
}
.s-ar-cond .container {
	display: flex;
	flex-direction: column;
}
.s-ar-cond .main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.s-ar-cond .main .left-content {
	width: 100%;
	max-width: 74rem;
}
.s-ar-cond .main .right-content {
	width: 100%;
	max-width: 48.3rem;
	padding-top: 6rem;
}
.s-ar-cond .main .right-content .card {
	width: 100%;
	max-width: 50.7rem;
}
.s-ar-cond .main .right-content .card .info {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}
.s-ar-cond .main .right-content .card h3 {
	font-size: 2.8rem;
	font-family: 'ExoBold', sans-serif;
	color: var(--dark-blue);
	margin-bottom: 4rem;
}
.s-ar-cond .main .right-content .card p {
	font-family: 'ManiRegular', sans-serif;
	font-size: 2.8rem;
}
.s-ar-cond .bottom {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.s-ar-cond .bottom p {
	font-size: 2.8rem;
	color: var(--dark-blue);
	font-family: 'ExoBold', sans-serif;
}
@media (max-width: 1440px) {
	.s-ar-cond .main .left-content {
		max-width: 84rem;
	}
	.s-ar-cond .main .right-content .card {
		padding-left: 4rem;
	}
}
@media (max-width: 1280px) {
	.s-ar-cond .main .left-content {
		max-width: 80rem;
	}
	.s-ar-cond .main .right-content .card {
		padding-block: 0;
	}
	.s-ar-cond .bottom p {
		font-size: 2.4rem;
	}
}
@media (max-width: 1150px) {
	.s-ar-cond .bottom p {
		font-size: 2.4rem;
	}
}
@media (max-width: 1024px) {
	.s-ar-cond {
		padding-block: 0rem;
		padding-bottom: 4rem;
	}
	.s-ar-cond .main {
		margin-bottom: 2rem;
	}
	.s-ar-cond .main .left-content {
		max-width: 46%;
	}
	.s-ar-cond .main .right-content {
		padding-top: 3rem;
		max-width: 50%;
	}
	.s-ar-cond .main .right-content .card {
		padding-block: 0;
		max-width: 100%;
		padding-left: 0;
	}
	.s-ar-cond .main .right-content .card p {
		font-size: 2.3rem;
	}
	.s-ar-cond .bottom {
		flex-direction: column-reverse;
		gap: 2rem;
	}
	.s-ar-cond .bottom .blue-gradiant-reverse {
		font-size: 2rem;
	}
}
@media (max-width: 900px) {
	.s-ar-cond .main {
		flex-direction: column;
	}
	.s-ar-cond .main .left-content {
		max-width: 100%;
	}
	.s-ar-cond .main .right-content {
		padding-top: 0;
		max-width: 100%;
	}
}
@media (max-width: 600px) {
	.s-ar-cond .main .right-content .card h3 {
		font-size: 2.4rem;
		margin-bottom: 2rem;
	}
	.s-ar-cond .main .right-content .card p {
		font-size: 2rem;
	}
	.blue-gradiant-reverse {
		width: 100%;
	}
	.s-ar-cond .bottom p {
		font-size: 2rem;
	}
}
@media (max-width: 500px) {
	.s-ar-cond .main {
		gap: 2rem;
	}
	.s-ar-cond .main .right-content .card h3 {
		font-size: 1.8rem;
	}
	.s-ar-cond .main .right-content .card p {
		font-size: 1.6rem;
	}
	.s-ar-cond .bottom p {
		font-size: 1.8rem;
	}
}
.s-catalogo {
	position: relative;
	width: 100%;
	padding-top: 9.8rem;
	padding-bottom: 10.5rem;
	background-image: url(./assets/imagem-06.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-color: lightgray;
}
.s-catalogo .left-content {
	width: 100%;
	max-width: 73.5rem;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 2.6rem;
}
.s-catalogo .left-content h2 {
	font-size: 4rem;
}
.s-catalogo .left-content p {
	font-size: 2.8rem;
}
@media (max-width: 1280px) {
	.s-catalogo {
		background-position: 72% 0%;
	}
	.s-catalogo .left-content p {
		max-width: 90%;
	}
}
@media (max-width: 1024px) {
	.s-catalogo {
		padding-top: 6rem;
		padding-bottom: 4.4rem;
		background-position: 80% 0%;
	}
	.s-catalogo .left-content p {
		max-width: 55%;
	}
}
@media (max-width: 800px) {
	.s-catalogo {
		background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
		padding-block: 4rem;
	}
	.s-catalogo .left-content {
		max-width: 100%;
	}
	.s-catalogo .left-content h2 {
		font-size: 3.2rem;
	}
	.s-catalogo .left-content p {
		max-width: 100%;
		font-size: 2.4rem;
	}
}
@media (max-width: 600px) {
	.s-catalogo .left-content h2 {
		font-size: 2.8rem;
	}
	.s-catalogo .left-content p {
		font-size: 2rem;
	}
	.s-catalogo .left-content a {
		width: 100%;
	}
	.s-catalogo .left-content a .purple-gradiant {
		width: 100%;
	}
}
@media (max-width: 500px) {
	.s-catalogo .left-content h2 {
		font-size: 2rem;
	}
	.s-catalogo .left-content p {
		font-size: 1.8rem;
	}
}
.s-fale-conosco {
	width: 100%;
	padding-top: 4.1rem;
	padding-bottom: 4.9rem;
	background: url(./assets/imagem-degrade-consultor.png) no-repeat bottom right;
	background-color: var(--black);
}
.s-fale-conosco .container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.s-fale-conosco .left-content {
	width: 100%;
	max-width: 60.2rem;
}
.s-fale-conosco .left-content .title {
	margin-bottom: 3.1rem;
}
.s-fale-conosco .left-content .title h2,
.s-fale-conosco .left-content .title p {
	color: var(--white);
}
.s-fale-conosco .left-content .title h2 {
	max-width: 31.2rem;
	font-size: 4rem;
	margin-bottom: 3.1rem;
}
.s-fale-conosco .left-content .title p {
	font-size: 2.4rem;
	font-family: 'ManiBold';
}
.s-fale-conosco .left-content .list p,
.s-fale-conosco .left-content .list ul li {
	font-family: 'ManiRegular';
	font-size: 2.2rem;
}
.s-fale-conosco .left-content .list p {
	margin-bottom: 1rem;
	color: rgb(249 249 249 / 0.7);
}
.s-fale-conosco .left-content .list ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.s-fale-conosco .left-content .list ul li {
	color: rgb(249 249 249 / 0.7);
}
.s-fale-conosco .right-content {
	width: 100%;
	max-width: 74.5rem;
}
.s-fale-conosco .right-content .form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
	gap: 2rem 2rem;
}
.s-fale-conosco .right-content .form input,
.s-fale-conosco .right-content .form textarea {
	background-color: var(--white);
	color: var(--black);
	border-radius: 1.6rem;
	font-size: 2.1rem;
	padding-inline: 3.6rem;
	padding-block: 2.4rem;
}
.s-fale-conosco .right-content .form input {
	height: 7.4rem;
	width: 100%;
}
.s-fale-conosco .right-content .form textarea {
	grid-column-start: span 2;
	height: 23.5rem;
}
@media (max-width: 1150px) {
	.s-fale-conosco .container {
		flex-direction: column;
		gap: 4rem;
	}
	.s-fale-conosco .left-content {
		max-width: 100%;
	}
	.s-fale-conosco .right-content {
		max-width: 100%;
	}
}
@media (max-width: 968px) {
	.s-fale-conosco .right-content .form textarea {
		height: 18rem;
	}
}
@media (max-width: 668px) {
	.s-fale-conosco {
		padding-bottom: 2rem;
	}
	.s-fale-conosco .left-content .title h2 {
		font-size: 2.4rem;
		max-width: 100%;
	}
	.s-fale-conosco .left-content .title p {
		font-size: 1.8rem;
	}
	.s-fale-conosco .left-content .list p,
	.s-fale-conosco .left-content .list ul li {
		font-size: 1.8rem;
	}
	.s-fale-conosco .right-content .form {
		display: flex;
		flex-direction: column;
	}
	.s-fale-conosco .right-content .form input,
	.s-fale-conosco .right-content .form textarea {
		padding-inline: 1.6rem;
		font-size: 1.8rem;
	}
	.s-fale-conosco .right-content .form input {
		height: 5rem;
	}
	.s-fale-conosco .right-content .form textarea {
		height: 12rem;
	}
	.s-fale-conosco .right-content .form .default-blue {
		width: 100%;
		max-width: 100%;
	}
}
@media (max-width: 500px) {
	.s-fale-conosco .left-content .title h2 {
		font-size: 2rem;
	}
	.s-fale-conosco .left-content .list p,
	.s-fale-conosco .left-content .list ul li {
		font-size: 1.6rem;
	}
}
.s-sac {
	width: 100%;
	padding-top: 9.7rem;
	padding-bottom: 7.9rem;
}
.s-sac .container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.s-sac .left-content {
	width: 100%;
	max-width: 58.9rem;
}
.s-sac .left-content .mask-img {
	margin-bottom: 3.6rem;
}
.s-sac .right-content {
	width: 100%;
	max-width: 67.5rem;
}
.s-sac .right-content .title {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.6rem;
}
.s-sac .right-content .title h2 {
	font-size: 4rem;
}
.s-sac .right-content .title h3 {
	font-family: 'ManiRegular';
	font-size: 4rem;
}
.s-sac .right-content .info p,
.s-sac .right-content .info span {
	font-size: 2.4rem;
	color: var(--black);
	font-family: 'ManiRegular';
}
.s-sac .right-content .info p {
	margin-bottom: 2.6rem;
	font-family: 'ManiBold';
}
.s-sac .right-content .info .contato {
	margin-top: 2.8rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.s-sac .right-content .info .contato a {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.s-sac .right-content .info .contato a span,
.s-sac .right-content .info .contato span {
	font-family: 'ManiBold';
	transition: color 0.2s ease;
}
.s-sac .right-content .info .contato a span:hover {
	color: var(--blue);
}
@media (max-width: 1440px) {
	.s-sac .left-content {
		max-width: 51.9rem;
	}
	.s-sac .right-content .title h3 {
		font-size: 3.6rem;
	}
}
@media (max-width: 1280px) {
	.s-sac .container {
		gap: 2rem;
	}
	.s-sac .left-content {
		max-width: 46rem;
	}
	.s-sac .right-content .title h3 {
		font-size: 3rem;
	}
	.s-sac .right-content .info p,
	.s-sac .right-content .info span {
		font-size: 2rem;
	}
}
@media (max-width: 1150px) {
	.s-sac {
		padding-block: 6rem;
		overflow: hidden;
	}
	.s-sac .container {
		flex-direction: column-reverse;
		gap: 4rem;
	}
	.s-sac .left-content {
		max-width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	.s-sac .left-content .mask-img img {
		margin: 0 auto;
	}
	.s-sac .right-content {
		max-width: 100%;
	}
}
@media (max-width: 668px) {
	.s-sac {
		padding-block: 2rem;
	}
	.s-sac .left-content .mask-img {
		margin-bottom: 1.2rem;
	}
	.s-sac .right-content .title h2 {
		font-size: 3rem;
	}
	.s-sac .right-content .title h3 {
		font-size: 2rem;
	}
	.s-sac .right-content .info p,
	.s-sac .right-content .info span {
		font-size: 1.8rem;
	}
}
@media (max-width: 500px) {
	.s-sac .right-content .title h2 {
		font-size: 2rem;
	}
}
footer {
	width: 100%;
	background-color: var(--black);
	padding-block: 4rem;
}
footer .container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
footer .left-content {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}
footer .left-content p {
	color: var(--white);
	font-size: 2.4rem;
	font-family: 'ExoBold', sans-serif;
}
footer .left-content span {
	font-family: 'ManiBold';
}
footer .left-content .left-sociais {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}
footer .left-content .left-sociais a {
	transition: filter 0.2s ease;
}
footer .left-content a:hover {
	filter: brightness(0.8);
}
footer .left-content span {
	font-size: 2rem;
	color: var(--white);
}
footer .right-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1.8rem;
}
.footer-atendimento span {
	color: var(--white);
	font-size: 1.8rem;
	font-family: 'ExoBold', sans-serif;
}
footer .right-content span {
	color: rgb(255 255 255 / 0.7);
	font-size: 2rem;
	font-family: 'ManiMedium';
}
footer .right-content a {
	transition: filter 0.2s ease;
}
footer .right-content a:hover {
	filter: brightness(0.8);
}
footer .right-content p {
	color: var(--dark-gray);
	font-size: 1rem;
	font-family: 'OpenSans';
}
@media (max-width: 600px) {
	footer {
		padding-block: 2rem;
	}
	footer .container {
		flex-direction: column;
		gap: 2rem;
	}
	footer .left-content p {
		font-size: 2rem;
	}
	footer .left-content .left-sociais a img {
		width: 80%;
	}
	footer .right-content {
		justify-content: flex-start;
		align-items: flex-start;
	}
	footer .right-content a img {
		max-width: 80%;
	}
}
#mc_embed_signup {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 18;
}
.overlay {
	background: rgb(0 0 0 / 0.8);
	width: 100%;
	height: 100%;
	position: absolute;
}
.modal-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2rem;
	z-index: 18;
	width: 100%;
	max-width: 90%;
	height: 90%;
	border-radius: 0.6rem;
	background-color: var(--black);
	position: relative;
	padding: 2rem;
	box-shadow: 0 4px 5px 0 rgb(0 0 0 / 0.26);
}
.modal-content .close-pop-up {
	position: absolute;
	top: 1rem;
	right: 1rem;
	transition: filter 0.3s ease;
	width: 100%;
	max-width: 4rem;
	z-index: 1;
}
.modal-content .close-pop-up img {
	width: 100%;
}
.modal-content .close-pop-up:hover {
	filter: brightness(0.8);
}
.modal-content .info-pop-up {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.modal-content .info-pop-up img {
	position: relative;
}
.modal-content .info-pop-up h2 {
	color: var(--white);
	position: absolute;
	bottom: 53%;
	right: 37%;
	font-size: 3.8rem;
}
.modal-content .info-pop-up p {
	color: var(--white);
	font-size: 2rem;
	line-height: 150%;
}
.modal-content .info-pop-up p .bg-arco {
	border-radius: 0.4rem;
	background: #fff0
		linear-gradient(
			90deg,
			#fa2046 0%,
			#ff6840 23%,
			#cc33cc 44%,
			#093189 66%,
			#5271ff 85%,
			#28fdaa 100%
		)
		0% 0% no-repeat padding-box;
}
.modal-content .form-pop-up {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}
.modal-content .form-pop-up input {
	width: 100%;
	max-width: 18%;
	padding: 1rem 2rem;
	border: none;
	border-radius: 0.6rem;
	text-align: center;
	background-color: var(--white);
	&::placeholder {
		font-size: 1.6rem;
	}
}
.modal-content .form-pop-up .btn {
	width: 100%;
	max-width: 18%;
	font-size: 1.6rem;
	padding: 1rem 0;
	border-radius: 0.6rem;
}
.modal-content .form-pop-up .red-gradiant {
	background: var(--red);
}
.modal-content .form-pop-up #mce-success-response {
	font-size: 1.6rem;
	color: var(--white);
	font-weight: 500;
	font-family: 'ManiBold';
}
.modal-content .form-pop-up #mce-error-response {
	font-size: 1.4rem;
	color: var(--red);
	font-weight: 500;
	font-family: 'ManiBold';
}

@media (max-width: 3840px) {
	.modal-content .info-pop-up h2 {
		right: 40.5%;
		bottom: 52%;
	}
}

@media (max-width: 2560px) {
	.modal-content .info-pop-up h2 {
		right: 40.2%;
	}
}
@media (max-width: 1920px) {
	.modal-content .info-pop-up h2 {
		right: 37%;
	}
}

@media (max-width: 1660px) {
	.modal-content .info-pop-up h2 {
		right: 35%;
		top: 32%;
	}
}

@media (max-width: 1536px) {
	.modal-content .info-pop-up h2 {
		right: 33.8%;
		top: 32%;
	}
}
@media (max-width: 1470px) {
	.modal-content .info-pop-up h2 {
		right: 32.5%;
	}
	.modal-content .form-pop-up input,
	.modal-content .form-pop-up .btn {
		max-width: 25%;
	}
}
@media (max-width: 1366px) {
	.modal-content .info-pop-up h2 {
		right: 32%;
	}
}
@media (max-width: 1280px) {
	.modal-content .info-pop-up h2 {
		right: 30.5%;
	}
}
@media (max-width: 1200px) {
	.modal-content .info-pop-up h2 {
		right: 29.5%;
	}
}
@media (max-width: 1024px) {
	.modal-content .info-pop-up h2 {
		right: 26%;
	}
}
@media (max-width: 800px) {
	.modal-content .info-pop-up h2 {
		right: 19%;
	}
	.modal-content .form-pop-up input,
	.modal-content .form-pop-up .btn {
		max-width: 80%;
	}
}
@media (max-width: 768px) {
	.modal-content .info-pop-up h2 {
		right: 19%;
		font-size: 3.6rem;
	}
	.modal-content .form-pop-up input,
	.modal-content .form-pop-up .btn {
		max-width: 100%;
	}
}
@media (max-width: 600px) {
	.modal-content {
		height: 62%;
	}
	.modal-content .close-pop-up {
		max-width: 3rem;
	}
	.modal-content .info-pop-up h2 {
		right: 16%;
		bottom: 56%;
		font-size: 3rem;
	}
	.modal-content .info-pop-up p {
		font-size: 1.4rem;
	}
}
@media (max-width: 560px) {
	.modal-content {
		padding: 1rem;
	}
	.modal-content .info-pop-up h2 {
		right: 15.5%;
	}
	.modal-content .info-pop-up p {
		font-size: 1.3rem;
	}
}
@media (max-width: 520px) {
	.modal-content .info-pop-up h2 {
		right: 14%;
		font-size: 2.8rem;
	}
}
@media (max-width: 450px) {
	.modal-content .info-pop-up h2 {
		right: 16%;
		font-size: 1.8rem;
		bottom: 65%;
	}
}
.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;
}
.overlay-cookies {
	width: 100%;
	height: 100%;
	z-index: 10;
	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 .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.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-size: 1.8rem;
	width: 100%;
	max-width: 80%;
}
.cookies-msg .cookies-txt .default-blue {
	width: 100%;
}
@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 .default-blue {
		width: 100%;
		max-width: 40%;
		font-size: 1.8rem;
	}
}
@media (max-width: 600px) {
	.cookies-msg {
		width: 100%;
		max-width: 96%;
		left: 0.8rem;
		transform: none;
	}
	.cookies-msg .cookies-txt p {
		font-size: 1.4rem;
	}
	.cookies-msg .cookies-txt .default-blue {
		width: 100%;
		max-width: 100%;
		font-size: 1.8rem;
		padding-block: 1rem;
		border-radius: 1.6rem;
		color: var(--white);
	}
}
#modal-email {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--white);
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
	z-index: 11;
	width: 100%;
	height: 33.5rem;
}
#modal-email .card-modal {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2rem;
}
#modal-email .card-modal .card-modal-icon {
	width: 100%;
	max-width: 10rem;
}
#modal-email .card-modal p {
	font-size: 3rem;
}
#overlay-modal-email {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 0.5);
	z-index: 10;
}
