@import url('css.css');
@import url('menu.css');
@import url('social.css');
@import url('nav.css');
@import url('productos.css');
@import url('carrusel.css');
@import url('final.css');
@import url('QS.css');
@import url('articulos.css');
body {
   
    
  
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* Loader (Pantalla de carga) */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent; /* Fondo semitransparente */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px); /* Desenfoque del fondo */
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

/* Logo de carga con levitación */
.loader-logo {
    width: 600px; /* Ajusta el tamaño del logo */
    animation: spin 2s linear infinite, levitate 3s ease-in-out infinite;
}

/* Animación de rotación */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animación de levitación */
@keyframes levitate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Efecto fade-in para el contenido */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Ocultar loader después de la carga */
.hide-loader {
    opacity: 0;
    pointer-events: none;
}
.glass-effect3 {
    margin-top: 95px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 55px;
    padding: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-to-top {
	width: 60px;
	height: 60px;
    position: fixed;
    bottom: 20px; /* Ajusta la posición desde el fondo */
    right: 20px; /* Ajusta la posición desde la derecha */
    background-color: #57cae5; /* Color de fondo del botón */
    color: white; /* Color del texto */
    border: none; /* Sin borde */
    border-radius: 5px; /* Bordes redondeados */
    padding: 10px 15px; /* Espaciado interno */
    font-size: 16px; /* Tamaño de fuente */
    cursor: pointer; /* Cursor pointer al pasar el mouse */
    transition: background-color 0.3s ease; /* Transición para el color de fondo */
    display: none; /* Inicialmente oculto */
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
}

.scroll-to-top:hover {
    background-color: #45a3c3; /* Cambia el color al hacer hover */
}

/* Estilo del botón de WhatsApp */


/* Animación de salto */
@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Ajusta la altura del salto */
    }
}

.center {
	width: 80%;
	margin: 0 auto;
}

.article {
	padding: 20px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	background-color: #fff;
	border-radius: 8px;
	text-align: center;
}

img {
	max-width: 100%;
	border-radius: 8px;
}
/* Estilos de la sección */
.feature-section {
    text-align: center;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;

}

.feature-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Estilos del contenedor de iconos */
.icon-container {
    display: flex;
    justify-content: space-around;
    gap: 5px;
}

.icon-box {
	padding: 10px;
	margin: 10px;
	width: 100px;
	height: 80px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.icon-box img {
    width: 200px;
    height: 200px;
    transition: transform 0.3s ease;
}

.icon-box p {
    margin-top: 8px;
    font-size: 14px;
    color: #333;
}

/* Efecto de hover en los iconos */
.icon-box:hover {
    transform: translateY(-10px); /* Eleva el icono */
    background-color: rgba(52, 152, 219, 0.1); /* Fondo con color suave */
    border-radius: 10px;
}

.icon-box:hover img {
    transform: scale(1.2); /* Agranda el icono */
}
@media (max-width: 768px) {
    .icon-box {
        width: 45%; /* Ajuste para pantallas medianas */
    }
}

/* Responsivo para móviles */
@media (max-width: 480px) {
    .icon-box {
        width: 90%; /* Ajuste para pantallas pequeñas */
    }
    
    .feature-section h2 {
        font-size: 20px; /* Redimensiona el encabezado */
    }
}
 
 @media screen and (max-width: 700px) {
 
 }
 
 .hamburger {
    display: none; /* Ocultar el botón por defecto */
    cursor: pointer;
    position: fixed; /* Mantiene el botón en la parte superior derecha */
    top: 20px;
    right: 20px;
    z-index: 2000; /* Asegura que el botón esté encima del menú */
}

.hamburger__inner,
.hamburger__inner::before,
.hamburger__inner::after {
    background-color: #000;
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px 0;
    transition: transform 0.4s ease;
}

.hamburger.is-active .hamburger__inner {
    transform: rotate(45deg);
}

.hamburger.is-active .hamburger__inner::before {
    transform: rotate(-90deg) translate(-8px, -8px);
}

.hamburger.is-active .hamburger__inner::after {
    opacity: 0;
} /* Botón de hamburguesa */
.hamburger {
    display: none; /* Ocultar el botón por defecto */
    cursor: pointer;
    position: fixed; /* Mantiene el botón en la parte superior derecha */
    top: 20px;
    right: 20px;
    z-index: 2000; /* Asegura que el botón esté encima del menú */
}

.hamburger__inner,
.hamburger__inner::before,
.hamburger__inner::after {
    background-color: #fdfdfd;
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px 0;
    transition: transform 0.4s ease;
}

.hamburger.is-active .hamburger__inner {
    transform: rotate(45deg);
}

.hamburger.is-active .hamburger__inner::before {
    transform: rotate(-90deg) translate(-8px, -8px);
}

.hamburger.is-active .hamburger__inner::after {
    opacity: 0;
}
 
 /* Responsivo */
 @media (width < 768px) {

      .menu {
		width: 100%;
        background: rgba(255, 255, 255, .25); /* Fondo transparente para móviles */
        backdrop-filter: blur(5px); /* Aplicar desenfoque de fondo para móviles */
        border: 1.5px solid rgba(209, 213, 219, 0.3); /* Borde sutil para móviles */
        border-radius: 1rem; /* Bordes redondeados para móviles */
    }

    /* Ajustes para el menú en dispositivos móviles */
    ul {
        flex-direction: column; /* Hace el menú vertical */
        justify-content: center; /* Centra verticalmente */
        align-items: center; /* Centra horizontalmente */
        display: none; /* Oculta el menú */
    }

    /* Mostrar el menú cuando tenga la clase "open" */
    ul.open {
        display: flex; /* Muestra el menú */
    }

    .hamburger {
        display: block; /* Muestra el botón en pantallas pequeñas */
    }
}

/* Responsivo para móviles (pantallas pequeñas) */







* {
	box-sizing: border-box;
}
.main-content {
    text-align: center;
    text-transform: uppercase;
    position: relative;
    height: 350px; /* Altura del contenedor */
    overflow: hidden; /* Oculta el contenido desbordado */
    background-color: rgba(255, 255, 255, 0.7);  /* Color de fondo del contenido */
    margin: 20px; /* Para separar del borde de la ventana */
    transition: opacity 1.5s ease-in-out; /* Transición suave más larga */
    border-radius: 15px;
   
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Sombra difusa alrededor */
        overflow: hidden;
        backdrop-filter: blur(10px);
        padding: 20px; /* Espaciado interno */
        margin: 20px; 
}

.main-content::before {
    content: ""; /* Necesario para crear un pseudo-elemento */
    position: absolute; /* Asegura que cubra todo el contenedor */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none; /* Permite interactuar con el contenido por encima */
    z-index: 1; /* Asegura que esté detrás del contenido */
}

.main-content > * {
    position: relative; /* Necesario para que el contenido esté por encima */
    z-index: 2; /* Asegura que el contenido sea visible por encima del fondo */
}

.hover,
.word,
h1 {
	cursor: pointer;
}

h1 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 100; /* Black */
    font-size: 20px;
    color: #354284;
    margin: 10px;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
h12 {
	font-size: 26px; /* Tamaño de fuente ajustado */
    font-weight: bold;
    color: #333; /* Color inicial del texto */
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease; }
h12:hover {
    color: #3498db; /* Cambia el color del texto al pasar el mouse */
}
h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px; /* Línea cercana al texto */
    width: 100%;
    height: 1px; /* Línea más delgada */
    background-color: #3498db; /* Color de la línea */
    transform: scaleX(0); /* Empieza contraída */
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

h12:hover::after {
    transform: scaleX(1); /* Expande la línea */
    transform-origin: bottom left;
}
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
}

.navigation-buttons button {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    color: #333;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
}

.navigation-buttons button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.concept {
    
   position: relative;
	padding: 5em;
	height: 100vh;
	overflow: hidden;
	scroll-snap-align: center;
    display: none;
    transition: opacity 1.1s ease-in-out; 
	&:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: radial-gradient(rgba(0, 0, 0, 0.3), transparent);
		opacity: 0;
		transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
	}
	&:hover:before {
		opacity: 0.5;
	}
}


.concept-one {
    
    padding: 5em;
    width: 100%; /* Asegura que la imagen ocupe el 100% del ancho */
    height: 100%;
    display: flex;
	justify-content: center;
	align-items: center;
    background: url("https://meowlivia.s3.us-east-2.amazonaws.com/codepen/background/desert.jpg")
	
    no-repeat center center / cover;
   
	h1 {
		letter-spacing: 35px;
		position: relative;
		&:before {
			content: "DESERTs";
			position: absolute;
			margin: auto;
			left: 0;
			right: 0;
			max-width: 400px;
			color: transparent;
			letter-spacing: 10px;
			text-shadow: none;
		}
	}
	&:hover h1:before {
		transition: 0.6s ease;
		color: rgba(255, 255, 255, 0.8);
		animation: jump-out 0.6s ease forwards;
	}
}

@keyframes jump-out {
	0% {
		opacity: 0;
		transform: scale(1);
	}
	20% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: scale(2);
	}
}


.concept-two {
	
    padding: 5em;
    width: 100%; /* Asegura que la imagen ocupe el 100% del ancho */
    height: 100%;
	background: url(https://meowlivia.s3.us-east-2.amazonaws.com/codepen/background/forest.jpg)
		center center / cover;
        .word {
            width: 600px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80%;
        }
        .hover {
            flex: 1;
            display: grid;
            height: calc(100vh - 10em);
            grid: repeat(2, 2fr) / 100%;
            position: relative;
            div {
                position: relative;
                z-index: 5;
            }
            div:nth-child(1):hover ~ h1 {
                margin-top: -10px;
            }
            div:nth-child(2):hover ~ h1 {
                margin-top: -50px;
            }
        }
	h1 {
        position: absolute;
		margin: auto;
		left: 0;
		right: 0;
		top: 50%;
		margin-top: -30px;
		transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
		z-index: 0;
	}
	.hover:hover h1 {
		transform: scale(1.5);
		color: #fff;
		-webkit-text-stroke: 2px transparent;
		text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	}
}


.concept-three {
	padding: 5em;
    width: 100%; /* Asegura que la imagen ocupe el 100% del ancho */
    height: 100%;
    
	.word {
		display: flex;
		align-items: center;
		max-width: 500px;
		margin: auto;
        width: 100%; /* Asegura que la imagen ocupe el 100% del ancho */
    height: 100%;
	}
	background: url(https://meowlivia.s3.us-east-2.amazonaws.com/codepen/background/canyon.jpg)
		center center / cover;
        
	.hover {
		flex: 1;
		display: grid;
		height: calc(100vh - 10em);
		grid: repeat(2, 2fr) / 100%;
		position: relative;
		div {
			position: relative;
			z-index: 5;
		}
		div:nth-child(1):hover ~ h1 {
			margin-top: -10px;
		}
		div:nth-child(2):hover ~ h1 {
			margin-top: -50px;
		}
	}
	h1 {
		position: absolute;
		margin: auto;
		left: 0;
		right: 0;
		top: 50%;
		margin-top: -50px;
		transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
		z-index: 0;
	}
}

.concept-four {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 2em;
    width: 100%; /* Asegura que la imagen ocupe el 100% del ancho */
    height: 100%;
    
	background: url(https://meowlivia.s3.us-east-2.amazonaws.com/codepen/background/glacier.jpg)
		no-repeat center center / cover;
	h1 {
		display: inline-block;
	}
	&:hover h1 {
		letter-spacing: 25px;
		transform: scale(1.3);
		transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}
}

.concept-five {
	background: url(https://meowlivia.s3.us-east-2.amazonaws.com/codepen/background/mountains.jpg)
		center center / cover;
	display: flex;
	align-items: center;
    width: 100%; /* Asegura que la imagen ocupe el 100% del ancho */
    height: 100%;
    
	.word {
		width: 600px;
		margin: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 80%;
		&:hover {
			.char:nth-child(even) {
				top: 20px;
			}
			.char:nth-child(odd) {
				top: -20px;
			}
		}
	}
	.char {
		flex: 1;
		position: relative;
		display: inline-block;
		top: 0;
		transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	}
}

.concept-six {
	display: flex;
	align-items: center;
    width: 100%; /* Asegura que la imagen ocupe el 100% del ancho */
    height: 100%;
	background: url(https://meowlivia.s3.us-east-2.amazonaws.com/codepen/background/beach.jpg) top
		right / cover;
       
	.word {
		width: 550px;
		margin: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 80%;
		&:hover {
			.char:nth-child(1) {
				margin-top: -30px;
				transform: rotate(-20deg);
			}
			.char:nth-child(2) {
				margin: -40px 0px 0 10px;
				transform: rotate(5deg);
			}
			.char:nth-child(3) {
				margin: 15px 0 0 10px;
				transform: rotate(12deg);
			}
			.char:nth-child(4) {
				margin: -25px 0 0;
				transform: rotate(5deg);
			}
			.char:nth-child(5) {
				margin: -40px 5px 0;
				transform: rotate(-10deg);
			}
		}
	}
	.char {
		flex: 1;
		transition: 0.3s ease-in-out;
		position: relative;
	}
}

.concept-seven {
    width: 100%; /* Asegura que la imagen ocupe el 100% del ancho */
    height: 100%;
	background: url(https://meowlivia.s3.us-east-2.amazonaws.com/codepen/background/fries.jpg)
		top center / cover;
	display: flex;
	justify-content: center;
	align-items: center;
    
	h1 {
		letter-spacing: 35px;
		position: relative;
		&:before {
			content: "fries";
			position: absolute;
			margin: auto;
			left: 0;
			right: 0;
			max-width: 400px;
			color: transparent;
			letter-spacing: 10px;
			text-shadow: none;
		}
	}
	&:hover h1:before {
		transition: 0.6s ease;
		color: rgba(255, 255, 255, 0.8);
		animation: jump-out 0.6s ease forwards;
	}
}

@keyframes jump-out {
	0% {
		opacity: 0;
		transform: scale(1);
	}
	20% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: scale(2);
	}
}

.concept-eight {
    width: 100%; /* Asegura que la imagen ocupe el 100% del ancho */
    height: 100%;
	background: url(https://meowlivia.s3.us-east-2.amazonaws.com/codepen/background/falls.jpg)
		center center / cover;
	display: flex;
	align-items: center;
	justify-content: center;
	.word {
		display: flex;
		align-items: center;
		justify-items: center;
		width: 450px;
		height: 80%;
		&:hover .char:before {
			transition: 0.6s ease;
			color: rgba(255, 255, 255, 0.8);
			animation: falls 1s ease forwards;
		}
		&:hover .char:nth-child(1):before {
			animation: falls 0.9s ease 0.2s forwards;
		}
		&:hover .char:nth-child(2n + 3):before {
			animation: falls 1s ease 0.3s forwards;
		}
	}
	.char {
		flex: 1;
		position: relative;
		&:before {
			content: attr(data-content);
			position: absolute;
			top: 0;
			color: transparent;
			text-shadow: none;
		}
	}
}

@keyframes falls {
	0% {
		opacity: 0;
		top: 0;
	}
	20% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		top: 100px;
	}
}


.titulo-iz {
	
	position: absolute; /* Posiciona el texto de manera absoluta */
    top: 150px; /* Ajusta la posición desde la parte superior */
    left: 150px; /* Ajusta la posición desde la izquierda */
    background-color: transparent; /* Fondo blanco con algo de transparencia */
    padding: 5px; /* Espacio alrededor del texto */
    border-radius: 5px; /* Esquinas redondeadas */
}
.titulo-dr {
	position: absolute; /* Posiciona el texto de manera absoluta */
    top: 150px; /* Ajusta la posición desde la parte superior */
    right: 150px; /* Ajusta la posición desde la izquierda */
    background-color: transparent; /* Fondo blanco con algo de transparencia */
    padding: 5px; /* Espacio alrededor del texto */
    border-radius: 5px; /* Esquinas redondeadas */
}
.marca-images {
    
    flex-wrap: wrap; /* Acomoda las imágenes en varias líneas si es necesario */
    justify-content: space-around;
    align-items: center;
    gap: 50px; /* Espacio entre las imágenes */
    width: 300px;
	display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas */
    grid-template-rows: repeat(3, auto); /* Tres filas */
   /* Espacio entre las imágenes */
    max-width: 1900px; /* Ajusta este valor según el ancho deseado del contenedor */
    /* Centrar el contenedor */
}
.marca-title {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 15px; /* Espacio entre el título y las imágenes */
    color: #000000;
}
.marca-images img {
	flex: 0 0 calc(70% - 70px);
	width: 120px; /* Tamaño base ajustado */
    height: auto;

    width: 190px; /* Tamaño base de las imágenes */
    height: auto;
    transition: transform 0.3s ease-in-out;
    animation: levitate 3s ease-in-out infinite;
}

/* Animación de levitación */
@keyframes levitate {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Efecto de "subir" ligeramente */
    }
}

/* Ajustes responsivos para las imágenes */
@media (max-width: 768px) {
    .marca-images img {
        width: 60px; /* Ajusta el tamaño de las imágenes en pantallas más pequeñas */
    }
	
}

@media (max-width: 480px) {
    .marca-images img {
        width: 50px; /* Ajusta el tamaño aún más en pantallas pequeñas */
    }
}

/* Estilo para la sección de Clientes */
.clientes {
	margin-top: 0px;
    text-align: center;
    padding: 50px 0;
}

.clientes-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}



.clientes-grid img {
	display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    width: 80%; /* Ajusta según el tamaño de tu layout */
    height: 90vh; 
}

.clientes-list img {
    width: 150px; /* Ajusta el tamaño según necesites */
    height: auto;
    object-fit: cover; /* Mantiene las proporciones de la imagen */
     /* Aplica un recorte circular a las imágenes */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.clientes-list img:hover {
    transform: scale(1); /* Aumenta el tamaño en hover */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8); /* Aplica una sombra en hover */
}

.clientes-list li {
    display: inline-block;
    margin: 10px;
}




/* Sección de Encabezado */
.top-section {
    
    width: 100%;
    max-width: 900px;
    padding:30px;
    position: relative;
    text-align: center;
    margin-top: 130px;
}

/* Nube flotante pegada */
.floating-cloud {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    border-radius: 25px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: bold;
    color: #007bff;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    transition: 1s;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.82);

}
.contact-item1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    transition: 1s;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.82);

}
.contact-item:hover {
    
    transform: scale(1.09);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color 0.8s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.82);
    animation: icon-float 3s ease-in-out infinite;
}

.contact-icon:hover {
    
    background-color: #000000;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}



/* Contenedor para las secciones inferiores */
.bottom-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
}

/* Sección Izquierda */
.left-section {
    width: 45%;
    padding: 20px;
}

/* Sección Derecha (Google Maps) */
.map-section {
    padding: 10px;
    width: auto;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.85);
}

#map {
    width: 100%;
    height: 100%;
}

/* Bloques pequeños */
.small {
    margin: 10px 0;
    padding: 15px;
}
/* Estilo para la sección Conócenos */


.boton {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #008CBA;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.boton:hover {
    background-color: #005f73;
}

.close-btn {
    background: transparent; /* Sin fondo */
    border: none; /* Sin borde */
    color: black; /* Color del botón */
    font-size: 18px; /* Tamaño del texto */
    position: absolute; /* Posiciona el botón en la esquina superior derecha */
    top: 5px; /* Espacio desde la parte superior */
    right: 5px; /* Espacio desde la derecha */
    cursor: pointer; /* Cambia el cursor al pasar el mouse */
}
.contact-form {
    display: flex; /* Permitir flexbox para disposición */
    flex-direction: column; /* Disposición vertical */
    gap: 10px; /* Espacio entre los elementos del formulario */
}

.contact-form label {
    font-weight: bold; /* Resaltar las etiquetas */
}

.contact-form input {
    padding: 8px; /* Espacio interno de los campos de entrada */
    border: 1px solid #ccc; /* Borde gris claro */
    border-radius: 4px; /* Bordes redondeados */
}

.contact-form button {
    background-color: #007bff; /* Color del botón */
    color: white; /* Color del texto del botón */
    border: none; /* Sin borde */
    padding: 10px; /* Relleno interno */
    border-radius: 4px; /* Bordes redondeados */
    cursor: pointer; /* Cambia el cursor al pasar el mouse */
}

.contact-form button:hover {
    background-color: #0056b3; /* Color al pasar el mouse */
}
.info {
    margin: 8px;
	display: none; /* Oculta la información adicional por defecto */
    position: absolute; /* Posiciona la información sobre el contenedor */
    top: 100%; /* Muestra justo debajo del contenedor */
    left: 50%; /* Centra horizontalmente */
    transform: translateX(-50%); /* Corrige la alineación */
    background-color: rgba(255, 255, 255, 0.8); /* Color blanco con un poco de transparencia */
    color: black; /* Color del texto de la información */
    padding: 25px; /* Relleno interno */
    border: 3px solid rgba(255, 255, 255, 0.5); /* Borde semi-transparente */
    border-radius: 35px; /* Bordes redondeados */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra para dar profundidad */
    backdrop-filter: blur(10px); /* Desenfoque del fondo */
    z-index: 10; /* Asegura que la información esté por encima de otros elementos */
    width: 300px;  /* Ancho fijo para la ventana emergente */ /* Ancho de la ventana emergente */
}



@media (max-width: 768px) {
	.wrapper {
		width: 95%;  /* Ajustamos el ancho para celulares */
        height: 70%; /* Contenedor ocupa el 100% en pantallas pequeñas */
	}

	
}
@media (max-width: 1024px) {
	.container2 {
		
	  flex-direction: row;
	  align-items: center;
	}
	.contact-section4 {
		display: flex;
		justify-content: center;
		align-items: center;
		
		padding: 0px;
        width: 100%;
	}
  }
@media (max-width: 768px) {
	.container2 {
		width: auto;
	  flex-direction: column;
	  align-items: center;
      justify-content: center;
	}
	.contact-section4 {
		display: flex;
		justify-content: center;
		align-items: center;
		
		padding: 0px;
        width: 100%;
	}
    .glass-effect5
    {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s ease, visibility 0s 0.5s;
        margin-top: 10px;
        margin:10px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 95%;
        height: 100%;
        padding: 30px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 15px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    
    }
    .menu {
		width: 100%;
        background: rgba(255, 255, 255, .25); /* Fondo transparente para móviles */
        backdrop-filter: blur(5px); /* Aplicar desenfoque de fondo para móviles */
        border: 1.5px solid rgba(209, 213, 219, 0.3); /* Borde sutil para móviles */
        border-radius: 1rem; /* Bordes redondeados para móviles */
    }

    /* Ajustes para el menú en dispositivos móviles */
    ul {
        flex-direction: column; /* Hace el menú vertical */
        justify-content: center; /* Centra verticalmente */
        align-items: center; /* Centra horizontalmente */
        display: none; /* Oculta el menú */
    }

    /* Mostrar el menú cuando tenga la clase "open" */
    ul.open {
        display: flex; /* Muestra el menú */
    }

    .hamburger {
        display: block; /* Muestra el botón en pantallas pequeñas */
    }
  }
@media (max-width: 480px) {
	
}
/* Estilo para la sección de Productos */
.productos-grid {
    display: flex;
    justify-content: space-around;
    padding: 50px 10;
}

.producto-item {
    text-align: center;
}

.producto-item img {
    max-width: 100px;
}

/* Estilo para la sección de Promociones */
.promociones {
    text-align: center;
    padding: 0px 10;
	
}

.promocion-item img {
    max-width: 200px;
    margin-bottom: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
    .clientes-grid,
    .productos-grid {
        flex-direction: column;
    }
}


/* Estilo de las secciones */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    width: 100%;
    color: #fff;
    padding: 20px;
}

.section h1 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 100; /* Black */
    font-size: 50px;
    color: #005f73;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.section p {
    font-size: 1.2em;
    max-width: 800px;
    line-height: 1.5em;
}
#s1 {
    background: url('inicio-bg.jpg') no-repeat center center/cover;
}

#s2 {
    background: url('quienes-somos-bg.jpg') no-repeat center center/cover;
}

#s3 {
    background: url('clientes-bg.jpg') no-repeat center center/cover;
}

#s4 {
    background: url('productos-bg.jpg') no-repeat center center/cover;
}

#s5 {
    background: url('contacto-bg.jpg') no-repeat center center/cover;
}

@media (max-width: 768px) {
    .section h1 {
        font-size: 2em;
    }
    .section p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .section h1 {
        font-size: 1.5em;
    }
    .section p {
        font-size: 0.9em;
    }
}
@media (width <= 480px) {
    
    
    .top-section {
        padding: 20px 10px;
        width:320px;
        margin: 10px;
        margin-top: 55px;
        
    }
    .floating-cloud {
        display: none;
        
    }
    .top-section::after {
        content: "Da click en un número y contáctanos";
        display: block;
        
        background-color: rgba(0, 0, 0, 0.9);
        color: black;
        padding: 10px;
        border-radius: 8px;
        margin-top: 55px;
        margin: 60px;
       
    }
    .bottom-section {
        flex-direction: column;
        align-items: center;
    }
    
    /* Quitar efecto de cristal en móviles */
 
    
    /* Mensaje emergente en móviles */
    .floating-cloud {
        display: none;
    }

    .top-section::after {
        content: "Da click en un número y contáctanos";
        display: block;
        background-color: rgba(0, 0, 0, 0.9);
        color: #fff;
        padding: 10px;
        border-radius: 80px;
        margin-top: 10px;
    }
    /* Disposición de las secciones en columnas */
    .bottom-section {
        flex-direction: column;
        align-items: center;
    }

    .left-section,
    .map-section {
        width: auto;
        margin: 10px 0;
    }
}

@media (min-width: 480px) and (max-width: 910px) {
    /* Ajustes en tabletas: efecto de cristal y espaciado */
    
    .contact-item {
       
        margin-top: 550px;
    }
    
    .bottom-section {
        flex-direction: row;
        gap: 20px;
    }

    .floating-cloud {
        font-size: 18px;
    }

    .contact-item {
        margin: 15px 0;
    }
    .bottom-section {
        flex-direction: column;
        align-items: center;
    }

    .left-section,
    .map-section {
        width: auto;
        margin: 10px 0;
    }
}
@media (min-width: 910px){

    .contact-item {
       
        margin-top: 550px;
    }
    
    .bottom-section {
        flex-direction: row;
        gap: 20px;
    }

    .floating-cloud {
        font-size: 18px;
    }

    .contact-item {
        margin: 15px 0;
    }
    .bottom-section {
        flex-direction: row;
        align-items: center;
    }

    .left-section,
    .map-section {
        width: auto;
        margin: 10px 0;
    }

}
@media (width< 480px) {
    .menu {
		width: 100%;
        background: rgba(255, 255, 255, .25); /* Fondo transparente para móviles */
        backdrop-filter: blur(5px); /* Aplicar desenfoque de fondo para móviles */
        border: 1.5px solid rgba(209, 213, 219, 0.3); /* Borde sutil para móviles */
        border-radius: 1rem; /* Bordes redondeados para móviles */
    }

    /* Ajustes para el menú en dispositivos móviles */
    ul {
        flex-direction: column; /* Hace el menú vertical */
        justify-content: center; /* Centra verticalmente */
        align-items: center; /* Centra horizontalmente */
        display: none; /* Oculta el menú */
    }

    /* Mostrar el menú cuando tenga la clase "open" */
    ul.open {
        display: flex; /* Muestra el menú */
    }

    .hamburger {
        display: block; /* Muestra el botón en pantallas pequeñas */
    }
    .conocenos {
		text-align: center;
		padding: 0px 0;
		background-color: rgba(85, 83, 83, 0.2);
		backdrop-filter: blur(10px);
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
		border-radius: 55px;
		width: 100%;
		margin: 0px;
		text-align: center;
		padding: 20px;
		max-width: 800px;
		margin: 0 auto;
		justify-content: center;
	}
	
	.conocenos-content {
		max-width: 180px;
		margin:10px;
	}
	h1 {
        font-family: 'League Spartan', sans-serif;
        font-weight: 100; /* Black */
        font-size: 20px;
        color: #005f73;
        text-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
	.p{

		color: #000000;
	}
	.contact-section2 {
		display: flex;
	   
		flex-direction: column; /* Asegúrate de que las secciones estén en columna */
		justify-content: center;
		align-items: center;
		
		background: rgba(255, 255, 255, 0.8) url('f1.png') no-repeat center/cover;
	 margin: 0px;
			padding: 10px;
			width: 100%; /* Ajusta el padding según lo necesites */
	}
  
}