/* RESET */

*{
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, Tahoma, sans-serif;	
}

/* HEADER */

header{
	height: 100px;
	background-color: rgb(0, 0, 0);
	padding: 0 50px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;	
}

#logoImg{
	width: 10%;
	height: 80%;
}

.logo{
	text-transform: uppercase;
	color: #6CC091;
	font-weight: 200;
}

.check font{
	color: #6CC091;
}

.menu a{
	color: #6CC091; /* color thielus debe ir acá */
	text-transform: uppercase;
	text-decoration: none;
	padding: 0 10px;
	transition: 0.2s;
}

.mostrar-menu,
.esconder-menu{
	font-size: 30px;
	cursor: pointer;
	display: none;
	transition: 0.2s;
	color: #6CC091;
}

.mostrar-menu{
	order: 1;
	color: #6CC091;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
	color: #c06c9a; /*color complementario thielus*/
}

#check{
	display: none;
}


/* TARJETAS */

.card{
	position: relative;
	width: 300px;
	height: 400px;
	background: #4D4D5C;
	transform-style: preserve-3d;
	transform: perspective(1000px);
	box-shadow: 10px 20px 40px rgba(0,0,0,0.25);
	transition: 1s;
}

.card:hover{
	transform: translateX(50%);
}

.card .imgBox {
	position: relative;
	width: 300px;
	height: 400px;
	z-index: 1;
	transform-origin: left;
	transform-style: preserve-3d;	
	background: #000;
	transition: 1s;
}

.card:hover .imgBox{
	transform: rotateY(-180deg);
}

.card .imgBox img{
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 400px;
	object-fit: cover;
	transform-style: preserve-3d;
	backface-visibility: hidden;
}


.card .details{
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 400px;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card .details .content{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.card .details .content h2{
	 text-align: center;
	 font-weight: 700;
	 line-height: 1em;
}

.card .details .content h2 span{
	color: #e21212;
	font-size: 0.8em;
}

.card .details .content reproductor{
	position: relative;
	display: flex;
	margin-top: 10px;
}

.card .details .content reproductor a{
	display: inline-block;
	width: 35px;
	height: 35px;
	background: #333;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	margin: 5px;
	font-size: 18px;
	transition: 0.2;
}

.card .details .content reproductor a:hover{
	background: #e21212;
}

/* RESPONSIVE */

@media(max-width: 768px){
	/* HEADER */
	.mostrar-menu,
	.esconder-menu{
		display: block;
	}
	
	.menu{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #000000;
		right: -100%;
		top: 0;
		text-align: center;
		padding: 100px 0px;
		z-index: 100;
		transition: 0.5s;
	}
	
	.menu a{
		display: block;
		padding: 15px;
	}
	
	.esconder-menu{
		position: absolute;
		top: 40px;
		right: 40px;
	}
	
	#check:checked ~ .menu{
		right: 0;
	}
}