footer {
    width: 100%;
    height: 50px;
    position: fixed;
    padding-bottom: calc(0rem);
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #dadada;
}

body{
    height: 100vh !important;
}

select {
    -webkit-appearance: none; /* iOS / Safari */
    -moz-appearance: none;
    appearance: none;
}

#conteudo{
    margin-top: 0px;
    padding-bottom: calc(4rem + env(safe-area-inset-bottom));
}

footer img {
    filter: invert(50%) sepia(80%) saturate(7000%) hue-rotate(700deg) brightness(88%) contrast(109%);
    cursor: pointer;
    height: 30px;
    margin-left: 30px;
    margin-right: 30px;
}

#campo_msg {
    margin-bottom: 60px;
}

.img_menu_desktop {
    position: absolute;
    right: 0px;
    top: 124px;
    width: 40px;
    height: 40px;
    display: none;
}

@media(min-width: 900px) {
    footer {
        display: none;
    }

    #campo_msg {
        margin-bottom: 1rem;
    }

    .img_menu_desktop{
        display: block;
    }

    .menu-hidde{
        width: 300px;
    }

    #conteudo_contato{
        width: 100%;
    }

    #informacoes_contato{
        justify-content: start;
        gap: 0.6rem;
    }

    #avaliacao{
        position: static;
    }
}