* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;

}

.imgresp {
    width: 100%;
    height: auto;
}

.imgresph {
    width: auto;
    height: 100%;
}

.top-bar {
    display: flex;
    background-color: #C5321C;
    width: 100%;
    height: 35px;
    justify-content: center;
    align-items: center;
}

    .contain {
        display: flex;
        width: 80%;
        height: auto;
        justify-content: center;
    }

    h4{
        color: white;
        font-size: 1em;
        font-weight: 300;
        letter-spacing: 0.15em;
    }

header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    height: 80vh;
    background-image: url(img/bginicio01.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}

#header-page {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    height: 179px;
    background-color: white;
    background-image: none;
}

.header-mobile {
    display: none;
}

.header-mobile-page {
    display: none;
}

    .navegacion {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        width: 100%;
        height: 100px;
        align-items: center;
        padding: 1% 01%;
        gap: 1%;
        position: relative;
        border-bottom:  1px solid #7c7c7c;
        background-color: transparent;
        transition: background-color .1s linear;
    }

        nav {
            width: 33%;
            height: 100px;
            display: flex;
            justify-content: space-around;
            align-items: flex-end;
            padding: 0 0 1%;
        }

        nav a {
            color: black;
            text-decoration: none;
        }

        nav a:hover {
            color:#c5321c;
        }

            nav a:hover .navegacion {
               transform: scale(2);
        }

    .logo {
        width: 34%;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo a {
        height: 100px;
        padding: 2% 0;
    }

    .search {
        width: 33%;
        height: 100px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        padding: 0 0 1% 5%;
    }

        .fa-magnifying-glass, .fa-user {
            font-size: 1.8em;
            color: black;
            padding:  0 25px;
        }

        .submenu {
            display: flex;
            opacity: 0;
            z-index: 1;
        }

        .submenu a {
            color: black;
            text-decoration: none;
            transition: all .5s ease-in-out;

        }

        .submenu a:hover {
            color: #c5321c;
            text-decoration: none;
        }

        .show {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            width: 100%;
            height: 75px;
            background-color: white;
            opacity: 100;
            border-bottom:  1px solid #7c7c7c;

        }

    .productos {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        width: 80%;
        padding: 15% 0 0 6%;
    }

        .texto {
            margin: 10px;
        }

            .texto h2{
                font-weight: 400;
                font-style: italic;
                letter-spacing: 0.05em;
            }

            .texto h1{
                font-weight: 700;
            }

        button {
            display: block;
            width: 25%;
            font-size: 1em;
            background: #00000000;
            color: black;
            border: 0.1em solid #7c7c7c;
            padding: 5px;
            position: relative;
            z-index: 1;
            overflow: hidden;
            margin: 8px;

            cursor: pointer;
        }

            button:hover {
                color: #ffffff;
            }

            button::after {
                content: "";
                background: #c5321c;
                position: absolute;
                z-index: -1;
                padding: 0.85em 0.75em;
                display: block;
            }

            button[class^="slide"]::after {
                transition: all 0.35s;
            }

            button[class^="slide"]:hover::after {
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                transition: all 0.35s;
            }

            button.slideleft::after {
                top: 0;
                bottom: 0;
                left: -100%;
                right: 100%;
            }

.titulos-mobile {
    display: none;
}

.lineas-filtradas {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    height: auto;
    min-height: 500px;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

.filtros {
    flex: 1;
    height: 100%;
    min-height: 600px;
    background-color: white ;
    background-color: rgba(151, 151, 151, 0.085);
    padding: 2% 2%;
    margin: 0 0 0 0;

}

.productos-filtrados {
    display: flex;
   justify-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    flex: 6;
    /* background-color: coral; */
    height: auto;
    min-height: 500px;
    padding: 2%;
    gap: 2%;
}

.productos-filtrados div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 22%;
    aspect-ratio: 1 / 1;
    background-color: white;
    padding: 1%;
    margin-bottom: 2%;
    transition: all .1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.productos-filtrados div:hover {
    border: solid 1px #979797;
}

.productos-filtrados img {
    height: 150px;
}

.productos-filtrados h3 {
    font-size: .8em;
    font-weight: 200;
    text-transform: uppercase;
    margin: 4% 0 0;
}

.productos-filtrados h2 {
    font-size: .9em;
    text-transform: uppercase;
    text-align: center;
    margin: 4% 0 3%;
}

.productos-filtrados a{
    display: block;
    width: 70%;
    font-size: .8em;
    background-color: white;
    color: black;
    border: 0.1em solid #979797;
    padding: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 10px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
 }

 .productos-filtrados a:hover {
    color: white;
}

.productos-filtrados a::after {
    content: "";
    background: #c5321c;
    position: absolute;
    z-index: -1;
    padding: 0.85em 0.75em;
    display: block;
}

.productos-filtrados a[class^="filtry"]::after {
    transition: all 0.25s;
}

.productos-filtrados a[class^="filtry"]:hover::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 0.35s;
}

.productos-filtrados a.filtry::after {
    top: 0;
    bottom: 0;
    left: -100%;
    right: 100%;
}

.filtros h3 {
    color: #524e4e;
    font-size: 1.05em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 0 10%;
}

.filtros h5 {
    color: black;
    font-size: .9em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    margin: 6% 0 2%;
}

.dropdown-btn {
    color: black;
    cursor: pointer;
}

.dropdown-btn:hover {
    color: #7c7c7c;
}

.dropdown-container {
    margin: 0 0 5%;
}



.favoritos {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
            /* background-color: #ebebeb; */
            background-color: white;
    padding: 25px 0;
}

.favoritos-mobile {
    display: none;
}

    .titulo {
        display: flex;
        width: 50%;
        height: auto;
        padding: 20px;
        justify-content: center;
        align-items: center;
    }

        .titulo h2 {
            font-size: 1.8em;
            font-weight: 400;
            color: black;
        }

        .mas-productos {
            display: none
        }

    .product-box {
        display: flex;
        width: 80%;
        height: auto;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 15%;
        margin: 0 auto;
    }

        .miniatura {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 20%;
            height: auto;
            margin: 30px 0;
            gap: 5%;
        }

            .imagenresponsiva {
                display: flex;
                width: 90%;
                height: 200px;
                justify-content: center;
                background-color: white;
                margin: 0 0 10px 0;
            }

            .imagenresponsivah {
                width: auto;
                height: 100%;
            }

            /* .imagenresponsiva img{
                width: 350px;
                height: 350px;
                object-fit: cover;
            } */

            .descrip-producto {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                font-weight: 300;
                text-align: center;
                line-height: 2em;
                margin: 8px 0;
            }

            .italic {
                font-style: italic;
                font-size: 1.2em;
                font-weight: 300;
            }

            .enfasis {
                font-weight: 700;
                font-size: 1.5em;
                letter-spacing: 0.04em;
            }

            .normal{
                font-weight: 400;
                font-size: 1.3em;
            }

            .descrip-producto button {
                width: 80%;
                font-size: 1em;
            }

            main {
                display: flex;
                flex-direction: column;
                width: 100%;
                height: auto;
                justify-content: center;
                align-items: center;
            /* background-color: #ebebeb; */
            background-color: white;
            }

            .detalles-producto {
                display: flex;
                flex-direction: row;
                width: 80%;
                height: 500px;
                justify-content: center;
                align-items: center;
                gap: 5%;
                margin: 2% 0;
            }

            .imagen-producto {
                display: flex;
                justify-content: space-around;
                align-items: center;
                flex: 5;
                height: 500px;
                gap: 5%;
            }

            .galeria-producto {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                flex: 1;
                height: 500px;
                flex-direction: column;
            }

            .mini {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100px;
                height: 100px;
                border: 1px solid rgb(150, 150, 150);
                background-color: white;
                cursor: pointer;
                padding: 8%;
                margin: 0 0 15%;
            }

            .foto-principal-producto {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                background-color: white;
                flex: 4;
                height: 500px;
                padding: 6%;
            }

        .especificaciones-producto {
            flex: 3;
            height: 500px;
        }

        .especificaciones-producto a  {
            font-size: .8em;
            font-weight: 400;
            text-decoration: none;
            margin-bottom: 0;
            color: #c5321c;
        }

        .especificaciones-producto dt  {
            margin: 0 0 6%;
        }

        .especificaciones-producto dl  {
            font-size: 1.2em;
        }

        .especificaciones-producto dd  {
            font-size: .8em;
            padding: 2.25%;
            border-bottom: 2px solid rgba(128, 128, 128, .4);
        }

        .especificaciones-producto dd span  {
            font-weight: 800;
            color: rgb(41, 39, 39);
        }

        .cotizar {
            width: 100%;
            text-align: center;
        }    
        .cotizar button {
            width: 100%;
            font-size: 1.6em;
            border: 0.1em solid #7c7c7c;
            margin: 5% 0 0;
        }  


    .plano-diferenciales {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 1% 1% 3.5%;
            /* background-color: #ebebeb; */
            background-color: white;
    }

    .plano-diferenciales h2{
        font-size: 1.8em;
        font-weight: 400;
        color: black;
        margin-top: 0.5%;
        margin-bottom: 1%;
    }

    .subtitulo {
        display: flex;
        width: 80%;
        flex-direction: row;
        justify-content: space-evenly;
        gap: 15%;
        margin: 10px 0 5px;
    }

    .subtitulo h2 {
        font-size: 1.6em;
        font-weight: 400;
    }

    .diferenciales-x {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 70%;
        margin: 10px;
        gap: 4%;
        /* border-left: solid 5px #c5321c ;
        border-right: solid 5px #979797; */
        padding: 0 10px;
    }

    .icono {
        width: 10%;
        height: auto;
        text-align: center;
        color: #979797;
    }

    .fa-recycle, .fa-leaf {
        color: #95c11f;
        font-size: 5em;
    }

    .fa-globe {
        color: #1f8ec1;
        font-size: 4em;
    }

    .fa-clipboard-check{
        font-size: 5em;
    }

    .plano-texto {
        width: 90%;
        line-height: 1.3em;
        font-size: 1.1em;
        border-right: solid 5px #979797;
        padding-right: 15px;
    }

    .plano-textoderecho {
        width: 90%;
        line-height: 1.3em;
        font-size: 1.1em;
        text-align: right;
        border-left: solid 5px #c5321c;
        padding-left: 15px;
    }

.imagenestatica {
    width: 100%;
    height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("img/estatica2.webp");
    background-position-y: 70%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

    .estatica-texto {
        width: 100%;
        font-weight: 900;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 5em;
        color: white;
        text-shadow: 7px 7px rgba(0, 0, 0, 0.651);
    }

.envases {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 10%;
            /* background-color: #ebebeb; */
            background-color: white;    justify-content: center;
    align-items: center;
    padding-bottom: 3%;
}

    .imagenes {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: auto;
        gap: 10%;
    }

        .ejemplo-envases {
            display: flex;
            justify-content: center;
            margin: 0 0 10px 0;
        }

        .ejemplo-envases img {
            width: 450px;
            height: auto;
            object-fit: cover;
        }

    .sobre-material {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 60%;
        height: auto;
        gap: 15%;
        margin: auto;
    }

        .texto-material {
        display: flex;
        flex-direction: column;
        width: 75%;
        height: auto;
        padding: 20px;
        text-align: center;
        line-height: 3.5em;
        }

            .texto-material .italic {
                font-size: 1.8em;
            }

            .texto-material .enfasis {
                font-size: 2em;
            }
        
        .imagenes-material {
            display: flex;
            flex-direction: row;
            width: 80%;
            height: auto;
            justify-content: space-evenly;
            align-items: center;
            margin: 2% auto;

        }

            .imagenes-material img{
                width: 160px;
                height: auto;
            }

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: rgb(17, 17, 17);
    padding: 2% 2% 1% 2%;
    color: white;
}

    .contenido-footer {
        display: flex;
        flex-direction: row;
        width: 90%;
        height: auto;
        gap: 8%;
        align-items: center;
        padding: 0.4% 0.4% 1.2%;
    }

    .redes-logo {
        width: 20%;
        /* max-width: 190px; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .logo-footer {
            width: 100%;
            max-width: 120px;
        }

        .redes {
            display: flex;  
            flex-direction: row;
            width: 100%;
            gap: 20%;
            margin: 40px 0;
            justify-content: center;
        }

            .fa-facebook, .fa-instagram, .fa-linkedin {
                font-size: 1.8em;
                color: white;
            }
    
    .nav-footer {
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        width: 65%;
        height: auto;
        padding: 4% 0;
        gap: 9%;
        margin: 0;
    }

        .nav-footer a {
            color: white;
            text-decoration: none;
        }

        .nav-footer a:hover {
            color: #c5321c;
            text-decoration: none;
        }

        dt {
            margin: 0 0 30px;
            font-size: 1.3em;
            font-weight: 700;
            letter-spacing: 0.08em;
        }

        dd {
            margin: 0 0 10px;
            font-size: 1em;
            letter-spacing: 0.05em;
        }

    .mapa {
        display: flex;
        flex-direction: column;
        width: auto;
        height: auto;
        line-height: 1.5em;
    }

        .direccion .enfasis {
            font-size: 1.3em;
        }

        .direccion p {
            font-size: 1em;
            font-weight: 400;
        }

#contacto-whats {
    display: flex;
    position: fixed;
    bottom: 7px;
    right: 7px;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    /* text-align: end; */
    font-size: 4em;
    background-color: rgba(255, 255, 255);
    /* border-radius: 90% 0 0; */
    border-radius: 50%;
    /* border: 1px solid #b4b4b4; */
    box-shadow: 0px 0px 1px 1px rgb(155 155 155);
}

    .fa-whatsapp {
        color: #c5321c;
    }


/* producto preview html */

.segunda-pagina {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 25%;
    background-color: white;
}

    .segunda-pagina nav ul li div {
        background: white;
    }


        .barra-cromatica {
            display: flex;
            justify-content: center;
            width: 100%;
            height: auto;
            margin-top: 5%;
        }

            .colores {
                width: 90%;
                height: 55px;
                background: linear-gradient(to right, yellow 0%, rgb(137, 240, 21) 17%, blue 33%, purple 50%, red 66%, orange 83%, yellow 100%);
                cursor: crosshair;
            }

/* Slider Inferior */
.container-related-product{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 15px;
    margin: 5% 0;
    }

    .slider {
        width: 95%;
        height: 400px;
        text-align: center;
        position: relative;
        padding-bottom: 23px;
    }

        .slides {
            width: 100%;
            display: flex;
            overflow-x: hidden;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            transition: all .15s ease;
            padding: 0 24px 0;
            gap: 3%;
    }

        .slides .miniatura-slides {
            scroll-snap-align: initial;
            transition: transform 0.20s;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translateX(0px);
            height: 400px;
    }

            .miniatura-slides {
                display: flex;
                flex-direction: column;
                width: 30%;
                height: auto;
                margin: 20px 0;
                padding: 10px 10px;
            }

            .imagen-slides {
                display: flex;
                justify-content: center;
                background-color: white;
                margin: 0 0 10px 0;
            }

            .imagen-slides img{
                width: 220px;
                height: 220px;
                object-fit: contain;
            }

            .miniatura-slides .descrip-producto {
                line-height: 1.7em;
            }

            .miniatura-slides .italic {
                font-style: italic;
                font-size: 1.2em;
                font-weight: 300;
            }

            .miniatura-slides .enfasis {
                font-weight: 700;
                font-size: 1.2em;
            }

            .miniatura-slides .normal{
                font-weight: 300;
                font-size: 1.2em;
                padding-top: 10px;
            }

            .miniatura-slides .descrip-producto button {
                width: 165px;
                font-size: 0.9em;
                padding: 5px 25px;

            }

    .btn-next, .btn-preview {
        font-size: 1.5em;
        background: #ffffff00;
        color: black;
        position: relative;
        overflow: none;
        margin: 2px;
        padding: 0px;
        width: 2%;
        cursor: pointer;
        border: none;
    }

        .btn-next:hover, .btn-preview:hover {
            color: #c5321c;
        }

        .btn-next::after, .btn-preview::after {
            background: none;
        }
/* lineas de productos*/


#lineas-productos {
    display: flex;
    width: 100%;
            /* background-color: #ebebeb; */
            background-color: white;
    height: auto;
    padding: 2%;
    align-items: center;
    flex-direction: column;
}

    .grid {
        width: 70%;
        /* background-color: white;
        padding: 1%; */
    }

        .grid h2 {
            font-size: 1.9em;
            font-weight: 400;
            margin-bottom: 1%;
            color: #7c7c7c;
            font-style: italic;
            letter-spacing: 0.05em;
            text-decoration: none;
        }

        .galeria {
            display: flex;
            width: 100%;
            border-top: .1em solid #d1d1d1;
            /* border-bottom: 0.1em solid #d1d1d1; */
            padding: 2% 1%;
            margin-bottom: 3%;
            justify-content: center;
        }

            .esquema-categoria {
                width: 90%;
                height: auto;
            }

                .responsiva {
                    width: 100%;
                    height: 300px;
                    background-image: linear-gradient(rgba(0, 0, 0, 0.14), rgba(66, 66, 66, 0.247)), url("img/bginicio2.jpg");
                    background-position-y: 30%;
                    background-repeat: no-repeat;
                    background-size: cover;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    padding: 11%;
                }

                .responsiva:hover, .categoria-doble:hover, .categoria-triple:hover{
                    filter: opacity(80%);
                    box-shadow: 5px 4px 9px 0 rgb(53, 57, 75);
                }

                .responsiva a, .categoria-doble a, .categoria-triple a {
                    font-size: 2.5em;
                    color: white;
                    font-weight: 800;
                    text-decoration: none;
                    letter-spacing: 0.1em; 
                    font-style: normal;
                }

            .varias-categorias{
                display: flex;
                flex-direction: row;
                width: 100%;
                height: auto;
                /* gap: 15%; */
                justify-content: space-between;
            }

                .categoria-doble {
                    width: 48%;
                    height: 250px;
                    background-image: linear-gradient(rgba(0, 0, 0, 0.14), rgba(66, 66, 66, 0.247)), url("img/597255886-612x612.jpg");
                    background-position-y: 10%;
                    background-repeat: no-repeat;
                    background-size: cover;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    padding: 9%;
                }

                    .categoria-doble a {
                        font-size: 2em;
                        color: white;
                    }
                
                .categoria-triple {
                    width: 31%;
                    height: 250px;
                    background-image: linear-gradient(rgba(0, 0, 0, 0.14), rgba(66, 66, 66, 0.247)), url("img/photo-648024440-612x612.jpg");
                    background-position-y: 10%;
                    background-repeat: no-repeat;
                    background-size: cover;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    padding: 10%;
                }

                .categoria-triple a {
                    font-size: 1.6em;
                }

/* lista de categorías (productos) */

/* .wrap {
    width: 100%;
    height: auto;
    padding: 2% 7%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .wrap-text {
        display: flex;
        width: 90%;
        height: auto;
        text-align: left;
        margin-top: 2%;
    }

    .wrap h1 {
        color: #000000;
        font-weight: 400;
        font-size: 1.9em;
        margin-left: 1%;
    }

    .tienda {
        width: 90%;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1%;
        margin-top: 3%;
        margin-left: 2%;
        margin-bottom: 1%;
    }

        .nav-categorias {
            width: 25%;
            height: 10%;
            display: flex;
            flex-direction: column;
            background-color: white; 
            border: 1px solid #979797; 
            padding: 1% 0;
            background-color: #d1d1d1;
        }

            .nav-categorias a, .dropdown-btn {
                padding: 2% 5%;
                text-decoration: none;
                font-size: 1.3em;
                color: rgb(0, 0, 0);
                display: block;
                border: none;
                background: none;
                width: 100%;
                text-align: left;
                cursor: pointer;
                outline: none;
                letter-spacing: 0.02em;
            }

            .nav-categorias a:hover, .dropdown-btn:hover {
                color: #758f9c;
            }

            .fa-circle {
                color: #ffffff;
            }

            .active > .fa-circle{
                color: #c5321c;
            }

            .dropdown-container {
                display: none;
                background-color: none;
                z-index: 1;
                
            }

            .dropdown-container a {
                border-top: 1px solid white;
                padding-left: 20%;
                color: #000000;
            }

                .dropdown-container a:hover {
                    color: white;
                }

            .nav-categorias button a {
                padding: 0;
                margin: 0;
            }
            
            .nav-categorias button {
                display: flex;
                flex-direction: row;
                align-items: center;
                width: 100%;
                margin: 0;
                font-size: 1.05em;
            }

            .nav-categorias button::after {
                content: "";
                background: #c5331c00;
                position: absolute;
                z-index: -1;
                padding: 0;
                display: block;
            }

        .lista-productos {
            width: 70%;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2%;
            margin-top: 1%;
        }

            .filas {
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: row;
                justify-content: center;
            justify-content: space-around; 
                margin: 1% 0;
                gap: 1%;
            }

                .item {
                    display: flex;
                    flex-direction: column;
                    width: 28%;
                    justify-content: flex-start;
                    align-items: center;
                    margin: 0 1%;
                    background-color: white;
                    box-shadow: 1px 2px 5px rgba(57, 59, 70, 0.705);
                } 

                .picture img {
                    display: flex;
                    justify-content: center;
                    width: 95%;
                    height: 200px;
                    object-fit: contain;
                }

                .item .enfasis, .normal, .italic {
                    font-size: 1.2em;
                }

                .item .descrip-producto button {
                    width: 155px;
                    font-size: 0.9em;
                    padding: 5px 25px;
    
                }

            .pagination {
                display: inline-block;
                margin: 1%;
            }

                .pagination a {
                    color: black;
                    float: left;
                    padding: 8px 16px;
                    text-decoration: none;
                    transition: background-color .3s;
                  }

                .pagination a.active {
                    background-color: #c5321c;
                    color: white;
                  }
                  
                  .pagination a:hover:not(.active) {background-color: #ffffff;} */

/* Estilos Movil */
@media only screen and (max-width: 600px) {

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Lato', sans-serif;
    }

    .top-bar {
        display: flex;
        background-color: #c5321c;
        width: 100%;
        height: 8vh;
        justify-content: center;
        align-items: center;
    }
    
        h4{
            display: block;
            width: 85%;
            color: white;
            font-size: .75em;
            font-weight: 300;
            text-align: center;
        }

    header {
        display: none;
    }


    #header-page {
        display: none;
    }

    .header-mobile {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: 92vh;
        background-color: white;
        background-image: url(img/bginiciov.webp);
        background-position: center center;
        background-size: cover;
        position: relative;
    }

    .nav-mobile {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100px;
        margin: 0;
        padding: 0;
        background-color: white;
    }

    .logotipo {
        flex: 20;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hamburger {
        flex: 5;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .header-mobile-page {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: row;
        width: 100%;
        height: 125px;
        background-image: none;
    }

.logotipo-mobile {
        width: 80%;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hamburger-mobile {
       width: 20%;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .fa-bars {
        font-size: 1.5em;
        padding: 0;
        margin: 0;
    }

    .productos {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        width: 80%;
        padding: 65% 10% 0;
        text-align: center;
    }


        .principal {
            display: flex;
            justify-content: flex-start;
            flex-direction: column;
            width: 90%;
            align-self: flex-start;
            margin: 5%;
            position: absolute;
            bottom: 2%;
        }

                .principal h2{
                    font-weight: 400;
                    font-style: italic;
                    text-transform: uppercase;
                    letter-spacing: 0.05em;
                    color: white;
                }

                .principal h1{
                    color: white;
                    font-size: 1.8em;
                    font-weight: 700;
                }

            button {
                display: block;
                width: 90%;
                font-size: 1.1em;
                background: #00000000;
                color: black;
                border: 0.1em solid #ffffff;
                padding: 5px;
                position: relative;
                z-index: 1;
                overflow: hidden;
                margin: 10px;
                cursor: pointer;
            }
    
                button:hover {
                    color: #ffffff;
                }
    
                button::after {
                    content: "";
                    background: #c5321c;
                    position: absolute;
                    z-index: -1;
                    padding: 0.85em 0.75em;
                    display: block;
                }
    
                button[class^="slide"]::after {
                    transition: all 0.35s;
                }
                
                button[class^="slide"]:hover::after {
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    transition: all 0.35s;
                }
    
                button.slideleft::after {
                    top: 0;
                    bottom: 0;
                    left: -100%;
                    right: 100%;
                }
    
    .favoritos {
        display: none;
    }

    .titulos-mobile {
        display: flex;
        justify-content: center;
        text-align: center;
            /* background-color: #ebebeb; */
            background-color: white;
        padding: 15% 0;
    }

    .favoritos-mobile {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
            /* background-color: #ebebeb; */
            background-color: white;
    }

    .favorito {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        text-align: center;
        margin: 0 0 10% 0;
    }

    .imagen-favorito {
        width: 100% ;
        height: 300px;
        padding: 5%;
    }

    .texto-favorito {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 90% ;
    }

    .mas-productos {
        display: flex;
        overflow-x: auto;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: row;
        width: 100%;
        height: auto;
        margin: 0 auto 0;
        gap: 5%;
            /* background-color: #ebebeb; */
            background-color: white;
        padding: 0 2.5% 0 2.5%;
    }

    .mas-margen {
        padding: 15% 2.5% 0 2.5%;
    }
    
    .otro-producto {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        flex: 1;
        flex-shrink: 0;
        height: auto;
        gap: 5%;
        margin: 0 0 10%;
    }
    
    .otro-producto figure {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 1;
        aspect-ratio: 1 / 1;
        height: 130px;
        border-radius: 10px;
        padding: 6%;

    }
    
    .otro-producto h3 {
        font-size: .8em;
        font-weight: 400;
        color: black;
        margin: 10px 0;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
    }
    
    .otro-producto p {
        font-size: .8em;
        font-weight: 800;
        color: black;
        margin: 0 0;
        text-align: center;
        text-decoration: none;
        text-transform: none;
    }
    
    .fa-star {
        color: orange;
    }
    
        .titulo {
            display: flex;
            width: 50%;
            height: auto;
            padding: 20px;
            justify-content: center;
            align-items: center;

        }
    
            .titulo h2 {
                font-size: 1.8em;
                font-weight: 400;
                color: black;
                text-align: center;
            }
    
        .product-box {
            display: flex;
            width: 80%;
            height: auto;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 15%;
        }
    
            .miniatura {
                display: flex;
                flex-direction: column;
                width: 100%;
                height: auto;
            }
    
                .imagenresponsiva {
                    width: 80%;
                    display: flex;
                    justify-content: center;
                    background-color: white;
                    margin: 0 0 10px 0;
                }
    
                .imagenresponsiva img{
                    width: 350px;
                    height: 350px;
                    object-fit: cover;
                }

                .imagenresponsivah {
                    width: auto;
                    height: 100%;
                }

                .imagenresponsivah {
                    width: auto;
                    height: 100%;
                }
    
                .descrip-producto {
                    font-weight: 300;
                    text-align: center;
                    line-height: 2em;
                    margin: 8px 0;
                }
    
                .italic {
                    font-style: italic;
                    font-size: 1.2em;
                    font-weight: 300;
                }
    
                .enfasis {
                    font-weight: 700;
                    font-size: 1.5em;
                    letter-spacing: 0.04em;
                }
    
                .normal{
                    font-weight: 400;
                    font-size: 1.3em;
                }
    
                .descrip-producto button {
                    width: 80%;
                    font-size: 1em;
                }
    
        .plano-diferenciales {
            display: flex;
            flex-direction: column;
            width: 100%;
            justify-content: center;
            align-items: center;
            padding: 1% 1% 3.5%;
            /* background-color: #ebebeb; */
            background-color: white;
        }
    
        .plano-diferenciales h2{
            font-size: 1.8em;
            font-weight: 400;
            color: black;
            margin-top: 0.5%;
            margin-bottom: 1%;
        }
    
        .subtitulo {
            display: flex;
            width: 80%;
            flex-direction: row;
            justify-content: space-evenly;
            gap: 15%;
            margin: 10px 0 5px;
        }
    
        .subtitulo h2 {
            font-size: 1.6em;
            font-weight: 400;
        }
    
        .diferenciales-x {
            display: flex;
            flex-direction: row;
            align-items: center;
            width: 70%;
            margin: 10px;
            gap: 4%;
            /* border-left: solid 5px #c5321c ;
            border-right: solid 5px #979797; */
            padding: 0 10px;
        }
    
        .icono {
            width: 10%;
            height: auto;
            text-align: center;
            color: #979797;
        }
    
        .fa-recycle, .fa-leaf {
            color: #95c11f;
            font-size: 5em;
        }
    
        .fa-globe {
            color: #1f8ec1;
            font-size: 4em;
        }
    
        .fa-clipboard-check{
            font-size: 5em;
        }
    
        .plano-texto {
            width: 90%;
            line-height: 1.3em;
            font-size: 1.1em;
            border-right: solid 5px #979797;
            padding-right: 15px;
        }
    
        .plano-textoderecho {
            width: 90%;
            line-height: 1.3em;
            font-size: 1.1em;
            text-align: right;
            border-left: solid 5px #c5321c;
            padding-left: 15px;
        }
    
    .imagenestatica {
        width: 100%;
        height: 500px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("img/estatica2.webp");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
        .estatica-texto {
            width: 80%;
            font-weight: 900;
            text-align: center;
            position: absolute;
            font-size: 2em;
            color: white;
            text-shadow: 7px 7px rgba(0, 0, 0, 0.651);
        }
    
    .envases {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 10%;
        /* background-color: #ebebeb; */
        background-color: white;
        justify-content: center;
        align-items: center;
        padding-bottom: 3%;
    }
    
        .imagenes {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            width: 80%;
            height: auto;
            gap: 10%;
        }
    
            .ejemplo-envases {
                display: flex;
                justify-content: center;
                margin: 0 0 10px 0;
            }
    
            .ejemplo-envases img {
                width: 450px;
                height: auto;
                object-fit: cover;
            }
    
        .sobre-material {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: auto;
            gap: 15%;
        }
    
            .texto-material {
            display: flex;
            flex-direction: column;
            width: 75%;
            height: auto;
            padding: 20px;
            text-align: center;
            line-height: 3.5em;
            }
    
                .texto-material .italic {
                    font-size: 1.8em;
                }
    
                .texto-material .enfasis {
                    font-size: 2em;
                }
            
            .imagenes-material {
                display: flex;
                flex-direction: column;
                width: 80%;
                height: auto;
                justify-content: center;
                align-items: center;
                margin: 10% 0;
                gap: 25%;
            }
    
                .imagenes-material img{
                    width: 120px;
                    height: auto;
                    margin-bottom: 15% ;
                }
    
    footer {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: auto;
        background-color: rgb(17, 17, 17);
        padding: 2% 2% 1% 2%;
        color: white;
    }
    
        .contenido-footer {
            display: flex;
            flex-direction: column;
            width: 90%;
            height: auto;
            justify-content: flex-start;
            align-items: center;
            padding: 0.4% 0.4% 1.2%;
        }
    
        .redes-logo {
            width: 20%;
            /* max-width: 190px; */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
    
            .logo-footer {
                width: 100%;
                max-width: 190px;
            }
    
            .redes {
                display: flex;  
                flex-direction: row;
                width: 100%;
                gap: 20%;
                margin: 40px 0;
                justify-content: center;
            }
    
                .fa-facebook, .fa-instagram, .fa-linkedin {
                    font-size: 1.8em;
                    color: white;
                }
        
        .nav-footer {
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            width: 95%;
            height: auto;
            padding: 4% 0;
            gap: 9%;
            margin: 0;
        }
    
            .nav-footer a {
                font-size: .8em;
                color: white;
                text-decoration: none;
            }
    
            .nav-footer a:hover {
                color: #c5321c;
                text-decoration: none;
            }
    
            dt {
                margin: 0 0 30px;
                font-size: 1.2em;
                font-weight: 700;
                letter-spacing: 0.08em;
            }
    
            dd {
                margin: 0 0 10px;
                font-size: 1em;
                letter-spacing: 0.05em;
            }
    
        .mapa {
            display: flex;
            flex-direction: column;
            width: auto;
            height: auto;
            line-height: 1.5em;
        }
    
            .direccion .enfasis {
                font-size: 1.3em;
            }
    
            .direccion p {
                font-size: 1em;
                font-weight: 400;
            }
    
    #contacto-whats {
        display: flex;
        position: fixed;
        bottom: 0;
        right: 10px;
        justify-content: center;
        align-items: center;
        width: 85px;
        height: 85px;
        /* text-align: end; */
        font-size: 4em;
        background-color: rgba(255, 255, 255);
        /* border-radius: 90% 0 0; */
        border-radius: 50%;
        /* border: 1px solid #b4b4b4; */
        box-shadow: 0px 0px 1px 1px rgb(155 155 155);
    }
    
        .fa-whatsapp {
            color: #c5321c;
        }

    /* producto preview html */
    
    .segunda-pagina {
        display: none;
    }
    
        .segunda-pagina nav ul li div {
            background: white;
        }
    
        main {
            display: flex;
            flex-direction: column;
            width: 100%;
            height: auto;
            justify-content: flex-start;
            align-items: center;
            /* background-color: #ebebeb; */
            background-color: white;
        }

        .detalles-producto {
            display: flex;
            flex-direction: column;
            width: 80%;
            height: 950px;
            justify-content: center;
            align-items: center;
            margin: 2% 0;
        }

        .imagen-producto {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-direction: column-reverse;
            flex: 1;
            height: 500px;
            background-color: white;
        }

        .galeria-producto {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex: 1;
            height: 500px;
            flex-direction: row;
            gap: 5%;
        }

        .mini {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100px;
            height: 100px;
            border: 1px solid rgb(150, 150, 150);
            background-color: white;
            cursor: pointer;
            padding: 8%;
            margin: 0 0 15%;
        }

        .foto-principal-producto {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 400px;
            height: 200px;
            padding: 6%;
        }

    .especificaciones-producto {
        flex: 3;
        height: 500px;
    }

    .especificaciones-producto a  {
        font-size: .8em;
        font-weight: 400;
        text-decoration: none;
        margin-bottom: 0;
        color: #c5321c;
    }

    .especificaciones-producto dt  {
        margin: 0 0 6%;
    }

    .especificaciones-producto dl  {
        font-size: 1.2em;
    }

    .especificaciones-producto dd  {
        font-size: .8em;
        padding: 2.25%;
        border-bottom: 2px solid rgba(128, 128, 128, .4);
    }

    .especificaciones-producto dd span  {
        font-weight: 800;
        color: rgb(41, 39, 39);
    }

    .cotizar {
        width: 100%;
        text-align: center;
    }    
    .cotizar button {
        width: 100%;
        font-size: 1.6em;
        border: 0.1em solid #7c7c7c;
        margin: 5% 0 0;
    }  


            .barra-cromatica {
                display: flex;
                justify-content: center;
                width: 100%;
                height: auto;
                margin-top: 5%;
            }
    
                .colores {
                    width: 90%;
                    height: 55px;
                    background: linear-gradient(to right, yellow 0%, rgb(137, 240, 21) 17%, blue 33%, purple 50%, red 66%, orange 83%, yellow 100%);
                    cursor: crosshair;
                }
    
        
    .container-related-product{
        display: none
    }
        
        .slider {
            width: 60%;
            text-align: center;
            position: relative;
            padding: 15px;
        }
    
            .slides {
                width: 100%;
                display: flex;
                overflow-x: hidden;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                transition: all .15s ease;
                padding: 13px;
                /* padding: 10px 0; */
            }
    
            .slides .miniatura-slides {
                scroll-snap-align: initial;
                transition: transform 0.20s;
                display: flex;
                justify-content: center;
                align-items: center;
                transform: translateX(0px);
                margin: 0 40px;
              }
    
                .miniatura-slides {
                    display: flex;
                    flex-direction: column;
                    width: 30%;
                    height: auto;
                    margin: 20px 0;
                    padding: 10px 10px;
                    /* box-shadow: 1px 2px 5px rgb(211, 211, 211); */
                }
    
                .miniatura-slides .imagenresponsiva img{
                    width: 250px;
                    height: 250px;
                    object-fit: contain;
                }
    
                .miniatura-slides .descrip-producto {
                    line-height: 1.7em;
                }
    
                .miniatura-slides .italic {
                    font-style: italic;
                    font-size: 1.2em;
                    font-weight: 300;
                }
    
                .miniatura-slides .enfasis {
                    font-weight: 700;
                    font-size: 1.2em;
                }
    
                .miniatura-slides .normal{
                    font-weight: 300;
                    font-size: 1.2em;
                    padding-top: 10px;
                }
    
                .miniatura-slides .descrip-producto button {
                    width: 165px;
                    font-size: 0.9em;
                    padding: 5px 25px;
    
                }
    
        .btn-next, .btn-preview {
            font-size: 2em;
            background: #ffffff00;
            color: black;
            position: relative;
            overflow: none;
            margin: 10px;
            width: 8%;
            cursor: pointer;
            border: none;
        }
    
            .btn-next:hover, .btn-preview:hover {
                color: #c5321c;
            }
    
            .btn-next::after, .btn-preview::after {
                background: none;
            }
    
    
        /* .borrador {
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 50%;
            height: auto;
            padding: 15px;
            margin: 1% 3%;
            line-height: 2em;
        } */
            
    
    /* lineas de productos*/
    
    
    #lineas-productos {
        display: flex;
        width: 100%;
            /* background-color: #ebebeb; */
            background-color: white;
        height: auto;
        padding: 2%;
        align-items: center;
        flex-direction: column;
    }
    
        .grid {
            width: 70%;
            /* background-color: white;
            padding: 1%; */
        }
    
            .grid h2 {
                font-size: 1.9em;
                font-weight: 400;
                margin-bottom: 1%;
                color: #7c7c7c;
                font-style: italic;
                letter-spacing: 0.05em;
                text-decoration: none;
            }
    
            .galeria {
                display: flex;
                width: 100%;
                border-top: .1em solid #d1d1d1;
                /* border-bottom: 0.1em solid #d1d1d1; */
                padding: 2% 1%;
                margin-bottom: 3%;
                justify-content: center;
            }
    
                .esquema-categoria {
                    width: 90%;
                    height: auto;
                }
    
                    .responsiva {
                        width: 100%;
                        height: 300px;
                        background-image: linear-gradient(rgba(0, 0, 0, 0.14), rgba(66, 66, 66, 0.247)), url("img/bginicio2.jpg");
                        background-position-y: 30%;
                        background-repeat: no-repeat;
                        background-size: cover;
                        position: relative;
                        display: flex;
                        justify-content: center;
                        padding: 11%;
                    }
    
                    .responsiva:hover, .categoria-doble:hover, .categoria-triple:hover{
                        filter: opacity(80%);
                        box-shadow: 5px 4px 9px 0 rgb(53, 57, 75);
                    }
    
                    .responsiva a, .categoria-doble a, .categoria-triple a {
                        font-size: 2.5em;
                        color: white;
                        font-weight: 800;
                        text-decoration: none;
                        letter-spacing: 0.1em; 
                        font-style: normal;
                    }
    
                .varias-categorias{
                    display: flex;
                    flex-direction: row;
                    width: 100%;
                    height: auto;
                    /* gap: 15%; */
                    justify-content: space-between;
                }
    
                    .categoria-doble {
                        width: 48%;
                        height: 250px;
                        background-image: linear-gradient(rgba(0, 0, 0, 0.14), rgba(66, 66, 66, 0.247)), url("img/597255886-612x612.jpg");
                        background-position-y: 10%;
                        background-repeat: no-repeat;
                        background-size: cover;
                        position: relative;
                        display: flex;
                        justify-content: center;
                        padding: 9%;
                    }
    
                        .categoria-doble a {
                            font-size: 2em;
                            color: white;
                        }
                    
                    .categoria-triple {
                        width: 31%;
                        height: 250px;
                        background-image: linear-gradient(rgba(0, 0, 0, 0.14), rgba(66, 66, 66, 0.247)), url("img/photo-648024440-612x612.jpg");
                        background-position-y: 10%;
                        background-repeat: no-repeat;
                        background-size: cover;
                        position: relative;
                        display: flex;
                        justify-content: center;
                        padding: 10%;
                    }
    
                    .categoria-triple a {
                        font-size: 1.6em;
                    }
    
    /* lista de categorías (productos) */
    
    .wrap {
        width: 100%;
        height: auto;
        padding: 2% 7%;
        /* background-color: #d1d1d1; */
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
        .wrap-text {
            display: flex;
            width: 90%;
            height: auto;
            text-align: left;
            margin-top: 2%;
        }
    
        .wrap h1 {
            color: #000000;
            font-weight: 400;
            font-size: 1.9em;
            margin-left: 1%;
        }
    
        .tienda {
            width: 90%;
            height: auto;
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 1%;
            margin-top: 3%;
            margin-left: 2%;
            margin-bottom: 1%;
        }
    
            .nav-categorias {
                width: 25%;
                height: 10%;
                display: flex;
                flex-direction: column;
                /* background-color: white; */
                /* border: 1px solid #979797; */
                padding: 1% 0;
            }
    
                .nav-categorias a, .dropdown-btn {
                    padding: 2% 5%;
                    text-decoration: none;
                    font-size: 1.3em;
                    color: rgb(0, 0, 0);
                    display: block;
                    border: none;
                    background: none;
                    width: 100%;
                    text-align: left;
                    cursor: pointer;
                    outline: none;
                    letter-spacing: 0.02em;
                }
    
                .nav-categorias a:hover, .dropdown-btn:hover {
                    color: #758f9c;
                }
    
                .fa-circle {
                    color: #ffffff;
                }
    
                .active > .fa-circle{
                    color: #c5321c;
                }
    
                .dropdown-container {
                    display: none;
                    background-color: none;
                    z-index: 1;
                    
                }
    
                .dropdown-container a {
                    border-top: 1px solid white;
                    padding-left: 20%;
                    color: #000000;
                }
    
                    .dropdown-container a:hover {
                        color: white;
                    }
    
                .nav-categorias button a {
                    padding: 0;
                    margin: 0;
                }
                
                .nav-categorias button {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    width: 100%;
                    margin: 0;
                    font-size: 1.05em;
                }
    
                .nav-categorias button::after {
                    content: "";
                    background: #c5331c00;
                    position: absolute;
                    z-index: -1;
                    padding: 0;
                    display: block;
                }
    
            .lista-productos {
                width: 70%;
                height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2%;
                margin-top: 2%;
            }
    
                .filas {
                    width: 100%;
                    height: auto;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    /* justify-content: space-around; */
                    margin: 2% 0;
                    gap: 1%;
                }
    
                    .item {
                        display: flex;
                        flex-direction: column;
                        width: 28%;
                        justify-content: center;
                        align-items: center;
                        margin: 0 1%;
                        background-color: white;
                        box-shadow: 1px 2px 5px rgba(57, 59, 70, 0.705);
                    } 
    
                    .picture img {
                        width: 250px;
                        height: 250px;
                        object-fit: contain;
                    }
    
                    .item .enfasis, .normal, .italic {
                        font-size: 1.2em;
                    }
    
                    .item .descrip-producto button {
                        width: 165px;
                        font-size: 0.9em;
                        padding: 5px 25px;
        
                    }
    
                .pagination {
                    display: inline-block;
                    margin: 1%;
                }
    
                    .pagination a {
                        color: black;
                        float: left;
                        padding: 8px 16px;
                        text-decoration: none;
                        transition: background-color .3s;
                      }
    
                    .pagination a.active {
                        background-color: #c5321c;
                        color: white;
                      }
                      
                      .pagination a:hover:not(.active) {background-color: #ffffff;}

                    }
