* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
:root {
	
	font-size: 62.5%;
	--header-height: 10rem;
	--shrink: 5rem;
	/* HSL color mode */
	/* color: hsl(159 36% 57%); */
	--hue: 159;
	--base-bg-gradient: linear-gradient(
		to left,
		#ff7d01,
		#fe8684,
		#70fe6f,
		#5be7fe,
		#5bc0c5
	);
	--base-color2: #36238a;
	--base-color3: #8a2387;
	--base-color4: #e94057;
	--base-color: #f37221;
	--base-color-second: #ff7d01;
	--base-color-alt: hsl(var(--hue) 57% 53%);
	--title-color: #f37221;
	--text-color: hsl(0 0% 46%);
	--text-color-light: hsl(0 0% 98%);
	--body-color: hsl(0 0% 98%);
	--title-font-size: 3rem;
	--subtitle-font-size: 1.6rem;
	--title-font: 'Adigiana-toy', sans-serif;
	--body-font: 'DM Sans', sans-serif;
}

/* Style the scrollbar */
::-webkit-scrollbar {
	width: 1rem;
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: var(--base-color);
	/* border-radius: .5rem; */
}
/* ========================================= */
small.small{
	position: fixed;
	color: black;
	z-index: 10000;
	top: .5rem;
	right: 10rem;
	font-weight: bolder;
	font-size: 8px;
	
}
ul {
	list-style: none;
}
a {
	text-decoration: none;
}
img {
	width: 100%;
	height: auto;
}

/* ============BASE================ */
html.scroll-container {
	scroll-behavior: smooth;
	
}

body {
	font: 400 1.6rem var(--body-font);
	color: var(--text-color);
	background: var(--body-color);
	
}

main {
	margin-top: 10rem;
}
h1 {
	font-size: var(--title-font-size);
}
.title {
	font-family: var(--title-font);
	color: var(--title-color);
}
.button {
	background: #eb9d24;
	color: var(--text-color-light);
	height: 5.6rem;
	display: inline-flex;
	align-items: center;
	padding: 0 3.2rem;
	border-radius: 0.4rem;
	font: 500 1.6rem var(--body-font);
	transition: background 0.3s;
}

.button:hover {
	background: #966413;
}

.divider-1 {
	height: 3px;
	background: linear-gradient(
		270deg,
		hsla(var(--hue), 36%, 57%, 1) 0%,
		hsla(var(--hue), 65%, 88%, 0.34) 100%
	);
}
.divider-2 {
	height: 3px;
	background: linear-gradient(
		270deg,
		hsla(var(--hue), 65%, 88%, 0.34) 0%,
		hsla(var(--hue), 36%, 57%, 1) 100%
	);
}

/* ===========LAYOUT=============== */

.grid {
	display: grid;
	gap: 3.2rem;
}

.section .title {
	margin-bottom: 1.6rem;
}
.section .subtitle {
	font-size: var(--subtitle-font-size);
}
.section header {
	margin-bottom: 6.4rem;
}
.section header strong {
	color: var(--base-color);
}

#header {
	border-bottom: 1px solid #e4e4e4;
	padding-inline: 1rem;
	display: flex;
	
	transition: 2s;
	justify-content: center;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: var(--body-color);
}
#header.scroll {
	box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
	background-color: hsla(0, 0%, 98%, 0.79);
	transition: 1s;
}

/* ==============LOGO=============== */
nav .logo img {
	margin-top: 0.8rem;
	width: var(--header-height);
	transition: 0.5s;
}
/* nav .logo{
	position: absolute;
	left: 1rem;
} */

.logo-alt span {
	background: linear-gradient(to left, #8a2387, #e94057, #f27121);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
/* ==========NAVIGATION============= */
nav {
	height: var(--header-height);
	display: flex;

	justify-content: space-between;
	align-items: center;
	width: 100%;
	transition: 0.5s;
}
nav.container {
	margin: 0;
}
nav ul li {
	text-align: center;
}
nav ul li a {
	position: relative;
	transition: color 0.5s;
}
nav:not(.show) ul li a:hover,
nav:not(.show) ul li a.active {
	color: var(--base-color);
	font-weight: bold;
	transition: color 0.2s;
}
nav:not(.show) ul li a::after {
	content: '';
	width: 0%;
	height: 2px;
	background: var(--base-color);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: width 0.2s;
}
nav:not(.show) ul li a:hover::after,
nav:not(.show) ul li a.active::after {
	width: 100%;
	font-weight: bold;
}
nav .menu {
	opacity: 0;
	visibility: hidden;
}

/* =========MOSTRAR MENU========== */
nav.show .menu ul li a {
	display: block;
	width: 100%;
	padding: 0.5rem;
}
nav.show .menu ul {
	display: flex;
	flex-direction: column;
}
nav.show .menu ul li a:hover,
nav.show .menu ul li a.active {
	background-color: var(--base-color);
	border-radius: 25px;
	color: var(--text-color-light);
}

nav.show .menu {
	padding-inline: 1rem;
	padding-block: 1rem;
	opacity: 1;
	visibility: visible;
	background: var(--body-color);
	position: fixed;
	top: var(--header-height);
	width: 88%;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	border-radius: 15px;
	border: 2px solid var(--base-color);
	transition: top 0.5s;
}

/* =======TOGGLE MENU=========== */
.toggle {
	color: var(--base-color);
	font-size: 2.4rem;
	cursor: pointer;
}
.hide {
	display: none !important;
}

nav .icon-close {
	position: absolute;
	right: -2rem;

	transition: 0.2s;
	/* visibility: hidden;
	opacity: 0; */
}
nav.show div.icon-close {
	/* visibility: visible;
	opacity: 1; */
	top: var(--header-height) / 2;
	right: 1rem;
}

/* =================inicio=================== */
section#inicio .swiper-inicio {
	position: relative;
}

.swiper-pagination,
.swiper-button-prev,
.swiper-button-next {
	position: absolute;
}

.swiper-button-next,
.swiper-button-prev {
	color: white;
	background-color: var(--base-color);
	border-radius: 100%;
	display: none;
	height: 5rem;
	width: 5rem;
}
.swiper-button-next:after,
.swiper-button-prev:after {
	font-weight: 500;
	font-size: 5rem;
	font-family: var(--title-font);
}
.swiper-button-next:after {
	content: '>';
}
.swiper-button-prev:after {
	content: '<';
}
#inicio .swiper-button-prev {
	left: 5;
}
.swiper-button-next {
	right: 5;
}
/* =========swiper=========== */

.swiper-inicio,
.swiper-container {
	overflow: hidden;
}
.swiper-pagination-bullet:hover {
	background: var(--base-color-second);
}
.swiper-pagination-bullet {
	margin-inline: 1rem !important;
	padding: 0.8rem;
}
.swiper-pagination-bullet-active {
	background: var(--base-color);
}

/* ==============SLIDE2================== */
.slide2 header {
	text-align: center;
	margin-bottom: 1rem;
	margin-top: 3rem;
}
.slide2 header h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.slide2 img {
	width: 38rem;
	height: 38rem;
	border-radius: 25px;
}
.slide2 .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* =====================ORÇAMENTO================== */
#orcamento {
	background-image: url(./assets/bgv.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 50rem;
	margin: 5rem 1rem 1rem 1rem;
	border-radius: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5rem 1rem;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.589);
}
#orcamento div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	color: #fffbf4;
	text-align: center;
	margin: 1rem;
}

#orcamento .text span {
	font-weight: 700;
	color: white;
}
#orcamento .orca-img {
	border-radius: 3rem;
	/* padding: 1rem; */
	width: 100%;
	height: auto;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.589);

}
#orcamento div a.btn {
	display: flex;
	width: 80%;
	border-radius: 5rem;
	background: var(--base-color);
	justify-content: center;
	align-items: center;
	box-sizing: content-box;
	padding-block: 1rem;
	color: white;
	position: relative;
}
#orcamento div a img {
	width: 2rem;
	background-color: white;
	box-sizing: content-box;
	padding: 0.5rem;
	border-radius: 100%;
	margin-left: 20%;
	position: absolute;
	right: 1rem;
}
/* ======================SOBRE////////////======== */
#sobre {
	background-image: url(./assets/brinquedos.jpeg);
	background-repeat: no-repeat;
	position: relative;
	background-position: center;
	background-size: cover;
	margin-top: 5rem !important;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: -2;
}

#sobre::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(
		to left,
		#eb9b248f,
		rgb(247, 247, 247),
		#5be8fe96
	);
	z-index: -1;
	
}
#sobre .text {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 2rem;
	justify-content: center;
	align-items: center;
}

#sobre .text h2 {
	color: #ff7d01;
}
#sobre .text h3{
	color: black;
}
.wpp-btn {
	display: flex;
	align-items: center;
	background-color: #25d366;
	color: var(--body-color);
	font-size: var(--subtitle-font-size);
	border-radius: 25px;
	text-decoration: none;
	width: fit-content;
	font-weight: 500;
	justify-content: space-around;
}

.wpp-btn p {
	margin-left: 1rem;
}
.wpp-btn img {
	width: 5rem;
	height: 5rem;
	margin: 0;
}

#sobre div {
	margin: 2rem;
}
/* //=============================SOCIAL================== */
#social .insta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#social div.text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-inline: 2rem;
	text-align: center;
	gap: 2rem;
}

#social div.text p {
	font-size: var(--subtitle-font-size);
}
.swipe-social {
	background: #ff7d01;
	/* background-color: lightpink; */
	clip-path: polygon(
		0 0,
		30% 10%,
		70% 0,
		100% 5%,
		100% 100%,
		70% 90%,
		30% 100%,
		0 95%
	);
	background-size: cover;
	box-sizing: content-box;
	padding-block: 10rem;
	width: 100%;
}
.swipe-social h1 {
	color: rgb(250, 247, 247);
	text-align: center;
}
.swiper-slide blockquote {
	position: relative;
}
#social blockquote::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.322);
	z-index: -1;
}

#social blockquote {
	padding: 3.2rem;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.589);
	border-radius: 0.4rem;
	min-height: 40rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
#social blockquote p {
	position: relative;
	text-indent: 3rem;
	margin-bottom: 2.4rem;
	color: black;
}

#social blockquote p span {
	font: 700 4.8rem serif;
	position: absolute;
	top: -0.8rem;
	left: -3rem;
	color: var(--base-color);
}

#social cite {
	display: flex;
	align-items: center;
	color: #fffbf4;
	position: absolute;
	bottom: 2rem;
	left: 5rem;
	text-shadow: 2px 2px 4px rgb(51, 51, 51);
}
#social cite img {
	width: 5rem;
	height: 5rem;

	border: 2px solid rgb(6, 232, 6);
	border-radius: 50%;
	object-fit: cover;
	clip-path: circle();
	margin-right: 0.8rem;
}

/* =========swiper-social=========== */
.swiper-social {
	position: relative;
	overflow: hidden;
}
.swiper-social .swiper-slide {
	height: auto;
	padding: 6.4rem 1.6rem;
}

/* //===================VANTAGENS=======================// */
#vantagens {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 3rem;
position: relative;
}
.splash1,
.splash2,
.splash3{
	position: absolute;
	z-index: -1;
max-width: 5rem;
}
.splash1{
	top: 0rem;
	left: 0;
}
.splash2{
	right: 2rem;
}
.splash3{
	bottom: 0;
	left: 0;
}

/* .splash4,
.splash5,
.splash6{
	position: absolute;
	z-index: -1;
	width: 30rem;
}
.splash4{
	top: 45%;
}
.splash5{
	bottom: 20%;
	right: 20%;
}
.splash6{
	left: 23%;
	bottom: 23%;
} */

#vantagens p {
	max-width: 50rem;
	font-size: 1.8rem;
}
.vantagens-class {
	justify-content: space-between;
}

.vantagens-class p {
	max-width: 38rem;
}
.vantagens-class div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
	text-align: center;
}

.vantagens-class .central img {
	/* clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%); */
	object-fit: contain;
	border-radius: 20px;

	
	box-sizing: content-box;
}
.vantagens-class .central .img {
	margin-inline: 1.5rem;
	width: fit-content;
	height: fit-content;
	padding: 1rem;
	border-radius: 15px;
	background: linear-gradient(
		to left,
		#ff7d01,
		#fe8684,
		#70fe6f,
		#5be7fe,
		#5bc0c5
	);;
}
.vantagens-class .svg {
	border-radius: 10px 10px 80% 10px;
	background: var(--base-color-second);

	width: fit-content;
	height: fit-content;
	padding: 1rem;
}
.vantagens-class .svg img {
	margin-right: 1rem;
	width: 3rem;
	height: auto;
}
/* /=====================looptext================= */

.div-loop {
	background: var(--base-color);
}
.div-loop {
	overflow: hidden;
	position: relative;
	white-space: nowrap;
}

.div-loop .text-loop {
	display: inline-block;
	margin-block: 1.5rem;
	animation: marquee 5s linear infinite;
	color: var(--text-color-light);
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

/* ======================CONTACT================ */

#contact .links {
	background: var(--base-color);
	padding: 3rem 0 2rem;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 1.5rem;
}
#contact .contact-links #contact .grid {
	gap: 6.4rem;
}
#contact .text {
	text-align: center;
}
#contact .button {
	margin-block: 2rem;
}

#contact .button i,
#contact ul li i {
	font-size: 2.4rem;
}
#contact ul li i {
	margin-inline: 1rem;
}
#contact ul li {
	margin-left: 1rem;
	color: white;
}

#contact ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
#contact ul li {
	display: flex;
	align-items: center;
}
#contact ul li i {
	color: white;
}

/* ============FOOTER================ */
footer a.logo img {
	width: 15rem;
	margin-left: 1rem;
}
footer {
	background: var(--base-color);
}
footer div {
	padding: 4rem 0;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 1rem;
}

footer .brand {
	color: var(--text-color-light);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* ==================back-to-top============= */
.back-to-top {
	width: 8rem;
	position: fixed;
	left: -1rem;
	bottom: -1rem;
	visibility: hidden;
	opacity: 0;
	animation: float 2s ease-in-out infinite;
	 
	
	 
}
.back-to-top.show {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	z-index: 5;
}
@keyframes float {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}
/* ==============WPP================ */
div.wpp {
	width: 8rem;
	position: fixed;
	right: 0rem;
	bottom: 0rem;	 
}
.wpp a{
 position: absolute;
 
 width: 100%;
 height: 8rem;
opacity: 0;
}



/* =================MEDIA QUERIES============ */
@media (min-width: 1200px) {
	/* ===========inicio====== */
	div.swiper-button-next,
	div.swiper-button-prev {
		display: flex;
	}
	.swiper-pagination {
		display: none;
	}
	/* =================SOBRE================ */
	#sobre {
		justify-content: space-around;
		margin: 0;
		background-size: contain !important;
	}
	#sobre::before {
	
	background: linear-gradient(
		to right,
		rgb(247, 247, 247),
		#5be8fe96,
		#eb9b248f
		
		
	);
	
	
}
	#sobre div.text {
		max-width: 50rem;
		margin-left: 5rem;
	}
	.sobre-img {
		/* display: none; */
		margin-top: 10rem!important;
		width: 30rem;
		height: auto;
		min-width: 0!important;
		box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.588);
	}
	/* ===============VANTAGENS============ */
	/* .splash4{
	top:0!important;
	right: 0!important;
}
.splash5{
	bottom: 20%;
	right: 28%!important;
}
.splash6{
	left: 28%!important;
	bottom: 23%;
} */
	/* =====REUSABLE CLASSES===== */
	/* .container {
		max-width: 1120px;
		margin-inline: auto;
	} */

	.button {
		height: 5rem;
	}
	nav .menu {
		opacity: 1;
		visibility: visible;
		top: 0;
	}
	nav .menu ul {
		display: flex;
		gap: 2rem;
	}
	nav .menu ul li a.title {
		font: 500 1.6rem var(--body-font);
	}
	nav .icon-menu {
		display: none;
	}
	

	/* ========CONTACT====== */
	#contact .container {
		grid-auto-flow: column;
		align-items: center;
	}
	#contact.text {
		max-width: 40rem;
	}

	/* ========FOOTER======== */

	footer a.logo img {
		width: 30rem;
	}
}

@media (min-width: 768px) {
	:root {
		--title-font-size: 3.6rem;
		--subtitle-font-size: 1.8rem;
	}
small.small{
	right: 1rem;
	top: 0;
}
	/* =====================ORCAMENTO========== */
	#orcamento {
		background: url(./assets/bgh.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		flex-direction: row-reverse;
		justify-content: space-around;
	}
	#orcamento div.text {
		max-width: 50rem;
		text-align: start;
	}
	#orcamento .orca-img {
		max-width: 50rem;
		margin-right: 1rem;
	}

	#orcamento div a.btn {
		min-width: 23rem;
		max-width: 30rem;
	}

	/* ==================SOBRE========== */
	#sobre {
		flex-direction: row;
		/* z-index: -2; */
		background-size: cover;
	}
	/* #sobre::before {
		opacity: 1;
	} */
	#sobre div.sobre-img {
		min-width: 38rem;
		align-self: flex-start;
	}

	#sobre div {
		margin: 0;
	}
	#sobre .text {
		text-align: start;
		margin-left: 1rem;
		align-items: flex-start;
	}
	/* /////===============SOCIAL============ */
	#social .insta {
		flex-direction: row;
	}
	#social .insta img {
		max-width: 50rem;
		min-width: 25rem;
	}
	#social div.text {
		min-width: 20rem;
	}
	#social header {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1rem;
	}
	#social header h2 {
		font-size: 2.5rem;
	}
	/* ============VANTAGENS======== */
	.vantagens-class .central img {
		max-width: 34rem;
	}
	.vantagens-class {
		display: flex;
	}
.vantagens-class .central{
	flex-direction: column-reverse;
}
.splash4{
	top: 15%;
}
.splash5{
	bottom: 25%;
	right: 20%;
}
.splash6{
	left: 28%;
	bottom: 23%;
}
	/* =============CONTACT============ */
	#contact div.text {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-around;
		margin-block: 3rem;
	}

	#contact .contact-links a.button {
		margin: 0;
	}
	#contact ul {
		flex-direction: row;
		align-items: center;
		justify-content: space-around;
	}
}
