@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("https://use.typekit.net/hho4icq.css"); /* MOKOKO */ 

body{
	font-size: 1em;
	font-family: 'Roboto', sans-serif;
}

#page-aspirador {
	max-width: 1220px;
	margin: 0px auto;
	overflow-x: hidden;
	position: relative;
}

.relative {
	position: relative;
}

.mokoko {
	font-family: mokoko, serif;
	text-transform: uppercase;
}

strong	{
	font-weight: 900;
}

.img-bg {
	width: 100%;
	height: auto;
}

header {
	background: #000;
	padding: 20px 0px;
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
}

.infos-intro {
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	height: 100%;
	top: 0px;
	color: #FFF;
	padding: 15px;
}

#intro h2 {
	font-weight: 100;
	font-size: 0.9em;
	text-transform: uppercase;
	margin: 0px;
}

#intro h2 .robo {
	font-weight: 600;
	font-size: 2.5em;
}

#intro h3 {
	color: #afca0b;
	font-weight: 300;
	font-size: 1.5em;
	text-transform: uppercase;
}

.slogan {
	font-weight: 300;
	font-size: 0.8em;
	line-height: 1.1em;
}

.slogan .philco-logo {
	font-weight: 800;
}

.infos-protect {
	position: absolute;
	height: 100%;
	top: 0px;
	color: #000;
	padding-right: 30px;
	text-align: right;
	line-height: 1em;
	font-size: 0.8em;
}

.nota-protect {
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 0.4em;
	color: #000;
}

.aspirador-protect {
	position: absolute;
	bottom: -50px;
	right: 0px;
}

#funcoes {
	background: url('../img/bg-grafismo.webp') no-repeat bottom center #2c2b2b;
	background-size: auto 100%;
	padding: 80px 0px;
}

#funcoes h4 {
	text-transform: uppercase;
	color: #afca0b;
	font-size: 1.5em;
	font-weight: 600;
}

#features {
	background: url('../img/bg-grafismo.webp') no-repeat bottom center #FFF;
	background-size: auto 100%;
	padding: 80px 0px;
	color: #2c2b2b;
}

#features .controle {
	position: absolute;
	top: 0px;
	left: 0px;
}

.feature {
	margin: 10px 0px;
}

.feature h5 {
	text-transform: uppercase;
	color: #afca0b;
	font-size: 1.5em;
	font-weight: 800;
	margin-bottom: 0px;
}

#selos {
	text-align: center;
	background: url('../img/bg-hexagons.webp') no-repeat top right #afca0b;
	background-size: auto 100%;
	padding: 50px 0px;
}

.selo {
	margin-bottom: 30px;
}

#apps {
	background: url('../img/bg-colmeia.webp') no-repeat top center #FFF;
	background-size: 100% auto;
	padding: 50px 0px;
}

#apps .celular {
	position: absolute;
	top: 0px;
	left: 0px;
}

#apps p {
	font-size: 1.2em;
	margin-top: 10px;
}

footer {
	background: #000;
	padding: 30px 0px;
	position: relative;
	z-index: 10;
}

.nota-footer {
	color: #FFF;
	font-size: 0.6em;
	padding-top: 20px;
	text-align: center;
}

/*------------------------------------------------------------------
---------------------------- CARROSSEL ----------------------------
--------------------------------------------------------------------*/

#carrossel {
	margin-top: 80px;
	display: grid;
	grid-template-rows: 350px 100px;
	grid-template-columns: 1fr 30px 30px 30px 30px 30px 1fr;
	align-items: center;
	justify-items: center;
}

input {
	z-index: 50;
}

main#carousel {
	grid-row: 1 / 2;
	grid-column: 1 / 8;
	width: 100vw;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transform-style: preserve-3d;
	perspective: 600px;
	--items: 6;
	--middle: 3;
	--position: 1;
}

div.item {
	position: absolute;
	width: 300px;
	height: 400px;
	padding: 30px;
	font-size: 1em;
	background-color: coral;
	--r: calc(var(--position) - var(--offset));
	--abs: max(calc(var(--r) * -1), var(--r));
	transition: all 0.25s linear;
	transform: rotateY(calc(-10deg * var(--r)))
	translateX(calc(-300px * var(--r)));
	z-index: calc((var(--position) - var(--abs)));
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
}

div.item h5{
	font-weight: 800;
	text-transform: uppercase;
	font-size: 1.5em;
	margin: 15px 0px;
}

div.item:nth-of-type(1) {
	--offset: 1;
	background-color: #FFF;
}
div.item:nth-of-type(2) {
	--offset: 2;
	background-color: #FFF;
}
div.item:nth-of-type(3) {
	--offset: 3;
	background-color: #FFF;
}
div.item:nth-of-type(4) {
	--offset: 4;
	background-color: #FFF;
}
div.item:nth-of-type(5) {
	--offset: 5;
	background-color: #FFF;
}


input:nth-of-type(1) {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}
input:nth-of-type(1):checked ~ main#carousel {
	--position: 1;
}

input:nth-of-type(2) {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
}
input:nth-of-type(2):checked ~ main#carousel {
	--position: 2;
}

input:nth-of-type(3) {
	grid-column: 4 /5;
	grid-row: 2 / 3;
}
input:nth-of-type(3):checked ~ main#carousel {
	--position: 3;
}

input:nth-of-type(4) {
	grid-column: 5 / 6;
	grid-row: 2 / 3;
}
input:nth-of-type(4):checked ~ main#carousel {
	--position: 4;
}

input:nth-of-type(5) {
	grid-column: 6 / 7;
	grid-row: 2 / 3;
}
input:nth-of-type(5):checked ~ main#carousel {
	--position: 5;
}

input:nth-of-type(6) {
	grid-column: 7 / 8;
	grid-row: 2 / 3;
}
input:nth-of-type(6):checked ~ main#carousel {
	--position: 6;
}



/*------------------------------------------------------------------
---------------------------- RESPONSIVO ----------------------------
--------------------------------------------------------------------*/

@media (min-width: 768px) {
	
	.nota-footer {
		padding-top: 0px !important;
		position: absolute;
		text-align: left;
		left: 0px;
		bottom: 0px;
	}

	.infos-intro {
		font-size:  1.5em;
		padding: 30px;
	}

	.slogan {
		font-size: 1em;
		line-height: 1.1em;
		margin-top: 30px;
	}

	.infos-protect {
		font-size: 1.5em;
		padding-right: 80px;
	}

	.nota-protect {
		font-size: 0.7em;
	}

	#funcoes {
		background: url('../img/bg-grafismo.webp') no-repeat bottom right #2c2b2b;
	}

	#funcoes h4 {
		font-size: 1.8em;
	}

	#features {
		background: url('../img/bg-grafismo.webp') no-repeat bottom right #FFF;
	}

	.celulares {
		margin-top: -100px;
	}

	.selo {
		margin-bottom: 0px;
	}

}


@media (min-width: 992px) {

	.infos-intro {
		font-size:  2em;
	}

	.infos-protect {
		line-height: 1.2em;
		padding-right: 80px;
	}

	.nota-protect {
		font-size: 0.8em;
		left: 20px;
		bottom: 20px;
	}

	.feature {
		padding-left: 80px;
	}

}


@media (min-width: 1100px) {

	header {
		padding: 30px;
	}

	#intro h2 {
		font-size: 1.2em;
		line-height: 1.5em;
	}

	#intro h2 .robo {
		font-size: 2.5em;
	}

	#intro h3 {
		font-size: 1.8em;
	}


}



