@media screen and (max-width: 767.99px) {
    .menuEscritorio{
        display: none !important;
    }
    .menuMobile{
        display: flex !important;
    }

    .contenedorPrincipal{
        padding-top: 40px;
    }

    html, body{
        padding-bottom: 3rem !important;
    }
}

@media screen and (min-width: 768px) {
    .menuEscritorio{
        display: flex !important;
    }
    .menuMobile{
        display: none !important;
    }
}

/** menu mobile **/
.contenedorMenu{
    width: 100%;
    height: 4rem;
    background-color: #F2F2F2;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0px;
    z-index: 100;
    border-radius: 15px 15px 0px 0;
    box-shadow: 0px 0px 16px -2px rgba(0, 0, 0, 0.2);
    border-top: 0.6px solid #d2d2d2;
}

.menuButton{
    width: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

.menuButtonIcon{
    font-size: 28px;
}
.menuButtonText{
    font-size: 12px;
}

.menuLink{
    color: #000000;
}
.menuLink:hover{
    color: #F11ED8;
    text-decoration: none;
    text-transform: none;
}