/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

/* header */

.dis-none {
    display: none !important;
}

.outline-70 {
	box-shadow: -400px -26px 1px -25px #fff;
}

.flex-2 { flex:2; }

.flex-1-5 { flex:1.5; }

.fitflow-megamenu-container, .menu-container {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background:black;
}
    
.main-menu {
	text-transform: uppercase;
	font-weight: 600;
	color: white;
	padding: 15px 0; /* Removido el padding horizontal */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 400;
	width: 100%;
	box-sizing: border-box;
}

.secondary-menu {
	text-transform: uppercase;
	font-weight: 600;
	color: white;
	padding: 15px 0; /* Removido el padding horizontal */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 50;
	width: 100%;
	box-sizing: border-box;
}

.main-menu ul, .secondary-menu ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between; /* Esto ya estaba correcto */
    width: 100%;
    max-width: 100%; /* Cambiado de 1200px a 100% */
	padding: 0;
}

.main-menu li, .secondary-menu li {
	font-family: "Montserrat", dm;
	font-size: 12px;
	margin: 0; /* Removido el margin horizontal */
	cursor: pointer;
	position: relative;
	white-space: nowrap; /* Previene que el texto se rompa en múltiples líneas */
}

.main-menu li.selected, .secondary-menu li.selected {
    font-weight: bold;
    position: relative;
}

.main-menu li.selected::after, .secondary-menu li.selected::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background-color: #da291c;
}

.main-menu li a:hover {
	color: inherit !important;
}

@media (max-width: 767px) {
    .main-menu, .secondary-menu {
        padding: 10px 0;
    }
	
    .main-menu ul, .secondary-menu ul {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
	
    .main-menu li, .secondary-menu li {
        margin: 10px 0;
        font-size: 14px;
    }
}
	
.tituloMenuEnSubmenus {
	font-family: "Montserrat", dm;
	color: #ffffff;
	font-weight: 700;	
	font-size: 13px;
	padding: 10px 10px 10px 42px;
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background-color: rgba(0, 0, 0, 0.7);*/
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 300;
}

.content {
	display: none;
	position: absolute;
	top: 48px;
	left: 0;
	right: 0;
	z-index: 301;
	margin-left: -42px;
	margin-right: -42px;
}

.content-inner {
	display: flex;
	/*padding: 20px 0;*/
	width: 100%;
	border-top: 1px solid #292523;
	margin-top: 20px;
}

.submenu, .info {
	padding: 10px 30px 10px 0px;
}

.submenu {
	background-color: transparent;
}

.submenu li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px 10px 50px;
	border-radius: 0px 15px 15px 0px;
	transition: background-color 0.3s;
	color: white;
	font-size: 12px;
	font-weight: 600;
	font-family: "Montserrat", dm;
	cursor: pointer;
	min-height: 45px;	
}

.submenu li .fas {
	font-size: 16px;
	padding-top: 1px;
}

.submenu-con-enlace {
	padding: 0 !important;
}

.submenu a {
	padding: 10px 15px 10px 50px;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.submenu a:hover {
	color: inherit !important;
}

.submenu li:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.submenu li.selected {            
	background-color: white;
	color: black;
}

li a {
    all: unset;
}

.submenu li .icon {
	width: 25px; 
	height: 25px; 
	border-radius: 50%;
	background-color: white;
	color: black;
	display: flex; 
	justify-content: center; 
	align-items: center; 
	margin-left: 20px;
}

.submenu li.selected .icon {
	background-color: #da291c; 
	color: white; /* Icono blanco al seleccionar */
}

.divider {
	height: inherit; 
	width: 2px;
	background-color: white; 
}

.subsubmenu {
	flex: 0 1 auto; /* Toma espacio solo si tiene contenido */
	min-width: 0; /* Permite colapsar si está vacío */
	padding: 24px 30px 24px 30px;
}
        
.subsubmenu li {
	direction: ltr;
	/*padding: 10px;*/
	padding: 5px 25px;
	border-radius: 0px 10px 10px 0px;
	border-radius: 15px;
	transition: background-color 0.3s;
	color: white;
	font-size: 0.9rem;
	display: block;
	/*width: 350px;*/
	width: 300px;
	/*align-content*/
	text-align: left !important;
}

.subsubmenu-item a {
    color: inherit;
    display: flex;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;	
	font-family: "Montserrat", dm;	
	font-size: 12px;
	font-weight: 400;
}

.subsubmenu-item a:hover {
    color: white;
	cursor: pointer;
}

.subsubmenu li:hover {
	/*background-color: rgba(255, 69, 0, 0.1);*/
	background-color: #6D1C16;
}

.subsubmenu li.selected {
	background-color: #da291c85; 
	color: white;
}
        
.subsubmenu::-webkit-scrollbar {
    width: 5px; /* Define el ancho del scrollbar */
}

.subsubmenu::-webkit-scrollbar-track {
    background: transparent; /* Fondo blanco del track */
}

.subsubmenu::-webkit-scrollbar-thumb {
    background: #da291c; /* Color de la barra desplazable */
    border-radius: 0; /* Asegura que sea solo una línea */
}

.info {
    flex: 3;
    background-color: transparent; /* Sin color de fondo */
    border-radius: 10px;
    display: flex;
	align-items: center;
	justify-content: center;
}

.image-wrapper h2 a:hover, .image-wrapper h2 a {
    text-decoration: none;
    color: white;
}

.image-wrapper {
    position: relative; /* Establece un marco de referencia para posicionar el texto */
}

.image-wrapper img {
    width: 100%; /* La imagen se ajusta al ancho del contenedor */
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra el espacio sin distorsionarse */
    position: absolute;
}

.image-wrapper h2 {
    position: absolute; /* Posiciona el texto en relación al contenedor */
    bottom: 0; /* Fija el texto al borde inferior del contenedor */
    width: 100%; /* Hace que el texto ocupe todo el ancho del contenedor */
    background: #545454; /* Fondo semitransparente opcional */
    text-align: center; /* Centra el texto horizontalmente */
    padding: 0.5rem 0rem 0.5rem 0rem; /* Espaciado alrededor del texto */
    margin: 0; /* Incluye padding en el cálculo del ancho total */
}


.subsubmenu:not(:empty) ~ .info .image-wrapper {
    width: 30rem;
    height: 20rem;
}

.subsubmenu:empty ~ .info .image-wrapper{
    width: 50rem;
    height: 20rem;
}

.title {
	font-size: 1.2em;
	margin-bottom: 10px;
	color: white; /* Título en blanco */
}

/* end header */

.content-section {
	display: none; /* Todas las secciones están ocultas por defecto */
}

.content-section.active {
	display: block; /* La sección activa se muestra */
}

.documents-container {
    font-family: "Montserrat", dm;
}

.documents-header
{
	display: flex; 
	justify-content: space-between; 
	margin-bottom: 20px; 
}

.documents-header .search-box {
    position: relative;
    display: inline-block;
}

@media (max-width: 767px) {
    .documents-header .search-box {
        display: none !important;
    }
}

.documents-header h2 {
	margin: 0 !important;
	text-transform: uppercase;
	color: white;
	font-size: 28.6px;
	line-height: 34px;
	font-weight: 700;
}

.documents-header .search-box {
    position: relative;
    display: inline-block;
	font-weight: 700;
}

.documents-header .search-box input[type="text"] {
    border: 2px solid white; /* Borde blanco */
    border-radius: 25px; /* Bordes redondeados */
    background-color: transparent; /* Fondo transparente */
    padding: 8px 40px 8px 12px; /* Espaciado interno */
    color: white; /* Color del texto */
    width: 200px; /* Ancho */
    font-size: 14px; /* Tamaño de fuente */
}

.documents-header .search-box input[type="text"]::placeholder {
    color: white; /* Color del placeholder */
    opacity: 0.8; /* Ligero desvanecimiento */
}

/* Ícono de lupa usando Font Awesome */
.documents-header .search-box::after {
	content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    font-size: 18px;
    position: absolute;
    right: 14px; /*7%;*/
    bottom: -9px; /*25%;*/
    transform: translateY(-50%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .documents-table {
        width: 100%; /* Ancho total */
        border-collapse: collapse; /* Elimina espacios entre bordes */
        background-color: transparent; /* Fondo transparente */
    	margin: 0 !important;
    }

    .documents-table th {
        color: #EBEBEB;
    	font-size: 16px;
    	line-height: 20px;
    }
    
    .document-row td {
    	border: 0px none;
    	padding: 12px 12px !important;
    	background-color: transparent !important;
        color: #EBEBEB;
    	font-size: 16px;
    	line-height: 20px;
    }
}

@media (min-width: 768px) {
    .documents-table {
        width: 100%; /* Ancho total */
        border-collapse: collapse; /* Elimina espacios entre bordes */
        background-color: transparent; /* Fondo transparente */
    	margin: 0 !important;
    }
    
    .documents-table th {
        color: #EBEBEB;
    	font-size: 18.5px;
    	line-height: 27.75px;
    }
    
    .document-row td {
    	border: 0px none;
    	padding: 12px 24px !important;
    	background-color: transparent !important;
        color: #EBEBEB;
    	font-size: 18.5px;
    	line-height: 27.75px;
    }
}

.documents-table thead th {
    text-align: center; /* Centra el texto de los encabezados */
    padding: 12px; /* Espaciado interno */
	border: 0px !important;
}

.documents-table tbody tr:first-child {
    border-top: 2px solid #9B8787; /* Solo borde superior de las filas */
}

.documents-table tbody tr {
    border-top: 1px solid #9B8787; /* Solo borde superior de las filas */
}

.documents-table tbody td {
    text-align: center; /* Centra el texto por defecto */
}

.documents-table tbody td:first-child {
    text-align: left; /* Alinea a la izquierda la columna "Nombre" */
}

.document-row a {
    text-decoration: none !important;
	color: #EBEBEB !important;
}

.document-row a:hover {
    font-weight: 500;
}

/* Contenedor del formulario */
.newsletter-form p {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap; /* Acomoda en líneas nuevas en pantallas pequeñas */
    margin: 0; /* Elimina márgenes */
}

/* Ocultar el salto de línea generado por el <br> */
.newsletter-form p br {
    display: none;
}

/* Campo de email */
.newsletter-form .wpcf7-email {
    /*padding: 10px;*/
    padding: 9px 20px !important;
    border: none;
    border-radius: 20px;
    /*font-size: 16px;*/
    font-size: 15px !important;
    color: #000;
    background-color: #fff;
    flex: 1; /* Hace que el input se ajuste al espacio disponible */
    min-width: 200px;	
	max-width: 284px;
	font-family: "Montserrat", dm !important;
	font-weight: bold;	
}

/* Botón de enviar */
.newsletter-form .wpcf7-submit {
    /*padding: 10px 20px;*/
    padding: 9px 20px !important;
    border: none;
    border-radius: 20px;
    background-color: #fff;
    color: #000;
    /*font-size: 16px;*/
    font-size: 15px;
    cursor: pointer;
	font-family: "Montserrat", dm !important;		
	font-weight: bold;
	min-width: 100px;
}

.newsletter-form .wpcf7-submit:hover {
    background-color: #000;
    color: #fff;
}

/* Ajustes responsivos */
@media (max-width: 767px) {
    .newsletter-form p {
        flex-direction: column;
        gap: 10px;
    }
}

/* Carrusel de 3 slides (proporción 3:2) */
.carrusel-3-slides .carousel-item {
    position: relative;
    display: flex !important;
    overflow: hidden;
    aspect-ratio: 2 / 3; /* Proporción 3:2 */
    flex: 0 0 calc((100% - 140px) / 3); /* Ancho para 3 slides con gap */
    border-radius: 10px; /* Opcional: esquinas redondeadas */
}

/* Carrusel de 2 slides (proporción 2:3) */
.carrusel-2-slides .carousel-item {
    position: relative;
    display: flex !important;
    overflow: hidden;
    aspect-ratio: 3 / 2; /* Proporción 2:3 */
    flex: 0 0 calc((100% - 70px) / 2); /* Ancho para 2 slides con gap */
    border-radius: 10px; /* Opcional: esquinas redondeadas */
}

/* Imágenes centradas en ambos carruseles */
.carousel-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover; /* Centra y ajusta las imágenes */
    object-position: center;
}

.carousel-image-borde {
	/*border: 1px solid #8F8585 !important;*/
	border: 1px solid #ffffff !important;
	border-radius: 4px 4px 0 0 !important;
}

/* Espaciado entre slides */
.slick-slide {
	margin: 0 35px; /* Mitad del gap total (70px) */
}

.slider-1 .slick-slide {
	margin: 0 !important;
}

/* Responsive: ajustar el gap en pantallas pequeñas */
@media (max-width: 767px) {
    .slick-slide {
        margin: 0 20px; /* Gap reducido en pantallas pequeñas */
    }

    .carrusel-2-slides .carousel-item {
        flex: 0 0 calc(100% - 40px); /* Un slide por fila con margen reducido */
    }
}

/* Limitar el ancho del carrusel */
.slick-carousel {
    margin: 0 auto; /* Centrar el carrusel dentro del contenedor */
    position: relative; /* Asegura que las flechas estén posicionadas correctamente */
}

/* Ajusta la posición de las flechas */
.slick-arrow {
    font-size: 50px !important;
    border: none !important;
    height: 100% !important;
    z-index: 10;
    color: white !important;
}

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover{
    background-color: transparent !important;
}


/* Estilo general para todas las flechas */
button.slick-prev.slick-arrow {
    left: -30px;
}

button.slick-next.slick-arrow {
    right: -30px;
}

.slick-prev::before,
.slick-next::before {
    content: '' !important;
}

/* Sobreescritura específica si tiene la clase slider-1 */
.slider-1 button.slick-prev.slick-arrow {
	left: calc(((100vw - 1189px) / 2) - 63px);
}

.slider-1 button.slick-next.slick-arrow {
    right: calc(((100vw - 1189px) / 2) - 63px);
}

@media ((max-width: 1352px) and (min-width: 768px)) {
	.slider-1 button.slick-prev.slick-arrow {
		left: calc(((100vw - 89%) / 2) - 63px) !important;
	}

	.slider-1 button.slick-next.slick-arrow {
		right: calc(((100vw - 89%) / 2) - 63px) !important;
	}
}

@media (max-width: 767px) {
	.slider-1 button.slick-prev.slick-arrow {
		left: calc(((100vw - 87%) / 2) - 63px) !important;
	}

	.slider-1 button.slick-next.slick-arrow {
		right: calc(((100vw - 87%) / 2) - 63px) !important;
	}
}

/* Ocultar flechas en pantallas pequeñas */
@media (max-width: 767px) {
    button.slick-next.slick-arrow, button.slick-prev.slick-arrow {
        display: none !important; /* Oculta las flechas en móviles */
    }
}

/* Contenedor de texto en la parte inferior */
.carrusel-text-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #54545485; /* Fondo negro con transparencia */
    color: white; /* Color del texto */
    font-size: 16px; /* Ajusta según el diseño */
    line-height: 18px;
    font-weight: bold; /* Negrita para el texto */
}

/* Estilo del texto */
.carrusel-text {
    flex: 1; /* Ocupa el espacio restante */
    text-align: left; /* Alineación a la izquierda */
    margin-right: 10px; /* Espacio entre el texto y el ícono */
    text-decoration: none !important; /* Sin subrayado */
    color: white; /* Color del texto */
    overflow: hidden; /* Si el texto es muy largo, ocúltalo */
    font-size: 15px !important;
	font-family: "Montserrat", dm !important; /* Agregado por Federico Fontana */
	height: 56px !important;	/* Agregado por Federico Fontana */	
	width: 100%;
    display: flex;
    align-items: center; /* Alineación vertical */
    justify-content: space-between; /* Espaciado entre texto e ícono */
	padding: 0 16px !important;
}

.carrusel-text:hover {
    text-decoration: none !important;
    color: white !important;
}

.carrusel-text::after {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    transform: rotate(-45deg);
    display: inline-block;
    font-size: 1.5rem;
    color: white;
    margin-left: 10px;
}

/* Estilo del ícono */
.carrusel-icon {
    transform: rotate(-45deg); /* Rotación hacia la esquina superior derecha */
    display: inline-block;
    font-size: 1.5rem; /* Tamaño del ícono */
    color: white; /* Color del ícono */
}

.fitflow-button {
	background-color: #B42319;
	color: white !important;
	padding: 3px 5px 3px 18px;
	border: none;
	border-radius: 20px;
	font-size: 14px !important;
	line-height: 21px !important;
	cursor: pointer;
	font-weight: bold;
	text-decoration: none!important;
	display: inline-flex;
	align-items: center;
	font-family: "Montserrat", dm;
	text-transform: none;
}

.fitflow-button:hover {
  background-color: rgba(227, 6, 19, 0.5); /* Mantener el mismo color de fondo en hover */
  color: white !important; /* Mantener el mismo color de texto en hover */
  text-decoration: none !important; /* Evitar subrayado al pasar el ratón */
}

.fitflow-button .fa-chevron-circle-right {
	margin-left: 10px; /* Space between text and icon */
	font-size: 20px;
	padding: 5px;
	color: #CFCFCF;	/* Agregado por Federico para que se ajuste al diseño del Canva */
}

.slider-2 .carousel-item {
    position: relative;
    display: flex; /* Mantiene flexbox */
    flex-direction: column; /* Organiza los elementos en columna */
    justify-content: space-between; /* Distribuye espacio entre la imagen y el texto */
    overflow: hidden;
    flex: 0 0 calc((100% - 200px) / 2); /* Ajusta el ancho del slide */
}

.slider-2 .carousel-item img {
    width: 100%; /* Imagen ocupa todo el ancho del contenedor */
    height: auto; /* Mantiene la proporción */
    object-fit: cover; /* Asegura que la imagen se vea bien sin deformarse */
    border-radius: 10px 10px 0 0; /* Opcional: redondear solo las esquinas superiores */
}

.novedades-container {
    margin-top: 0; /* Eliminamos separación adicional */
    text-align: left;
    padding: 7px 0 0 0;
    color: white;
}

.novedades-franja-roja {
	height: 7px;
	border-top: 1px solid #ffffff;
	background-color: #B52217;
	border-radius: 0 0 4px 4px;	
}

.novedades-text {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 9px 0; /* Margen inferior */
	font-family: "Montserrat", dm;
	font-weight: 600 !important;
	min-height: 53px; /* Agregado por Federico Fontana */
	line-height: 20px; /* Agregado por Federico Fontana */
}

/* Contenedor general del Image Box */
.image-box-hero {
    position: relative;
    width: 100%;
}

.image-box-hero .elementor-image-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: 50% 65%;
    z-index: 1;
}

.logo-esquina {
    position: absolute;
    z-index: 10;
    bottom: -156px;
	right: 0px;
    width: 153px !important;
}

.logo-esquina-2 {
    position: absolute;
    z-index: 10;
    bottom: -127px;
	right: 0px;
    width: 153px !important;
}

.logo-esquina-3 {
    position: absolute;
    z-index: 10;
    bottom: -73px;
	right: 0px;
    width: 153px !important;
}

.pr-certificado .elementor-image-box-img img {
    object-position: 50% 65%;
}

.slider-1 .slick-slider {
    margin: 0 !important;
}

.slider-1 .slick-list {
    height: 426px !important;
}

.slider-1 .elementor-image-box-wrapper {
    height: 426px;
    display: flex;
    flex-direction: column;
}

.slider-1 .elementor-image-box-img {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-1 .elementor-image-box-img img {
    max-height: 426px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.image-box-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 10;
}

.image-box-hero .elementor-image-box-title {
    font-size: 34px;
    margin: 0;
    line-height: 1.14;
    font-weight: 300;
    color: white; 
    text-transform: uppercase; 
}

.image-box-hero .elementor-image-box-title span {
	text-transform: none; 
	border: 1px solid white;
	border-radius: 20px; /* Esquinas redondeadas */
	padding: 6px 12px; /* Espacio interno */
	display: inline-block; /* Para aplicar correctamente el borde y el relleno */
	font-size: 16px;
	margin-bottom: 14px; /* Agregado por Federico Fontana */
}

.image-box-hero .elementor-image-box-description {
    font-size: 15px;
    max-width: 588px;
    margin: 0;
    line-height: 20px;
    color: white;
	font-weight: 500 !important; /* Agregado por Federico Fontana */
}

.image-box-hero .elementor-image-box-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    color: white;
    text-align: left;
	left: calc((100vw - 1189px) / 2);
	max-width: 1172px;
}

@media ((max-width: 1352px) and (min-width: 768px)) {
	.image-box-hero .elementor-image-box-content {
		left: calc((100vw - 89%) / 2) !important;
		max-width: calc(89% - 17px);
	}
}

@media (max-width: 767px) {
	.image-box-hero .elementor-image-box-content {
		left: calc((100vw - 87%) / 2) !important;
		max-width: calc(87% - 17px);
	}
}

.image-box-hero .separator {
    width: 118px;
    height: 4px;
    background-color: #da291c; 
    margin: 9px 0 16px 0;
}

.titulo-box {
    position: relative;
	background-color: #000000;
}

.titulo-box-video {
    position: relative;
	background-color: #000000;
}

.media-titulo {
    margin: 0 !important;
}

.media-titulo .elementor-widget-container {
    position: relative;
    padding-bottom: 428px;
    overflow: hidden;
}

/* Image styling */
.media-titulo img, .media-titulo .e-hosted-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	height: 428px; /* Agregado por Federico para que el bloque del título ocupe lo indicado en el Canva */
    object-fit: cover;
	opacity: 0.35;
}

/* Dark overlay */
.titulo-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Text styling */
.texto-titulo {
    position: absolute;
    z-index: 20;
    top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1140px !important;
	padding: 32px;
}

@media (max-width: 1046px) {
	.texto-titulo {
		max-width: calc(100vw - 17px) !important;
	}
}

@media ((min-width: 1047px) and (max-width: 1366px)) {
	.texto-titulo {
		max-width: 1030px !important;
	}
}

.texto-titulo .elementor-heading-title {
    color: white;
    font-size: 50px;
	font-weight: 400;
    margin: 0;
    line-height: 59px;
    text-transform: uppercase;
}

.texto-titulo .elementor-heading-title span {
    font-weight: bold;
}

/* Productos */

#productos-vertical {
	height: 384px;
	overflow-y: scroll;
}

.page-content {
	::-webkit-scrollbar {
	  width: 0 !important;
	}
}

#productos-vertical .elementor-container {
    flex-direction: column;
}

#productos-vertical .elementor-column {
    width: 100% !important;
}


#productos-vertical .elementor-widget.elementor-widget-image {
	width: auto !important;
	margin-bottom: 0 !important;
}

#productos-vertical .elementor-widget.elementor-widget-image .elementor-widget-container {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    border: 3px solid #fff;
}

/* Oscurece todos los slides por defecto */
#productos-vertical .slick-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#productos-vertical .productos-vertical-item {
    opacity: 0.5;
}

#productos-vertical .productos-vertical-item:hover {
    opacity: 1 !important;
    transform: scale(1.2); /* Agrandar ligeramente */
}

/* Ajusta el slick-active que está en el centro */
#productos-vertical .slick-center {
    opacity: 1 !important;
	color: white;
    transform: scale(1.2); /* Agrandar ligeramente */
}

.carrusel-imagebox .elementor-image-box-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    aspect-ratio: 2 / 3;
    border-radius: 10px;
    overflow: hidden;
}

.carrusel-imagebox-clientes .elementor-image-box-wrapper {
    aspect-ratio: 0.5646 !important;
    border-radius: 25px !important;
}

.carrusel-imagebox-clientes .elementor-image-box-content {
	padding: 0 15px !important;
	height: 77px !important;
    display: flex;
    align-items: center; /* Alineación vertical */
    border-radius: 25px !important;
}

.carrusel-imagebox .elementor-image-box-img {
    width: 100% !important;
    height: 100%;
    margin: 0;
}

.carrusel-imagebox .elementor-image-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carrusel-imagebox .elementor-image-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px 15px;
}

.carrusel-imagebox .elementor-image-box-title {
    flex: 1;
    color: white;
    font-size: 17px;
    margin: 0;
    font-weight: 400;
    white-space: normal; /* Permitir saltos de línea */
    text-align: left;
    display: flex; /* Usar flexbox para alinear el texto e icono */
    justify-content: space-between; /* Texto a la izquierda, icono a la derecha */
    align-items: center; 
}

/* Add arrow icon */
.carrusel-imagebox .elementor-image-box-title::after {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    transform: rotate(-45deg);
    display: inline-block;
    font-size: 1rem;
    color: white;
    margin-left: 10px;
}

.texto-descripcion h2 {
	font-size: 16px !important;
	line-height: 22px;
	text-align: left !important;
	max-width: 370px;
}

.texto-descripcion-ancho h2 {
	font-size: 16px !important;
	line-height: 22px;
	text-align: left !important;
}

.texto-descripcion ul {
	padding-inline-start: 28px !important;
}

.seccion-caracteristica {
	border-top: 1px solid #8F8585;
}

.seccion-caracteristica img {
	max-height: 274px;
}

.seccion-caracteristica-borde-blanco {
	border-top: 1px solid #ACACAC !important;
}

@media (max-width: 767px) {
    .seccion-caracteristica .col-descripcion {
        order: 2;
        padding: 10px 0 20px 0;
    }

    .seccion-caracteristica .col-descripcion-final {
        padding: 10px 0 40px 0 !important;
    }

    .seccion-caracteristica .col-imagen {
        order: 3;
        padding-bottom: 40px;
    }

    .seccion-caracteristica .col-titulo {
        order: 1;
        padding-top: 40px;
    }

    .seccion-caracteristica .col-titulo h2 {
        text-align: left !important;
    }
}

@media (min-width: 768px) {
	.col-31 {
		width: 31% !important;
	}

	.col-41 {
		width: 41% !important;
	}

	.col-28 {
		width: 28% !important;
	}

	.col-36 {
		width: 36% !important;
	}

	.col-20 {
		width: 20% !important;
	}

	.col-44 {
		width: 44% !important;
	}

	.col-33 {
		width: 33% !important;
	}

	.col-39 {
		width: 39% !important;
	}
}

.titulo-caracteristica {
	margin-bottom: 0 !important;
}

@media (max-width: 767px) {
    .titulo-caracteristica h2 {
    	font-size: 28px !important;
    	line-height: 36px !important;
    }
}

@media (min-width: 768px) {
    .titulo-caracteristica h2 {
    	font-size: 34px !important;
    	line-height: 44px !important;
    }
}

.icono-parte-superior .elementor-image-box-title {
	padding: 0 10px;
}

.icono-parte-superior .elementor-image-box-title a {
	text-decoration: none !important;
}

.icono-parte-superior img {
	max-width: 80px;
}

.seccion-bloque-home {
	border-top: 1px solid #8F8585 !important;		
	background-size: cover;
	background-repeat: no-repeat;		
}

.seccion-newsletter {
	border-bottom: 1px solid #DD8280 !important;	
}

.display-none {
	display: none !important;
}

.columna-iram {
	max-width: 360px;
}

.centrado-vertical h2 {
	display: flex;
	align-items: center;
}

.item-valores .elementor-image-box-content {
	width: auto !important;
	margin-bottom: 5px;
}

.item-valores img {
	width: 91px !important;
	height: 65px !important;
}

.item-propuesta .elementor-image-box-content {
	width: auto !important;
}

.item-propuesta img {
	width: 142px !important;
	height: auto !important;
}

.item-propuesta-flexibilidad .elementor-image-box-title {
	width: 176px !important;
}

.carrusel-proyectos-clientes .elementor-widget-wrap {
	width: auto !important;
}

.texto-titulo-soluciones {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    color: white;
    text-align: left;
	left: calc((100vw - 1189px) / 2);
	width: auto !important;
}

@media ((max-width: 1352px) and (min-width: 768px)) {
	.texto-titulo-soluciones {
		left: calc((100vw - 89%) / 2) !important;
	}
}

@media (max-width: 767px) {
	.texto-titulo-soluciones {
		left: calc((100vw - 95%) / 2) !important;
	}
    
    .texto-titulo-soluciones .elementor-heading-title {
    	font-family: "Montserrat", dm;
        color: white;
        font-size: 40px;
    	font-weight: 300;
        line-height: 47px;
        text-transform: uppercase;		
    }
}

@media (min-width: 768px) {
    .texto-titulo-soluciones .elementor-heading-title {
    	font-family: "Montserrat", dm;
        color: white;
        font-size: 50px;
    	font-weight: 300;
        line-height: 59px;
        text-transform: uppercase;		
    }
}

.texto-titulo-soluciones .elementor-heading-title span {
    font-weight: 600 !important;
}

@media (max-width: 767px) {
    .texto-titulo-general .elementor-heading-title {
    	font-family: "Montserrat", dm;
        color: white;
        font-size: 40px;
    	font-weight: 300 !important;
        line-height: 47px;
        text-transform: uppercase;		
    }
}

@media (min-width: 768px) {
    .texto-titulo-general .elementor-heading-title {
    	font-family: "Montserrat", dm;
        color: white;
        font-size: 50px;
    	font-weight: 300 !important;
        line-height: 59px;
        text-transform: uppercase;		
    }
}
    
.texto-titulo-general .elementor-heading-title span {
    font-weight: 600 !important;
}

.texto-titulo-general .elementor-heading-title .texto-titulo-inferior {
	color: #BFBDBD !important;
    font-size: 18.75px !important;
	font-weight: 400 !important;
	line-height: 22px !important;
    text-transform: none !important;
	max-width: 545px;
	padding-top: 20px;
}

.texto-titulo-general .elementor-heading-title .texto-titulo-inferior-2 {
	color: #BFBDBD !important;
    font-size: 18.75px !important;
	font-weight: 400 !important;
	line-height: 22px !important;
    text-transform: none !important;
	max-width: 680px;
	padding-top: 20px;
}

.contenido-caracteristica {
	max-width: 580px;
}

.contenido-caracteristica ul {
	padding-inline-start: 28px !important;
	color: white;
	font-family: "Montserrat", dm;
	font-size: 17.33px;
	font-weight: 300;
	line-height: 21px;
}

.contenido-caracteristica-tanques {
	color: white;
	font-family: "Montserrat", dm;
	font-size: 17.33px;
	font-weight: 300;
	line-height: 21px;	
}

.contenido-caracteristica-tanques ul {
	padding-inline-start: 28px !important;
}

.contenido-accesorios-tanques {
	color: white;
	font-family: "Montserrat", dm;
	font-size: 17.33px;
	font-weight: 300;
	line-height: 21px;	
}

.contenido-accesorios-tanques ul {
	padding-inline-start: 28px !important
}

.contenido-caracteristica-monitoreo ul {
	padding-inline-start: 28px !important;
	color: white;
	font-family: "Montserrat", dm;
	font-size: 17.33px;
	font-weight: 300;
	line-height: 26px;
}

.contenido-accesorios-tanques li {
	padding-top: 15px;
}

.contenedor-bloques-grises .elementor-container {
	gap: 22px;
}

.contenedor-bloques-grises-angosto .elementor-container {
	gap: 12px;
}

.contenedor-bloques-grises-muy-angosto .elementor-container {
	gap: 10px;
}

.tuberias-lista-sin-sangria {
	max-width: 442px;
}

.tuberias-lista-sin-sangria ul {
	padding-inline-start: 20px !important;
	color: #D8D8D9;
	font-family: "Montserrat", dm;
	font-size: 17.33px;
	font-weight: 400;
	line-height: 24px;
}

.header-contacto {
	display: flex;
	justify-content: right;
}

@media (min-width: 768px) {
    .bloque-ansul .elementor-column-gap-default {
        flex-wrap: nowrap;
    }
    
    .bloque-ansul-izq {
    	min-width: 183px;
    }

    .bloque-ansul-izq img {
    	width: 153px;
    }
}

.bloque-ansul-der {
	width: auto !important;
}

.imagen-derecha img {
	max-height: 322px;
	width: auto !important;
}

.imagen-derecha-descarga img {
	max-height: 276px;
	width: auto !important;
}

.imagen-derecha-descarga-grande img {
	max-height: 456px;
	width: auto !important;
}

.imagen-derecha-bombeo img {
	max-height: 504px;
	width: auto !important;
}

.imagen-derecha-carcasa-2 img {
	max-height: 309px;
	width: auto !important;
}

.imagen-derecha-vertical-en-linea-2 img {
	max-height: 288px;
	width: auto !important;
}

.imagen-derecha-seccion-caracteristicas img {
	max-height: 254px;
	width: auto !important;
}

.imagen-derecha-seccion-descripcion-skid img {
	max-height: 310px;
	width: auto !important;
}

.imagen-derecha-a101 img {
	max-height: 267px;
	width: auto !important;
}

.imagen-derecha-lvs img {
	max-height: 268px;
	width: auto !important;
}

.imagen-derecha-checkfire img {
	max-height: 252px;
	width: auto !important;
}

.imagen-derecha-r102 img {
	max-height: 289px;
	width: auto !important;
}

.imagen-derecha-r102-aplicaciones img {
	max-height: 267px;
	width: auto !important;
}

.imagen-derecha-piranha-descripcion img {
	max-height: 250px;
	width: auto !important;
}

.imagen-derecha-piranha-aplicaciones img {
	max-height: 209px;
	width: auto !important;
}

.imagen-derecha-kguard-descripcion img {
	max-height: 296px;
	width: auto !important;
}

.imagen-derecha-kguard-aplicaciones img {
	max-height: 209px;
	width: auto !important;
}

.imagen-derecha-pres-interna-quimico-seco img {
	max-height: 503px;
	width: auto !important;
}

.imagen-derecha-pres-interna-sentry img {
	max-height: 303px;
	width: auto !important;
}

.imagen-derecha-pres-externa-descripcion img {
	max-height: 254px;
	width: auto !important;
}

.imagen-derecha-rodantes-sentry img {
	max-height: 262px;
	width: auto !important;
}

.imagen-derecha-pres-firedetec-descripcion img {
	max-height: 254px;
	width: auto !important;
}

.vineta-rociadores ul {
	padding-inline-start: 20px !important;
	font-family: "Montserrat", dm;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 18px;
	color: white;
}

.recuadro-lineal-calor {
	min-height: 194px;
}

@media (min-width: 768px) {
    .recuadro-nuestros-servicios {
    	min-height: 157px;
    }

    .recuadro-fitting {
    	min-height: 142px;
    }

    .recuadro-rociadores {
	    min-height: 142px;
    }

    .recuadro-valvulas {
	    min-height: 145px;
    }

    .recuadro-hidrantes {
	    min-height: 145px;
    }

    .recuadro-bombeo {
	    min-height: 145px;
    }
}

.recuadro-agua-nebulizada {
	min-height: 173px;
}

.recuadro-firedetec {
	min-height: 173px;
}

.recuadro-monarch {
	min-height: 173px;
}

.recuadro-compact {
	min-height: 173px;
}

.contenido-valvulas-otras ul {
	padding-inline-start: 28px !important;
	color: white;
	font-family: "Montserrat", dm;
	font-size: 17.33px;
	font-weight: 300;
	line-height: 21px;
}

.vineta-en-recuadro ul {
	padding-inline-start: 15px !important;
	color: #EBEBEB;
	font-family: "Montserrat", dm;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}

.vineta-en-recuadro-a101 ul {
	padding-inline-start: 15px !important;
	color: #EBEBEB;
	font-family: "Montserrat", dm;
	font-size: 13.4px;
	font-weight: 400;
	line-height: 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.vineta-en-recuadro-checkfire ul {
	padding-inline-start: 15px !important;
	color: #EBEBEB;
	font-family: "Montserrat", dm;
	font-size: 13.4px;
	font-weight: 400;
	line-height: 18px;
}

.vineta-en-recuadro-nuestros-servicios ul {
	padding-inline-start: 15px !important;
	color: #EBEBEB;
	font-family: "Montserrat", dm;
	font-size: 13.4px;
	font-weight: 400;
	line-height: 16px;
}

.vineta-sobre-nosotros ul {
	padding-inline-start: 40px !important;
	font-family: "Montserrat", dm;
	font-size: 20px;
	font-weight: 300;
	line-height: 26px;
	color: white;
}

.vineta-sobre-nosotros li:not(:first-child) {
	padding-top: 22px;
}

/* Elementos del bloque 'Soluciones y productos' en las páginas de 'Soliciones por cluster' */

.contenedor-bloque-soluciones .elementor-element-populated {
    gap: 60px;
}

.item-bloque-soluciones {
    max-width: 349px;
    margin: 0 !important;
}

.item-bloque-soluciones .elementor-image-box-wrapper {
    aspect-ratio: 0.6575;
    border-radius: 5px;
    overflow: hidden;
}

.item-bloque-soluciones .elementor-image-box-img {
    width: 100%;
}

.item-bloque-soluciones .elementor-image-box-img img {
    width: 100%;
    opacity: 0.7;
}

.item-bloque-soluciones .elementor-image-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(23, 25, 30, 0.43);
    display: flex;
    border-radius: 5px;
}

.item-bloque-soluciones .elementor-image-box-title {
    flex: 1;
    margin: 0;
    display: flex; /* Usar flexbox para alinear el texto e ícono */
}

.item-bloque-soluciones .elementor-image-box-title a {
    color: white;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    height: 54px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Texto a la izquierda, icono a la derecha */
}

.item-bloque-soluciones .elementor-image-box-title a::after {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    transform: rotate(-45deg);
    display: inline-block;
    font-size: 1.5rem;
    color: white;
    margin-left: 10px;
}

/* Elementos del bloque 'Servicios' en las páginas de 'Soliciones por cluster' */

.contenedor-bloque-servicios .elementor-element-populated {
    gap: 30px;
}

.item-bloque-servicios {
    max-width: 569px;
    margin: 0 !important;
}

.item-bloque-servicios .elementor-image-box-wrapper {
    aspect-ratio: 1.885;
    border-radius: 5px;
    overflow: hidden;
}

.item-bloque-servicios .elementor-image-box-img {
    width: 100%;
}

.item-bloque-servicios .elementor-image-box-img img {
    width: 100%;
}

.item-bloque-servicios .elementor-image-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, rgba(84, 84, 84, 0.6), rgba(176, 176, 176, 0.6));
    display: flex;
    border-radius: 5px;
}

.item-bloque-servicios .elementor-image-box-title {
    flex: 1;
    margin: 0;
    display: flex; /* Usar flexbox para alinear el texto e ícono */
}

.item-bloque-servicios .elementor-image-box-title a {
    color: white;
    font-size: 19px;
    line-height: 19px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    height: 54px;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

/* ------ */

.graficos-mineria .elementor-image-box-content {
    width: auto !important;
}

.recuadro-sombra-inferior-rojo::before {
  content: "";
  position: absolute;
  height: 30px;
  left: 8px;
  right: 8px;
  bottom: -10px;
  border-radius: 13px; /* Solo la sombra será redondeada */
  z-index: 0; /* Coloca la sombra detrás del elemento */
  background-color: #6D150E;
}

.recuadro-sombra-inferior-gris-oscuro::before {
  content: "";
  position: absolute;
  height: 30px;
  left: 8px;
  right: 8px;
  bottom: -10px;
  border-radius: 13px; /* Solo la sombra será redondeada */
  z-index: 0; /* Coloca la sombra detrás del elemento */
  background-color: #3A3A3A;
}

.recuadro-sombra-inferior-gris-claro::before {
  content: "";
  position: absolute;
  height: 30px;
  left: 8px;
  right: 8px;
  bottom: -10px;
  border-radius: 13px; /* Solo la sombra será redondeada */
  z-index: 0; /* Coloca la sombra detrás del elemento */
  background-color: #808080;
}

.fitflow-link-inscripcion {
	background-color: #da291c;
	color: white;
	padding: 9px 12px 9px 12px;
	border: 1px solid #901B12;
	border-radius: 20px;
	font-size: 16px;
	line-height: 16px;
	cursor: pointer;
	font-weight: 700;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	font-family: "Montserrat", dm;
}

.fitflow-link-inscripcion:hover {
  background-color: rgba(227, 6, 19, 0.5); /* Mantener el mismo color de fondo en hover */
  border: 1px solid rgba(144, 27, 18, 0.5);;
  color: white; /* Mantener el mismo color de texto en hover */
  text-decoration: none; /* Evitar subrayado al pasar el ratón */
}

.fitflow-link-inscripcion .fa-link {
	margin-right: 8px;
}

/* Elementos de la página 'Novedades' */

.contenedor-bloque-novedades .elementor-element-populated {
    gap: 60px;
}

.item-bloque-novedades {
    max-width: 349px;
    margin: 0 !important;
    padding-bottom: 48px;
}

.item-bloque-novedades .elementor-image-box-wrapper {
    aspect-ratio: 2.0478;
    overflow: hidden;
}

.item-bloque-novedades .elementor-image-box-img {
    width: 100%;
}

.item-bloque-novedades .elementor-image-box-img img {
    width: 100%;
    border-top: 1px solid #6d6e71;
    border-left: 1px solid #6d6e71;
    border-right: 1px solid #6d6e71;
}

.item-bloque-novedades .elementor-image-box-content {
    position: absolute;
    top: 183px;
    width: 100% !important;
}

.item-bloque-novedades .elementor-image-box-title {
    margin: 0;
    height: 36px;
    color: white;
    font-size: 11px;
    line-height: 15px;
    font-weight: 700;
    padding: 0 8px;
    text-align: left;
    font-family: "Montserrat", dm;
}

.item-bloque-novedades .elementor-image-box-description {
    padding: 0 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-bloque-novedades .elementor-image-box-description .novedades-izq {
    color: white;
    font-size: 10px;
    line-height: 10px;
    font-weight: 400;
    font-family: "Montserrat", dm;
}

.item-bloque-novedades .elementor-image-box-description .novedades-der {
    background-color: #DA291C;
    padding: 5px 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 9px;
    line-height: 9px;
    font-family: "Montserrat", dm;
}

.item-bloque-novedades .elementor-image-box-description .novedades-der:hover {
  background-color: rgba(218, 41, 28, 0.5);
}

.item-bloque-novedades .elementor-image-box-description .novedades-der a {
    color: white;
    text-decoration: none;
}

.item-bloque-novedades::before {
    content: "";
    position: absolute;
    top: 170px;
    left: 0px;
    right: 0px;
    bottom: 40px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background-color: #B52217;
    border-top: 1px solid #6d6e71;
    border-bottom: 1px solid #5B110C;
}

/* ------ */

@media (max-width: 767px) {
    .fire-school-logo .elementor-widget-container {
        text-align: center;
    }
    
    .fire-school-flecha .elementor-widget-container {
        text-align: center;
    }
    
    .fire-school-flecha img {
        width: 58px;
        height: auto;
        position: relative;
        top: -32px;
        right: -118px;
    }
}

@media (min-width: 768px) {
    .fire-school-logo .elementor-widget-container {
        text-align: right;
    }
    
    .fire-school-flecha .elementor-widget-container {
        text-align: right;
    }
    
    .fire-school-flecha img {
        width: 58px;
        height: auto;
        position: absolute;
        top: -32px;
        right: 14px;
    }
}

.fire-school-logo img {
    border: 3px solid #ffffff;
    padding: 14px 20px;
    width: 263px;
    height: auto;
    border-radius: 20px;  
    margin-right: 58px;
}

.newsletter-boton .elementor-button:hover {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.newsletter-imagen-mano img {
    width: 37px;
    height: auto;
    position: absolute;
    top: -18px;
    right: 3px;
}

.footer-bandera-pais {
    padding-bottom: 5px;
}

.footer-bandera-pais img {
    width: 39px !important;
    display: block;
}

.footer-bandera-pais .elementor-image-box-wrapper {
    display: flex;
    align-items: center;
}

.footer-menu a {
    cursor: pointer;
}

.footer-menu .elementor-icon-list-text:hover {
    color: #9F9F9F !important;
}

/* ------ */

.contactanos-bandera-pais img {
    width: 55px !important;
    height: auto;
}

.contactanos-bandera-pais .elementor-image-box-content {
    width: auto;
}

/* 28-10-2025 */
@media (min-width: 768px) {
    .contactanos-seccion-formulario > .elementor-container {
        max-width: min(89%, 984px) !important;
    }
}
/* Fin 28-10-2025 */

@media (min-width: 768px) {
    .contactanos-seccion-formulario .elementor-element-d86805e {
        width: 72% !important;
    }

    .contactanos-seccion-formulario .elementor-element-745cd6e7 {
        width: 28% !important;
    }
}

.contactanos-columna-formulario {
    background-color: #242425;
    color: white;
    border-radius: 29px;
	font-family: "Montserrat", dm;
}

.contactanos-cabecera {
    .titulo {
        font-weight: 700;
        font-size: 24.1px;
        line-height: 30px;
    }
    
    .botones {
        display: flex;
        justify-content: center;
        gap: 50px;
        margin-top: 31px;
    }
    
    @media (max-width: 767px) {
        .botones {
            flex-direction: column;
            gap: 25px !important;
        }
    }
    
    .boton {
        padding: 10px 0;
        font-weight: 700;
        font-size: 20px;
        border-radius: 18px;
        text-align: center;
    }
    
    @media (min-width: 768px) {
        .boton {
            width: 266px;
        }
    }

    .boton-inactivo {
        background-color: #a4221f;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .boton-inactivo:hover {
        background-color: rgba(225, 33, 28, 0.8);
    }    

    .boton-activo {
        background-color: #e1211c !important;
        cursor: default;
    }
    
    .texto {
        font-style: italic;
        font-size: 16.1px;
        line-height: 22px;
        margin-top: 20px;
    }
}

.contactanos-fila-campos {
    display: flex;
    gap: 32px;
}

@media (max-width: 767px) {
    .contactanos-fila-campos {
        flex-direction: column;
        gap: 18px !important;
    }
}

@media (max-width: 767px) {
    .boton-enviar p {
        width: 295px;
    }
}

@media (min-width: 768px) {
    .boton-enviar {
        padding-left: 72px;
    }
}

.contactanos-formulario label {
    width: 100%;
}

.contactanos-formulario p {
    margin: 0 !important;
}

.contactanos-formulario input[type="text"],
.contactanos-formulario input[type="email"],
.contactanos-formulario input[type="tel"],
.contactanos-formulario input[type="file"] {
    background: transparent;
    border: none !important;
    border-bottom: 1px solid #cacaca !important;
    border-radius: 0 !important;
    color: white;
    font-size: 16px;
    transition: border-color 0.3s;
    padding: 6px;
    margin-top: 3px;
}

.contactanos-formulario input[type="file"] {
    height: 37px;
    width: 100%;
    cursor: pointer;
}

.contactanos-formulario textarea {
    background-color: #737474;
    border: none !important;
    padding: 7px 16px !important;
    border-radius: 14px !important;
    color: white;
    font-size: 16px;
    line-height: 20px;
    height: 112px;
}

.contactanos-formulario input[type="text"]:focus,
.contactanos-formulario input[type="email"]:focus,
.contactanos-formulario input[type="tel"]:focus,
.contactanos-formulario input[type="file"]:focus,
.contactanos-formulario textarea:focus,
.contactanos-formulario select:focus {
    outline: none;
}

.contactanos-formulario input[type="text"]:focus,
.contactanos-formulario input[type="email"]:focus,
.contactanos-formulario input[type="tel"]:focus,
.contactanos-formulario select:focus {
    border-bottom: 1px solid #fff !important;
}

.contactanos-formulario select {
    background: transparent url('/wp-content/uploads/2025/04/flechita-blanca.svg') no-repeat right 0.75rem center;
    background-color: #242425;
    border: none !important;
    border-bottom: 1px solid #cacaca !important;
    border-radius: 0 !important;
    color: white;
    padding: 6px;
    margin-top: 3px;
    font-size: 16px;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Estiliza el botón "Seleccionar archivo" */
.contactanos-formulario input[type="file"]::file-selector-button {
  background: transparent;
  color: white;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 1px 7px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  transition: border-color 0.3s, color 0.3s;
}

/* Hover del botón */
.contactanos-formulario input[type="file"]::file-selector-button:hover {
  border-color: #fff;
}

/* Ajuste para Firefox (usa pseudo-elemento distinto) */
@supports selector(::-moz-file-upload-button) {
  .contactanos-formulario input[type="file"]::-moz-file-upload-button {
    background: transparent;
    color: white;
    border: 1px solid #999;
    border-radius: 3px;
    padding: 1px 7px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
  }
}

.contactanos-formulario .etiqueta {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    padding: 0 5px 5px;
}

.contactanos-formulario input[type="submit"] {
    margin-top: 17px;
    background-color: #DA291C;
    font-size: 23px;
    line-height: 23px;
    font-weight: 700;
    padding: 11px 0 !important;
    border-radius: 8px !important;
    border: none !important;
    color: white;
    width: 295px;
}

.contactanos-formulario input[type="submit"]:hover {
    background-color: rgba(218, 41, 28, 0.5);
}

.contactanos-formulario .wpcf7-not-valid-tip {
    padding-left: 6px;
    padding-top: 6px;
    color: #DA291C;
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
}

.wpcf7-response-output {
   font-size: 13px;
   font-weight: 500;
   border-color: #DA291C !important;
   border-radius: 10px;
}

/* ------ */

.trabaja-formulario {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 29px;
	font-family: "Montserrat", dm;
}

.trabaja-formulario label {
    width: 100%;
}

.trabaja-formulario p {
    margin: 0 !important;
}

.trabaja-formulario input, .trabaja-formulario select, .trabaja-formulario textarea {
    background-color: #8D8F90;
    border: none !important;
    padding: 7px 16px !important;
    border-radius: 20px !important;
    color: white;
    font-size: 14px;
    line-height: 18px;
}

.trabaja-formulario input:focus, .trabaja-formulario select:focus, .trabaja-formulario textarea:focus {
  outline: none;
}

.trabaja-formulario select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #8D8F90 url('/wp-content/uploads/2025/04/flechita-blanca.svg') no-repeat right 0.75rem center;
}

.trabaja-formulario input[type="file"] {
    padding: 4px 16px !important;
    width: 100%;
}

.trabaja-formulario textarea {
    height: 104px;
}

.trabaja-formulario .etiqueta {
    font-size: 15.2px;
    line-height: 16px;
    font-weight: 700;
    padding-bottom: 5px;
    padding-left: 7px;
}

.trabaja-formulario .etiqueta:not(.primera-etiqueta) {
    padding-top: 16px;
}

.trabaja-formulario input[type="submit"] {
    margin-top: 17px;
    background-color: #DA291C;
    font-size: 16.8px;
    line-height: 18px;
    font-weight: 700;
    padding: 10px 24px !important;
    border-radius: 10px !important;
}

.trabaja-formulario input[type="submit"]:hover {
    background-color: rgba(218, 41, 28, 0.5);
}

.trabaja-formulario .wpcf7-not-valid-tip {
    padding-left: 16px;
    color: #DA291C;
    font-size: 13px;
    font-weight: 500;
}

.sobre-nosotros-seccion-valores .elementor-container {
    flex-wrap: nowrap !important;
}

@media (max-width: 767px) {
    .sobre-nosotros-titulo-seccion {
        font-size: 42px;
        line-height: 48px;
    }
}

@media (min-width: 768px) {
    .sobre-nosotros-titulo-seccion {
        font-size: 45px;
        line-height: 57px;
    }
}

.servicios-imagen-circular .elementor-container {
    flex-wrap: nowrap !important;
}

@media (max-width: 767px) {
    .servicios-imagen-circular .lista-items-reduciendo {
        position: absolute;
        /*width: 120px !important;*/
        /*right: 0;*/
        top: 128px;
    }
    
    .lista-mineria {
    	font-family: "Montserrat", dm;
    	font-size: 12px;
    	line-height: 18px;
    	font-weight: 600;
    	color: white;
    }
    
    .servicios-imagen-circular .item-aumentando-reduciendo {
        min-width: 23px;
    }

    .servicios-imagen-circular .item-aumentando-reduciendo img {
        width: 23px;
    }

    .servicios-imagen-circular .descripcion-item-imagen-circular {
        font-size: 9px;
        line-height: 12px !important;
        padding-top: 4px;        
    }
    
    .servicios-imagen-circular .servicios-columna-izq {
        /*justify-content: end;*/
        margin-right: 10px;
    }

    .servicios-imagen-circular .servicios-columna-der {
        /*justify-content: start;*/
        margin-left: 10px;
    }
    
    .servicios-imagen-circular .servicios-columna-izq .elementor-widget-wrap {
        width: 100%;
        max-width: 257px;
    }
    
    .servicios-imagen-circular .servicios-columna-der .elementor-widget-wrap {
        width: 100%;
        max-width: 257px;
    }
    
    .servicios-imagen-circular .servicios-columna-izq .elementor-widget-wrap .elementor-element {
        min-width: 100%;
    }
    
    .servicios-imagen-circular .servicios-columna-der .elementor-widget-wrap .elementor-element {
        min-width: 100%;
    }
}

@media (min-width: 768px) {
    .lista-mineria {
    	font-family: "Montserrat", dm;
    	font-size: 16px;
    	line-height: 24px;
    	font-weight: 600;
    	color: white;
    }    
    
    .servicios-imagen-circular .item-aumentando-reduciendo {
        min-width: 31px;
    }

    .servicios-imagen-circular .item-aumentando-reduciendo img {
        width: 31px;
    }
    
    .servicios-imagen-circular .descripcion-item-imagen-circular {
        font-size: 13.4px;
        padding-top: 8px;        
    }
}

.propuesta-valor-item-mobile {
    margin-left: -25px;    
    width: auto !important;
}

.propuesta-valor-item-mobile:not(:first-child) {
    margin-top: 25px;
}

.propuesta-valor-item-mobile .elementor-image-box-wrapper {
    display: flex;
    flex-direction: row;
}

.propuesta-valor-item-mobile .elementor-image-box-content {
    padding-left: 20px;
}

.propuesta-valor-item-mobile .elementor-image-box-title {
	font-family: "Montserrat", dm;
	font-size: 22px; /*24.5px;*/
	line-height: 26px;
	font-weight: 600;
	color: white;
}

.propuesta-valor-item-mobile .elementor-image-box-description {
	font-family: "Montserrat", dm;
	font-size: 17px; /*19px;*/
	line-height: 21px;
	font-weight: 400;
	color: white;
	padding-top: 10px;
}

.propuesta-valor-item-mobile .elementor-image-box-img {
	width: 102px !important;
	margin: 0 !important;
	position: relative;
}

.propuesta-valor-item-mobile .elementor-image-box-img img {
	max-width: 102px !important;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.titulo-con-enlace-home a:hover {
    font-weight: 800 !important;
    color: white !important;
}

@media (max-width: 970px) and (min-width: 381px) {
    .seccion-banderas-footer .elementor-col-20 {
        width: 50% !important;
    }
}

@media (max-width: 380px) {
    .seccion-banderas-footer .elementor-col-20 {
        width: 100% !important;
    }
}

.acordeon-menu .elementor-tab-content div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 298px;
}

.acordeon-menu .elementor-tab-content div:not(:last-child) {
    padding-bottom: 15px;
}

.enlace-menu-con-flecha .elementor-heading-title a::before {
    content: '';
    position: absolute;
    background-image: url('/staging/8572/wp-content/uploads/2025/04/flecha-enlace-reducida.png');
    background-size: cover;
    z-index: 1000;
    top: 5px;
    left: 0px;
    width: 10px;
    height: 10px;
}

.acordeon-menu .elementor-accordion-icon {
    display: flex !important;
    align-items: center;
    height: 22px;
}

.seccion-banner-home {
    height: 426px !important;
    overflow: hidden;
}

img {
    pointer-events: none;
}

.contenedor-galeria-novedades .elementor-shortcode {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.mensaje-sin-novedades {
	font-family: "Montserrat", dm;
	font-size: 18px;
	line-height: 23px;
	font-weight: 500;
	color: white;
}

.contenedor-galeria-capacitaciones .elementor-shortcode {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

@media (max-width: 898px) {
    .contenedor-galeria-capacitaciones .galeria-capacitaciones-item {
        padding: 0;
    }
}

@media (min-width: 899px) {
    .contenedor-galeria-capacitaciones .galeria-capacitaciones-item {
        padding: 0 20px;
    }
}

.acordeon-cerrar .elementor-accordion .elementor-accordion-item:first-of-type {
    display: none;
}

@media (min-width: 768px) {
    .footer-columna-izquierda {
        width: 80% !important;
    }
    
    .footer-columna-enlaces {
        width: 16.6% !important;
    }
    
    .footer-columna-enlaces-ultima {
        width: 33.6% !important;
    }
}

/* Inicio 22-07-2025 (buscador general) */

.columna-logo-header img {
    vertical-align: middle;
}

@media (min-width: 768px) and (max-width: 1218px) {
    .columna-logo-header {
        width: 28% !important;
    }
    
    .columna-buscador-header {
        width: 41% !important;
    }
    
    .columna-botones-header {
        width: 31% !important;
    }
}

@media (min-width: 1219px) {
    .columna-logo-header {
        width: 23% !important;
    }
    
    .columna-buscador-header {
        width: 51% !important;
    }
    
    .columna-botones-header {
        width: 26% !important;
    }
}

/* Fin 22-07-2025 */

/* 27-08-2025 */

/*
.seccion-encabezado-contactanos:after {
    content: 'Déjanos tus datos y un asesor se comunicará contigo a la brevedad, para brindarte toda la información que necesites';
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;   
	font-family: "Montserrat", dm;
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.78);
	padding: 22px;
}
*/

.contenedor-botones-rojos {
    display: flex;
    gap: 15px;
    flex-direction: row;
}

@media (max-width: 767px) {
    .contenedor-botones-rojos {
        flex-direction: column !important;
    }
}

/* Fin 27-08-2025 */

/* 05-11-2025 */

.icono-ecommerce {
    cursor: pointer;
    height: 27px !important;
    display: block;
}

.header-padding-top > div {
    padding-top: 13px !important;
}

.header-padding-top-peru > div {
    padding-top: 9px !important;
}

.columna-buscador-header-peru {
    width: 48% !important;
}

.columna-botones-header-peru {
    width: 29% !important;
}

/* Fin 05-11-2025 */
