@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Readex+Pro:wght@160..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
	margin:0;
	box-sizing: border-box;
}

html {
    scroll-padding-top: 80px; /* Ajusta para que el navbar fijo no tape la sección */
}

section {
    padding-top: 100px; /* Ajusta este valor según la altura de tu navbar */
}

body{
	line-height: 1.5;
	font-family: 'Readex Pro', sans-serif;
	font-weight: 400;
	/*background-image: url('../img/Baco\ Web\ Fondo\ de\ Pantalla.png');*/
	background: black;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 12px 12px; /* Patrón más sutil */
}

body.hidden-scrolling{
	overflow-y: hidden;
}

.container{
	max-width: 1440px;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
/*header*/
.header{
	position: sticky;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 15px;
	background:linear-gradient(black, rgb(32, 31, 31), rgb(49, 48, 48))
}
.header-main{
	background-color: #F3F1F1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-radius: 4px;
	box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
.header .logo{
	padding: 0 30px 0;
}

.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 30px;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	transition: all 0.3s ease;
	
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #666666;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #666666;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #F3F1F1;
	padding: 10px 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
	border-radius: 20px;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 400;
	color: #000000;
	transition: all 0.3s ease;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: #F3F1F1;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/* ====== SECCIÓN PRINCIPAL ====== */
.home-section {
	position: relative;
	display: flex;
	width: 100%;
	height: auto;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
	color: #e4e2df;
	gap: 50px;
	flex-wrap: wrap;

	/* Fondo con patrón */
	background: black;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 12px 12px; /* Patrón más sutil */
	margin-bottom: 90px;
}

/* ====== COLUMNA DE TEXTO ====== */
.home-section .columna {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 600px;
	gap: 50px;
}

.home-section .columna .content h1 {
	font-weight: 700;
	font-size: 48px;
	line-height: 1.2;
	width: 100%;
	text-align: left;
	margin-bottom: 60px;
}

.home-section .columna .content p {
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 50px;
}

/* ====== IMAGEN DEL LOGO BACO ====== */
.imagen-logo {
	position: relative;
	width: 100%;
	max-width: 550px;
	background-color: rgba(0, 0, 0, 0.85); /* Mayor integración con el fondo */
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 25px;
	transition: transform 0.3s ease-in-out;
}

.imagen-logo:hover {
	transform: scale(1.05); /* Pequeño zoom al pasar el mouse */
}

/* ====== LOGO BACO ====== */
.imagen-logo .baco-logo-home {
	width: 100%;
	max-width: 480px;
	height: auto;
	filter: brightness(90%); /* Ajuste en la opacidad del logo */
	transition: filter 0.3s ease-in-out;
}

.imagen-logo:hover .baco-logo-home {
	filter: brightness(100%);
}

/* ====== CONTENIDO SOBRE EL LOGO (HOVER) ====== */
.imagen-logo .imagen .content {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.1); /* Más transparencia */
	backdrop-filter: blur(50px); /* Efecto de desenfoque */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	font-weight: 300;
	color: #e4e2df;
	font-size: 20px;
	padding: 30px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.imagen-logo:hover .imagen .content {
	opacity: 1;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
	.home-section {
		flex-direction: column;
		gap: 40px;
		padding: 50px 20px;
	}

	.home-section .columna .content h1 {
		font-size: 42px;
		text-align: center;
	}

	.home-section .columna .content p {
		font-size: 20px;
		text-align: center;
	}

	.imagen-logo {
		width: 90%;
	}

	.imagen-logo .baco-logo-home {
		max-width: 400px;
	}
}

@media (max-width: 768px) {
	.home-section {
		padding: 40px 20px;
		text-align: center;
	}

	.home-section .columna {
		align-items: center;
		text-align: center;
	}

	.home-section .columna .content h1 {
		font-size: 32px;
		line-height: 1.2;
	}

	.home-section .columna .content p {
		font-size: 18px;
	}

	.imagen-logo {
		width: 100%;
		height: auto;
		left: 0;
	}

	.imagen-logo .baco-logo-home {
		width: 80%;
		margin: 0 auto;
	}
}

.header-content {
    max-width: 1200px;
    margin: auto;
	align-items: center;
}
.header2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    text-align: center;
    color: #e4e2df;

    /* Fondo oscuro con patrón */
    background: black;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 12px 12px;
    
    /* Asegurar alineación con el separador */
    position: relative;
}

/* ====== CONTENEDOR DEL TEXTO ====== */
.header2 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
	
}

.header2 .container h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    color: #e4e2df;
}

.header2 .container p {
    font-size: 24px;
    line-height: 150%;
    font-weight: 400;
    color: #d1d1d1;
}

.separador-label {
    width: 100%;
	height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
	background-color: #000;
}

.separador {
    width: 100%;
    height: auto;
    display: block;
	background: none;
}

.nosotros {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(to bottom,#000, #222, #000000);
    color: #e4e2df;
}

.nosotros .titulo{
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;

}

/* Ajustamos el carrusel */
.swiper {
    width: 100%;
    max-width: 100%; /* Ocupa todo el ancho */
    height: 500px;
	border-radius: 10px;
}

/* Ajustamos cada slide */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
	border-radius: 10px;
}

/* La imagen del slider ahora ocupa todo el ancho */
.slider-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 0px; /* Quitamos bordes redondeados */
}

/* Centramos y aumentamos el texto */
.slider-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px; /* Más ancho */
}

.slider-txt h1 {
    font-size: 36px; /* Aumentado */
    font-weight: 700;
    margin-bottom: 15px;
}

.slider-txt p {
    font-size: 24px; /* Aumentado */
    font-weight: 400;
    line-height: 1.6;
}

.slider-txt ul{
	font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
}

.swiper-button-next,
.swiper-button-prev {
    color: #b3b3b3 !important; /* Un gris claro */
	border-radius: 30px;
	padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Efecto hover para mejor interacción */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #999999 !important; /* Gris más oscuro al pasar el mouse */
	transform: scale(1.2); /* Efecto de agrandamiento */
}


/* 📌 Ajustamos la paginación (bullets) */
.swiper-pagination {
    bottom: 15px !important; /* 🔹 Subimos los bullets */
}

.swiper-pagination-bullet {
    background: #aaa !important; /* 🔹 Gris claro */
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #666 !important; /* 🔹 Gris más oscuro */
}

.subtitulo ul{
	font-weight: 700;
}

/* Contenedor principal */

.servicios-container{
	width: 100%;
	background: linear-gradient(180.1deg, rgb(0, 0, 0), rgba(30, 30, 30, 0.4),rgba(30, 30, 30, 0.4), black);
	color: #fef3f2;
}
.seccion-servicios {
    padding: 60px 20px;
    text-align: center;
    max-width: 1300px;
    margin: auto;
}

/* Título de la sección */
.titulo-servicios h2 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.titulo-servicios h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0;
}

.titulo-servicios p {
    font-size: 24px;
    max-width: 600px;
    margin: auto;
}

/* 🏗️ Contenedor de servicios */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 🔹 4 columnas fijas */
    gap: 20px;
    margin-top: 40px;
    justify-items: center; /* Centrar contenido en las columnas */
}

/* 📌 Tarjetas */
.card {
    background: #c9c7c5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrar contenido */
    transition: transform 0.3s ease-in-out;
    padding: 20px; /* Ajuste del padding */
}

.card:hover {
    transform: translateY(-5px);
}

/* 📷 Imagen de la tarjeta */
.card img {
    width: 80%; /* Reducir el tamaño de la imagen */
    height: auto;
    object-fit: contain; /* Evita que se deforme */
    border-radius: 10px; /* Bordes redondeados */
    margin-top: 15px; /* Espaciado entre texto e imagen */
}

/* 📝 Contenido de la tarjeta */
.card-content {
    padding: 20px;
    text-align: center; /* Centrar texto */
    max-width: 90%; /* Evitar que el texto se desborde */
}

/* 🎯 Estilos del texto */
.card-content h3 {
    font-size: 28px; /* Ajuste del tamaño */
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.card-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

/* 🎯 Botón "Ver Más" */
.ver-mas {
    background: transparent;
    border: 2px solid #000;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 10px;
    font-family: inherit;
    margin-top: 10px; /* Espaciado */
}

.ver-mas:hover {
    background: #000;
    color: #fff;
}
/* 📌 MODAL - Mantiene el efecto de fondo oscuro */
.modal {
    display: none;
    position: fixed;
    top: 0; /* 🔹 Lo dejamos en la parte superior */
    left: 0;
    width: 100%;
    height: 100vh; /* 🔹 Ocupa toda la pantalla */
    background-color: rgba(0, 0, 0, 0.8); /* 🔹 Mantiene el fondo oscuro */
    justify-content: center;
    align-items: flex-start; /* 🔹 Se inicia desde arriba para dejar margen */
    overflow: hidden;
    z-index: 1000;
}

/* 📌 MODAL ACTIVO */
.modal.active {
    display: flex;
}

/* 📌 CONTENIDO DEL MODAL */
.modal-content {
    width: 90vw; /* 🔹 Ocupa el 90% del ancho de la pantalla */
    max-width: 900px;
    max-height: 85vh; /* 🔹 Limita la altura */
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 🔹 Centra el contenido */
    align-items: center;
    overflow: auto;
    margin-top: 80px; /* 🔹 Ajuste para que no esté pegado al navbar */
}

/* 📷 IMAGEN DENTRO DEL MODAL */
.modal-content img {
    width: 100%;
    max-height: 85vh; /* 🔹 Ajusta la imagen */
    object-fit: contain;
    border-radius: 10px;
}

/* ❌ BOTÓN DE CERRAR */
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}


/* 🔹 Contenedor General */
.soluciones {
    width: 100%;
    padding: 60px 5%; /* Hace que se adapte mejor */
    color: #fff;
    text-align: center;
	max-width: 1400px;
	margin: 0 auto;
}

/* 🔹 Títulos */
.soluciones h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0;
}

.soluciones p {
    font-size: 20px;
    max-width: 900px;
    margin: 15px auto;
    line-height: 1.3; /* Mayor separación entre líneas */
}

.soluciones h3{
    font-size: 20px;
    font-weight: bold;
}

/* 🔹 Contenedor de Soluciones */
.soluciones-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px; /* Más espacio entre el logo y el contenido */
    margin-top: 40px;
    max-width: 1300px;
    margin: auto;
}

/* 🔹 Logos de Soluciones */
.soluciones-logos {
    display: flex;
    flex-direction: column;
    gap: 25px;
	align-items: center ;
}

/* 🔹 Ajuste de los logos en soluciones */
.soluciones-logos button {
    width: 180px; /* 🔹 Asegura el mismo tamaño para todos los logos */
    height: 180px; /* 🔹 Asegura el mismo tamaño para todos los logos */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #797474; /* 🔹 Borde claro grueso */
    background: transparent; /* 🔹 Fondo transparente */
    border-radius: 10px; /* 🔹 Bordes redondeados */
    padding: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* 🔹 Ajustamos los logos dentro del botón */
.soluciones-logos button img {
    width: 100%; /* 🔹 Se adapta al tamaño del botón */
    height: auto;
    object-fit: contain;
}

/* 🔥 Efecto al pasar el mouse */
.soluciones-logos button:hover {
    transform: scale(1.05);
    border-color: #2f2d2d; /* 🔹 Aclara el borde en hover */
}


.solucion-btn.active {
    background: #4e4c4c;
}

.solucion-btn img {
    width: 140px;
    height: auto;
}

/* 🔹 Contenedor de Información */
.soluciones-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    text-align: center;
    min-height: 360px; /* Más espacio */
}

/* 🔹 Mostrar solo la solución activa */
.solucion-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.solucion-content.active {
    display: block;
    opacity: 1;
}

/* 🔹 Botón de "Ir a la solución" - Ahora está centrado */
.boton-solucion {
    background: #8e8c8c;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: center;  /* Centrado */
    align-items: center;
    width: fit-content;
    margin: 20px auto; /* Centra el botón horizontalmente */
	font-family: inherit;
	color: rgb(253, 253, 253);
	transition: transform 0.3s ease, color 0.3s ease;
}

.boton-solucion:hover{
    transform: scale(1.2); /* Efecto de agrandamiento */
	background-color: #ffffff;
	color: #000;
}

.redes-sociales {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(to right, #111, #222, #111); /* Fondo degradado */
    border-radius: 10px;
}

/* 🔹 Íconos más grandes */
.redes-sociales a {
    color: #fff;
    font-size: 32px; /* Aumentamos el tamaño */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* 🔹 Efecto hover: agrandar y cambiar color */
.redes-sociales a:hover {
    color: #ff8c00; /* Naranja */
    transform: scale(1.2); /* Efecto de agrandamiento */
}



/* 📩 Sección de Contacto */
.contacto {
    padding: 50px 10%;
    display: flex;
    justify-content: center;
	color: #e4e2df;
}

.contacto-container {
    display: flex;
    align-items: center; /* 🔹 Alinea verticalmente ambos elementos */
    justify-content: space-between; /* 🔹 Distribuye el espacio */
    gap: 50px; /* 🔹 Espacio entre los dos bloques */
    max-width: 1200px; /* 🔹 Para que no se extienda demasiado en pantallas grandes */
    margin: auto; /* 🔹 Centra el contenedor */
}

/* 📝 Formulario */
.formulario {
    flex: 1; /* 🔹 Ocupa el mismo espacio que el bloque de WhatsApp */
    text-align: left; /* 🔹 Asegura alineación de texto */
}

.formulario h2 {
    font-size: 48px;
    margin-bottom: 5px;
	line-height: 60px;
}

.formulario p {
    font-size: 24px;
    margin-bottom: 20px;
	position: relative;
	font-size: 24px;
	line-height: 150%;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: 600;
	font-size: 16px;
	line-height: 150%;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #1f1e1e;
    color: #fff;
	font-family: inherit;
}

textarea {
    height: 120px;
}

.formulario button {
    padding: 12px;
    background: #ccc;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
	font-family: inherit;
	transition: transform 0.3s ease, color 0.3s ease;
}

.formulario button:hover {
    transform: scale(1.2); /* Efecto de agrandamiento */
	background-color: #ffffff;
	color: #000;
}

/* 📧 Info Email */
.email-info {
    font-size: 14px;
    margin-top: 10px;
}

/* 📲 WhatsApp */
.whatsapp {
    flex: 1; /* 🔹 Mismo tamaño que el formulario */
    text-align: center;
}

.whatsapp h3 {
    font-size: 32px;
	line-height: 150%;
	display: inline-block;
}

.whatsapp img {
    width: 100px; /* 🔹 Tamaño controlado */
    max-width: 100%;
    display: block;
    margin: auto;
}

.whatsapp a {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
	transition: transform 0.3s ease, color 0.3s ease;

}

.whatsapp a:hover{
	transform: scale(1.2); /* Efecto de agrandamiento */
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .contacto-container {
        flex-direction: column;
        gap: 30px;
    }

    .whatsapp img {
        width: 150px;
    }

    input, textarea, button {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .soluciones-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center; /* 🔹 Centra el contenido */
    }

    .soluciones-logos {
        display: flex;
        flex-direction: row; /* 🔹 Logos en fila horizontal */
        justify-content: center;
        gap: 10px; /* 🔹 Espacio entre logos */
        flex-wrap: wrap; /* 🔹 Permite reacomodo si hay poco espacio */
    }

    .solucion-btn {
        width: 90px; /* 🔹 Tamaño reducido de los logos */
        height: 90px;
        padding: 5px;
    }

    .solucion-btn img {
        max-width: 150px; /* 🔹 Reduce el tamaño del logo */
        height: auto;
    }

    .soluciones-info {
        max-width: 100%;
        text-align: center;
    }

    .boton-solucion {
        width: fit-content; /* 🔹 No ocupa todo el ancho */
        margin: auto; /* 🔹 Centra el botón */
    }

    .soluciones h1 {
        font-size: 32px;
        font-weight: bold;
        margin: 10px 0;
    }
    
    .soluciones p {
        font-size: 16px;
        max-width: 900px;
        margin: 15px auto;
        line-height: 1.3; /* Mayor separación entre líneas */
    }
    
    .soluciones h3{
        font-size: 18px;
        font-weight: bold;
    }
}

@media (max-width: 768px) {
    .soluciones-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center; /* 🔹 Centra el contenido */
    }

    .soluciones-logos {
        display: flex;
        flex-direction: row; /* 🔹 Logos en fila horizontal */
        justify-content: center;
        gap: 10px; /* 🔹 Espacio entre logos */
        flex-wrap: wrap; /* 🔹 Permite reacomodo si hay poco espacio */
    }

    .solucion-btn {
        width: 10px; /* 🔹 Tamaño reducido de los logos */
        height: 10px;
        padding: 3px;
    }

    .solucion-btn img {
        max-width: 70px; /* 🔹 Reduce el tamaño del logo */
        height: auto;
    }

    .soluciones-info {
        max-width: 100%;
        text-align: center;
    }

    .boton-solucion {
        width: fit-content; /* 🔹 No ocupa todo el ancho */
        margin: auto; /* 🔹 Centra el botón */
    }

	.soluciones-logos button{
		width: 100px;
		height: 100px;
	}

    .soluciones h1 {
        font-size: 32px;
        font-weight: bold;
        margin: 10px 0;
    }
    
    .soluciones p {
        font-size: 16px;
        max-width: 900px;
        margin: 15px auto;
        line-height: 1.3; /* Mayor separación entre líneas */
    }
    
    .soluciones h3{
        font-size: 18px;
        font-weight: bold;
    }
}

/* Responsividad */
@media (max-width: 768px) {
    .servicios-grid {
        grid-template-columns: 1fr;
    }

	.modal-content {
        max-width: 90vw; /* Amplía el ancho del modal */
        max-height: 80vh; /* Ajusta la altura a un tamaño cómodo */
        padding: 20px;
        overflow-y: auto; /* Permite el scroll si el contenido es largo */
    }

    .modal-image {
        width: 100%; /* La imagen ocupa el 100% del ancho */
        height: 100%;
    }

	
}

/* 📌 Tablet (pantallas medianas) */
@media (max-width: 1024px) {
    .nosotros .titulo {
        font-size: 28px;
    }

    .swiper {
        height: 450px;
    }

    .slider-txt {
        width: 90%;
        padding: 30px;
        height: auto;
    }

    .slider-txt h1 {
        font-size: 36px;
    }

    .slider-txt p {
        font-size: 20px;
    }

    .slider-txt ul{
        font-size: 20px;
    }
}

@media (max-width: 465px) {
    .nosotros .titulo {
        font-size: 28px;
    }

    .swiper {
        height: 450px;
    }

    .slider-txt {
        width: 90%;
        padding: 20px;
        height: auto;
    }

    .slider-txt h1 {
        font-size: 30px;
    }

    .slider-txt p {
        font-size: 14px;
    }

    .slider-txt ul{
        font-size: 14px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        padding: 15px;
        width: 15px;
        height: 15px;
        transform: scale(0.9);

    }
}

@media (max-width: 378px) {

    .swiper {
        height: 450px;
    }

    .slider-txt {
        width: 90%;
        padding: 20px;
        height: auto;
    }


    .nosotros .titulo {
        font-size: 28px;
    }

    .slider-txt h1 {
        font-size: 30px;
    }

    .slider-txt p {
        font-size: 13px;
    }

    .slider-txt ul{
        font-size: 13px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        padding: 10px;
        width: 10px;
        height: 10px;
        transform: scale(0.7);

    }
}

@media (max-width: 325px) {
    .nosotros .titulo {
        font-size: 28px;
    }

    .slider-txt h1 {
        font-size: 28px;
    }

    .slider-txt p {
        font-size: 12px;
    }

    .slider-txt ul{
        font-size: 12px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        padding: 5px;
        width: 5px;
        height: 5px;
        transform: scale(0.6); /* Hacemos las flechas más pequeñas */
    }
}


/* responsive header menu*/

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		color: #F3F1F1;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
		border-radius: 10px;
		background-color: #F3F1F1;
	}
}

/* Tablets (pantallas menores a 1024px) */
@media (max-width: 1024px) {
	.home-section {
		flex-direction: column;
		height: auto;
		padding: 60px 20px;
	}

	.home-section .columna .content h1 {
		font-size: 42px;
		text-align: center;
	}

	.home-section .columna .content p {
		font-size: 20px;
	}

	.imagen-logo {
		width: 90%;
	}

}

/* Móviles (pantallas menores a 768px) */
@media (max-width: 768px) {
	.home-section {
		padding: 40px 20px;
		text-align: center;
	}

	.home-section .columna {
		align-items: center;
		text-align: center;
	}

	.home-section .columna .content h1 {
		font-size: 30px;
		line-height: 1.2;
	}

	.home-section .columna .content p {
		font-size: 16px;
	}

	.imagen-logo {
		width: 100%;
		height: auto;
		left: 0;
	}

	.imagen-logo .baco-logo-home {
		width: 80%;
		margin: 0 auto;
		height: fit-content;
	}

	.imagen-logo .imagen .content{
		margin: 0 auto;
		font-size: small;
	}

	.header2 {
		padding: 40px 20px;
	}

	.header2 .container h1 {
		font-size: 32px;
	}

	.header2 .container p {
		font-size: 18px;
	}
}

/* 🎨 Estilos del Footer */
.footer {
    width: 100%;
    background: linear-gradient(180deg, #555 0%, #333 100%);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    width: 90%;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

/* 🖼️ Logo */
.footer-logo img {
    width: 120px;
}

/* 📄 Texto */
.footer-text {
    font-size: 14px;
    color: #fff;
}

/* 🔗 Política de Privacidad */
.footer-policy a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-logo img {
        width: 100px;
    }

    .footer-text, .footer-policy a {
        font-size: 12px;
    }
}

