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


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

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

body{
	height: 100vh;
	background: #F4D6A1;
	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;
}

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 {
	
	
}


/*////// CUADRO BIENVENIDA ///////*/


.info{
	width: 100%;
	background: url("../images/fondo_info_quesos.jpg");
	background-attachment: fixed;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}

.cuadro_bienvenido{
	
	display: flex;
	justify-content: flex-end;
}

.logo_color{
	width: 200px;
	height:765px;
	background: #CED8CF;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
}

.contenedor_venta{
	width: 550px;
	height:765px;;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
	background: rgba(254,229,181,0.7);
	color:#403931;
	
}

.contenedor_venta h2{
	font-size: 25pt;
	font-weight: 700;
	margin-bottom: 20px;
    color:#403931;
	border-bottom: 2px solid #403931;
	border-top: 2px solid #403931;
	padding: 10px;
}

.contenedor_venta p{
	font-size: 12pt;
	color:#403931;
}


/*////// CARRUSEL PRESENTACION ///////*/

.slider_mq{
    height: 765px;
    
    position: relative;
}

.slider_mq .list_mq .item_mq{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.slider_mq .list_mq .item_mq img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider_mq .list_mq .item_mq::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 20%, transparent
    );
}

.slider_mq .list_mq .item_mq .content_mq{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}

.slider_mq .list_mq .item_mq .content_mq p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}

.slider_mq .list_mq .item_mq .content_mq h2{
    font-size: 50pt;
    margin: 0;
}

.slider_mq .list_mq .item_mq.active{
    opacity: 1;
    z-index: 10;
}

@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}

.slider_mq .list_mq .item_mq.active p:nth-child(1),
.slider_mq .list_mq .item_mq.active h2,
.slider_mq .list_mq .item_mq.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}

.slider_mq .list_mq .item_mq.active h2{
    animation-delay: 1s;
}

.slider_mq .list_mq .item_mq.active p:nth-child(3){
    animation-duration: 1.3s;
}

.arrows_mq{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}

.arrows_mq button{
	padding: 6px 9px;
	
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}

.arrows_mq button:hover{
    background-color: #eee;
    color: black;
}


/*////// CARRUSEL PRESENTACION MINIATURAS ///////*/


.thumbnail_mq{
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}

.thumbnail_mq::-webkit-scrollbar{
    width: 0;
}

.thumbnail_mq .item_mq{
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}

.thumbnail_mq .item_mq img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail_mq .item_mq.active{
    filter: brightness(1.5);
}

.thumbnail_mq .item_mq .content_mq{
    position: absolute;
    inset: auto 10px 10px 10px;
}



/*////// CUADRO FILOSOFIA ///////*/


.venta{
	
	width: 100%;
	height: 765px;
	background: url("../images/fondo_bienvenida.jpg");
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: space-between;

}

.cuadro_filosofia{
	
	width: 90%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 20px;
}

.contendor_fis{
	display: flex;
	align-items: center;
	
	padding: 10px;
	width: 300px;;
}

.contendor_fis h2 {
	padding: 10px;
	margin: auto;
	font-size: 25pt;
	text-align: center;
}

.txt_filosofia{
	padding: 15px;
	width: 50%;
}

.txt_filosofia p{
	font-size: 13pt;
}



/*/////////////////// CUADRO CATAS ///////////////////*/

.contenido_nuevo{
	width: 100%;
	height: auto;
	min-height: 750px;
	background: url("../images/fondo_catas.jpg");
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 30px 50px;
	background-color: #fff;
	
	
}

.logo{
	
	width: 100%;
	height: auto;
	padding: 10px;
	display: flex;
	justify-content: center;
	
	margin: 10px auto 40px; 
}

.contenido_nuevo h2{
	
	margin: 10px auto 30px;
}

.list_nuevo{
	width: 80%;
	display: flex;
    justify-content: space-around;
    align-items: center;
	flex-wrap: wrap;
	gap: 40px;
	
}

.list_nuevo .item img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: 0.5s;
	border: 1px solid #fff;
}

.list_nuevo .item{
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
	width: 300px;
	height: 400px;
}

.list_nuevo .item .content{
    width: 100%;
	height: 0;
	background: linear-gradient(transparent,#1c1c1c 58%);
	border-radius: 10px;
	position: absolute;
	left: 0;
	bottom: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 30px;
	text-align: center;
	font-size: 11pt;
	transition: height 0.5s;
	
}

.list_nuevo .item .content h2{
	width: 90%;
	font-weight: 500;
	margin-bottom: 5px;
	margin-top: 80%;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 18pt;
	letter-spacing: 2px;
}

.list_nuevo .item .content  {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.list_nuevo .item .content  a{
	
	margin-top: 10px;
	color: #262626;
	text-decoration: none;
	font-size: 14px;
	background: #fff;
	border-radius: 50px;
	text-align: center;
	padding: 5px 15px;
}

.item:hover img{
    transform: scale(1.1);
}

.item:hover .content{
    height: 100%;
}

box {
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}

.box img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}



/*////// 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;
}

.contenedor_somos{
	width: 600px;
	height:auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	
	margin-right: 50px;
	padding: 20px 20px 60px;
}

.beneficios{
	width: 100%;
	height: 765px;
	background: url("../images/fondo_beneficios.jpg");
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
    background-attachment: fixed;
	gap:20px;
}

.contenedor_beneficios{
	width: 200px;
	height: 500px;
	border: 1px solid #fff;
	
}

.contenedor_beneficios .title{
	width: 200px;
	height: 200px;
	background: rgba(234,199,141,.7);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.contenedor_beneficios .title h2{
	font-size: 15pt;
	color:#403931;
}

.contenedor_beneficios .contenido{
	width: 200px;
	height: 300px;
	background: #CED8CF;
}

.contenido ul {
	padding: 10px;
	
}

.contenido ul li {
	padding: 10px;
	list-style: none;
	color:#403931;
}



/* DISEÑO PARA TABLET */

@media (min-width:481px) and (max-width:768px){

/*////// CABECERA ///////*/	
	
.logotipo {
    margin-left: 10px;
	
}
	
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%;
	}
	
	
/*////// CUADRO BIENVENIDA ///////*/	
	
.info{
		height: 1024px;
	}
	
.contenedor_info {
    width: 60%;
   
}
	
.cuadro_info{
	border-right: none;
	border-left: none;
	border-bottom: 1px dashed #000000;
	width: 250px;
	height:auto;
	padding: 10px;
		
  }		
	
.cuadro_bienvenido{
	width: 100%;
	height: 1024px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}	
	
.logo_color{
		width: 100%;
		height: 200px;
		flex-direction: row;
		margin-bottom: 0px;
	}	
	
.logo_color img{
		width: 170px;
		
	}
	
.contenedor_venta{
		width: 100%;
		height: 1024px;
		padding: 40px;
		background: rgba(254, 229, 181, 1);
		
	}
	
	
/*////// CARRUSEL PRESENTACION ///////*/	
	
.slider_mq{
		
	
	height: 1024px;
	}
	
.arrows_mq{
		top: 10%;
	}
	
.thumbnail_mq .item_mq {
    width: 50px;
    height: 50px;
    
}
	
.thumbnail_mq{
		height: auto;
		flex-wrap: wrap;
	}
	
.thumbnail_mq .item_mq .content_mq {
    display: none;
}
	

/*////// CUADRO FILOSOFIA ///////*/	
	
	
.venta{
		height: 1024px;
	}
	
.cuadro_filosofia{
		flex-direction: column;
		justify-content: center;
		margin: auto;
		height: 600px;
		border: 1px solid #fff;
		background: rgba(0,0,0,.7)
	}
	
.txt_filosofia{
		width: 100%;
	}
	
.contendor_fis{
		width: 100%;
		flex-direction: column;
	}
	
.contendor_fis h2 {
    padding: 20px;
		font-size:  18pt;
    
}
	
.contenido_nuevo {
    width: 100%;
    height: auto;
     min-height: 0px; 
     background: url("../images/fondo_catas_tb.jpg"); 
	background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px 50px;
    background-color:#F4D6A1 ;
}
	
	
}


/* DISEÑO PARA MOVIL */

@media (min-width:0px) and (max-width:480px){
	
/*////// CABECERA ///////*/		
	
.logotipo {
    margin-left: 0px;
	width: 140px;
}
	
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%;
	}
	

/*////// CUADRO BIENVENIDA ///////*/	
	
.info{
		height: 1024px;
	}
	
.contenedor_info {
    width: 60%;
   
}
	
.cuadro_info{
	border-right: none;
	border-left: none;
	border-bottom: 1px dashed #000000;
	width: 250px;
	height:auto;
	padding: 10px;
		
  }		
	
.cuadro_bienvenido{
	width: 100%;
	height: 1024px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}	
	
.logo_color{
		width: 100%;
		height: 200px;
		flex-direction: row;
		margin-bottom: 0px;
	}	
	
.logo_color img{
		width: 170px;
		
		

	}
	
.contenedor_venta{
		width: 100%;
		height: 1024px;
		padding: 20px;
		background: rgba(254, 229, 181, 1);
		justify-content: flex-start;
	}
	
.contenedor_venta h2{
		font-size: 20pt;
	}
	
.contenedor_venta p{
		font-size: 11pt;
	}
	
	
/*////// CARRUSEL PRESENTACION ///////*/	
	
.slider_mq{
		height: 750px;
	}
	
	
.slider_mq .list_mq .item_mq .content_mq h2 {
    font-size: 38pt;
    margin: 0;
}
	
.thumbnail_mq .item_mq .content_mq {
    display: none;
		
}
	
.slider_mq .list_mq .item_mq .content_mq {
    
    top: 30%;
   
} 
	
.slider_mq .list_mq .item_mq::after{
	background-image: 	linear-gradient(
        to top, #000 5%, transparent)
	}
	
.arrows_mq{
		top: 80%;
	}
	
.thumbnail_mq .item_mq {
    width: 50px;
    height: 50px;
    
}
	
.thumbnail_mq{
		height: auto;
		flex-wrap: wrap;
		display: none;
	}
	

/*////// CUADRO FILOSOFIA ///////*/		
	
	
	.venta{
		height: 1024px;
	}
	
	.cuadro_filosofia{
		flex-direction: column;
		justify-content: space-between;
		margin: auto;
		height: 600px;
		border: 1px solid #fff;
		background: rgba(0,0,0,.7)
	}
	
	.txt_filosofia{
		width: 100%;
	}
	
	.contendor_fis{
		width: 100%;
		flex-direction: column;
	}
	
	.contendor_fis h2 {
    padding: 20px;ize: 18pt;
    
}
	
}
