@media (max-width: 768px) {
    /* header */
    .headerGeral {
        flex-direction: column;
    }
    .header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .menu-toggle {
        display: block;
    }

    nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 132px;
        left: 0;
        width: 100%;
        background: var(--bg-black);
        max-height: 0;
        overflow: hidden;
    }

    nav.open {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
    }

    nav ul li {
        margin: 10px 0;
    }
    .c-search-bar {
        width: 100%;
    }
    /* header */
    /* Main */
    .hero p {
        font-size: 1.6rem;
    }
    /* Main */

    .category-grid {
        overflow-x: auto;
        gap: 6px;
        padding-bottom: 8px;
        justify-content: flex-start;
    }
    .category-grid::-webkit-scrollbar {
        display: none;
    }

    .auth-container {
        margin: 20px 10px;
        padding: 15px;
    }
    .carrossel-btn {
        display: none;
    }
}