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

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

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

body{
	height: 100vh;
	background:#E5E1DF;
	font-family: "dm-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
	color: #FFFFFF;
}

a{
	color: #FFFFFF;
}




/*////// CABECERA ///////*/


header {
	position: absolute;
	width: 100%;
	min-height:  65px;
	
	display: flex;
	justify-content: space-between;
	align-items: center;
  /*  background: #EDF9EE; 
	background:#403931; */
	z-index: 10;
}

.logotipo{
/*	width: 298px;
	height: 56px; */
	margin-left: 30px;
	padding: 5px;
}


/*////// NAVEGADOR ///////*/

nav{
	margin-right: 50px;
	
}

header ul {
	position: relative;
	
}

header ul li {
	list-style: none;
	position: relative;
	float: left;
	color: #fff;
}

header ul li a {
	
	font-size: 12pt;
	padding: 20px 25px 5px;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	
}

header ul li a:hover {
	
	
	color: #fff;
	transition: 0.2s;
	
	border-bottom: 1px solid #fff;
}

header ul li ul {
	position: absolute;
	left: 0;
	width: 200px;
	
	display: none;
	
}

header ul li:hover ul {
	
	display: block;
	height: auto;
	
	
}

header ul li:hover ul::-webkit-scrollbar {
	width: 10px;
	background: #A3A3A3;
	
}

header ul li:hover ul::-webkit-scrollbar-thumb{
	border: 1px solid #272E66;
	background: #272E66;
	border-radius: 10px;
}

header ul li ul li {
	position: relative;
	width: 100%;
	border: solid 1px rgba(0,0,0,0.2);
}

header ul li ul li a {
	
	font-size: 11pt;
	transition: 0.5s;
}

header ul li ul li a:hover {
	
	
}


/*////// SLIDER ///////*/


.contendor_slider{
	width: 100%;
	height: 500px;
	background: url("../images/slider_productos.jpg");
	background-size: cover;

}

.contendor_productos{
	width: 80%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin:100px auto 0px;
	padding: 30px 0px;
	background: #f5f5f5;
	border-radius: 20px;
	gap:20px;
}


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


.card{
	height: 390px;
	width: 300px;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 70px 63px	-60px #000;
	position: relative;
	transition: 0.8s;
	margin: 10px;
	
}

.card img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s ease-in-out;
/*	filter: grayscale(1); */
}

.card:hover img {
	width: 200%;
/*	filter: grayscale(0); */
}

.card:hover{
	transform: translateY(-30px);
	box-shadow: 0 90px 63px	-20px #000;
	
}

.content{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	color: #fff;
	font-family: sans-serif;
	text-align: center;
	padding: 20px 0;
	transition: 0.8s;
	backdrop-filter: blur(0px);
	transform: translateY(50%);
	background:rgba(0,0,0,.1);
	
}

.card:hover .content{
	backdrop-filter: blur(10px);
	transform: translateY(0);
	background:rgba(0,0,0,.8);
}

.content h2{
	margin: 5px;
	font-size: 14pt;

}

.content .des{
	font-size: small;
	font-weight: 100;
	padding: 10px 0;
	
}

.content .social{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	
}

.content .social .item{
	border-right: 1px solid #fff5;
}

.content .social .item:nth-last-child(1){
	border-right: 1px solid #fff5;
}

.content .social .title{
	font-size: large;
	margin: 10px 0;
	
}

.content .social .count{
	opacity: 0.8;
	
}



/*////// FOOTER ///////*/



footer {
	
width: 100%;
	height: auto;
	border: 1px solid #000000;
	background:#403931;
	position: sticky;
	top: 100%;	
	display: flex;
	justify-content: center;
	padding: 10px 0;
}

.contenedor_info{
	
	width: 769px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	
	
}

.cuadro_info{
	border-right: 1px dashed #FFFFFF;
	border-left: 1px dashed #FFFFFF;
	width: 250px;
	height:auto;
		
}

.cuadro_info:nth-child(2) {
	border-left: none;
}

.cuadro_info:nth-child(3) {
	border-left: none;
}

.cuadro_info ul {
	height: auto;
	list-style: none;
	margin: auto;
	font-size: 11pt;
	
	text-align: center;
	color: #F4D6A1;
	
}

.cuadro_info ul li {
	font-size: 11pt;
	
	text-align: center;
	padding: 3px;
	 color: #F4D6A1;
}

.cuadro_info ul li a {
	font-size: 11pt;
	
	text-align: center;
	color:  #F4D6A1;
	
}

.cuadro_info ul li a:hover{
	color:  #FFFFFF;
	font-weight: 600;
}

.marcas_contenedor{
	
	width: 100%;
	
}

.icono_mapa{
	display: flex;
	justify-content: center;
}

.icono_mapa a{
	display: flex;
	justify-content: center;
	border: 2px solid #272E66;
	width: 40px;
	height: 40px;
	padding: 5px;
	border-radius: 10px;
	margin-left: 5px;
}



/* DISEÑO PARA TABLET */

@media (min-width:481px) and (max-width:768px){
	
	
	/*////// CABECERA ///////*/
	
.logotipo {
    margin-left: 10px;
	
}
	
	
	/*////// NAVEGADOR ///////*/
	
	
header{
		padding: 0px 20px;
	background:rgba(0,0,0,.8);
	}
	
header nav{
		position: absolute;
		width: 100%;
		top: 96px;
		left: 0;
		background: rgba(0,0,0,.8);
		display: none;
		z-index: 225;
		
	}
	
header.active nav{
		display: initial;
	}
	
header nav ul li a {
		color: #E6AB4E;
	}
	
header nav ul li{
		
		width: 100%;
		border: solid 1px rgba(0, 0, 0, 0.2);
	}
	
header nav ul li:hover{
		
		
	}
	
header nav ul li ul{
		position: relative;
		width: 100%;
		height: 200px;
		left: 0;
		
		z-index: 225;
	}
	
header nav ul li ul li {
		
		
	}
	
header nav ul li ul li a{
		margin-left: 10px;
		
	}
	
header nav ul li:hover ul{
		
		height: 100px;
		
	}
	
.menuToggle{
		position: relative;
		width: 40px;
		height: 50px;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
		
	}
	
.menuToggle::before {
		content: '';	
		position: absolute;
		width: 100%;
		height: 6px;
		background:#E6AB4E;
		transform: translateY(-12px);
	    box-shadow: 0 12px #E6AB4E;
		transition: 0.5s;
		border-radius: 5px;
	}
	
.menuToggle::after {
		content: '';	
		position: absolute;
		left: 0;
		width: 70%;
		height: 6px;
		background: #E6AB4E;
		transform: translateY(12px);
		transition: 0.5s;
		border-radius: 5px;
	
	}
	
header.active .menuToggle::before {
		transform: rotate(45deg);
		box-shadow: 0 0px #fff;
	}
	
header.active .menuToggle::after {
		transform: rotate(315deg);
		width: 100%;
	}
	
	
/*////// SLIDER ///////*/	
	
.contendor_slider{
		background: url("../images/slider_productos_tb.jpg");
		background-position: center;
		width: 100%;
		height: 1024px;
	}
	
	
}


/* DISEÑO PARA MOVIL */

@media (min-width:0px) and (max-width:480px){
	
	/*////// CABECERA ///////*/
	
	.logotipo {
    margin-left: 0px;
	width: 140px;
}
	
	
	/*////// NAVEGADOR ///////*/
	
header{
		padding: 0px 20px;
		background:rgba(0,0,0,.8);
	}
	
header nav{
		position: absolute;
		width: 100%;
		top: 77px;
		left: 0;
		background: rgba(0,0,0,.8);
		display: none;
		z-index: 225;
		
	}
	
header.active nav{
		display: initial;
	}
	
header nav ul li a {
		color: #E6AB4E;
	}
	
header nav ul li{
		
		width: 100%;
		border: solid 1px rgba(0, 0, 0, 0.2);
	}
		
header nav ul li:hover{
		
		
	}
	
header nav ul li ul{
		position: relative;
		width: 100%;
		height: 200px;
		left: 0;
		
		z-index: 225;
	}
	
header nav ul li ul li {
		
		
	}
		
header nav ul li ul li a{
		margin-left: 10px;
		
	}
	
header nav ul li:hover ul{
		
		height: 100px;
		
	}
	
.menuToggle{
		position: relative;
		width: 40px;
		height: 50px;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
		
	}
	
.menuToggle::before {
		content: '';	
		position: absolute;
		width: 100%;
		height: 6px;
		background:#E6AB4E;
		transform: translateY(-12px);
	    box-shadow: 0 12px #E6AB4E;
		transition: 0.5s;
		border-radius: 5px;
	}
	
.menuToggle::after {
		content: '';	
		position: absolute;
		left: 0;
		width: 70%;
		height: 6px;
		background: #E6AB4E;
		transform: translateY(12px);
		transition: 0.5s;
		border-radius: 5px;
	
	}
	
header.active .menuToggle::before {
		transform: rotate(45deg);
		box-shadow: 0 0px #fff;
	}
	
header.active .menuToggle::after {
		transform: rotate(315deg);
		width: 100%;
	}
	
/*////// SLIDER ///////*/		
	
.contendor_slider{
		background-position: center;
		background: url("../images/slider_productos_mo.jpg");
		width: 100%;
		height: 750px;
	}

}