html{
    font-size: 62.5%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after{
    box-sizing: inherit;
}

body{
    font-size: 16px; /*1rem = 10px*/
    padding: 0;
    margin: 0;
    font-family: 'Mukta', sans-serif;
    
}



/*GLOBALES*/
a{
    text-decoration: none;
    color: #000;
}
h1,h2,h3,h4,h5,p{
    padding: 0;
    margin: 0;
}
.pointer{
    cursor: pointer;
}
.underline{
    text-decoration: underline;
}

/*LOGO WHATSAPP*/
.whatsapp-icon{
    width: 8rem;
    position: sticky;
    bottom: 1.5rem;
    left: calc(100% - 8rem - 1.5rem);
}
.whatsapp-icon-container{
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
}
.negrita{
    font-weight: bold;
}

/*HEADER*/
header{
    position: sticky;
    top: 0;
}


.header-flex{
    height: 8rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.75);
    background-color: #fff;

}
.logo{
    height: 100%;
}
.menu-responsive-icon{
    display: flex;
    align-items: center;
}

.menu-responsive-icon-open{
    display: flex;
    align-items: center;   
}

/*NAV RESPONSIVE*/

.navegacion{
    position: absolute;
    left: -100%;
    /* left: 0; */
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, .8);
    transition: all .1s linear;
}
.nav-items{
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 80%;
    max-width: 30rem;
    background-color: #fff;
    
}
.nav-abierto{
    left: 0;
    top: 0;
}
.nav-header{
    display: flex;
    padding: 2rem;
    justify-content: space-between;
    /* align-items: center; */
    box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.75);
    z-index: 10;
    margin-bottom: 1.5rem;
}
.tecsopel--nav-header{
    font-size: 2.8rem;
    font-weight: 700;
}

.icono-nav{
    padding: 2rem;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
}
.icono-nav svg{
    margin-right: 2rem;
    margin-bottom: .3rem;
}
.icono-nav:hover,
.icono-nav:active{
    background-color: rgb(218, 218, 218);
}

/*HERO*/
.hero-section{
    height: calc(100vh - 8rem);
    width: 100%;
    z-index: -10;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.presentacion{
    height: 70vh;
    width: 80%;
    max-width: 35rem;
    background-color: rgba(0, 153, 255, 0.8);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
@media (min-width: 768px){
    .presentacion{
        position: absolute;
        left: 5rem;
    }
}
.presentacion__nombre{
    font-size: 4.5rem;
    text-transform: uppercase;
    font-weight: 300;
}
.presentacion__nombre--tecsopel{
    font-weight: 800;
    font-size: 4.7rem;
}
.presentacion__dedicacion{
    font-size: 3rem;
}
.presentacion__nombre,
.presentacion__dedicacion{
    color: #fff;
}

/*SECCION PRODUCTOR*/

.categories-section{
    min-height: calc(100vh - 8rem);
    width: 100%;
}
.categories-title{
    text-align: center;
    padding: 5rem 0 2rem 0;
    font-size: 4.3rem;
    margin-bottom: 5rem;
}
.categories-container{
    display: flex;
    flex-direction: column;
}

.category{
    /*GRADIANTE*/
    /* background: rgb(255,255,255);
    background: linear-gradient(197deg, rgba(255,255,255,1) 3%, rgba(0,153,255,0.8) 100%); */

    /*COLOR LISO*/
    background-color: rgb(117, 200, 255);
    width: 30rem;
    height: 30rem;
    /* background-color: rgba(0, 153, 255, 0.8); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    /* border: 1px solid rgb(212, 212, 212); */
    margin-bottom: 3rem;
    cursor: pointer;
    transition: all .1s linear;
}

.category:hover{
    width: 33rem;
    height: 33rem;
}
@media (min-width: 768px){
    .categories-container{
        margin: 0 auto;
        width: 90%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 33rem);
    }
    .category{
        width: 25rem;
        height: 25rem;
    }
    .category:hover{
        width: 27rem;
        height: 27rem;
    }
}
/* @media (min-width: 992px){
    .categories-container{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .category{
        width: 22rem;
        height: 22rem;
    }
} */
@media (min-width: 1200px){
    .categories-container{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .category{
        width: 25rem;
        height: 25rem;
    }
}
@media (min-width: 1300px){
    .categories-container{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .category{
        width: 28rem;
        height: 28rem;
    }
    .category:hover{
        width: 30rem;
        height: 30rem;
    }
}
.category-title{
    color: rgb(49, 49, 49);
    display: inline;
    width: 15rem;
    padding: .5rem 2rem .5rem 3rem;
    margin: 3rem 0 0 -1rem;
    font-size: 3.6rem;
    /* background-color: rgba(184, 184, 184, 0.3); */
    
    /*GRADIANT*/
    /* background-color: rgba(27, 164, 255, 0.5); */

    /*COLOR LISO*/
    background-color: rgb(27, 164, 255);


    box-shadow: 3px 3px 7px -2px rgba(0,0,0,0.55);
-webkit-box-shadow: 3px 3px 7px -2px rgba(0,0,0,0.55);
-moz-box-shadow: 3px 3px 7px -2px rgba(0,0,0,0.55);
}
.category-img{
    width: 67%;
    margin: 0 0 0 auto;
    transition: all .1s linear;
}
/*CONTACTO*/
.contacto-section{
    min-height: calc(100vh - 8rem);
    width: 100%;
    background-color: rgb(117, 200, 255);
    padding:4rem 2rem;
}
.categories-title--contacto{
    color: #fff;
    padding: 1rem;
}
.info-mapa-container{
    background-color: rgb(32, 32, 32);
    /* width: 90%; */
    margin: 0 auto;
    padding: 2rem;
    border-radius: .5rem;
}
.contacto-info-container{
    color: #fff;
    font-size: 2rem;
}
@media (min-width: 992px){
    .contacto-info-container{
        text-align: center;
        font-size: 2.8rem;
    }
    .contacto-item::before{
        content: attr();
    }
}
.contacto-info-container p{
    padding: 2rem 0;
}
iframe{
    width: 100%;
    height: 35rem;
    border-radius: .5rem;
}
@media (min-width: 768px){
    iframe{
        height: 40rem;
    }
}
@media (max-width: 440px){
    .flex-contacto svg{
        position: relative;
        width: 0;
        height: 0;
        padding: 0;
        margin: 0;
    }
}
@media (min-width: 440px){
    .flex-contacto{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .flex-contacto svg{
        margin-right: 2rem;
    }
}
#contacto{
    padding: 8rem 0 0 0;
}

/*FOOTER*/

.footer{
    width: 100%;
    padding: 4rem 2rem;
    background-color: #000;
}
@media (min-width: 768px){
    .nav-footer{
        width: 47rem;
        display: flex;
        justify-content: space-between;
    }
}

.nav-footer a{
    color: #fff;
    font-size: 2rem;
    
}
.copy-text,.credits-text{
    padding-top: 3rem;
    color: #fff;
    text-align: center;
    font-size: 2.2rem;
}
.credits-text{
    padding-top: 2rem;
    font-size: 1.8rem;
}

/*NOSOTROS*/

.nosotros-containder{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
    border: 1px solid rgb(146, 146, 146);
    border-radius: 1rem;
    background-color: #fff;
    margin-top: -50vh;
    margin-bottom: 3rem;
}
.nosotros-texto__titulo{
    font-size: 2.8rem;
    margin: 2rem 0 3rem 0;
}
.nosotros-texto__desc{
    font-size: 2rem;
    margin: 2rem 0 3rem 0;
}
.nosotros-img img{
    width: 100%;
    border-radius: .3rem;
}
@media (min-width: 768px){
    .nosotros-containder{
        padding: 2rem;
    }
}
@media (min-width: 992px){
    .nosotros-containder{
        padding: 4rem;
    }
}
@media (min-width: 1200px){
    .nosotros-containder{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    .nosotros-texto{
        margin-right: 1rem;
    }
    .nosotros-img{
        margin-left: 1rem;
    }
    .nosotros-texto__titulo{
        font-size: 3rem;
        margin: 2rem 0 5rem 0;
    }
    .nosotros-texto__desc{
        margin: 5rem 0 3rem 0;
    }
}

/*PRODUCTOS -- BUSCADOR*/
.buscador{
    width: 95%;
    background-color: #fff;
    margin: 1rem auto;
    padding: 1rem;
    border-radius: .7rem;
    display: flex;
    align-items: center;
}
.buscador__input{
    width: 100%;
    height: 3rem;
}
.buscador__input input{
    height: 3rem;
    width: 95%;
    border-radius: 0;
    border: 1px solid #aaa;
    padding: 1rem;
}
.buscador__input input:hover{
    border: 1px solid #000;

}
.buscador__icono svg{
    margin-top: .4rem;
}

.resultado-busqueda{
    margin: 0 auto;
    width: 95%;
}

/*PRODUCTOS -- PRODUCTOS*/
#body-productos{
    background-color: rgb(209, 209, 209);
}
.productos-container{
    margin: 2rem auto 2rem auto;
    background-color: #fff;
    border-radius: .5rem;
    width: 95%;
}
@media (min-width: 768px){
    .productos-container{
        width: 85%;
    }
    .product-section{
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 992px){
    .productos-container{
        width: 80%;
    }
    .product-section{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (min-width: 1200px){
    .productos-container{
        width: 80%;
    }
    .product-section{
        grid-template-columns: repeat(4, 1fr);
    }
}
.producto{
    display: grid;
    grid-template-columns: 2fr 3fr;
    width: 95%;
    margin: 0 auto;
    border-top: 1px solid rgb(158, 158, 158);
}
@media (min-width: 768px){
    .producto{
        width: 224px;
        height: 330px;
        grid-template-columns: 1fr;
        border-top: none;
        border: 1px solid rgb(233, 233, 233);
        margin-bottom: 3rem;
        padding: 1rem;
    }
    
}
.producto img{
    width: 100%;
    padding: 1rem 0 1rem 1rem;
}
@media (min-width: 768px){
    .producto img{
        width: 90%;
        margin: 0 auto;
        padding-right: 1rem;
    }
}
.producto-info{
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.producto__titulo{
    font-size: 1.8rem;
}
.producto__precio{
    font-size: 2rem;
}
.product-section__title{
    padding: 2rem 0 1rem;
    text-align: center;
    font-size: 2.8rem;
}
@media (min-width: 768px){
    .product-section__title{
    font-size: 3rem;
    grid-column: 1/3;
    margin-bottom: 2rem;
    }
}
@media (min-width: 992px){
    .product-section__title{
    font-size: 3.4rem;
    grid-column: 1/4;
    }
}
@media (min-width: 1200px){
    .product-section__title{
        grid-column: 1/5;
    }
}
.boton-info{
    width: 100%;
    padding: 1rem;
    background-color: rgba(0, 153, 255, 0.445);
    text-align: center;
    font-size: 1.7rem;
    font-weight: 600;
}
.boton-info:hover{
    background-color: rgba(0, 153, 255, 0.603);

}
.boton-info:active{
    background-color: rgb(0, 153, 255);
}
#enlace-sobres,
#enlace-bolsas,
#enlace-papel,
#enlace-cajas{
    /* width: .5rem;
    height: .5rem;
    background-color: red; */
    position: relative;
    top: -9rem
}