@charset "utf-8";
/* CSS Document */

/*/////////////////// GENERAL ///////////////////*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	width: 100%;
	color: white;
	font-family: lato, sans-serif ;
	font-weight: normal;
	background: url("../imagenes/fondo_pag.jpg");
}

h1{
	text-shadow: 6px 6px 8px #000000;
	font-family: Lato Semibold, "Lato Black", "Lato Hairline", "Lato Heavy", "Lato Light", "Lato Medium", "Lato Semibold", "Lato Thin";
	font-size: 35px;
	padding: 35px;
	
}


/*/////////////////// ENCABEZADO ///////////////////*/

.cabecera{
	
	background: rgba(3,84,148,1.00);
	display: flex;
	justify-content:space-between;
	align-items: center;
	height: 70px;
	box-shadow: 1px 5px 15px black;
	z-index: 10;
	position: fixed;
	width: 100%;
	border-bottom: solid 1px #035494;
	
}

.logotipo{
	width: 298px;
	height: 56px;
	margin-left: 50px;
}

#icono_menu{
	width: 50px;
	height: 50px;
	cursor: pointer;
	padding: 10px;
	margin-right: 50px;
}


/*/////////////////// BARRA DE NAVEGACION ///////////////////*/

nav{
	width: 300px;
	background: #034871;
	height: 700px;
	margin-left: -300px;
	margin-top: 70px;
	transition: all .6s;
	position: fixed;
	z-index: 9;
}

nav.mostrar{
	margin-left: 0px;
	z-index: 9;
}

.menu_navegador{
	width: 300px;
	height: 500px;
	list-style: none;
	line-height: 52px;
	margin-top: 50px;
}

.lista_navegador{
	border-bottom: dashed 1px #FFFFFF;
	margin: 10px auto;
	width: 90%;
	display: flex;
}

.links_navegador{
	color: #ffffff;
	text-decoration: none;
	display: block;
	width: 95%;
	text-align: right;
}

.links_navegador img{
	margin-right: 10px;
}

.footer{
	position: relative;
	width: 100%;
	background: #000000;
	height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	bottom:-130px;
}

.footer img{
	margin: 20px;
}


/*/////////////////// TARJETAS DE PRODUCTOS ///////////////////*/


.contenedor_info_servicios_empresa{
	width: 750px;
	margin:-60px auto 0;
	position: relative;
	top: 90px;
	display: flex;
	flex-direction: column;
}


.contenedor_imagen_slide{
	
	width: 100%;
	height: auto;
	margin: auto;
	display: flex;
	justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.card{
	position: relative;
	top: 100px;
	left: 0px;
	margin: 10px;
	width: 300px;
	height: 400px;
	background: #000;
	overflow: hidden;
	box-shadow: 0 5px 10px rgba(0,0,0,.5);
	border-radius: 15px;
	border: 1px solid rgba(3,84,148,1.00);
}

.poster{
	position: relative;
	overflow: hidden;
}

.poster:before{
	content: "";
	position: absolute;
	bottom: -130px;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #000 50%, transparent);
	transition: 0.5s;
	z-index: 1;
}

.card:hover .poster:before{
	bottom: 0;
}

.poster img{
	width: 100%;
	
}

.detalles{
	position: absolute;
	padding: 20px;
	width: 100%;
	height: 70%;
	bottom: -120px;
	left: 0;
	box-sizing: border-box;
	transition: 0.5s;
	z-index: 2;
}

.card:hover .detalles{
	bottom: 0;
}

.detalles h2{
	color: #fff;
	margin: 0;
	padding: 0;
	font-size: 20px;
}

.detalles h2 span{
	font-size: 14pt;
	color: #ff9800;
}

.estrellas{
	padding: 5px, 0;
	position: relative;
}

 .icono {
	color: #f7f476;
	 margin-right: 2px;
	 font-size: 13pt;
}

.estrellas span{
	color: #fff;
	padding: 0,5px;
}

.tags{
	position: relative;
	margin-top: 5px;
}

.tags span{
	padding: 2px 5px;
	margin-right: 12px;
	color: #fff;
	display: inline-block;
	border-radius: 4px;
}

.tags span.genero{
	background: #7206f7;
}

.tags span.romance{
	background: #f70661;
	
}

.info{
	color: #fff;
}

.info p{
	margin: 15px, 0 10px;
}











@media (min-width:0px) and (max-width:480px){
	
.logotipo{
	width: 204px;
	height: 38px;
	margin-left: 5px;
}
	
#icono_menu{
		margin-right: 5px;
	}
	
.contenedor_imagen_slide{
	
	width: 100%;
	height: auto;
	padding: 0px;
}
	
.card{
	
	margin: 30px 10px 10px;
	
}	
	
.detalles{
	height: auto;
	bottom: -130px;
	
}
	
.detalles h2{
	
	font-size: 17px;
}
	
.info{
		margin-top: 5px;
	}
	
.footer{
		height: auto;
	}
	
.footer p{
	width: 90%;
	
	padding: 10px;
	margin-top: 10px;
	}
	

}