@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}


/********************/
/* ESTILOS DEL BODY */
/********************/


.cl_body
{
	display: flex;
	flex-direction: column;
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: top;
	overscroll-behavior-y: none;
    touch-action: pan-y;
}


/********************/
/* ESTILOS DEL MAIN */
/********************/


.cl_main 
{
	display: block;
	visibility: hidden;
	position: absolute;
	width: 100%;
	opacity: 0;
	transition-property: opacity;
	transition-duration: 1000ms;
	transition-timing-function: ease-in-out;
}


/************************/
/* ESTILOS DEL PRODUCTO */
/************************/


@media (hover: none) and (pointer: coarse)
{
	.cl_cont_pro
	{
		display: flex;
		flex-direction: column;
		position: relative;
		top: 0;
		width: 100%;
		height: 698px;
		margin-top: 105px;
	}
}

@media (hover: hover) and (pointer: fine)
{
	.cl_cont_pro
	{
		display: flex;
		flex-direction: column;
		position: relative;
		top: 0;
		width: 100%;
		height: 698px;
		margin-top: 105px;
	}
	.cl_cont_pro:hover .cl_img_fle_des_izq
	{
		opacity: 1;
		left: 50%;
		transform: translateX(-50%);
	}
	.cl_cont_pro:hover .cl_img_fle_des_der
	{
		opacity: 1;
		right: 50%;
		transform: translateX(50%);
	}
}

.cl_cont_fle_des_pro
{
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 648px;
}

.cl_cont_img_fle_des_izq
{
	display: block;
	position: relative;
	width: 7%;
	min-width: 42px;
	height: auto;
 	align-content: center;
	text-align: left;
}

@media (hover: none) and (pointer: coarse)
{
	.cl_img_fle_des_izq
	{
		display: inline-block;
		vertical-align: middle;
		position: absolute;
		width: 16px;
		height: auto;
		left: 50%;
		transform: translateX(-50%);
		user-select: none;
	}
}

@media (hover: hover) and (pointer: fine)
{
	.cl_img_fle_des_izq
	{
		display: inline-block;
		vertical-align: middle;
		position: absolute;
		width: 16px;
		height: auto;
		opacity: 0;
		left: 0;
		user-select: none;
		transition-property: opacity, left, transform;
		transition-duration: 250ms;
		transition-timing-function: ease-in-out;
	}
	.cl_img_fle_des_izq:hover
	{
		cursor: pointer;
	}
}

.cl_cont_img_fle_des_der
{
	display: block;
	position: relative;
	width: 7%;
	min-width: 42px;
	height: auto;
 	align-content: center;
	text-align: right;
}

@media (hover: none) and (pointer: coarse)
{
	.cl_img_fle_des_der
	{
		display: inline-block;
		vertical-align: middle;
		position: absolute;
		width: 16px;
		height: auto;
		right: 50%;
		transform: translateX(50%);
		user-select: none;
	}
}

@media (hover: hover) and (pointer: fine)
{
	.cl_img_fle_des_der
	{
		display: inline-block;
		vertical-align: middle;
		position: absolute;
		width: 16px;
		height: auto;
		opacity: 0;
		right: 0;
		user-select: none;
		transition-property: opacity, right, transform;
		transition-duration: 250ms;
		transition-timing-function: ease-in-out;
	}
	.cl_img_fle_des_der:hover
	{
		cursor: pointer;
	}
}

.cl_cont_desc_pro
{
	display: flex;
	flex-direction: row;
	width: 86%;
 	height: auto;
}

.cl_cont_img_pro
{
	display: flex;
	flex-direction: row;
	width: 50%;
 	height: auto;
	align-items: center;
	justify-content: end;
	overflow: hidden;
}

.cl_img_pro
{
	display: block;
	visibility: hidden;
    height: 460px;
	width: auto;
	padding-right: 15px;
	opacity: 0;
	pointer-events: none;
	user-select: none;
	transition-property: opacity, visibility;
	transition-duration: 500ms;
	transition-timing-function: ease-in-out;
}

.cl_cont_texto_pro
{
	display: flex;
	flex-direction: column;
	width: 50%;
 	height: auto;
	justify-content: center;
}

.cl_texto_pro
{
	display: block;
	vertical-align: middle;
	font-family: "Helvetica";
	font-size: 46px;
 	font-weight: 700;
	color: rgb(89, 131, 167, 1);
	text-decoration: none;
 	letter-spacing: 1.5px;
	text-shadow: -1px 1px 0 rgb(53, 56, 73, 1), 1px 1px 0 rgb(53, 56, 73, 1), 1px -1px 0 rgb(53, 56, 73, 1), -1px -1px 0 rgb(53, 56, 73, 1);
	white-space: nowrap;
	padding-left: 15px;
	padding-bottom: 20px;
	user-select: none;
	transition-property: color, text-shadow;
	transition-duration: 500ms;
	transition-timing-function: ease-in-out;
}

.cl_texto_desc_pro
{
	display: block;
	vertical-align: middle;
	font-family: "Helvetica";
	font-size: 28px;
 	font-weight: 600;
	color: rgb(255, 255, 255, 1);
	text-decoration: none;
 	letter-spacing: 1px;
	white-space: nowrap;
	padding-left: 15px;
	padding-bottom: 50px;
	user-select: none;
	transition-property: color;
	transition-duration: 500ms;
	transition-timing-function: ease-in-out;
}

.cl_boton_ver_mas
{
	margin-left: 15px;
	text-decoration: none;
	width: fit-content;
}

@media (hover: none) and (pointer: coarse)
{
	.cl_cont_texto_ver_mas
	{
		display: block;
		visibility: hidden;
		width: fit-content;
		border-color: rgb(255, 255, 255, 1);
		border-width: 2px;
		border-style: solid;
		border-radius: 30px;
		opacity: 0;
		transition-property: opacity, visibility;
		transition-duration: 500ms;
		transition-timing-function: ease-in-out;
	}
}

@media (hover: hover) and (pointer: fine)
{
	.cl_cont_texto_ver_mas
	{
		display: block;
		visibility: hidden;
		width: fit-content;
		border-color: rgb(255, 255, 255, 1);
		border-width: 2px;
		border-style: solid;
		border-radius: 30px;
		opacity: 0;
		transition-property: opacity, visibility;
		transition-duration: 500ms;
		transition-timing-function: ease-in-out;
	}
	.cl_cont_texto_ver_mas:hover
	{
		cursor: pointer;
		border-style: none;
		padding-left: 2px;
		padding-right: 2px;
		padding-top: 2px;
		padding-bottom: 2px;
		background: linear-gradient(rgb(52, 119, 136, 1), rgb(53, 91, 117, 1));
		box-shadow: 3px 3px 8px rgba(20, 20, 20, 0.8);
	}
}

.cl_texto_ver_mas
{
	vertical-align: middle;
	font-family: "Helvetica";
	font-size: 24px;
 	font-weight: 500;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 12px;
	padding-bottom: 12px;	
	color: rgb(255, 255, 255, 1);
	text-decoration: none;
 	letter-spacing: 1px;
	white-space: nowrap;
	user-select: none;
}

.cl_cont_bot_pro
{
	display: flex;
	flex-direction: row;
	width: 100%;
 	height: 50px;
	justify-content: center;
}

.cl_cont_bot_ac_in_pro
{
	display: block;
	align-self: center;
 	padding-left: 7px;	
 	padding-right: 7px;
}

.cl_img_bot_ac_in_pro
{
	display: block;
	vertical-align: middle; 
	width: 7px;
    height: auto;
    margin: 0 auto;
	user-select: none;
}

.cl_img_bot_ac_in_pro:hover
{
	cursor: pointer;
}


/******************************************************/
/* ESTILOS DE LOS ICONOS DE CARACTERÍSTICAS GENERALES */
/******************************************************/


.cl_cont_gru_ico_car_gen_not_com
{
	display: block;
	position: absolute;
	width: 100%;
	padding-bottom: 74px;
}

.cl_cont_gru_ico_car_gen_tab_cel
{
	display: none;
	position: absolute;
	width: 100%;
	padding-bottom: 74px;
}

.cl_cont_gru_ico_car_gen
{
	display: flex;
	flex-direction: row;
	width: 100%;
	padding-top: 74px;
}

.cl_cont_ico_car_gen
{
	display: flex;
	flex-direction: column;
	width: 33.33%;
	align-self: start;
	align-items: center;
}

.cl_img_ico_car_gen
{
 	height: 100px;	
	width: auto;
	margin-bottom: 15px;
	pointer-events: none;
	user-select: none;
}

.cl_cont_texto_ico_car_gen
{
	display: block;
	width: 85%;
}

.cl_texto_ico_car_gen
{
	vertical-align: middle;
	font-family: "Helvetica";
	font-size: 26px;
 	font-weight: 100;
	color: rgb(26, 26, 26, 1);
	text-decoration: none;
	text-align: center;
 	letter-spacing: 1px;
	text-wrap: balance;
	text-justify: inter-character;
	user-select: none;
}

.cl_esp_gru_ico_car_gen
{
	height: 74px;	
}


/*********************/
/* PUNTOS DE RUPTURA */
/*********************/


/* Dispositivos grandes como notebooks o computadoras (más de 960 px) */
@media only screen and (min-width: 961px)
{
	
}

/* Dispositivos medianos como tablets (960 px o menos) */
@media only screen and (max-width: 960px)
{
	.cl_cont_pro
	{
		height: 673px;	
	}
	.cl_cont_fle_des_pro
	{
		height: 623px;	
	}
	.cl_img_pro
	{
		height: 400px;
	}
	.cl_cont_bot_ac_in_pro
	{
		padding-left: 15px;	
		padding-right: 15px;
	}
	.cl_cont_gru_ico_car_gen_not_com
	{
		display: none;
	}
	.cl_cont_gru_ico_car_gen_tab_cel
	{
		display: block;
	}
	.cl_cont_ico_car_gen
	{
		width: 50%;
	}
}

/* Dispositivos chicos como teléfonos (768 px o menos) */
@media only screen and (max-width: 768px)
{	
	.cl_cont_pro
	{
		height: 653px;	
	}
	.cl_cont_fle_des_pro
	{
		height: 603px;	
	}
	.cl_cont_desc_pro
	{
		flex-direction: column;
		width: 100%;
	}
	.cl_cont_img_pro
	{
		width: 100%;
		justify-content: center;
	}
	.cl_img_pro
	{
		height: 350px;
		padding-right: 0;
	}
	.cl_cont_texto_pro
	{
		width: 100%;
		align-items: center;
	}
	.cl_texto_pro
	{
		font-size: 36px;
		padding-bottom: 12px;
		padding-left: 0;
		text-align: center;
	}
	.cl_texto_desc_pro
	{
		font-size: 22px;
		padding-bottom: 20px;
		padding-left: 0;
		text-align: center;
	}
	.cl_boton_ver_mas
	{
		margin-left: 0;
	}
	.cl_cont_texto_ver_mas
	{
		border-radius: 26px;
	}
	.cl_texto_ver_mas
	{
		font-size: 22px;
		padding-left: 13px;
		padding-right: 13px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.cl_cont_gru_ico_car_gen_tab_cel
	{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.cl_cont_gru_ico_car_gen
	{
		flex-direction: column;
		padding-top: 0;
	}
	.cl_cont_ico_car_gen
	{
		width: 100%;
		padding-top: 20px;	
		padding-bottom: 20px;
	}
	.cl_texto_ico_car_gen
	{
		font-size: 19px;
		font-weight: 400;
		letter-spacing: 0;
	}
	.cl_esp_gru_ico_car_gen
	{
		height: 0;	
	}
}

/* Dispositivos chicos como teléfonos chicos (menos de 500 px) */
@media only screen and (max-width: 499px)
{
	.cl_cont_img_fle_des_izq
	{
		display: none;	
	}
	.cl_cont_img_fle_des_der
	{
		display: none;	
	}	
}