
.principal{
    background-image: url(/public/images/imagen-principal.jpg);
    width: 100%;
    height: 100vh;
    max-height: 713px;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.header-menu{
    position: fixed;
    border-width: 0 0 1px 0;
    border-color: rgba(0, 0, 0, 0.30);
    border-style: solid;
    width: 100%;
    height: 72px;
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 100;
    transition: background-color 1s;
}

.header-menu .logo{
    display: flex;
    flex-direction: row;
    margin-top: auto;
    margin-bottom: auto;

}

.header-menu .logo img{
    height: 53px;
    width: 53px;
    margin-top: 6px;
    margin-right: 6px;
}

.header-menu .logo .texto{
    font-size: 49px;
    color: white;
    font-family: 'Days One';
    text-shadow: 0px 0px 5px #000;
}

.header-menu .central{
    padding-left: 6px;
    padding-right: 6px;
    display: flex;
    flex-direction: row;
}

.header-menu .central .icon{
    width: 23px;
}

.header-menu .central .whatsApp{
    padding-left: 6px;
}

.header-menu .central a{
    text-decoration: none;
    color: white;
}

.header-menu .central{
    font-family: futura;
    font-size: 16px;
    font-weight: 500;
    margin-left: auto;
    color: white;
    background-color: #128C7E;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 20px;
}



.burguer{
    border-width: 0 0 0 1px;
    border-color: rgba(0, 0, 0, 0.30);
    border-style: solid;
    width: 99px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.burguer .icon{
    border: 0;
    cursor: pointer;
}

.burguer a{
    display: inline-block;
    font-size: 33px;
    width: 33px;
    height: 33px;
}

.burguer svg{
    fill:#ff3c80;
}

.header-scrolled {
    background-color: #333;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

/* Side Nav */
.sidenav {
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
  
    width: 385px;
    background-color: #333;
    transition: 0.4s;

    transition: right 0.4s ease-out;
    padding-top: 3px;
    padding-left: 30px;

    display: flex;
    flex-direction: column;
    z-index: 101;
}


.sidenav::after{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: calc(100% - 12px);
    height: 100vh;
    z-index: -1;
    border-left-color: #ff3c80;
    border-left-style: solid;
    border-left-width: 12px;
}

.sidenav a {
    text-decoration: none;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
  color: #ff3c80;
}

.sidenav .cerrar {
    position: relative;
    font-size: 12px;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sidenav .cerrar .btnCerrar{
    cursor: pointer;
}

.sidenav .cerrar a{
    font-size: 46px;
}

.sidenav .cerrar .inicio{
    margin-top: auto;
    margin-bottom: auto;
}

.sidenav .cerrar .inicio a{
    font-size: 1.2rem;
    padding-right: 24px;
}

.sidenav .home{
    padding-top: 9px;
    padding-bottom: 6px;
    margin-right: 60px;
}

.sidenav .home a{
    color: #696969;
}

.sidenav .opcionMenu{
    padding-bottom: 12px;
    padding-right: 60px;
}

.sidenav .opcionMenu .opcion{
    display: flex;
    flex-direction: row;
}

.sidenav .opcionMenu .opcion .text{
    padding-left: 3px;
}



/* Principal */
.contenido{
    margin-top: auto;
    height: auto;
    
}

.principal .contenido{
    font-family: futura, 'Sans-serif';
    font-size: 44px;
    font-weight: 400;
    color: white;
    padding-left: 69px;
    padding-right: 263px;
    padding-bottom: 99px;
}

.contenido .leyenda{
    margin-top: auto;
}

.principal .contenido .titulo{
    font-weight: 500;
}

.principal .contenido .subtitulo{
    font-size: 36px;
}

/* Productos */

.container{
    display: grid;
    place-items: center;
    margin-inline: 1.5rem;
    padding-block: 5rem;
    /* height: 100vh;*/
    height: 100%;
}

.products{
    display: grid;
    row-gap: 4.5rem;

    grid-template-columns: repeat(3, 1fr);
    column-gap: 2.6rem;
}

.products .product{
    position: relative;
    font-family: 'futura', 'sans-serif';
    border-color: slateblue;
    border-style: solid;
    border-width: 1px;
    border-radius: 1rem;
    padding: 18px;
    width: 328px;
    transition: border-color 1s;
}

.products .product:hover{
    border-color: #ff3c80;
}

.products .product .image img{
    border-radius: 1rem;
}

.products .product_card{
    position: absolute;
    width: 260px;
    background-color: white;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
    border-radius: 1rem;
    bottom: -4rem;
    left: 0;
    right: 0;
    margin-inline: auto;
}

.products .product .title{
    font-weight: bold;
}

.products .product .descrip{
    padding-top: 6px;
    padding-bottom: 6px;
    color: #696969;
}


/*  EMPRESA */
.containerCompany{
    position: relative;
    height: 196px;
    margin-top: 49px;
    background-color: #303133;
}

.containerCompany a{
    color: #54595F;
    text-decoration: none;
}

.containerCompany .tab{
    font-family: 'futura';
    font-weight: 500;
    text-align: center;
    color: #54595F;
    height: 100%;
    padding: 0 12px 0 12px;
}

.containerCompany .centrar{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.containerCompany .tab .titulo{
    font-size: 23px;
    color: aliceblue;
}

.containerCompany .queHacemos {
    border-style: solid;
    border-color: #252729;
    border-width: 0 10px 0 10px;
}

.containerCompany .queHacemos .centrar .caja .titulo{
    color: #ff3c80;
}

/* HERRAMIENTAS */
.containerHerramientas{
    font-family: 'futura', 'Sans-serif';
    padding: 9px;
    margin: auto;
}

.containerHerramientas .titulo{
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2em;
}

.herramientas{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 6px;
}

.herramientas .ultimo{
    background-image: url(/public/images/herramientas/herramientas2.jpg);
    background-position: center center;
    background-size: cover;
    grid-column-start: 5;
    grid-column-end: 6;

    grid-row-start: 1;
    grid-row-end: 4;
}

.herramientas .tool{
    position: relative;
    padding: 12px;
    filter: grayscale(1);
    transition: filter .7s;
}

.herramientas .nombre{
    position: absolute;
    width: calc(100% - 24px);
    background-color: rgba(0, 0, 0, .03);
    bottom: 20px;
    padding: 3px 0 3px 0;
    text-align: center;
    display: none;
}

.herramientas .tool:hover, .tool:hover .nombre{
    display: block;
    filter: grayscale(0);
}



/* FOOTER */
.containerFooter{
    font-family: 'futura';
    color: #303133;
    width: 100%;
    padding: 6px;
}

.containerFooter .redes{
    display: flex;
    padding: 12px;
    justify-content: center;
}

.containerFooter .group{
    display: inline-flex;
    display: inline flex;
}

.containerFooter .redes .group div{
    padding: 12px;
}

.containerFooter .redes img{
    height: 36px;
}

.containerFooter .contacto, .containerFooter .marca{
    padding: 12px 0 12px 0;
    text-align: center;
    color: #696969;
}

/* FOOTER */
footer .contacto a{
    text-decoration: none;
    color: #303133;
}

/* Botón WhatsApp */
.btnWhatsApp{
    position: fixed;
    z-index: 80;
    width: 60px;
    height: 60px;
    right: 9px;
    bottom: 9px;
    background-color: #128C7E;
    border-radius: 50%;
    padding: 15px;
}

@media screen and (max-width: 1200px) {
    .header-menu{
        /* border: 0;*/
    }
}


/*     Tablets  */
@media screen and (max-width: 992px) {
    .header-menu{
        height: 59px;
        padding-left: 9px;
        padding-right: 9px;
        flex-wrap: nowrap;
    }


    .header-menu .logo img{
        height: 39px;
        width: 39px;
        margin-top: 6px;
    }

    .header-menu .logo .texto{
        padding-top: 3px;
        font-size: 36px;
    }

    .header-menu .central{
        background-color: transparent;
    }

    .header-menu .central .icon, .header-menu .central a{
        display: none;
    }

    .header-menu .burguer{
        width: 96px;
        height: 100%;
    }

    .principal{
        height: 100dvh;
        height: 100svh;
        background-position: right top;
    }

    .principal .contenido{
        padding: 12px;
        padding-bottom: 90px;
        font-size: 33px;
    }

    .principal .contenido .leyenda .subtitulo{
        font-size: 21px;
    }

    .container{
        padding: 24px;
    }

    .products{
        grid-template-columns: repeat(2, 1fr);
    }

    .herramientas .nombre{
        display: block;
        bottom: 10px;
    }
}



/**    Moviles **/
@media screen and (max-width: 576px) {

    .sidenav {
        width: 100vw;
    }

    .principal{
        background-position: right top;
    }

    .container{
        max-width: 100%;
        margin-inline: 0.5rem;
    }

    .products{
        width: 96%;
        grid-template-columns: repeat(1, 1fr);
        column-gap: 1.6rem;
    }

    .products .product{
        width: 100%;
        border-color: #ff3c80;
        padding: 12px;
    }

    .products .product_card{
        padding: 1rem;
        width: 96%;
        margin-inline: auto;
        margin-left: auto;
        margin-right: auto;
        /* max-width: 84%;*/
    }

    .containerCompany{
        height: auto;
    }

    .containerCompany .centrar{
        height: 146px;
    }

    .containerCompany .queHacemos {
        border-style: solid;
        border-color: #252729;
        border-width: 6px 0px 6px 0px;
    }

    .herramientas{
        grid-template-columns: 1fr 1fr;
    }

    .herramientas .ultimo{
        grid-column: auto;
        grid-row: auto;
    }

    
}



