body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #292929;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Asegura que el body ocupe al menos el 100% de la altura de la pantalla */
    padding-bottom: 50px; /* Espacio para evitar que el footer tape el contenido */
}

.imagen-hero {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-size: cover;
}

.chevron-down {
    position: absolute;
    top: 78%; /* Ajusta la posición vertical */
    left: 50%;
    transform: translate(-50%, -50%); /* Centra horizontal y verticalmente */
    font-size: 5rem;
    color: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 1; /* Asegura que la flecha esté por encima de la imagen */

  }

.barra-navegacion {
    width: 100%;
    height: 30px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    background:   rgb(250, 92, 0);
}

.barra-navegacion a {
    font-size: 22px;
    padding: 0 20px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.barra-navegacion a:hover {
    color: hwb(0 100% 0%);
    transform: scale(1.3); /* Aumenta tamaño */
    text-shadow: 0 0 10px rgb(255, 255, 255); /* Efecto glow */
}

.ocultar-header {
    transform: translateY(-100%);
}

.ListaProductos ul {
    display: flex;
    justify-content: center;  /* Centra el contenido horizontalmente */
    align-items: center;      /* Centra el contenido verticalmente */
    line-height: 1.5;
    list-style-type: none;
    text-align: center;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 1%;
    padding-right: 1%;
    margin-top: 0px;
    margin-bottom: 5px;
    z-index: 100;
    font-weight: 900;
    font-size: 2.3rem;
    font-family: Montserrat, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0.9em;
    color: rgb(255, 255, 255);
    background-image: url('foto_imprenta.jpg');
    background-size: cover; /* Para que la imagen cubra todo el área del div */
    background-position: center; /* Para centrar la imagen */
    background-repeat: no-repeat; /* Para que la imagen no se repita */
}

main {
    flex-grow: 1;
    padding-bottom: 100px; /* Añadí espacio para evitar que el contenido se sobreponga con el footer */
}

.catalogo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1% 3%;
    padding: 2%;
    width: 96%;
    margin: 20px auto;
    margin-bottom: 5%; /* Aumento el margen inferior para separarlo más de los iconos */
    z-index: 1; /* Asegura que esté debajo de los iconos si hay un problema de superposición */
}

.catalogo img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 15px 10px rgb(0, 0, 0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalogo img:hover {
    transform: scale(1.15);
}

/* ... (resto del CSS) ... */

.contactanos {
    text-align: center;
    margin-top: 250px; /* Eliminamos el margen superior en porcentaje */
    margin-bottom: 2em;
    padding: 0;
    letter-spacing: 0.5em;
}

.contactanos p {
    font-family: "Outfit", serif;
    font-size: 3em;
    color: rgb(255, 255, 255);
    padding: 0;
    margin: 0; /* Aseguramos que no haya márgenes en el <p> */
}

.ContactosPieDePagina {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin: 0; /* Eliminamos el margen superior */
    padding: 0;
    flex-wrap: nowrap;
    z-index: 2;
}

.ContactosPieDePagina a {
    font-size: 400%; /* Tamaño ajustado del icono */
    margin: 5px; /* Espaciado entre iconos */
    padding: 20px; /* Asegura que los recuadros sean suficientemente grandes */
    text-decoration: none;
    transition: color 1s ease, transform 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px; /* Ajusta el tamaño de los recuadros */
    height: 150px; /* Ajusta la altura y el ancho de los recuadros */
    border: 4px solid  #ff6803;
    color: rgb(255, 255, 255);
    border-radius: 100px;
    box-sizing: border-box;
    background-color: rgb(29, 29, 29);
}

.ContactosPieDePagina a:hover {
    color: rgb(255, 255, 255);
    text-shadow: 0 0 10px rgb(255, 255, 255);
}

.mapa {
    width: 100%;
    height: 12em; /* Ajusta la altura si es necesario */
    display: block;
    margin-top: 5%;
    border: none; /* Sin bordes */
}

footer {
    height: 60px;
    font-size: 13px;
    color: rgb(213, 255, 108);
    background-color: #000000;
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: flex;
    justify-content: center;  /* Centra el contenido horizontalmente */
    align-items: center;      /* Centra el contenido verticalmente */
    font-family: "Outfit", serif;
    font-optical-sizing: auto;
    font-weight: 450;
    letter-spacing: 1.2px;
    font-style: normal;
    white-space: nowrap; /* Evita que el texto se divida en varias líneas */
}

footer .datosAbajo {
    display: flex;  /* Utiliza flexbox para organizar los elementos en una fila */
    list-style-type: none; /* Elimina los puntos de la lista */
    padding: 0;
    margin: 0;
    justify-content: center; /* Alinea los elementos al centro */
}

footer .datosAbajo li {
    margin: 0;
    padding: 0;
}
 /* - - - - - - - - - - - - - - - -   R  E  S  P  O  N  S  I  V  E  - - - - - - - - - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - */
 
@media only screen and (max-width: 768px) {
        body {
            padding-bottom: 0px;
        }
    
        main {
            padding-bottom: 0px;
        }
    
        .imagen-hero {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            margin: 0 auto;
        }
    
        .barra-navegacion {
            width: 100%; /* Asegura que ocupe todo el ancho disponible */
            height: 30px;
            text-align: center; /* Centra los enlaces dentro del contenedor */
        }
    
        .barra-navegacion a {
            font-size: 22px;
            padding: 0 16px;
            display: inline-block; /* Hace que los enlaces se comporten como bloques y se alineen */
            text-align: center;
        }
    
        .ListaProductos ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 10px;
            width: calc(100% - 20px);
            margin: 0 auto;
            font-size: 17px;
            text-align: center;
        }
    
        .catalogo {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 10px;
            padding: 10px;
            width: calc(100% - 20px);
            margin: 0 auto;
            margin-bottom: 10px;
        }
    
        .catalogo img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.341);
            transition: none;
            object-position: center;
        }
    
        .catalogo img:hover {
            transform: none;
            box-shadow: none;
        }
    
        .mapa {
            width: 100%;
            height: 13em;
            display: block;
            margin: 0;
            border: none;
            position: relative;
            bottom: 1.5em;
        }
    
        .ContactosPieDePagina {
            width: calc(100% - 20px);
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            width: 100%;
            padding: 0px; /* Espacio interno */
            margin-top: 0px;
            padding-bottom: 50px;
            flex-wrap: nowrap;
            box-sizing: border-box; /* Incluir el padding en el ancho total */
        }
    
        .ContactosPieDePagina a {
            font-size: 200%;
            margin: 0;
            padding: 0px;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 80px; /* CIRCULO GRIS*/
            height: 80px; /* CIRCULO GRIS*/
            border-radius: 100px; /* CIRCULO GRIS*/
            box-sizing: border-box;
        }
    
        .contactanos {
            text-align: center;
            margin: 20px 5px; /* Margen de 5px a los lados */
        }
    
        .contactanos p {
            font-size: 1em; /* Tamaño de fuente más pequeño */
        }

        footer {
            height: auto; /* Altura automática para adaptarse al contenido */
            flex-direction: column; /* Alinea los elementos verticalmente */
            padding: 0px; /* Espacio interno */
            text-align: center; /* Centrar texto */
        }
    
        footer .datosAbajo {
         flex-direction: column; /* Datos en columna */
         gap: 1px; /* Espacio entre elementos */
         font-size: 0.6rem; /* Tamaño de fuente más pequeño */
         padding: 8px 8px 8px 8px; /* Margen de 5px a los lados */
        }
        
        footer .datosAbajo li {
         max-width: 100%;
         margin: 3px; /* Eliminar márgenes en los elementos */
         text-align: center;
         word-wrap: break-word;
         overflow-wrap: break-word;
         hyphens: auto;
         box-sizing: border-box; /* Incluir el padding en el ancho total */
        }

    }