/*#mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 247, 247, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
}

#mobile-aviso-container {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 340px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

#mobile-aviso-container .emoji-grande {
    font-size: 70px;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
    color: #333;
}

#mobile-aviso-container h1 {
    font-size: 1.6em;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
}

#mobile-aviso-container p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

#mobile-aviso-container p:last-child {
    margin-bottom: 0;
}

#mobile-aviso-container strong {
    color: #3498db;
}*/

@media (max-width: 767px) {
    /*#mobile {
        display: flex;
    }

    body > *:not(#mobile) {
        display: none !important;
    }*/

    :root {
        font-size: 16px;
    }

    #login-container {
        display: flex;
        align-items: center;
        width: calc(100% - 40px);
    }

    #caixa {
        max-width: calc(100% - 40px);
        padding: 20px;
    }

    #menu-lateral-container {
        display: none;
    }

    #main {
        margin: unset;
        padding: 20px;
        padding-bottom: 96px;
    }

    .projeto {
        width: 100%;
        max-width: 420px;
    }

    #botao-adicionar-projeto {
        position: fixed;
        bottom: 32px;
        left: 50%;
        z-index: 999;
        text-wrap: nowrap;
        transform: translateX(-50%);
        box-shadow: 0px 0px 15px 5px rgb(131 255 70 / 25%);
    }

    #lista-cabecalho {
        font-size: 1rem;
        text-align: center;

        h2 span {
            margin-top: 6px;
            display: block;

            small {
                margin-top: 6px;
                display: block;
            }
        }
    }

    #lista-cabecalho {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0px 32px 0px;
        flex-direction: column;
    }

    .com-projeto #projeto-container {
        width: 100%;
        padding: 40px 20px;
        opacity: 1;
        height: calc(100vh - 0px);
        overflow-y: scroll;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 9999;
    }

    .com-projeto #container {
        grid-template-columns: unset;
    }

    #fechar-projeto {
        position: absolute;
        left: unset;
        right: 16px;
        top: 16px;
        font-size: 1.37em;
        line-height: 1.25em;
        cursor: pointer;
        width: fit-content;
    }

    #projeto-editor-container {
        opacity: 0;
        pointer-events: none;
        position: fixed;
        top: 0;
        z-index: 999;
        width: calc(100% - 0px);
        height: calc(100svh - 0px);
        padding: 0px;
        background: rgb(0 0 0 / 25%);
        backdrop-filter: blur(6px);
        overflow: overlay;
        border-radius: 0px;
    }

    #projeto-editor-form {
        display: grid;
        gap: 20px;
        background: #fff;
        border-radius: 0px;
        padding: 20px;
        height: 100svh;
        overflow: overlay;
        position: relative;
        padding-top: 40px;
    }

    #projeto-editor-fechar {
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 9999;
        font-size: 20px;
        cursor: pointer;
        font-size: 1.25em;
    }

    .form-linha {
        display: flex;
        gap: 12px;
        flex-direction: column;
    }

    #envio-status {
        margin-top: 20px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    #form-editor-acoes {
        position: unset;
        z-index: unset;
        padding: 0px;
        width: 100%;

        .form-linha-fim {
            display: flex;
            gap: 12px;
            flex-direction: column;
            align-items: center;

        }

        .botao, .botao2 {
            width: calc(100% - 24px);
        }
    }

    label select {
        font-size: 0.8rem;
    }

    option {
        overflow-x: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .upload-item {
        padding: 4px 0;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        gap: 4px;
    }

    .upload-item progress {
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
    }

    #menu-lateral-container {
        width: calc(100% - 16px);
        height: 48px;
        top: 0;
        left: 0;
        position: unset;
        background: #fff;
        box-shadow: 0px 5px 10px 0px rgb(151 151 151 / 13%);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 8px;
        flex-direction: row;

        a {
            margin: 0px;
            line-height: 0px;
        }
    }

    #user-avatar {
        display: none;
    }

    #menu-lateral {
        display: none;
    }

    #menu-logo {
        width: 70px;
        position: absolute;
        z-index: 99;
        margin-top: unset;
        margin-left: unset;
        left: 10px;
    }

    #menu-usuario-container {
        margin-bottom: unset;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

