body, html {
    /*overflow:hidden;*/
		/* height: 100%; */
		max-width: 100%; 
  	overflow-x: hidden !important;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'OpenSans';
	font-size:12px;
	color: #000;
}
img{
	border: 0;
}
h1,h2,h3,h4,h5,h6,ol,p,ul{
	margin: 0;
	padding: 0;
}
.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
#debug{
	display: block;
	width: 100px;
	height: 150px;
	position: fixed;
	top: 0;
	left: 0;
	font-size: 14px;
	background: #CCC;
	color: #000;
	z-index: 99999;
}
.fondo00{
	background: #FFF;
}
.fondo01{
	background: #1A1A1A;
}
.fondo02{
	background: #000;
}
.fondo03{
	background: #F1F1F1;
}
.box01{
	margin: auto;
	width: 100%;
	max-width: 1320px;
}
.boxMenu{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
}
.logo{
	display: inline-block;
	width: 100%;
	max-width: 175px;
}
.logo-footer{
	display: inline-block;
	width: 100%;
	max-width: 125px;
}
.paddingTop{
  padding-top: 80px;
}

.btn-cotiza {
  background-color: #EA2321; /* rojo */
  color: #fff;
  font-size: 13px;
  padding: 10px 15px;
  border: none;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.btn-cotiza:hover {
  background-color: #E6E6E6; /* rojo */
  color: #000;
}
.btn-cotiza span {
  font-size: 15px !important;
}

.btn-chat {
  width: 195px;
  color: #fff;
  font-size: 13px;
  padding: 10px 15px;
  border: none;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
  display: inline-flex;
}
.btn-chat:hover {
  
  color: #000;
  text-decoration: none;
}
.btn-chat span {
  width: 24px !important;
  font-size: 15px !important;
}

.btn-chat-bg{
  background-color: #000;
}
.btn-chat-bg:hover{
  background-color: #E6E6E6;
}

.btn-chat-bg2{
  background-color: #EA2321;
}
.btn-chat-bg2:hover{
  background-color: #E6E6E6;
}



.btn-catalogo {
  background-color: var(--xp-red);
  color: #fff;
  font-size: 13px;
  padding: 10px 15px;
  border: none;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.btn-catalogo:hover {
  background-color: #E6E6E6;
  color: #000;
}
.btn-catalogo span {
  width: 0px !important;
  visibility: hidden;
}

/** menu **/
.menu a{
	font-family: 'OpenSans';
	font-size: clamp(16px, 8vw, 16px);
	color: #FFF;
	text-decoration: none;
}
.menu a:hover{
	color: #EB2321;
	text-decoration: none;
	border-bottom: 2px solid #EB2321;
}
.menuIconos a{
	font-family: 'OpenSans';
	font-size: 20px;
	color: #EB2321;
	text-decoration: none;
}
.menuIconos a:hover{
	font-family: 'OpenSans';
	font-size: 20px;
	color: #EB2321;
	text-decoration: none;
}
.mm a{
  font-family: 'OpenSans';
	font-size: clamp(20px, 8vw, 20px);
	color: #FFF;
	text-decoration: none;
}
.mm a:hover{
  font-family: 'OpenSans';
	font-size: clamp(20px, 8vw, 20px);
	color: #EB2321;
	text-decoration: none;
}
.uk-offcanvas-close {
  color: #EB2321 !important;
  line-height: 1;
  margin-top: 30px !important;
  margin-right: 15px !important;
}

/** cajas de imagenes con sombra roja */
.imgBox01{
	width: 100%;
	max-width: 450px;
	display: inline-block;
}

/** cards **/
/* variables para ajustar rápido */
:root{
  --xp-red: #e30613;
  --xp-black: #000;
  --xp-radius: 15px;   /* redondeo de la imagen y del fondo */
  --xp-off-x: 15px;    /* corrimiento a la izquierda (positivo) */
  --xp-off-y: 15px;    /* corrimiento hacia abajo */

	position: relative;
  display: inline-block;
}

/* wrapper: aquí dibujamos el rectángulo rojo "sombra" */
.xp-card{
  position: relative;
  display: inline-block;
}

/* fondo rojo del mismo tamaño de la imagen, corrido a izq/abajo */
.xp-card::before{
  content: "";
  position: absolute;
  top: var(--xp-off-y);
  left: calc(var(--xp-off-x) * -1);
  width: 100%;
  height: 100%;
  background: var(--xp-red);
  border-radius: var(--xp-radius);
  z-index: 0;              /* detrás de la imagen */
}

/* caja de la imagen: esta sí recorta con border-radius */
.xp-card__inner{
  position: relative;
  z-index: 1;              /* encima del fondo rojo */
  border-radius: var(--xp-radius);
  overflow: hidden;        /* recorta la foto en las esquinas redondas */
  background: #fff;        /* opcional */
}

.xp-card__inner img{
  display: block;
  width: 100%;
  height: auto;
}

/* etiqueta roja abajo a la izquierda */
.xp-card__label{
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: var(--xp-red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 0px;
	text-align: center;
  /* si la quieres pegada a los bordes, usa: left:0; bottom:0; border-top-right-radius:8px; border-radius:0; */
}
.xp-card__label span{
	display: block;
	width: 100%;
	font-size: 50px;
	text-align: center;
}

.textos01 h2{
	margin: 0;padding: 0;
	font-family: 'OpenSans-Bold';
	font-size: clamp(18px, 8vw, 42px);
	color: #000;
}
.textos01 h2 span{
	color: #EA2321;
}
.textos01 h3{
	margin: 0;padding: 0;
	font-family: 'OpenSans-Bold';
	font-size: 14px;
	letter-spacing: 3px;
	color: #EA2321;
}
.textos01 h4{
	margin: 0;padding: 0;
	font-family: 'OpenSans-Bold';
	font-size: clamp(18px, 8vw, 24px);
	color: #000;
}
.textos01 h4 span{
	color: #EA2321;
}
.textos01{
	margin: 0;padding: 0;
	color: #808080;
}

.recuadro01{
	background: #EA2321;
	border-radius: 15px;
}

/** plecas **/
/* Base */
.pleca{
  --bg: #f5f5f5;
  --fg: #111;
  --icon-bg: #e30613;
  --icon-fg: #111;
  --radius: 18px;
  --pad-y: 16px;
  --pad-x: 18px;

  display: flex;
  gap: 14px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--fg);
  align-items: flex-start;
  max-width: 680px;           /* opcional, ajusta a tu layout */
  margin: 10px 0;
}

/* Icono circular */
.pleca__icon{
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--icon-bg);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px rgba(0,0,0,.1) inset; /* sutíl anillo */
}
.pleca__icon i{
  font-size: 18px;
  line-height: 1;
  color: var(--icon-fg);
}

/* Texto */
.pleca__content{ line-height: 1.45; }
.pleca__title{
  margin: 0 0 4px 0;
	font-family: 'OpenSans-Bold';
  font-size: 16px !important;
	color: #FFF !important;
}
.pleca__title2{
  margin: 0 0 4px 0;
	font-family: 'OpenSans-Bold';
  font-size: 14px !important;
	color: #FFF !important;
}
.pleca__text{
  margin: 0;
  font-size: 14px;
	font-family: 'OpenSans';
}
.pleca__text2{
  margin: 0;
  font-size: 12px;
	font-family: 'OpenSans';
}

/* Variantes */
.pleca--red{
  --bg: #e30613;   /* rojo corporativo */
  --fg: #fff;
  --icon-bg: #000;  /* rojo más claro para distinguir */
  --icon-fg: #FFF;     /* check oscuro (como en tu referencia) */
}
.pleca--dark{
  --bg: #1f1f1f;  /* negro/gris muy oscuro */
  --fg: #fff;
  --icon-bg: #e30613; /* círculo rojo sobre fondo oscuro */
  --icon-fg: #111;    /* check oscuro (contraste suficiente) */
}


/** cajas **/

.xp-card2 {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

/* borde rojo por defecto */
.xp-card2__inner {
  position: relative;
  border: 1px solid var(--xp-black);
  border-radius: 12px;
  overflow: hidden;   /* esto asegura que la pleca negra quede dentro */
  transition: all 0.3s ease;
  z-index: 1;
  background: #fff;
}

.xp-card2__inner img {
  display: block;
  width: 100%;
  height: auto;
}

/* pleca negra */
.xp-card2__footer {
  display: inline-block;
  width: 100%;
  max-width: 250px;
  background: #222;        /* negro/gris muy oscuro */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 14px 10px;
  border-radius: 12px;
}

/* sombra roja en hover */
.xp-card2::before {
  content: "";
  position: absolute;
  top: 10px;         /* corrimiento hacia abajo */
  left: -10px;       /* corrimiento hacia la izquierda */
  width: 100%;
  height: 100%;
  background: #e30613;
  border-radius: 12px;
  opacity: 0;        /* invisible por defecto */
  transition: opacity 0.3s ease;
  z-index: 0;
}

/* efecto hover */
.xp-card2:hover::before {
  opacity: 1;       /* aparece la sombra/fondo rojo */
}

.xp-card2:hover .xp-card2__inner {
  border-color: var(--xp-black); /* desaparece el borde y deja ver la sombra */
}

/** card 3 ***/
.xp-card3{
  position: relative;
  display: inline-block;
}

/* fondo rojo del mismo tamaño de la imagen, corrido a izq/abajo */
.xp-card3::before{
  content: "";
  position: absolute;
  top: var(--xp-off-y);
  right: calc(var(--xp-off-x) * -1);
  width: 100%;
  height: 100%;
  background: var(--xp-red);
  border-radius: var(--xp-radius);
  z-index: 0;              /* detrás de la imagen */
}

/* caja de la imagen: esta sí recorta con border-radius */
.xp-card3__inner{
  position: relative;
  z-index: 1;              /* encima del fondo rojo */
  border-radius: var(--xp-radius);
  overflow: hidden;        /* recorta la foto en las esquinas redondas */
  background: #fff;        /* opcional */
}

.xp-card3__inner img{
  display: block;
  width: 100%;
  height: auto;
}

/* etiqueta roja abajo a la izquierda */
.xp-card3__label{
  position: absolute;
  max-width: 225px;
  right: 0px;
  bottom: 0px;
  background: var(--xp-red);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 0px;
	text-align: left;
  /* si la quieres pegada a los bordes, usa: left:0; bottom:0; border-top-right-radius:8px; border-radius:0; */
}
.xp-card3__label span{
	display: block;
	width: 100%;
	font-size: 50px;
	text-align: center;
}

/*** plecas con iconos **/
.pleca-icon {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 600px; /* ajusta según tu layout */
  margin: 12px 0;
}

.pleca-icon__circle {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e30613; /* rojo corporativo */
  display: flex;
  align-items: center;
  justify-content: center;
}

.pleca-icon__circle img {
  width: 24px;  /* controla tamaño del svg */
  height: 24px;
}

.pleca-icon__content {
  flex: 1;
}

.pleca-icon__title {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.pleca-icon__text {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/*** BOTONES **/
.boton {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 360px; /* opcional */
  margin-left: auto;
  margin-right: auto;
}

/* Icono redondo */
.boton__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e30613; /* rojo por defecto */
  display: flex;
  align-items: center;
  justify-content: center;
}
.boton__icon img {
  width: 22px;
  height: 22px;
}

/* Texto */
.boton__content {
  flex: 1;
}
.boton__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff; /* por defecto, se sobreescribe en variantes */
}
.boton__text {
  margin: 0;
  font-size: 12px;
  color: #ddd; /* por defecto, se sobreescribe en variantes */
}

/* Variante: fondo negro */
.boton--dark {
  background: #1a1a1a;
}
.boton--dark:hover {
  background: #333; /* hover configurable */
  text-decoration: none;
}
.boton--dark .boton__title {
  color: #fff;
}
.boton--dark .boton__text {
  color: #fff;
}

/* Variante: fondo rojo */
.boton--red {
  background: #e30613;
}
.boton--red:hover {
  background: #c40510; /* hover configurable */
  text-decoration: none;
}
.boton--red .boton__title {
  color: #fff;
}
.boton--red .boton__text {
  color: #fff;
}
.boton--red .boton__icon {
  background: #111; /* el círculo en negro, como en tu ejemplo */
}

/* Variante estática (sin hover de color) */
.boton--static {
  pointer-events: none; /* opcional: lo hace no clickeable */
}

.boton--static:hover {
  background: inherit; /* mantiene el color original */
  transform: none;     /* evita el pequeño movimiento */
}

.boton-width{
  /* width: 100%; */
  max-width: 330px;
}

/** Footer **/

.footerText{
  font-family: 'OpenSans';
  font-size: 12px;
  color: #FFF;
}

.redes {
  display: flex;
  gap: 12px;
  /*justify-content: center; /* centrado, opcional */
}

.redes a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.redes a img {
  width: 16px;
  height: 16px;
}

/* Hover */
.redes a:hover {
  background: #e30613; /* rojo corporativo */
  transform: translateY(-2px);
}

.redes a:hover img {
  filter: brightness(0) invert(1); /* convierte el svg negro a blanco */
}

/** Producto **/
.producto h1{
  padding: 0;margin: 0;
  font-family: 'OpenSans-Bold';
  font-size: clamp(15px, 8vw, 30px);
	color: #000;
}
.producto p{
  padding: 0;margin: 0;
  font-family: 'OpenSans';
  font-size: clamp(14px, 8vw, 14px);
	color: #000;
}
.plecaInfo{
  padding: 0;margin: 0;
  font-family: 'OpenSans-Bold';
  font-size: clamp(15px, 8vw, 30px);
	color: #000;
  border-bottom: 1px solid #000 ;
}

/** hack acordeon **/
.uk-accordion li .uk-accordion-title:before {
	background-image: none !important;
	content: url('data:image/svg+xml; base64, PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI5LjguMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDkuMDMgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjQgMjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojRkZGRkZGO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTYuMyw3LjhMNC45LDkuMmw3LjEsNy4xbDcuMS03LjFsLTEuNC0xLjRMMTIsMTMuNEw2LjMsNy44eiIvPgo8L3N2Zz4K') !important;
}
.uk-accordion li.uk-open .uk-accordion-title:before {
	background-image: none !important;
	content: url('data:image/svg+xml; base64, PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI5LjguMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDkuMDMgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjQgMjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojRkZGRkZGO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTE3LjcsMTYuMmwxLjQtMS40TDEyLDcuOGwtNy4xLDcuMWwxLjQsMS40bDUuNy01LjdMMTcuNywxNi4yeiIvPgo8L3N2Zz4K') !important;
}

li.uk-open a.uk-accordion-title{
  background: #EA2321 !important;
}
.uk-accordion-title{
  background: #000;
  padding: 10px 15px !important;
  color: #FFF !important;
  font-family: 'OpenSans-Bold' !important;
  font-size: clamp(14px, 8vw, 16px) !important;
  border-radius: 10px !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
}
.uk-accordion-title:hover{
  border-bottom: 2px solid #EA2321;
}
.uk-accordion-content{
  font-family: 'OpenSans';
  font-size: clamp(12px, 8vw, 12px);
	color: #000;
  text-decoration: none;
  padding: 5px 10px;
}
.uk-accordion-content h2{
  font-family: 'OpenSans-Bold';
  font-size: clamp(14px, 8vw, 16px);
}
.uk-accordion-content h2{
  margin: 0;padding: 0;
  margin-bottom: 5px;
}
.uk-accordion-content p{
  margin: 0; padding: 0;
  margin-bottom: 20px;
}
.uk-table tr td:nth-child(1){
  /* width: 100%; */
  width: 325px !important;

}



.uk-table tr td, .uk-table tr th{
  border: 1px solid #E4E4E4;
}
.uk-table thead tr th{
  color: #EB2321;
}
.uk-table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.05) !important; /* rojo muy suave */
  transition: background-color 0.2s ease;
}

.inst h1{
  padding: 0;margin: 0;
  font-family: 'OpenSans-Bold';
  font-size: clamp(15px, 8vw, 30px);
	color: #000;
}
.inst p{
  font-family: 'OpenSans';
  font-size: clamp(12px, 8vw, 14px);
	color: #000;
}
.inst b, .inst strong, .inst a{
  font-family: 'OpenSans-Bold';
  font-size: clamp(12px, 8vw, 14px);
	color: #000;
  text-decoration: none;
}
.inst a:hover{
	color: #EA2321;
  text-decoration: none;
}





/** Footer **/
.footer-links {
  display: flex;
  gap: 60px; /* espacio entre columnas */
}

.footer-col h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin: 6px 0;
  position: relative;
  padding-left: 18px; /* espacio para la flechita */
  line-height: 1.2;
}

.footer-col li::before {
  content: "›"; /* flechita */
  position: absolute;
  left: 0;
  top: 0;
  color: #e30613; /* rojo */
  font-size: 18px;
  line-height: 1;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #e30613;
  text-decoration: none;
}

.footer-creditos{
  font-family: 'OpenSans';
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.footer-creditos a{
  font-family: 'OpenSans';
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.footer-creditos a:hover{
  color: #e30613;
  text-decoration: none;
}




@media (max-width: 768px) {
	

}
@media (max-width: 480px) {
  .pleca{
    --pad-y: 14px;
    --pad-x: 16px;
    border-radius: 16px;
  }
  .pleca__title{ font-size: 18px; }
  .pleca__text{ font-size: 14px; }
  .pleca__icon{ width: 28px; height: 28px; }
  .pleca__icon i{ font-size: 16px; }

}

