@media (max-width: 768px) {
    :root{
        --topnav-height: 5rem;
        --bg-1: #f4f7f8;
    }

    ::-webkit-scrollbar{
        display: none;
    }

    .login-card, .btn-catalogo-login{
        width: 90dvw;
    }

    .breadcrumbs{
        display: none;
    }
    .sidenav{
        top: 0;
        position: fixed;
        right: -100dvw;
        width: 80dvw;
        z-index: 7100;
        transition: all 200ms ease-out;
        .top-nav-user, hr{
            display: block;
        }
        .top-nav-user{
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            .btn-page-theme{
                border: 1px solid #f4aeaa;
                color: #f4aeaa;
            }
        }
    }
    .open-sidenav{
        display: block;
    }
    
    .sidenav.show-sidenav{
        right: 0;
    }
    .main-dashboard{
        position: relative;
        grid-template-columns: 1fr;
    }
    .dashboard-content{
        padding-bottom: 9rem;
        padding: 1.25rem;
    }
    .main-title h1{
        display: none;
    }

    .top-nav{
        width: 100dvw;

        .top-nav-user, .btn-page-theme{
            display: none;
        }
        .top-nav-mobile{
            display: grid;
            align-items: center;
            text-align: center;
            grid-template-columns: auto 1fr auto;
            column-gap: 1.25rem;
            width: 100%;
        }
    }
    .div-search{
        grid-template-columns: 1fr;
    }
    .main-title{
        margin-bottom: 0;
    }

    .list-desktop{
        display: none;
    }
    .list-mobile{
        display: block;
    }

    .pagina-producao{
        padding: 1rem;
        height: 100%;
    }
    
    .moto-foto-detail{
        width: 100%;
    }
    .moto-detail-section, .moto-infos{
        grid-template-columns: 1fr;
    }
    .vendas-infos-section{
        grid-template-columns: 1fr;
    }

    .btn-adicionar{
        position: fixed;
        z-index: 1060;
        bottom: 2rem;
        right: 1rem;
        width: 5rem;
        height: 5rem;
        border-radius: 50%;
        font-size: 2rem;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .btn-adicionar span{
        display: none;
        
    }

    .error-page{
        padding-inline: 2rem;
        img{
            height: 15dvh;
        }
    }

    .div-submit-buttons{
        flex-direction: column-reverse;
        row-gap: 1rem;
    }
    .div-submit-buttons button,
    .div-submit-buttons a{
        width: 100%;
    }

    .div-sem-registros{
        background: var(--bs-body-bg);
        border-radius: 15px;
        padding-inline: 1.25rem;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        font-size: 70%;
    }

    .notyf{
        margin-top: var(--topnav-height);
        justify-content: flex-start !important;
    }
    .notyf__toast{
        margin: 1rem;
        width: calc(100% - 2rem);
    }
}