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

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

html{
	scroll-behavior: smooth;
}

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

body{
	height: 100vh;
	overflow-x: hidden;
	font-family: "dm-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.cabecera{
	display: flex;
    gap: 3rem;
    align-items: center;
    
}


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

.slider_pro{
	border: 1px solid #000;
	width: 100%;
	height: 750px;
	position: fixed;
	top:0;
	background-image: url("../images/fondo_slider.jpg");
	background-repeat: no-repeat;
	background-position: right;
	display: flex;
	justify-content: flex-start;
	background-color: #6b505e;
}

.contenedor_txt{
	width: 70%;
	height: 300px;
	margin-top: 40px;
	margin-left: 150px;
}

h1{
	font-size: 30pt;
	color: #6a505e;
	font-family: Palatino, "Palatino Linotype",  "Century Schoolbook L", "Times New Roman", "serif";
	font-weight: normal;
	text-shadow: rgb(0, 0, 0, .5) 1px 5px 8px;
}



.promo{
	width: 100%;
	height: 750px;
	border: 1px solid #000;
}


/*////// PRODUCTOS ///////*/

.contendor_productos_ventas{
	
	position: relative;
	width: 100%;
	min-height: 750px;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	top: 0px;
	padding: 20px 0px 120px;
	background-color: #f5f5f5;
	gap:20px;
}

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

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

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

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

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

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

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

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

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

.content_ventas{
	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,.5);
	
}

.card_ventas:hover .content_ventas{
	backdrop-filter: blur(10px);
	transform: translateY(0);
	background:rgba(0,0,0,.9);
}

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

}

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

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

	
	
}

.content_ventas .social .item_ventas{
	border-right: 1px solid #fff5;
	margin-top: 5px;
}

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

.content_ventas .social .title_ventas{
	font-size: large;
	margin: 10px 0;
	
}

.content_ventas .social .count_ventas{
	opacity: 0.8;
	
}

.content_ventas .social .count_ventas a{
	color:#fff;
}

.tit_pedido{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 17pt;
}


/*////// TESTIMONIOS ///////*/

.seccionTestimonio{
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f5f5f5;
	position: relative;
	padding: 15px;
}

.tarjetaTestimonio{
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	
	height: auto;
	background-color: #f5f5f5;
}

.tarjetaTestimonio .cajaTarjeta{
	position: relative;
	padding:  80px 40px 40px;
	transition: 0.5s;
	text-align: center;
	background: #fff;
	width: 500px;
	height: auto;
	border-radius: 15px;
	margin:90px 40px 70px; 
	box-shadow: 9px 4px 15px 2px rgba(0,0,0,0.3);
}

.tarjetaTestimonio .cajaTarjeta:hover{
/*	background: #e96bb0; */
	background-color:  #6a505e;
}

.tarjetaTestimonio .cajaTarjeta p{
	margin: 0;
	padding: 0;
	transition: 0.5s;
	font-size: 11pt;
}

.tarjetaTestimonio .cajaTarjeta h4{
	margin: 20px 0 0;
	padding: 0;
	transition: 0.5s;
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
	font-weight: 700;
	color: #ff0054;
}

.tarjetaTestimonio .cajaTarjeta h4 span{
	font-weight: 600;
	font-size: 14px;
	transition: 0.5s;
	color: #c5c5c5;
}

.tarjetaTestimonio .cajaTarjeta:hover p,
.tarjetaTestimonio .cajaTarjeta:hover h4,
.tarjetaTestimonio .cajaTarjeta:hover h4 span{
	
	color:#fff;
}

.tarjetaTestimonio .cajaTarjeta .imgTarjeta{
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #000;
/*	background-color:  #6a505e;*/
	background: #e96bb0;
	
}

.tarjetaTestimonio .cajaTarjeta .imgTarjeta p{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30pt;
	height: 120px;
	font-family: "dm-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.tarjetaTestimonio .cajaTarjeta:before{
	content: '';
	position: absolute;
	top: 36px;
	right: 40px;
	width: 40px;
	height: 40px;
	background: url("../images/comillas.png");
	background-size: cover;
	opacity: 0.05;
	pointer-events: none;
	transition: 0.5s;
}

.tarjetaTestimonio .cajaTarjeta:hover:before{
	transform: translateY(-60px);
	opacity: 1;
}

.tarjetaTestimonio .cajaTarjeta:after{
	content: '';
	position: absolute;
	bottom: 36px;
	left: 40px;
	width: 40px;
	height: 40px;
	background: url("../images/comillas.png");
	background-size: cover;
	opacity: 0.05;
	pointer-events: none;
	transition: 0.5s;
	transform: rotate(180deg)translateY(0px);
}

.tarjetaTestimonio .cajaTarjeta:hover:after{
	transform: rotate(180deg)translateY(-60px);
	opacity: 1;
}


/*/////////////////// BLOG ///////////////////*/


.contenedor_blog{
	width: 100%;
	padding-bottom: 40px;
	display: flex;
	justify-content: center;
	background-color: #f5f5f5;
	position: relative;
	
}

.container{
/*    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%); */
    width:700px;
    height:700px;
    padding:50px;
    background-color: #f5f5f5;
    box-shadow: 0 30px 50px #bdbdbd;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow-x: hidden;
	border: 1px solid #000;
	
}

.contenedor_blog .container h2{
	width: 100%;
	height: 70px;
	text-align: center;
}

#slide{
    width:max-content;
    margin-top:50px;
	border: 1px solid #000;
	display: flex;
    
	justify-content: center;
}

.item{
    width:400px;
    height:280px;
    background-position: 50% 50%;
    display: inline-block; 
    transition: 1s;
    background-size: 100%;
    position: absolute;
    z-index: 1; 
}

.item:nth-child(1){
    transform: translate(-150%);
    background-position: 0% 50%;
    opacity: 0;
}

.item:nth-child(2){
    transform: translate(-40%);
    background-position: 20% 50%;
}

.item:nth-child(3){
    transform: translate(70%);
    background-position: 50% 50%;
}

.item:nth-child(4){
    transform: translate(180%);
    background-position: 80% 50%;
}

.item:nth-child(n+5){
    transform: translate(290%);
    background-position: 100% 50%;
    opacity: 0;
}

.item .content{
    position: absolute;
    top:100%;
    background-color: #fff;
    width:100%;
    padding:0 10%;
    font-family: system-ui;
    text-align: center;
    box-shadow: 0 30px 50px #b9b9b9;
    transition: 0.5s;
    overflow: hidden;
    max-height: 0;
	
}

.item .content .name{
    font-family: 'Anton', sans-serif;
}

.item:hover .content{
    max-height: 100px;
}

.item:hover{
    background-size: 150%;
}

.buttons{
 /*   position: absolute;
    bottom:30px;
    left:0; */
    text-align: center;
    width:100%;
	
	margin-top: 400px; 
	
}

.buttons button{
    width:50px;
    height:50px;
    border-radius: 50%;
    border:1px solid #555;
    transition: 0.5s;
	background-color: #bac383;
}

.buttons button:hover{
    background-color: #939A6A;




}


/*////// 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;
	font-family: "dm-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
	color: #FFFFFF;
}

.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(.9);
}

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



/*////// ACORDION ///////*/



.contenedor_acordion{
	width: 100%;
	height: 750px;
	display: flex;
	justify-content: center;
	background-color: #f5f5f5;
	position: relative;
	padding-top:50px;
	
	}

.container_acordion {
    width: 60%;
   
    
}

.close {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

section a {
    width: 100%;
    display: block;
   
    padding: 1rem;
    text-decoration: none;
    color: #000;
    border-bottom: thin solid #A2A29D;
}

section a:hover {
    font-weight: 600;
}

 .container_acordion section  p {
    overflow: hidden;
    max-height: 0;
    transition: all .2s ease-in;
}

section:target p {
    overflow: none;
    max-height: none;
    padding: 1rem;
	color: #555454;
}


/* DISEÑO PARA TABLET */

@media (min-width:481px) and (max-width:768px){
	
/*////// SLIDER ///////*/
	
h1{
		font-size: 20pt;
	}
	
.cabecera{
		width: 100%;
	}	

.slider_pro{
	width: 768px;
	height: 1024px;
	background-image: url("../images/fondo_slider_tb.jpg");
	background-position: center;
	
}	
	
.contenedor_txt img{
		width: 207px;
	}	
	
/*////// 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;
}	
	
	
/*////// ACORDION ///////*/	
	
.container_acordion {
    width: 80%;
}	
	
}

/* DISEÑO PARA MOVIL */

@media (min-width:0px) and (max-width:480px){
	
/*////// SLIDER ///////*/
	
h1{
		font-size: 18pt;
	}	
	
.cabecera{
		width: 100%;
	}	
	
.slider_pro{
	width: 100%;
	height: 800px;
	background-image: url("../images/fondo_slider_mo.jpg");
	background-position: center;
	
}	
	
.contenedor_txt{
		margin-left: 100px;
	}	
	
.contenedor_txt img{
		width: 137px;
	}	
	
/*////// 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;
	}	
	
	
	
.container{
	width: 90%;
	padding: 0px;
	border: none;
	}	
	
#slide{
		border: none;
	}	
	
.item{
		position: relative;
	}	
	
.item:nth-child(1){
    transform: translate(-110%);
    background-position: 0% 50%;
    opacity: 0;
}

.item:nth-child(2){
    transform: translate(-100%);
    background-position: 20% 50%;
}

.item:nth-child(3){
    transform: translate(85%);
    background-position: 50% 50%;
}

.item:nth-child(4){
    transform: translate(105%);
    background-position: 80% 50%;
}

.item:nth-child(n+5){
    transform: translate(200%);
    background-position: 100% 50%;
    opacity: 0;
}
	
.item .content .type{
		padding: 10px;
		border: 1px solid #000;
	}	
	
.buttons{
		margin-top: 100px;
	}	
	
		
/*////// ACORDION ///////*/	
	
.contenedor_acordion{
		height: auto;
	}	
	
.container_acordion {
    width: 80%;
	height: auto;
}	
	
	
	
	
}

