*{
	margin: 0;
	padding: 0;
}
:root{
/*	--width-anchoSeccion: 1180px;*/
	--altoHeaderDK: 60px;
	--heigHeaderMB: 50px;
}
body{
	overflow-x: hidden;
	font-family: Arial;
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;	
}
body {
	-webkit-tap-highlight-color: transparent;
	overflow-x: hidden;
	box-sizing: border-box;	
}
img{
	user-select: none;
}
body.DK {
	background: #F8F8F8;
	 /*cambiar en .DK .wrapIconChat C:\xampp\htdocs\FORMATOS\formato\formato.css*/
	padding-top: calc(var(--altoHeaderDK) + 30px);
}
body.MB { /*cambiar en .MB .wrapIconChat C:\xampp\htdocs\FORMATOS\formato\formato.css*/
	background: #FAFAFA;	
	padding-top: calc(var(--heigHeaderMB) + 30px);
}

@font-face {
    font-family: 'fontRegular';
    /* Usa la ruta absoluta si es posible, o asegúrate de que coincida con el preload */
    src: url('/tipografias/regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: block; /* Evita el salto de fuente */
}
.fontRegular,
.fontRegular button,
.fontRegular input {
	font-family: fontRegular
}

@font-face {
    font-family: 'fontBold';
    src: url('/tipografias/bold.woff2') format('woff2');
    font-weight: 700;
    font-display: block; 
}
.fontBold,
.fontBold button,
.fontBold input{
	font-family: fontBold
}
/*-------------- Maquetación general sobre el display:flex --------------*/
.df{
	display: flex;
	justify-content: center;
	align-items: center;
}
/*- Elemento que cubre antes de que carguen las 
tipografias junto con su barra de carga  ---------*/
.cover {
	position: fixed;
	left: 0;
	z-index: 100;
	top: 0;
	height: 100vh;
	width: 100vw;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center
}
/*- Barra de carga para mientras
se aplican las tipografías -*/
.loadPage {
	border: 5px solid rgba(0, 0, 0, .15);
	width: 55px;
	height: 55px;
	border-radius: 50%;
	border-left-color: #0691CF;
	animation: spin .35s linear infinite;
}
@keyframes spin {
	0% {transform: rotate(0deg)}
	100% {transform: rotate(360deg)}
}
/*============================================================================================================
 													HEADER
============================================================================================================*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;
	background: rgba(255,255,255,.87);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 50px;
	/*Maquetación similar al body*/
	font-family: arial;
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;	
}
.DK #header{
	height: var(--altoHeaderDK);
	/*box-shadow: 0 4px 10px 0 rgba(0,0,0,.02);*/
	border-bottom: 1px solid rgba(0,0,0,.04);
}
.MB #header{
	height: var(--heigHeaderMB);
	border-bottom: 1px solid rgba(0,0,0,.05);
}
/*==============================================
			MAQUETACIÓN DEL LOGO
===============================================*/
.logoHd{
	display: block;
	width: 228px;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.MB .logoHd{
	width: 45px;
	height: 40px;
}
.logoHd img{
	position: absolute;
	left: 0;
	top: 0;
	max-height: 100%;	
}
/*==============================================
		MAQUETACIÓN DEL MENÚ DEL HEADER
===============================================*/
.wrapServiciosHd{
	display: flex;
}
/*------- SERVICIOS VISIBLES EN EL HEADER -------*/
.wrapDrServiciosHd{
	display: flex;
	align-content: center;
	justify-content: center;
}
.wrapDrServiciosHd a:hover{
	color:#000;
}
.unServHd{
	box-sizing: border-box;
	max-width: 200px;
	font-size: 15px;
	text-align: center;
	text-decoration: none;
	text-orientation: mixed;
	align-items: center;
	padding: 0 15px 0 10px;
	position: relative;
	color: #5a263a;
	font-family: fontBold;
	max-width: 178px;

    display: flex;
    align-items: center; /* Centra verticalmente el contenido */
    overflow: hidden;
}

.contenedor_recorte {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    /* Ya no necesita el height aquí, lo hereda o se ajusta */
}
/*---- Borde del lado derecho de cada opción ----*/
.wrapDrServiciosHd .unServHd:not(:first-of-type):before{
	content: '';
	position: absolute;
	height: 17px;
	background: #5a263a;
	width: 1px;
	left: 0;
}
/*- Borde inferior que aparece al pasar el cursor -*/
.unServHd:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 10%;
	width: 80%;
	height: 2px;
	background: #000;
	transition: transform .2s;
	transform: scaleX(0);
}
.unServHd:hover:after {
  transform: scaleX(1);
}
/*------- BOTÓN "VER MÁS SERVICIOS" DEL HEADER" -------*/
.btnVerServiciosHd{
	cursor: pointer;
	line-height: 17px;
	width: 110px;
	font-size: 14px;
	font-weight: bold;
	background: none;
	border: 1px solid #5a263a;
	color: #5a263a;
	padding: 4px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.trianguloVerMas{
	display: inline-block;
	border: 5px solid transparent;
	border-top-color: #5a263a;
	margin-left: 5px;
	margin-top:5px;
	transition: transform .3s;
}
.rotarTriangulo .trianguloVerMas{
	transform: rotate(180deg) translate(-5px,8px);
}
/*-------------- LISTA FLOTANTE DE "MÁS SERVICIOS" (MENÚ FLOTANTE) --------------*/
.wrpListMasServicios{
	display: none;
	top: 72px;
	position: fixed;
	right: 40px;
	background: #fff;
	width: 300px;
	box-shadow: 
		0 0 1px rgba(0,0,0,.1),
		0 -20px 15px rgba(0,0,0,.02)
	;
	border-radius: 3px;
	z-index: 1;
}
.DK .wrpListMasServicios{
	top: 72px;	
}
.MB .wrpListMasServicios{
	top: 65px;		
	right: 30px;
}
.wrpListMasServicios:before{ /*Triángulo de borde*/
	content: '';
	border: 10px solid transparent;
	border-bottom-color: #fff;
	position: absolute;
	bottom: 100%;
	right: 30px;
}
/*Lista padre en la que directamente están los servicios*/
.prListMasServicios{
	max-height: 80vh;
	overflow-y: auto;
}
.listaTodosServicios a{
	display: block;
	text-decoration: none;
	padding: 10px 15px;
	color: #000;
	font-size: 14px;
	border-bottom: 1px solid #ECECEC;
}
.DK .listaTodosServicios a:hover{
	background: rgba(0,0,0,.1);}
.MB .listaTodosServicios a{
	border-bottom: 1px solid #F5F5F5;
}
.MB .listaTodosServicios a:active{
	background: rgb(0,0,0,.05);
}
.listaTodosServicios{
	list-style-type: none;
}
.tituloListMS{
	padding: 10px 13px;
	font-size: 18px;
}
/*--- Botón "Contactanos" en lista de "Más servicios" ---*/
.txtContactanosList{
	text-align: center;
	margin-top: 15px;
	font-size: 13px;
}
.wpContactanosListSvs,
.btnContactListSvs{
	display: flex;
	justify-content: center;
	align-items: center;
}
.btnContactListSvs{
	font-size: 13px;
	padding: 10px;
	border-radius: 50px;
	margin: 5px 0;
	text-decoration: none;
	color: #000;
	background: rgba(0,0,0,.08);
}
.btnContactListSvs svg{
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

/*======================================================================================================
						MAQUETACIÓN DE LAS SECCIONES PRINCIPALES DEL BODY
=======================================================================================================*/
.prSeccion{
	display: flex;
	justify-content: center;
	margin-bottom: 70px;
}
.drSeccion{
	background: #fff;
	width: 1180px;
	/*border-radius: 5px;*/
    padding: 20px 30px;
    box-sizing: border-box;
    /*box-shadow: 
    	0 0 10px 0px rgba(0, 0, 0,.02),
    	-1px -1px 1px rgba(0,0,0,.02)
    	,1px 1.5px 1px rgba(0,0,0,.04)
    ;*/
    /*box-shadow: 0 15px 15px rgba(0, 0, 0, 0.02);*/

    border-radius: 10px; 
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02);
}
.MB .drSeccion{
	box-shadow: 
			2px 2px 5px rgba(0,0,0,.03),
			-1px -1px 1px rgba(0,0,0,.05)
		;
}
.wpEncabSeccion{
	border-bottom: 1px solid rgba(0,0,0,.08);
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.MB .wpEncabSeccion{
	border-bottom: 1px solid rgba(0,0,0,.05);
}
.tituloSeccion{	
	font-family: fontBold;
	font-size: 30px;
}
.subtituloSeccion{
	font-family: fontRegular;	
	font-weight: normal;
	font-size: 16px;
	color: #848484;
	margin-top: 10px;
	line-height: 25px;
	width: 90%;
}
/*- CLASE GENERAL PARA EL COLOR DEL ICONO DE WHATSAP -*/
.svgWhatsApp{
	fill: #43d854;
}
/*======================================================================================================
						MENSAJE QUE SE LANZA CUANDO HAY UN ERROR EN LAS CONSULTAS A LA BD
=======================================================================================================*/
.wpErrorConsulta{
	text-align: center;
	padding: 30px 10px;
	background: #FFEEEE;
	border-radius: 10px;
	margin: 25px 0;	
}
.MB .wpErrorConsulta{
	background: #FEF7F7;
}
.iconErrorConsulta{
	margin-bottom: 10px;
	display: block;
}
.iconErrorConsulta svg{
	width: 100px;
	height: 100px;
}
.MB .iconErrorConsulta svg{
	width: 80px;
	height: 80px;
}
.textoError{
	font-size: 17px;	
}
.textoReporte{
	font-size: 14px;
	color: #7D7D7D;
}
.MB .textoReporte{
	font-size: 12px;
}
/*======================================================================================================
						MENSAJE QUE SE LANZA CUANDO HAY UN ERROR EN LAS CONSULTAS A LA BD
=======================================================================================================*/
.wpSinInfo{
	margin: 25px 0;
	text-align: center;
	padding: 30px 10px;
	background: #EEF4FF;
	border-radius: 10px;	
}
.MB .wpSinInfo{
	background: #F6F9FE;
}
.iconSinInfo{
	margin-bottom: 10px;
	display: block;
}
.iconSinInfo svg{
	width: 100px;
	height: 100px;
}
.MB .iconSinInfo svg{
	width: 80px;
	height: 80px;
}
.textoSinInfo{
	font-size: 17px;	
}
.subSinInfo{
	font-size: 14px;
	color: #7D7D7D;
}
.MB .subSinInfo{
	font-size: 12px;
}

@media (max-width: 1217px){
	.drSeccion{
		width:98%;
	}
}
@media (max-width: 1217px) and (min-width: 1000px) {
	#header{
		padding: 5px 10px;
	}
}




@media (max-width: 999px){
	.DK .logoHd{
		width: 55px;
	}
	#header{
		padding: 5px 25px;
	}
}
@media (max-width: 1400px){
	.servicioVis5Hd{
		display: none;
	}	
}
@media (max-width: 1260px){
	.servicioVis4Hd{
		display: none;
	}
}
@media (max-width: 850px){
	.servicioVis3Hd{
		display: none;
	}
}
@media (max-width: 640px){
	.servicioVis2Hd{
		display: none;
	}
	.unServHd{
		font-size: 13px;
	}
}











@media (max-width: 757px){
	/*-- MAQUETACIÓN GENERAL DEL CONTENT DIRECTO DE LAS SECCIONES --*/
	.drSeccion:not(.seccionTA){
		box-shadow: 3px 3px 8px 0 rgba(0, 0, 0,.08), 0 0 3px 0 rgba(0, 0, 0,.1);
	    border: 1px solid rgba(0,0,0,.07);
	}
}
@media (max-width: 640px){
	body.MB{
		padding-top: calc(var(--heigHeaderMB) + 20px);
	}
	/*-------------- SERVICIOS DEL BODY --------------*/
	.drSeccion:not(.seccionTA){ 
		border-radius: 0;
		width: 100%;
		box-shadow: 
			0 2px 0  rgba(0,0,0,.03),
			-1px -1px 1px rgba(0,0,0,.03)
		;
	}
	.prSeccion{
		margin-bottom:40px;
	}
}
@media (max-width: 607px){
	body.DK {
		padding-top: calc(var(--altoHeaderDK) + 20px);
	}

	header{
		padding: 5px 10px;
	}
	/*.unServHd{
		background: yellow;
		max-width: 120px;
	}*/
}
@media (max-width: 600px){	
	/*---- MAQUETACIÓN GENERAL DE LAS SECCIONES ----*/
	.tituloSeccion{/*aqui*/
		font-size: 22px;
	}
	.subtituloSeccion{
		font-size: 14px;
		line-height: 20px;
		width: 100%;
	}
}
/*@media (max-width: 545px){	
	.unServHd{
		background: green;
		font-size: 13px;
	}
}*/
@media (max-width: 500px){
	.drSeccion{
		padding: 20px 25px;
	} 
	/*- MAQUETACIÓN DEL TEXTO DEL ENCABEZADO DE LAS SECCIONES -*/
	.tituloSeccion{
		font-size: 20px;
		line-height: 30px;
	}
	.DK .subtituloSeccion,
	.MB .subtituloSeccion{
		font-size: 14px;
		line-height: 22px;
		width: 100%;
	}
}
@media (max-width: 414px){
	header{
		padding: 5px;
	}
	/*.unServHd{
		background: red;
		max-width: 80px;
	}*/
	.btnVerServiciosHd{
		font-size: 12px;
		font-family: fontBold;
		padding: 2px 4px;
	}
	.DK .wrpListMasServicios{
		top:60px;
	}
	.MB .wrpListMasServicios{		
		top:50px;
	}
	.DK .wrpListMasServicios,
	.MB .wrpListMasServicios{		
		right: 0;
		width: 100%;
		box-shadow: 0 -20px 15px rgba(0,0,0,.04) ;
		bottom: 0;
	}
	.wrpListMasServicios:before{
		display: none;
	}
	.prListMasServicios{
		max-height: 100%;
		overflow-y: auto;
		padding-bottom: 20px;
		box-sizing: border-box;
	}
}
@media (max-width: 360px){
	.unServHd{
		width: 140px;
	}
	
}