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




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

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

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

h1{
	padding-bottom: 20px;
}

h2{
	color: #272E66;
	font-size: 15pt;
	padding-bottom: 20px;
	width: 80%;
	margin: auto;
	
}

a{
	
    font-weight: 700;
    font-style: normal;
	font-size: 13pt;
	color: #272E66;
	text-decoration: none;
}



.submenu::-webkit-scrollbar {
	width: 10px;
	background: #A3A3A3;
	
}

.submenu::-webkit-scrollbar-thumb{
	border: 1px solid #272E66;
	background: #272E66;
	border-radius: 10px;
}

.enlace_btn{
	
	display: none;
		
}

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


header {
	
	width: 100%;
	min-height:  65px;
	display: flex;
	justify-content: space-between;
	align-items: center;
  /*  background: #EDF9EE; 
	background:#403931; */
	border-bottom: 1px solid #000;
	position: relative;
	z-index: 100;
}

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

nav{
	margin-right: 90px;
	
}

header ul {
	position: relative;
	
}

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

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

header ul li a:hover {
	
	background: #544A41;
	color: #fff;
	transition: 0.2s;
	border-radius: 10px;
	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: 335px;
	
	
}

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%;
	background:#E5E1DF;
}

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

header ul li ul li a:hover {
	
	background: #544A41;
}


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


.slidebar{
	position: fixed;
	height: 100%;
	width: 260px;
	background: #E4E4E4;
	margin-left: -300px;
	transition: all .6s;
	z-index: 9;
}

.slidebar.mostrar{
	margin-left: 0px;
	z-index: 9;
	border-right:  solid 1px #035494;
}

.cont_menu{
	position: relative;
	width: 100%;
	height: 85%;
	margin-top: 40px;
	overflow-y: scroll;
}

.cont_menu::-webkit-scrollbar {
	display: none;
}

.items_menu{
	width: 100%;
	height: 100%;
	list-style: none;
	transition: all 0.4s ease;
}

.submenu-active .items_menu{
	transform: translateX( -56%);
}

.item a, .submenu_item {
	padding: 20px;
	border-bottom: dashed 1px #494949;
	display: inline-block;
	width: 100%;
/*	border-radius: 12px; */
	
}

.item a:hover, .submenu_item:hover, .submenu .menu-title:hover {
	background: rgba(3,10,62,0.2);
	color:#fff;
}

.submenu_item{
	
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #272E66;
	cursor: pointer;
	font-family: "condor", sans-serif;
    font-weight: 500;
    font-style: normal;
	font-size: 13pt;
	
}

.submenu{
	position: absolute;
	width: 100%;
	height: 100%; 
	top: 0px;
	background: #E4E4E4;
	right: calc(-100% - 26px);
/*	height: calc(100% + 100vh); */
	display: none;
	overflow-y: scroll;
	
}

.show-submenu ~ .submenu{
	display: block;
}

.menu-title{
	
	font-size: 13pt;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #272E66;
	cursor: pointer;
	font-family: "condor", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.submenu .menu-title{
	
	cursor: pointer;
}

.producto_categorias{
	width: 100%;
	color: #272E66;
	text-align: center;
	padding: 15px;
}


/*///////////////////  ENLACES ///////////////////*/

.enlace {
	width: 80%;
	height: 50px;
	
    font-weight: 700;
    font-style: normal;
	font-size: 13pt;
	color: #272E66;
	display: flex;
	align-items: center;
	margin:10px auto;
}


/*/////////////////// CUADRO DE PRODUCTO ///////////////////*/


.logo{
    
    width:100px;
    height: 100px; 
	display: inline-block;
    
}

.header{
    position: absolute;
    top:50px ;
    left:50px ;
}

.bg-rotate{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    border-radius: 30% 70% 25% 75% / 49% 35% 65% 51%;
    background-color: #C8DEE9;
    transition: 1s;
    transform: rotate(0deg) translate(-50%, -50%);
    z-index: -1;
    opacity: 0.6;
    filter: blur(69px);
    
}

.container{
    background-color: #f5f5f5;
    width:798px;
    height: 500px;
    position: relative;
 /* top:55%;
    left:50%;
    transform: translate(-50%,-50%); */
	margin:0 auto 50px;
    
}

.list{
    position: absolute;
    width:65%;
    height: 100%;
    left:0%;
    top:15%;
    text-align: center;
	
}

.list .item{
    display: none;
}

 .item p{
	padding-bottom: 20px;
}

.list .item_active{
    display: block;
}

.list .img{
    width: 90%;
    position: absolute;
    top:30%;
    left:50%; transform: translate(-50%,-50%);
}

.list .img img{
    width: 80%;
    transform: rotate(-25deg);
    opacity: 0;
    animation: img_show 1.5s ease-out 1.5s 1 forwards;

}

@keyframes img_show{
    0%{
        transform: rotate(0deg) translate(0, 140px);
        opacity: 0;filter: blur(33px);
    }
    100%{ opacity: 1;
        filter: blur(0px);
        transform: rotate(-25deg)  translate(0, 0px);
    }
}

@keyframes img_hide{
    0%{
        opacity: 1;
        filter: blur(0px);
        transform: rotate(-25deg)  translate(0, 0px);
    }
    100%{
         transform: rotate(0deg) translate(0, 140px);
        opacity: 0;filter: blur(33px);
    }
}

@keyframes shadow_in{
    0%{
     width:0;
     left:50%;
    }
    100%{      width:100%;
        left:0%;

    }
}

@keyframes shadow_out{
    0%{ left:0%;
        width:100%;
    }
    100%{ left:50%;
        width:0%;
    }
}

.list .img::before{
    position: absolute;
    bottom:0%;
    left:0%;
    width:0%;
    height: 50px;
    background-color: #9c9ca1;
    content: '';
    border-radius: 50%;
    filter: blur(25px);
    animation: shadow_in 1.8s 1s ease-out forwards;
}

.list .item_none{
    display: block;
}

.list .item_none img{
    animation: img_hide 1.5s ease-out 1 forwards;
}

.list .item_none .img::before{
    animation: shadow_out 1.5s ease-out forwards;
}

.list-button{
    margin-top:50px;
    text-align: left;
}

.content{
   position: absolute;
   right:30px ;
   width:300px;
   height: 100%;
   top:20px;
   overflow: hidden;
  
}

.content .item{
    width:100%;
   position: absolute;
   overflow: hidden;
   transition: 1s;
}

.content button{
    display: inline-block;
    border:none;
    padding:20px 50px;
    overflow: hidden;
}

.content button:nth-child(1){
    background-color: #d5dee3;
}

.content button:nth-child(1){
    background-color: #dbe3d8;
}

.next{
    position: absolute;
    bottom:60px;
    right:60px;
}

.next button{
    display: inline-block;
    border:none;
    padding:10px;
    overflow: hidden;
}

.contendor_ficha{
	
	width: 80%;
	margin: auto;
	display: flex;
	justify-content: center;
}

.item .btn_compra{
	font-family: "dm-sans", sans-serif;
	border: 2px solid #A3A3A3;
	width: 100px;
	padding: 10px;
	margin-bottom: 15px;
}



/*/////////////////// CARACTERISTICAS DEL PRODUCTO ///////////////////*/


.caracteristicas{
	width: 100%;
	height: auto;
	padding: 20px;
	background-color: #f5f5f5;
	margin-top: 50px;
	
}

.contenedor_caracteristicas{
	width: 80%;
	height: auto;
	padding: 15px;
	margin: auto;
	
}

.contenedor_caracteristicas ul li{
	padding: 10px;
	border-bottom: 1px solid #3F3F3F;
	
}

.contenedor_caracteristicas ul li:nth-child(odd){
	background-color: #E5E1DF;
}


/*/////////////////// FICHA TECNICA ///////////////////*/


.ficha_tecnica{
	width: 300px;
	height: 150px;
	border: solid 1px #9B9898;
	background: rgb(245, 245, 245);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	transition: box-shadow 0.2s; 
	
}

.ficha_tecnica:hover{
	box-shadow: 0 10px 10px #BFBDBD;
}

.ficha_tecnica .icono_pdf{
	padding: 15px;
}

.datos_ficha{
	height: 90px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.datos_ficha a{
	width: 100px;
	background:  #272E66;
	padding: 5px;
	color: #fff;
	text-align: center;
	font-size: 11pt;
}


/*/////////////////// TABLAS ///////////////////*/

.tabla_contenedor{
	width: 100%;
	margin: 30px auto;
	padding: 20px;
}

.titulo_tabla{
	text-align: left;
	color:white;
}

.tabla_bicolor{
	border: solid 1px #000;
	width: 90%;
	margin: auto;
}

.tabla_bicolor thead tr{
	background-color: #272E66;
	color: #fff;
	height: 40px;
	
}

.tabla_bicolor th, .tabla_bicolor td{
	border-right: solid 1px #000;
	border-bottom: solid 1px #000;
	height: 40px;
	text-align: center;
	
}

.tabla_bicolor th:last-child, .tabla_bicolor td:last-child{
	border-right: 0px;
	
}

.tabla_bicolor tbody tr{
	background: rgb(245, 245, 245);
	color:#000;
}

.tabla_bicolor tbody tr:nth-child(2n){
	background: #BDBDBD;
}

 td {
	color:#000;
}


/*////// PIE DE PAGINA ///////*/

footer{
	
width: 100%;
	height: auto;
	border: 1px solid #000000;
	background: #E4E4E4;
	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 #000000;
	border-left: 1px dashed #000000;
	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;
	font-family: "condor", sans-serif;
    font-weight: 800;
    font-style: normal;
	text-align: center;
	color:  #272E66;
	
}

.cuadro_info ul li {
	font-size: 11pt;
	font-family: "condor", sans-serif;
    font-weight: 500;
    font-style: normal;
	text-align: center;
	padding: 3px;
	 color:  #272E66;
}

.cuadro_info ul li a {
	font-size: 11pt;
	font-family: "condor", sans-serif;
    font-weight: 500;
    font-style: normal;
	text-align: center;
	color:  #272E66;
}

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

.cuadro_info p{
	font-size: 11pt;
	font-family: "condor", sans-serif;
    font-weight: 800;
    font-style: normal;
	text-align: center;
	color:  #272E66;
}

.marcas_contenedor_1{
	background: url("../images/logotipo_iapsa.png");
	width: 100%;
	
	height: 40px;
	background-repeat: no-repeat;
	background-position: center;
}

.marcas_contenedor_2{
	background: url("../images/logo_comainsa_footer.png");
	width: 100%;
	
	height: 40px;
	background-repeat: no-repeat;
	background-position: center;
}

.marcas_contenedor_1 a , .marcas_contenedor_2 a{
	display: inline-block;
	width: 100%;
	height: 40px;
	
	
}

.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;
}

.btnWhatsapp{
	
	right: 10px;
	position: fixed;
	bottom: 15px;
	z-index: 4;
}


/* DISEÑO PARA TABLET */

@media (min-width:480px) 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  a:hover{
		background: none;
		
	}
	
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 {
		background: none;
		
	}
	
header nav ul li ul li a{
		margin-left: 10px;
		
	}
	
header nav ul li ul li a:hover{
		background: none;
		
	}
	
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%;
	}
	
	
	
	
	
.contenedor_info {
    width: 250px;
   
}
	
.cuadro_info{
	border-right: none;
	border-left: none;
	border-bottom: 1px dashed #000000;
	width: 250px;
	height:auto;
	padding: 10px;
		
  }	
	
.container{
    width:80%;
    height:700px;
   }
	
.header{
    position: absolute;
    top:5px;
    left:5px;
}
	
.content{
    top:50%;
    left:0;
    width:100%;
	height: 500px;
	background-color: #fff;
}
	
.content .item{
    background-color: #fff;
 /* border-radius: 20px; */
    padding:5%;
 /*   width:90%; */
}
	
.list{
  top: 15%;
  height: 50%;
  left: 20px;
  width: 85%;
}
	
.list .img{
width: 60%;	
top: 20%;
left: 40%;
	
}	
	
.list img{
    width:140%!important;
}
		
.list-button{
    text-align: center;
}
	
.next{
    top:40%;
    right:30px;
    opacity: 0.5;
}
	
.next button{
    padding:5px;
}
	
.dot{
    top:20%;
}
	
.bg-rotate{
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    opacity: 1;
}
	
.contendor_ficha{
	position: relative;
	width: 80%;
	margin: auto;
	display: flex;
	justify-content: center;
	top:250px;
}	
	

/*/////////////////// CARACTERISTICAS DEL PRODUCTO ///////////////////*/
	
	
.caracteristicas{
	
	width: 80%;
	height: auto;
	padding: 15px;
	margin: 280px auto 50px;
	
	
}
	
.caracteristicas h2{
		text-align: center;
	}	
	
	
/*/////////////////// TABLAS DEL PRODUCTO ///////////////////*/
	
	
.tabla_contenedor{
	max-width:  100%;
	margin-top: 30px;
	
}
	
.tabla_bicolor{
		border: none;
	
	}
	
.tabla_bicolor thead {
		display: none;
	}
	
.tabla_bicolor tr{
		display: block;
		border: none;
	}
	
.tabla_bicolor td{
		display: block;
	text-align: right;
		border: none;
		border-bottom: dashed 1px  #9B9898;
	padding: 8px;
	}
	
.tabla_bicolor td::before{
		content: attr(data-label);
		float: left;
	}
	
.titulo_tabla{
	width: 90%;
	margin-left: 10px;
		
}	
	
		
}

/* DISEÑO PARA MOVIL */


@media (min-width:0px) and (max-width:481px){
	
/*////// 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  a:hover{
		background: none;
		
	}
	
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 {
		background: none;
		
	}
	
header nav ul li ul li a{
		margin-left: 10px;
		
	}
	
header nav ul li ul li a:hover{
		background: none;
		
	}
	
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%;
	}	
	
	
/*/////////////////// CARACTERISTICAS DEL PRODUCTO ///////////////////*/	
	
	
.contenedor_caracteristicas{
		width: 100%;
	}
	
.enlace{
		display: none;
	}
	
.enlace_btn{
	display: block;
	margin: 20px  20px 20px 30px;
	padding: 10px;
		
}	
	
.container{
    width:275px;
    height:500px;
   }	
	
.container{
    width:300px;
    height:500px;
   }
	
.header{
    position: absolute;
    top:5px;
    left:5px;
}
	
.content{
    top:50%;
    left:0;
    width:100%;
	height: 500px;
	background-color: #fff;
}
	
.content .item{
    background-color: #fff;
 /* border-radius: 20px; */
    padding:5%;
 /*   width:90%; */
}
	
.list{
  top: 15%;
  height: 50%;
  left: 20px;
  width: 85%;
}
	
.list .img{
	
top: 20%;
left: 90px;
	
}	
	
.list img{
    width:140%!important;
}
	
.list-button{
    text-align: center;
}
	
.next{
    top:40%;
    right:30px;
    opacity: 0.5;
}
	
.next button{
    padding:5px;
}
	
.dot{
    top:20%;
}
	
.bg-rotate{
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    opacity: 1;
}
	
.contendor_ficha{
	position: relative;
	width: 80%;
	margin: auto;
	display: flex;
	justify-content: center;
	top:250px;
}	
		
.caracteristicas{
	
	width: 80%;
	height: auto;
	padding: 15px;
	margin: 280px auto 50px;
	
	
}
	
.caracteristicas h2{
		text-align: center;
	}	
		
	
	
}

