@media screen and (max-width: 600px) {
    .main {
        box-shadow: none;
        overflow: hidden;
    }
    /* =-=-=-=-=-=-= HEADER =-=-=-=-=-=-= */
    .c-catalogo__header {
        position: relative;
        gap: 10px;
        flex-direction: column;
    }
    .c-catalogo__logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }
    .c-catalogo__header--logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .icon-header {
        display: block;
    }
    .c-catalogo__logo img {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50px;
    }
    .c-catalogo__header--btns.visible {
        right: 0;
    }
    .c-catalogo__header--btns {
        position: absolute;
        flex-direction: column;
        align-items: center;
        top: 132px;
        right: -100%;
        width: 100%;
        height: 100vh;
        padding: 20px;
        border-radius: 6px;
        background-color: var(--black1);
        gap: 12px;
        transition: 1s ease;
    }
    /* =-=-=-=-=-=-= HEADER =-=-=-=-=-=-= */
    /* =-=-=-=-=-=-= PESQUISA =-=-=-=-=-=-= */
    .btn-pesquisa {
        display: block;
        position: relative;
    }
    .btn-pesquisa .ai-text-align-justified {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .c-catalogo__pesquisa {
        display: none;
    }
    .c-pesquisa--form {
        width: 100%;
    }

    .c-catalogo__auth {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .c-catalogo__pesquisa {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        height: 100vh;
        position: absolute;
        top: 60px;
        right: -100%;
        border-radius: 0;
        border-right: none;
        z-index: 3;
        animation: 1s ease closePesquisa;
        background-color: var(--black3);
        padding: 20px 20px;
        width: 280px;
    }
    .c-catalogo__pesquisa.openPesquisa {
        right: 0;
        animation: 1s ease openPesquisa;
    }
    @keyframes openPesquisa {
        from {
            right: -100%;
        }
        to {
            right: 0;
        }
    }
    @keyframes closePesquisa {
        0% {
            right: 0;
        }
        100% {
            right: -100%;
        }
    }
    /* =-=-=-=-=-=-= PESQUISA =-=-=-=-=-=-= */
    /* =-=-=-=-=-=-= CATEGORIAS =-=-=-=-=-=-= */
    .c-produtos__categorias {
        display: block;
        position: absolute;
        top: 100px;
        left: -100%;
        animation: 1s ease closeNav;
    }
    .titulo__categoria {
        border-radius: 0;
    }
    .c-produtos__categorias.openNav {
        left: 0;
        animation: 1s ease openNav;
    }
    @keyframes openNav {
        from {
            left: -100%;
        }
        to {
            left: 0;
        }
    }
    @keyframes closeNav {
        from {
            left: 0;
        }
        to {
            left: -100%;
        }
    }
    /* =-=-=-=-=-=-= CATEGORIAS =-=-=-=-=-=-= */
    /* =-=-=-=-=-=-= PRODUTOS =-=-=-=-=-=-= */
    .c-catalogo__produtos.margin {
        margin-top: 58px;
        transition: 300ms linear;
    }
    .c-produtos__itens {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 0 5px;
    }

    /* =-=-=-=-=-=-= PRODUTOS =-=-=-=-=-=-= */
}
@media screen and (max-width: 500px) {
    .c-produtos__itens {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0 5px;
    }
}