
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*脥NDICE*/
/*LAYOUT GENERAL*/
/*MENU*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/





/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*LAYOUT GENERAL*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

* {
    box-sizing: border-box;
    /*outline: 1px solid yellow;*/
}

html {
    font-size: 10px;
    /*font-family: 'Open Sans', sans-serif;*/
    /*font-family: 'Space Mono', monospace;*/
    font-family: 'Raleway', sans-serif;
    color: #352828;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #FFFFFF;
    width: 100%;
    margin: 0; 
    padding: 0;
    overflow-x: hidden;
}

.movil {
    display: none;
}

.escritorio {
    display: block;
}

/*ELEMENTOS GENERALES*/


/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*MENU*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

/*LAYOUT*/
.navbar{
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100px;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 50px;
    background-color: #FFFFFF;
    /*-webkit-box-shadow: 0px 1px 2px 0px rgba(219, 220, 220, 0.3);
    -moz-box-shadow: 0px 1px 2px 0px rgba(219, 220, 220, 0.3);
    box-shadow: 0px 1px 2px 0px rgba(219, 220, 220, 0.3);*/
}


/*ELEMENTOS MENU*/
.menu-magma-ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 0;
    text-align: right;
    height: 100%;
    width: 100%;
}

.menu-magma-ul:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.menu-magma-li {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: all .2s ease-in-out;
}

a.menuLink {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-width: 70px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-style: normal;
    font-weight: 400;
    color: #352828;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

a.menuLink:hover {
    font-weight: 700;
    background-color: rgba(219, 220, 220, 0.2);  
}

a.active {
    font-weight: 700;
}

#logoMenu{
    height: auto;
    width: 150px;
    margin-left: 50px;
    margin-right: 0;
}

.menu-logo-container {
    display: flex;
    align-items: center;
    position: absolute; 
    left: 0; 
    top: 0; 
    bottom: 0;  
}

.ruta-menu {
    margin-left: 50px;
}

.ruta-menu a {
    text-decoration: none;
    color: #352828;
}

/*ESTILO HAMBURGUESA*/
#hamburguesa{
    display: block;
    position: absolute;
    right: 15px;
    top: 27.5px;
    height: 25px;
    width: 25px;
    cursor: pointer;
}

#raya1{
    display: block;
    background-color: gray;
    height: 3px;
    width: 100%;
    margin-bottom: 7px;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

#raya2{
    display: block;
    background-color: gray;
    height: 3px;
    width: 60%;
    margin-left: 40%;
    margin-bottom: 7px;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

#raya3{
    display: block;
    background-color: gray;
    height: 3px;
    width: 30%;
    margin-left: 70%;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

#hamburguesa.cruz #raya2 {
    opacity: 0;
}

#hamburguesa.cruz #raya3 {
    width: 100%;
    margin-left: 0%;
    -moz-transform: translate(0, -10px) rotate(-45deg);
    -ms-transform: translate(0, -10px) rotate(-45deg);
    -webkit-transform: translate(0, -10px) rotate(-45deg);
    transform: translate(0, -10px) rotate(-45deg);
}

#hamburguesa.cruz #raya1 {
    -moz-transform: translate(0, 10px) rotate(45deg);
    -ms-transform: translate(0, 10px) rotate(45deg);
    -webkit-transform: translate(0, 10px) rotate(45deg);
    transform: translate(0, 10px) rotate(45deg);
}


/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*BOTÓN WHATSAPP*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

.boton-whatsapp-link {
    position: fixed; 
    z-index: 10; 
    bottom: 25px; 
    right: 25px;
    transition: all .2s ease-in-out;
    text-decoration: none;
}

.boton-whatsapp-link:hover {
    opacity: 0.9;
}

.boton-whatsapp-imagen {
    width: 100px; 
    height: 102px;
}

.label-whatsapp {
    display: block; 
    width: 100%; 
    text-align: center; 
    margin: auto; 
    color: white; 
    text-decoration: none !important;
    cursor: pointer;
    text-shadow: 1px 1px 2px #000000;
    font-weight: 700;
    font-size: 14px;
}

@media only screen and (max-width: 900px) {
    .boton-whatsapp-link {
        bottom: 25px; 
        right: 25px;
    }
    
    .boton-whatsapp-imagen {
        width: 70px; 
        height: 71px;
    }
    
    .label-whatsapp {
        font-size: 8px;
    }
}


/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*FOOTER*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    width: 100%; 
    background-color: rgba(230,228,222,0.15);
    -webkit-box-shadow: 0px -1px 2px 0px rgba(219, 220, 220, 0.6);
    -moz-box-shadow: 0px -1px 2px 0px rgba(219, 220, 220, 0.6);
    box-shadow: 0px -1px 2px 0px rgba(219, 220, 220, 0.6);
}

.contenedor-general-footer {
    display: flex;
    width: 1000px;
    justify-content: flex-start;
}

.logo-footer {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.redes-sociales-footer {
    display: flex;
    flex-direction: column;
    width: 250px;
    justify-content: center;
    align-items: center;
}

.redes-sociales-footer-link {
    text-decoration: none;
    color: #C45E2E;
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    padding: 5px;
}

.contenedor-info-footer {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.sitemap-footer {
    display: flex;
    margin-bottom: 50px;
}

.sitemap-footer-seccion {
    display: block;
    width: 180px;
    margin-left: 20px;
    margin-right: 40px;
}

.sitemap-footer-seccion h4 {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    color: #636464;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(99,100,100,0.4);
}

.sitemap-footer-seccion a {
    display: block;
    text-decoration: none;
    font-size: 1.4rem;
    color: #636464;
    padding-top: 5px;
    padding-bottom: 5px;
}

.sitemap-footer-seccion a:hover {
    text-decoration: underline;
}


/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*HOME*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

.contenedor-banner-home {
    display: flex;
    position: relative;
    margin: auto;
    width: 95%;
    padding: 50px;
    /*padding-left: 0;
    padding-right: 0;*/
    height: 80vh;
    background-color: transparent;
}

.texto-banner-home {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 45%;
    justify-content: flex-end;
    align-items: flex-start;
}

.titulo-banner-home{
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 10rem;
    color: #FFFFFF;
    margin-bottom: 0px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.titulo-banner-home-modificado{
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    color: #FFFFFF;
    font-size: 2.1rem;
    margin-top: -25px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.h1-banner-home {
    font-weight: 400;
    font-size: 1.8rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.banner-image-home-contenedor {
    background: rgb(20,20,20,0);
    background: linear-gradient(232deg, rgba(20,20,20,0) 61%, rgba(20,20,20,0.6951155462184874) 100%);
}

.selector-banner-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*align-items: flex-end;*/
    align-items: center;
    width: 55%;
}

.boton-banner-home {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 150px;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 0;
    font-family: 'Space Mono', monospace;
    /*background-color: #C45E2E;*/
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    /*color: #FFFFFF;*/
    color: #000000;
    margin-top: 10px;
    margin-bottom: 10px;    
}

.boton-banner-home:hover {
    /*background-color: rgb(158, 76, 37);  */
    color: #FFFFFF;
    background-color: #000000;
    border: 1px solid #FFFFFF;
}

.grid-container-home {
    display: grid; 
    height: 350px;
    /*width: 90%;*/
    /*grid-template-columns: 90px 90px 90px 90px 90px;*/
    grid-template-columns: 112.5px 112.5px 112.5px 112.5px;
    grid-template-rows: auto;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-items: center;
    align-items: center;
    /*justify-content: left;*/
    justify-content: center;
    align-content: center;
    background-color: #FFFFFF; 
    padding: 25px;
    /*padding-left: 50px;*/
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.8);
    width: 112.5px;
    height: 54px;
    transition: transform .2s; /* Animation */
    -webkit-box-shadow: 0px 4px 3px -1px rgba(99, 100, 100, 0.4);
    -moz-box-shadow: 0px 4px 3px -1px rgba(99, 100, 100, 0.4);
    box-shadow: 0px 4px 3px -1px rgba(99, 100, 100, 0.4);
    transition: all .2s ease-in-out;
}

.grid-item:hover {
    z-index: 1;
    transform: scale(1.05);
    -webkit-box-shadow: 0px 5px 3px -1px rgba(99, 100, 100, 0.7);
    -moz-box-shadow: 0px 5px 3px -1px rgba(99, 100, 100, 0.7);
    box-shadow: 0px 5px 3px -1px rgba(99, 100, 100, 0.7);
}

.link-matriz-home {
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.img-matriz-home {
    object-fit: cover;
    width: 112.5px;
    height: 54px;
}

.texto-selector-banner-home {
    display: flex;
    justify-content: flex-start;
    width: 515px;
    background-color: #E6E4DE;
    padding-left: 50px;
}

#p-texto-selector-home {
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 1.6rem;
    color: #636464;
}

.seccion-productos-home {
    display: flex;
    flex-direction:column;
    align-items: center;
    width: 100%;
    background-color: #FFFFFF;
    padding: 0;
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 20px;
}

.adorno-superior-productos-home {
    width: 100%;
    height:150px;
    object-fit: cover;
    /*margin-top: -20px;*/
}

.texto-productos-home {
    display: block;
    width: 100%;
    padding-bottom: 20px;
}

.texto-productos-home h2{
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 3.5rem;
    color: #C45E2E;
    margin-bottom: 15px;
}

.texto-productos-home p{
    font-size: 1.8rem;
    color: #636464;
    width: 45%;
    margin-top: 0px;
}





/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*CARRUSEL DE MATERIALES*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/



/*Celular*/
.contenedor-categorias-productos-home {
    display: block;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 20px;
}

.categoria-productos-home {
    display: block;
    width: 80%;
    height: 380px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 25px;
    margin-right: 25px;
    position: relative;
    z-index: 0;
    transition: all .4s ease-in-out; 
}

.link-categoria-productos-home {
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.img-categoria-productos-home {
    width: 100%;
    height: 380px;
    object-fit: cover;
    filter: grayscale(0);
    transition: all .4s ease-in-out; 
}

.logo-categoria-productos-home {
    position: absolute;
    display: block;
    width: 100px;
    top: -50px;
    left: -50px;
    z-index: 1;
    transition: all .4s ease-in-out; 
}

.titulo-categoria-productos-home {
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 2.5rem;
    color: #FFFFFF;
    text-shadow: 1px 1px #000000;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    padding-right: 5px;
    transition: all .4s ease-in-out;  
}


@media only screen and (min-width: 800px) {

}



@media only screen and (min-width: 1200px) {

    /*Escritorio*/

    .contenedor-categorias-productos-home {
        display: block;
        width: 100%;
        padding-top: 50px;
        padding-bottom: 20px;
        margin: auto;
    }
    
    .categoria-productos-home {
        display: block;
        width: 20%;
        height: 380px;
        position: relative;
        z-index: 0;
        transition: all .4s ease-in-out;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .link-categoria-productos-home {
        text-decoration: none;
        width: 100%;
        height: 100%;
    }
    
    .img-categoria-productos-home {
        width: 100%;
        height: 380px;
        
        /*Quita el efecto de grayscale por peticion del cliente. Solo poner un uno si se quiere regresar.*/
        filter: grayscale(0);
        transition: all .4s ease-in-out; 
    }
    
    .logo-categoria-productos-home {
        position: absolute;
        display: block;
        width: 100px;
        top: -50px;
        left: -50px;
        z-index: 1;
        transition: all .4s ease-in-out; 
    }
    
    .titulo-categoria-productos-home {
        font-family: 'Space Mono', monospace;
        font-weight: 400;
        font-size: 2.5rem;
        /*color: #C45E2E;*/
        color: #FFFFFF;
        text-shadow: 1px 1px #000000;
        position: absolute;
        bottom: 0;
        right: 0;
        margin: 0;
        padding-right: 5px;
        transition: all .4s ease-in-out;  
    }


}





@media only screen and (min-width: 1600px) {
    
    .categoria-productos-home {
        height: 500px;
    }
    
    .img-categoria-productos-home {
        height: 500px;
    }

}



/*FLECHAS SLICK*/

.slick-prev:before {
  color: gray !important;
}
.slick-next:before {
  color: gray !important;
}


/*Animaciones*/

/*.categoria-productos-home:hover{
    transform: scale(1.05);
}*/

.categoria-productos-home:hover .img-categoria-productos-home {
    filter: grayscale(0);
}

.categoria-productos-home:hover .titulo-categoria-productos-home {
    bottom: -20px;
    right: -10px;
}

.categoria-productos-home:hover .logo-categoria-productos-home {
    top: -55px;
    left: -55px;
}





/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*HOME MARCAS*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/


.marcas-representadas-home {
    width: 100%; padding-top: 120px; padding-bottom: 120px; display: block;
}


.marcas-representadas-home div {
    display: flex; justify-content: center; align-items: center; width: 100%; flex-wrap: wrap;
}

.contenedor-marca-home {
    display: block; width: 50%; margin-right: 0; margin-left: 0; margin-top: 20px;
}


@media only screen and (min-width: 800px) {

    .contenedor-marca-home {
        display: block; width: 30%; margin-right: 5%; margin-left: 5%;
    }


}



@media only screen and (min-width: 1200px) {

    /*Escritorio*/
    
    .marcas-representadas-home {
        width: 100%; padding-top: 150px; padding-bottom: 150px; display: block;
    }
    
    .contenedor-marca-home {
        display: block; width: 150px; margin-right: 15px; margin-left: 15px;
    }

}




@media only screen and (min-width: 1600px) {
    
    .marcas-representadas-home {
        width: 100%; padding-top: 200px; padding-bottom: 200px; display: block;
    }
    
    .contenedor-marca-home {
        display: block; width: 250px; margin-right: 15px; margin-left: 15px;
    }


}






/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*HOME NOSOTROS*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

.contenedor-nosotros-home {
    display: flex;
    width: 100%;
    background-color: #FFFFFF;
    padding-top: 50px;
    padding-bottom: 20px;
    padding-left: 15%;
    padding-right: 15%;
}

.texto-nosotros-home {
    display: flex;
    width: 45%;
    padding-right: 50px; 
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.texto-nosotros-home h2{
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 3rem;
    color: #636464;
    margin-bottom: 25px;
}

.texto-nosotros-home a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 300px;
    font-size: 2rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 0;
    font-family: 'Space Mono', monospace;
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 2px;
    color: #000000;
    border-color: #C45E2E;
    margin-top: 50px;
    margin-bottom: 50px;  
}

.texto-nosotros-home a:hover {
    background-color: #C45E2E;
    border-style: solid;
    border-width: 2px;
    color: #FFFFFF;
    border-color: #C45E2E;
}

/*.contenedor-imagenes-nosotros-home {
    display: flex;
    width: 55%;
    height: 65vh;
    padding-right: 50px; 
    position: relative;
    justify-content: center;
    align-items: center; 
}*/

.contenedor-imagenes-nosotros-home {
    display: grid; 
    width: 55%;
    height: 65vh;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    background-color: #FFFFFF; 
    padding: 0;
}

.contenedor-imagen-1-nosotros-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-area: 1 / 3 / 5 / 6;
}

.contenedor-imagen-2-nosotros-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-area: 2 / 1 / 6 / 4;
}


/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*SIMULADOR HOME*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

.contenedor-simulador-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10%;
    padding-right: 10%;
}

.contenedor-simulador-text-home {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}

.contenedor-simulador-text-home h2{
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 3.5rem;
    color: #C45E2E;
    margin-bottom: 25px;
}

.contenedor-simulador-text-home p{
    font-size: 1.8rem;
    color: #636464;
    width: 45%;
    text-align: left;
    margin-top: 0px;
}

.simulador-home {
    display: flex;
    background-color: #E6E4DE;
    justify-content: space-around;
    padding:20px;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    height: 400px;
    border-radius: 0;
    -webkit-box-shadow: 0px 28px 8px -19px rgba(99, 100, 100, 0.4);
    -moz-box-shadow: 0px 28px 8px -19px rgba(99, 100, 100, 0.4);
    box-shadow: 0px 28px 8px -19px rgba(99, 100, 100, 0.4);
}

.contenedor-espacio-simulador-home {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 40%;
    height: 100%;
}

.espacio-simulador-home {
    width: 100%;
    height: 90%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    -webkit-box-shadow: 0px 2px 5px 1px rgba(99, 100, 100, 0.4);
    -moz-box-shadow: 0px 2px 5px 1px rgba(99, 100, 100, 0.4);
    box-shadow: 0px 2px 5px 1px rgba(99, 100, 100, 0.4);
}

.img-espacio-simulador-home {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.video-espacio-simulador-home {
    display: none;
    position: absolute;
    z-index: 2;
    /*top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: auto;
    height: 100%;*/
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
}

.espacio-simulador-home:hover .video-espacio-simulador-home {
    display: block;
}

.contenedor-espacio-simulador-home h3{
    text-align: center;
    font-size: 1.2rem;
    color: #636464;
}





/*CARRUSEL SIMULADOR*/

.imagen-simulador-home {
   height: 350px;
}

@media only screen and (min-width: 800px) {

.imagen-simulador-home {
   height: 400px;
}

}



@media only screen and (min-width: 1200px) {

    /*Escritorio*/

.imagen-simulador-home {
   height: 300px;
}


}





@media only screen and (min-width: 1600px) {
    
    .imagen-simulador-home {
   height: 450px;
}


}








/*ANIMACIONES HOME*/

.fade-in {
    opacity: 0;
    transition: opacity 350ms ease-out;
}

.fade-in.appear {
    opacity: 1;
}

.from-left {
    transform: translateX(25%);
}

.from-right {
    transform: translateX(25%);
}

.from-down {
    transform: translateY(25%);
}

.from-left,
.from-right,
.from-down {
    transition: transform 500ms ease-out;
}

.from-left.appear,
.from-right.appear {
    transform: translateX(0);
}

.from-down.appear {
    transform: translateY(0);
}

/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*PLANTILLA MATERIALES GRANITO*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

div.contenedor-material-granito {
    display: flex; 
    position: relative; 
    justify-content: center; 
    align-items: center; 
    width: 400px; 
    height: 200px; 
    overflow: hidden;
    padding: 10px;
    margin-left: 0;
    margin-right: 30px;
}

div.contenedor-material-granito h3 {
    font-size: 28px; 
    font-family: 'Space Mono', monospace; 
    color: #ffffff;
    text-align: center;
}

div.contenedor-material-granito img {
    display: block; 
    object-fit: cover; 
    position: absolute; 
    z-index: -1; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    transition: all .4s ease-in-out;
}

div.contenedor-material-granito:hover img {
    transform: scale(1.2);
}

.contenedor-general-material-granito {
    display: flex; 
    flex-direction: row; 
    justify-content: flex-start; 
    align-items: center; 
    width: 100%;
}

@media only screen and (max-width: 900px) {

    div.contenedor-material-granito {
        width: 100%; 
        height: 250px; 
     
    }
    
    div.contenedor-material-granito h3 {
        font-size: 35px; 
    }

    .contenedor-general-material-granito {
        display: flex; 
        flex-direction: column; 
        justify-content: flex-start; 
        align-items: center; 
        width: 100%;
    }

}

/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*PLANTILLA PRODUCTO*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

/*LAYOUT*/

.contenedor-general-plantilla-producto {
    display: flex;
    width: 100%;
    flex-direction: row;
    padding-top: 25px;
    padding-bottom: 25px;
    justify-content: center;
}

.contenedor-lateral-plantilla-producto {
    width: 250px;
    /*height: calc(100vh - 80px);*/
    padding-left: 0;
    padding-right: 15px;
    /*overflow-y: scroll;*/
}

.filtro-plantilla-producto {
    font-size: 2rem;
    color: #636464;
    font-family: 'Space Mono', monospace;
}

.etiqueta-categoria-menu-plantilla-producto {
    font-size: 1.8rem;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
}


.contenedor-menu-lateral-plantilla-producto {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none;
}

.link-menu-lateral-plantilla-producto {
    display: inline-block;
    font-size: 1.4rem;
    width: 140px;
    height: 4rem;
    vertical-align: middle;
    padding-left: 10px;
    text-decoration: none;
    color: #000000;
}

.link-menu-lateral-plantilla-producto:hover {
    font-weight: 700;
    background-color: #f1f1f1;
}

.imagen-menu-lateral-plantilla-producto {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 40px;
    object-fit: cover;
}

li {
    padding-top: 5px;
    padding-bottom: 5px;
}

.contenedor-principal-plantilla-producto {
    /*width: calc(100vw - 250px);*/
    width: 1000px;
    /*padding-left: 15px;
    padding-right: 15px;*/
}

.titulo-h1-plantilla-producto {
    font-family: 'Space Mono', monospace;
    font-size: 4.5rem;
    margin-bottom: 0;
}


.titulo-h2-plantilla-producto {
    font-size: 2rem;
    color: #636464;
    margin-top: 5px;
    margin-bottom: 20px;
}


.contenedor-imagenes-plantilla-producto {
    display: flex;
    width: 100%;
    flex-direction: row;
    margin-bottom: 50px;
}

#imagen-expandida {
    width: 700px;
    height: 500px;
    object-fit: cover;
    -webkit-box-shadow: 0px 28px 8px -19px rgba(99, 100, 100, 0.4);
    -moz-box-shadow: 0px 28px 8px -19px rgba(99, 100, 100, 0.4);
    box-shadow: 0px 28px 8px -19px rgba(99, 100, 100, 0.4);
    transition: all .2s ease-in-out;
}

#imagen-expandida:hover {
    -webkit-box-shadow: 0px 28px 8px -19px rgba(99, 100, 100, 0.7);
    -moz-box-shadow: 0px 28px 8px -19px rgba(99, 100, 100, 0.7);
    box-shadow: 0px 28px 8px -19px rgba(99, 100, 100, 0.7);
}

.contenedor-thumbnails-plantilla-producto {
    display: flex;
    width: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.thumbnail-plantilla-producto {
    width: 250px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    transition: transform .2s; /* Animation */
    -webkit-box-shadow: 0px 19px 8px -10px rgba(99, 100, 100, 0.4);
    -moz-box-shadow: 0px 19px 8px -10px rgba(99, 100, 100, 0.4);
    box-shadow: 0px 19px 8px -10px rgba(99, 100, 100, 0.4);
    transition: all .2s ease-in-out;
}

.thumbnail-plantilla-producto:hover {
    transform: scale(1.05);
    -webkit-box-shadow: 0px 19px 8px -7px rgba(99, 100, 100, 0.7);
    -moz-box-shadow: 0px 19px 8px -7px rgba(99, 100, 100, 0.7);
    box-shadow: 0px 19px 8px -7px rgba(99, 100, 100, 0.7);
}

.texto-general-plantilla-producto {
    font-size: 1.8rem;
    color: #000000;
}

.boton-cotizador-plantilla-producto {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 300px;
    font-size: 2rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 0;
    font-family: 'Space Mono', monospace;
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 2px;
    color: #000000;
    border-color: #C45E2E;
    margin-top: 50px;
    margin-bottom: 50px;    
}

.boton-cotizador-plantilla-producto:hover {
    background-color: #C45E2E;
    border-style: solid;
    border-width: 2px;
    color: #FFFFFF;
    border-color: #C45E2E;
}




/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*GALERIAS DE PRODUCTOS*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

.contenedor-navegacion-galeria-productos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}


.link-navegacion-galeria-productos {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 70%;
    height: 100px;
    margin-bottom: 15px;
    /*margin-left: 15px;
    margin-right: 15px;*/
    text-decoration: none;
    color: #FFFFFF;
    text-shadow: 1px 1px #000000;
    font-size: 1.6rem;
    font-family: 'Space Mono', monospace;
    text-align: center;
    background-color: rgba(99,100,100,0.4);
    transition: all .4s ease-in-out;
    -webkit-box-shadow: 0px 15px 5px -10px rgba(99, 100, 100, 0.4);
    -moz-box-shadow: 0px 15px 5px -10px rgba(99, 100, 100, 0.4);
    box-shadow: 0px 15px 5px -10px rgba(99, 100, 100, 0.4);
}

.link-navegacion-galeria-productos:hover {
    width: 70%;
    background-color: rgba(99,100,100,0);
    -webkit-box-shadow: 0px 15px 5px -7px rgba(99, 100, 100, 0.7);
    -moz-box-shadow: 0px 15px 5px -7px rgba(99, 100, 100, 0.7);
    box-shadow: 0px 15px 5px -7px rgba(99, 100, 100, 0.7);
    border-style: solid;
    border-width: 3px;
    border-color: #C45E2E;
}

.navegacion-active {
    width: 70%;
    background-color: rgba(99,100,100,0);
    border-style: solid;
    border-width: 3px;
    border-color: #C45E2E;
    text-shadow: 1px 1px #000000;
}


.link-navegacion-galeria-productos img {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texto-material {
    width: 70%;
}


.contenedor-externo-plantilla-material-general {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-left: calc((100% - 1280px)/2);
    padding-right: calc((100% - 1280px)/2);
}

.contenedor-externo-plantilla-material-izquierda {
    display: block;
    width: 25%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.contenedor-externo-plantilla-material-derecha {
    display: block;
    width: 75%;
    padding-top: 0px;
    padding-bottom: 40px;
}

.contenedor-galeria-productos {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 40px;
}

.articulo-galeria-productos {
    display: flex;
    width: 300px;
    height: 250px;
    margin: 10px;
    overflow: hidden;
}

.articulo-galeria-productos a{
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.articulo-galeria-productos img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    background-color: rgba(230,228,222,0.5);
    transition: all .4s ease-in-out;
}

.articulo-galeria-productos h4{
    font-size: 1.2rem;
    font-weight: 400;
    color: #352828; 
    margin-bottom: 5px;
}

.articulo-galeria-productos h3{
    font-size: 1.8rem;
    font-weight: 700;
    color: #352828; 
    margin-top: 5px;
}

.articulo-galeria-productos:hover img {
    width: 120%;
}

.articulo-galeria-productos:hover h3 {
    text-decoration: underline;
}

.articulo-galeria-productos:hover h4 {
    text-decoration: underline;
}

/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*SIMULADOR */
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

.contenedor-simulador {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.imagen-grande-simulador {
    position: relative;
    display: block;
    width: 55%;
    height: 65vh;
}

#imagen-grande-simulador {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

#imagen-grande-superior-simulador {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

.contenedor-thumbnails-simulador {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 40%;
    height: 65vh;
    overflow-y: scroll;
}

.contenedor-thumbnails-simulador div{
    display: block;
    margin-left: 5%;
    margin-bottom: 20px;
    width: 40%;
    height: 162px;
    cursor: pointer;
    overflow: hidden; 
}

.contenedor-thumbnails-simulador img{
    width: 100%;
    height: 55%;
    object-fit: cover;
    background-color: #E6E4DE;
    transition: all .4s ease-in-out;
}

.contenedor-thumbnails-simulador h4{
    font-size: 1rem;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 400;
    color: #352828; 
}

.contenedor-thumbnails-simulador h3{
    font-size: 1.4rem;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 700;
    color: #352828; 
}

.contenedor-thumbnails-simulador div:hover{
    border-bottom-color: #636464;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.contenedor-thumbnails-simulador div:hover img{
    width: 120%;
}

.thumbnail-activo {
    border-bottom-color: #636464;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.contenedor-texto-simulador {
    display: block;
    width: 100%;
    padding-left: 2.5%;
    padding-right: 2.5%;
    padding-top: 20px;
    padding-bottom: 20px;
}

#nombre-material-simulador {
    font-size: 2.5rem;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 400;
    color: #352828; 
}

#nombre-recubrimiento-simulador {
    font-size: 3.5rem;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 700;
    color: #352828; 
}

.titulo-seccion-simulador {
    font-size: 3.2rem;
    font-family: 'Space Mono', monospace;
    margin-top: 0px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #C45E2E; 
}

#boton-producto-simulador {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        width: 300px;
        font-size: 2rem;
        font-weight: 700;
        padding: 8px 16px;
        /*border-radius: 25px;*/
        font-family: 'Space Mono', monospace;
        background-color: #FFFFFF;
        border-style: solid;
        border-width: 2px;
        color: #000000;
        border-color: #C45E2E;
        margin-top: 0px;
        margin-bottom: 0px; 
}

#boton-producto-simulador:hover {
    background-color: #C45E2E;
    border-style: solid;
    border-width: 2px;
    color: #FFFFFF;
    border-color: #C45E2E;
}

#boton-cotizar-simulador {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 300px;
    font-size: 2rem;
    font-weight: 700;
    padding: 8px 16px;
    /*border-radius: 25px;*/
    font-family: 'Space Mono', monospace;
    background-color: #C45E2E;
    border-style: solid;
    border-width: 2px;
    color: #FFFFFF;
    border-color: #C45E2E;
    margin-top: 20px;
    margin-bottom: 20px;  
}

#boton-cotizar-simulador:hover {
background-color: #FFFFFF;
border-style: solid;
border-width: 2px;
color: #000000;
border-color: #C45E2E;
}

/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*COTIZAR - FORMULARIO DE CONTACTO*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

.contenedor-cotizador {
    display: flex;
    height: 80vh;
    width: 100%;
    flex-direction: row;
}

.contenedor-formulario-cotizador {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 40%;
    background: linear-gradient(rgb(189, 79, 45), rgb(236, 122, 29));
}

h2.titulo-cotizador {
    display: block;
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Space Mono', monospace;
    color: #FFFFFF;
    width: 70%;
}

form {
    width: 100%;
}

input {
    display: block;
    margin: auto;
    width: 80%;
    font-size: 1.6rem;
    padding: 8px 14px;
    background-color: transparent;
    color: #FFFFFF;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: #FFFFFF;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-bottom: 15px;
}

input:focus {
    background-color: rgba(255, 255, 255, 0.75);
    color: #636464;
    border-bottom-style: none;
    margin-bottom: 15px;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

textarea {
    display: block;
    margin: auto;
    width: 80%;
    font-size: 1.6rem;
    padding: 8px 14px;
    font-family: 'Raleway', sans-serif;
    background-color: transparent;
    color: #FFFFFF;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: #FFFFFF;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-bottom: 15px;
}

textarea:focus {
    background-color: rgba(255, 255, 255, 0.75);
    color: #636464;
    border-bottom-style: none;
    margin-bottom: 15px;
}

textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

button.boton_envio {
    display: block;
    margin: auto;
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    padding: 8px 14px;
    background-color: #636464;
    color: #E6E4DE;
    text-decoration: none;
    width: 200px;
    border-radius: 0;
    border: none;
    cursor: pointer;
    margin-bottom: 55px;
}

button.boton_envio:hover {
    background-color: #575757;
}

.contenedor-imagen-cotizador {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 60%;
    overflow: hidden;
}

#imagen-cotizador {
    display: block;
    width: 450px;
}


#contenedor-info-contacto-contactanos {
    width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; flex-direction: column;
}

#contenedor-info-contacto-contactanos div {
    display: block; width: 25%; margin: 25px;
}


@media only screen and (max-width: 900px) {
    
    .contenedor-cotizador {
        display: flex;
        height: 80vh;
        width: 100%;
        flex-direction: column;
    }
    
    .contenedor-formulario-cotizador {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 40%;
        background: linear-gradient(rgb(189, 79, 45), rgb(236, 122, 29));
    }
    
    .contenedor-imagen-cotizador {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    #contenedor-info-contacto-contactanos {
        justify-content: center; align-items: flex-start; padding-top: 50px; padding-bottom: 50px;
    }
    
    #contenedor-info-contacto-contactanos div {
        display: block; width: 80%; margin: 5%;
    }

    
}


/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*SIMULADOR GENERAL*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

.contenedor-general-simulador {
    display: flex;
    height: auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 100px;
    padding-right: 100px;
    flex-wrap: wrap;
}

.contenedor-espacio-general-simulador {
    display: block;
    position: relative;
    width: 50%;
    height: 450px;
    background: transparent;
    transition: all .4s ease-in-out;
    padding: 15px;
}

/*
.contenedor-espacio-general-simulador:hover {
    width: 45%;
    border-style: solid;
    border-width: 5px;
    border-color: #C45E2E;
}
*/

.contenedor-espacio-general-simulador:hover img {
    filter: grayscale(1);
}

.contenedor-espacio-general-simulador a {
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.contenedor-espacio-general-simulador img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out; 
}

.contenedor-espacio-general-simulador h2 {
    position: absolute;
    width: 200px;
    background-color: #C45E2E;
    color: #FFFFFF;
    text-align: center;
    padding: 8px 14px;
    font-family: 'Space Mono', monospace;
    font-size: 2.2rem;
    left: calc(50% - 100px);
    top: calc(50% - 29px);
}


@media only screen and (max-width: 900px) {
    
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*SIMULADOR GENERAL*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    .contenedor-general-simulador {
        
        height: unset;
        width: 100%;
        flex-direction: column;
        padding-top: 15px;
        padding-left: 0;
        padding-right: 0;
    }

    .contenedor-espacio-general-simulador {
        width: 90%;
        height: 40vh;
        margin-bottom: 10px;
    }

    .contenedor-espacio-general-simulador:hover {
        width: 95%;
    }

    .contenedor-espacio-general-simulador h2 {
        position: absolute;
        width: 200px;
        background-color: #C45E2E;
        color: #FFFFFF;
        text-align: center;
        padding: 8px 14px;
        font-family: 'Space Mono', monospace;
        font-size: 2.2rem;
        left: calc(50% - 100px);
        top: calc(50% - 29px);
    }
}

/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*NOSOTROS*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

.contenedor-general-nosotros {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: auto;
    height: 100%;
    width: 40%;
    padding-top: 25px;
    padding-bottom: 25px;
}

.contenedor-general-nosotros h1{
    display: block;
    text-align: left;
    font-size: 3.5rem;
    color: #C45E2E;
}

.contenedor-general-nosotros p{
    display: block;
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #636464;
}

.grid-imagenes-nosotros {
    display: grid; 
    width: 145%;
    height: 80vh;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    background-color: #FFFFFF; 
    padding: 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

.grid-imagen1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-area: 1 / 3 / 5 / 6;
}

.grid-imagen2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-area: 2 / 1 / 6 / 4;
}

.grid-2-imagenes-nosotros {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 145%;
    height: 80vh;
    justify-content: space-around;
    align-items: center;
    /*display: grid; 
    width: 145%;
    height: 80vh;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    background-color: #FFFFFF; 
    padding: 0;
    margin-top: 30px;
    margin-bottom: 30px;*/
}

.grid-2-imagenes-nosotros img {
    width: 30%;
    height: 45%;
    object-fit: cover;
    /*width: 100%;
    height: 100%;
    object-fit: cover;*/
}

.mapa-nosotros {
    width: 145%;
    height: 80vh;
    margin-top: 30px;
    margin-bottom: 30px;
}


/*CELULARES*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
@media only screen and (max-width: 900px) {

    .movil{
        display: block;
    }

    /*MENU*/

    .navbar-movil {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 1;
        width: 100%;
        height: 80px;
        padding: 0;
        background-color: rgba(230,228,222,0.15);
        -webkit-box-shadow: 0px 1px 2px 0px rgba(219, 220, 220, 0.6);
        -moz-box-shadow: 0px 1px 2px 0px rgba(219, 220, 220, 0.6);
        box-shadow: 0px 1px 2px 0px rgba(219, 220, 220, 0.6);
    }
    
    #logo-menu-movil {
        height: 80px;

    }

    a.menuLink {
        display: flex;
        width: 80%;
        margin: auto;
        justify-content: center;
        align-items: center;
        padding: 10px;
        font-size: 1.6rem;
        text-decoration: none;
        border-bottom-style: solid;
        border-bottom-color: #E6E4DE;
        border-bottom-width: 1px;
    }

    .menu-movil {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        z-index: 2;
        background-color: #FFFFFF;
        padding-bottom: 1px;
        -webkit-box-shadow: 0px 1px 2px 0px rgba(219, 220, 220, 0.6);
        -moz-box-shadow: 0px 1px 2px 0px rgba(219, 220, 220, 0.6);
        box-shadow: 0px 1px 2px 0px rgba(219, 220, 220, 0.6);
    }

    .contenedor-redes-sociales-menu-movil {
        display: flex; 
        height: 80px; 
        justify-content: center; 
        align-items: center;
    }

    .red-social-menu-movil {
        display: flex; 
        align-items: center; 
        font-size: 2rem; 
        height: 90%; 
        color: #352828; 
        text-decoration: none; 
        margin-left: 20px; 
        margin-right: 20px;
    }

    /*CIERRA MENU*/

    .ruta-menu {
        margin-top: 20px;
        margin-left: 5px;
    }


    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*HOME*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    .contenedor-banner-home {
        width: 95%;
        padding: 0;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 30px;
        height: 75vh;
    }

    .texto-banner-home {
        height: 100%;
        width: 100%;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .titulo-banner-home{
        font-family: 'Space Mono', monospace;
        font-weight: 400;
        font-size: 8rem;
        color: #FFFFFF;
        margin-bottom: 0px;
    }

    .titulo-banner-home-modificado{
        font-family: 'Space Mono', monospace;
        font-weight: 400;
        color: #FFFFFF;
        font-size: 1.7rem;
        margin-top: -25px;
    }

    .h1-banner-home {
        font-weight: 400;
        font-size: 1.8rem;
        color: #FFFFFF;
    }

    .selector-banner-home {
        display: none;
    }

    
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*HOME NOSOTROS*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    .contenedor-nosotros-home {
        display: block;
        flex-direction: column;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 5%;
        padding-right: 5%;
        align-items: center;
    }

    .texto-nosotros-home {
        display: flex;
        width: 100%;
        padding-right: 0; 
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .texto-nosotros-home h2{
        font-family: 'Space Mono', monospace;
        font-weight: 400;
        font-size: 3rem;
        color: #636464;
        margin-bottom: 25px;
    }

    .texto-nosotros-home a {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 50px;  
    }

    .contenedor-imagenes-nosotros-home {
        width: 100%;
        height: 40vh;
    }


    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*HOME PRODUCTOS*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/



    .seccion-productos-home {
        padding-left: 5%;
        padding-right: 5%;
    }
    
    .adorno-superior-productos-home {
        width: 100%;
        height: 50px;
    }
    
    .texto-productos-home p{
        width: 100%;
    }
    
    

    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*SIMULADOR HOME*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    .contenedor-simulador-home {
        padding-left: 5%;
        padding-right: 5%;
    }

    .contenedor-simulador-text-home {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .contenedor-simulador-text-home h2{
        margin-bottom: 15px;
    }

    .contenedor-simulador-text-home p{
        width: 100%;
    }

    .simulador-home {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        width: 100%;
        height: unset;
    }

    .contenedor-espacio-simulador-home {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 250px;
        padding-bottom: 25px;
    }

    .contenedor-espacio-simulador-home h3{
        text-align: left;
        font-size: 1.2rem;
        color: #636464;
    }

    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*PLANTILLA PRODUCTO*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    /*LAYOUT*/

    .contenedor-general-plantilla-producto {
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 25px;
        justify-content: flex-start;
        padding-left: 5px;
        padding-right: 5px;
    }

    /*CONTENEDOR LATERAL*/
    
    .filtro-plantilla-producto {
        font-size: 1.5rem;
        margin-top: 10px;
        margin-bottom: 10px;
        cursor: pointer;
    }

    .filtro-plantilla-producto:hover {
        background-color: #e9e9e9;
    }

    .contenedor-lateral-plantilla-producto {
        display: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .contenedor-menu-lateral-plantilla-producto {
        list-style-type: none;
        margin: 0;
        padding-left: 10%;
        padding-right: 10%;
        display: none;
    }

    .link-menu-lateral-plantilla-producto {
        width: 70%;
    }

    .imagen-menu-lateral-plantilla-producto {
        width: 30%;
    }




    /*CONTENEDOR PRINCIPAL*/
    .contenedor-principal-plantilla-producto {
        width: 100%;
    }

    .titulo-h1-plantilla-producto {
        font-size: 3.5rem;
    }

    .titulo-h2-plantilla-producto {
        font-size: 2rem;
    }

    .contenedor-imagenes-plantilla-producto {
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-bottom: 50px;
    }

    #imagen-expandida {
        width: 100%;
        height: 40vh;
    }

    .contenedor-thumbnails-plantilla-producto {
        display: flex;
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        padding-top: 20px;
    }

    .thumbnail-plantilla-producto {
        width: 30%;
        height: 15vh;
    }

    .texto-general-plantilla-producto {
        font-size: 1.8rem;
        color: #000000;
    }

    .boton-cotizador-plantilla-producto {
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;    
    }


    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*GALERIAS DE PRODUCTOS*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    .contenedor-navegacion-galeria-productos {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: unset;
        flex-wrap: nowrap;
        overflow-y: auto;
    }


    .link-navegacion-galeria-productos {
        width: 170px;
        height: 80px;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .link-navegacion-galeria-productos:hover {
        width: 150px;
    }

    .navegacion-active {
        width: 150px;
    }

    .texto-material {
        width: 100%;
    }

    .contenedor-externo-plantilla-material-general {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .contenedor-externo-plantilla-material-izquierda {
        display: block;
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .contenedor-externo-plantilla-material-derecha {
        display: block;
        width: 100%;
        padding-top: 0px;
        padding-bottom: 40px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .contenedor-galeria-productos {
        width: 100%;
        justify-content: center;
        align-items: flex-start;
    }

    .articulo-galeria-productos {
        display: flex;
        width: 40%;
        height: 250px;
        margin: 10px;
        overflow: hidden;
    }

    .articulo-galeria-productos a{
        width: 100%;
        height: 100%;
        text-decoration: none;
    }

    .articulo-galeria-productos img{
        width: 100%;
        height: 150px;
        object-fit: cover;
        background-color: rgba(230,228,222,0.5);
        transition: all .4s ease-in-out;
    }

    .articulo-galeria-productos h4{
        font-size: 1.2rem;
        font-weight: 400;
        color: #352828; 
        margin-bottom: 5px;
    }

    .articulo-galeria-productos h3{
        font-size: 1.8rem;
        font-weight: 700;
        color: #352828; 
        margin-top: 5px;
    }

    .articulo-galeria-productos:hover img {
        width: 120%;
    }

    .articulo-galeria-productos:hover h3 {
        text-decoration: underline;
    }

    .articulo-galeria-productos:hover h4 {
        text-decoration: underline;
    }



    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*SIMULADOR */
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    .contenedor-simulador {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .imagen-grande-simulador {
        width: 95%;
        height: 40vh;
    }

    .contenedor-thumbnails-simulador {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
        width: 95%;
        height: 20vh;
        overflow-y: hidden;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .contenedor-thumbnails-simulador div{
        flex-shrink: 0;
        display: inline-block;
        margin-left: 0;
        margin-bottom: 0;
        width: 165px;
        height: 25vh;
        padding: 5px;
        padding-top: 10px;
        cursor: pointer;
        overflow: hidden; 
    }

    .contenedor-thumbnails-simulador img{
        height: 40%;
    }

    .thumbnail-activo {
        border-bottom-color: #636464;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

    .contenedor-texto-simulador {
        display: block;
        width: 100%;
        padding-left: 2.5%;
        padding-right: 2.5%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #nombre-material-simulador {
        font-size: 1.6rem;
        margin-top: 5px;
        margin-bottom: 0;
        font-weight: 400;
        color: #352828; 
    }

    #nombre-recubrimiento-simulador {
        font-size: 2rem;
        margin-top: 5px;
        margin-bottom: 0;
        font-weight: 700;
        color: #352828; 
    }

    #boton-producto-simulador {
        margin: auto;
        margin-top: 20px;
        margin-bottom: 0px;  
    }

    #boton-cotizar-simulador {
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;  
    }

    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*COTIZAR - FORMULARIO DE CONTACTO*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    .contenedor-cotizador {
        height: unset;
    }

    .contenedor-formulario-cotizador {
        width: 100%;
    }


    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*NOSOTROS*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    .contenedor-general-nosotros {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin: 0;
        height: 100%;
        width: 100%;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .contenedor-general-nosotros h1{
        width: 95%;
    }

    .contenedor-general-nosotros p{
        width: 95%;
    }

    .grid-imagenes-nosotros {
        display: block; 
        width: 90%;
        height: auto;
        margin: auto;
        grid-template-columns: unset;
        grid-template-rows: unset;
        grid-column-gap: unset;
        grid-row-gap: unset;
        justify-items: unset;
        align-items: unset;
        justify-content: unset;
        align-content: unset;
        background-color: #FFFFFF; 
        padding: 0;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .grid-imagen1 {
        width: 100%;
        height: 40vh;
        object-fit: cover;
        grid-area: unset;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .grid-imagen2 {
        width: 100%;
        height: 40vh;
        object-fit: cover;
        grid-area: unset;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .grid-2-imagenes-nosotros {
        display: block; 
        width: 90%;
        height: auto;
        margin: auto;
        grid-template-columns: unset;
        grid-template-rows: unset;
        grid-column-gap: unset;
        grid-row-gap: unset;
        justify-items: unset;
        align-items: unset;
        justify-content: unset;
        align-content: unset;
        background-color: #FFFFFF; 
        padding: 0;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .grid-2-imagenes-nosotros img {
        width: 100%;
        height: 40vh;
        object-fit: cover;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .mapa-nosotros {
        width: 95%;
        height: 80vh;
        margin-top: 30px;
        margin-bottom: 30px;
    }


    

    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*FOOTER*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    footer {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
        padding-top: 15px;
    }

    .contenedor-general-footer {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
    }

    .contenedor-info-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-left: 0;
        width: 100%;
    }

    .sitemap-footer {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .sitemap-footer-seccion {
        display: block;
        width: 300px;
        margin: 0;
        padding: 5px;
    }

    .sitemap-footer-seccion h4 {
        font-family: 'Space Mono', monospace;
        font-size: 1.8rem;
        color: #636464;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        border-bottom-color: rgba(99,100,100,0.4);
    }

    .sitemap-footer-seccion a {
        display: block;
        text-decoration: none;
        font-size: 1.6rem;
        color: #636464;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .sitemap-footer-seccion a:hover {
        text-decoration: underline;
    }

    .contenedor-redes-sociales-footer-movil {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .red-social-footer-movil {
        display: flex; 
        align-items: center; 
        font-size: 2rem;
        color: #C45E2E; 
        text-decoration: none; 
        margin-left: 20px; 
        margin-right: 20px;
    }

    .logo-final-footer {
        display: block;
        width: 200px;
        margin: auto;
    }
    
    .escritorio{
        display: none;
    }

}


/*EX LARGE DESKTOP*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
@media only screen and (min-width: 1600px) {

    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*SIMULADOR */
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
    /*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    .contenedor-simulador {
        width: 100%;
        padding-left: 15%;
        padding-right: 15%;
    }

    .contenedor-texto-simulador {
        width: 100%;
        padding-left: 15%;
        padding-right: 15%;
    }

}