main {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;

    .carousel-conteiner {
        position: relative;
        width: 100%;
        overflow: hidden;

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 0 !important;
        }

        .carousel-slide {
            flex: 0 0 100%;

            img {
                width: 100%;
                height: auto;
                object-fit: cover;
                aspect-ratio: 5 / 2;
                display: block;
            }
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;

            .dot {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background-color: var(--bg-base-grey-dark);
                border: none;
                cursor: pointer;
                transition: 0.3s;

                &.active {
                    background-color: var(--bg-base-yellow);
                    transform: scale(1.2);
                }
            }
        }
    }

    .conteiner-line {
        padding: 12px;

        .line {
            width: 100%;
            height: 4px;
            background-color: var(--bg-base-grey);
        }
    }

    .conteiner-inf {
        .row-inf {
            h1 {
                font-size: clamp(1.8rem, 2vw, 2.5rem);
                text-align: center;
                margin-bottom: 20px;

                span {
                    color: var(--text-yellow);
                    font-weight: 700;
                }
            }

            .group-inf ul {
                list-style: none;
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px;
                padding: 0;

                li {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    width: 250px;
                    padding: 12px;
                    text-align: center;

                    i {
                        font-size: 30px;
                        margin-bottom: 10px;
                    }

                    label {
                        font-size: 20px;
                    }
                }
            }
        }
    }

    .conteiner-category {
        width: 100%;
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 24px;

        .row-category {
            h1 {
                font-size: clamp(1.8rem, 3vw, 2.5rem);
                text-align: center;
                margin-bottom: 50px;
                text-transform: uppercase;
                letter-spacing: 2px;

                &::after {
                    content: "";
                    display: block;
                    width: 60px;
                    height: 3px;
                    background: var(--bg-base-yellow);
                    margin: 10px auto;
                }
            }

            .group-category ul {
                list-style: none;
                display: flex;
                justify-content: center;
                gap: 40px;
                flex-wrap: wrap;
                padding: 0;
                margin: 0;

                a {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 15px;
                    width: 180px;
                    transition: 0.3s ease;

                    .category-icon {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 130px;
                        height: 130px;
                        border-radius: 50%;
                        background-color: transparent;
                        border: 1px solid var(--bg-base-grey-dark);
                        transition: 0.3s ease;

                        i {
                            font-size: 50px;
                            color: var(--text-dark);
                            transition: 0.3s ease;
                        }
                    }

                    label {
                        font-weight: 600;
                        color: var(--text-grey);
                        text-transform: uppercase;
                        letter-spacing: 1px;
                        transition: 0.3s ease;
                        cursor: pointer;
                    }

                    &:hover {
                        .category-icon {
                            background-color: var(--bg-base-dark);
                            border-color: var(--bg-base-dark);
                            transform: translateY(-5px);

                            i {
                                color: var(--text-light);
                            }
                        }

                        label {
                            color: var(--text-dark);
                        }
                    }
                }
            }
        }
    }

    .conteiner-productos {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;

        h1 {
            text-align: center;
            margin-bottom: 24px;
            font-size: clamp(1.8rem, 3vw, 2.5rem);

            span {
                color: var(--text-yellow);
                font-weight: 700;
            }
        }

        .carousel-produtos-wrapper {
            position: relative;
            display: flex;
            align-items: center;

            .btn-nav-produtos {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 40px;
                height: 40px;
                border-radius: 50%;
                border: none;
                background-color: var(--bg-base-yellow);
                z-index: 10;
                cursor: pointer;
                transition: 0.3s;

                i {
                    color: var(--text-dark);
                }

                &:hover {
                    background-color: var(--color-bg-btn-dark);

                    i {
                        color: var(--text-light);
                    }
                }

                &.prev {
                    left: -20px;
                }

                &.next {
                    right: -20px;
                }
            }

            .track-overflow {
                overflow: hidden;
                width: 100%;
            }

            .track-productos {
                display: flex;
                gap: 25px;

                .card-producto {
                    flex: 0 0 calc(25% - 18.75px);
                    border: 1px solid var(--bg-base-grey-dark);
                    border-radius: 12px;
                    overflow: hidden;
                    background: var(--bg-base);
                    transition: 0.3s;

                    &:hover {
                        transform: translateY(-5px);
                        box-shadow: var(--box-shadow);
                    }

                    .img-producto {
                        aspect-ratio: 1 / 1;
                        background: var(--bg-base-grey);

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }
                    }

                    .info-producto {
                        padding: 20px;
                        display: flex;
                        flex-direction: column;
                        gap: 10px;

                        h3 {
                            font-size: 1.1rem;
                            font-weight: 400;
                            min-height: 42px;
                        }

                        a span {
                            color: var(--text-grey);
                            transition: 0.3s;

                            &:hover {
                                color: var(--text-yellow);
                            }
                        }

                        .value {
                            display: flex;
                            flex-direction: column;
                            gap: 2px;

                            a {
                                color: var(--text-grey);
                                font-size: 0.9rem;
                            }
                        }

                        .price {
                            font-size: 1.5rem;
                            font-weight: 700;
                            color: var(--text-yellow);
                        }

                        .btn-comprar {
                            width: 100%;
                            padding: 10px;
                            border-radius: 8px;
                            border: none;
                            background: var(--color-bg-btn-dark);
                            color: var(--text-light);
                            cursor: pointer;
                            transition: 0.3s;

                            &:hover {
                                background: var(--text-yellow);
                                color: var(--bg-base-dark);
                            }
                        }
                    }
                }
            }
        }
    }

    .conteiner-banner {
        width: calc(100% - 48px);
        max-width: 1200px;
        margin: 20px auto;
        border-radius: 24px;
        overflow: hidden;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;

        .row-banner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            min-height: 420px;
            backdrop-filter: blur(1px);

            .img-banner {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 30px;

                img {
                    width: 100%;
                    max-height: 420px;
                    object-fit: contain;
                    border-radius: 20px;
                }
            }

            .title-banner {
                padding: 40px 35px;
            }

            .title {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 32px;
                height: 100%;

                h1 {
                    font-size: clamp(2rem, 4vw, 3rem);
                    text-align: center;
                    line-height: 1.1;

                    span {
                        color: var(--text-yellow);
                        font-weight: 700;
                    }
                }

                .group_inf_banner {
                    display: flex;
                    justify-content: space-around;
                    align-items: stretch;
                    width: 100%;
                    gap: 16px;

                    .banner-item {
                        text-align: center;
                        flex: 1;

                        h3 {
                            margin-bottom: 5px;

                            span {
                                font-size: clamp(2rem, 4vw, 3rem);
                                color: var(--text-yellow);
                                font-weight: 900;
                            }
                        }

                        h4 {
                            color: var(--text-grey);
                            font-weight: 500;
                        }
                    }

                    .banner-line {
                        width: 1px;
                        background: var(--bg-base-grey-dark);
                    }
                }

                .text-banner {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 16px;

                    h2 {
                        font-size: 1rem;
                        color: var(--text-grey);
                        text-align: center;
                        max-width: 520px;
                    }

                    .btn {
                        background: var(--bg-base-dark);
                        color: var(--text-light);
                        padding: 10px 24px;
                        border-radius: 8px;
                        cursor: pointer;
                        border: none;
                        transition: 0.3s;

                        &:hover {
                            background: var(--text-yellow);
                            color: var(--bg-base-dark);
                        }
                    }
                }
            }
        }
    }

    .logo-slider {
        padding: 45px 0;
        overflow: hidden;
        position: relative;
        width: 100%;

        h1 {
            text-align: center;
            margin-bottom: 28px;
            font-size: clamp(1.8rem, 3vw, 2.5rem);

            span {
                color: var(--text-yellow);
                font-weight: 700;
            }
        }

        .logo-track {
            display: flex;
            align-items: center;
            width: max-content;
            animation: scroll-logos 25s linear infinite;

            &:hover {
                animation-play-state: paused;
            }

            .logo-item {
                width: 190px;
                min-width: 190px;
                padding: 0 28px;
                display: flex;
                align-items: center;
                justify-content: center;

                img {
                    width: 100%;
                    max-height: 75px;
                    object-fit: contain;
                    filter: grayscale(1);
                    opacity: 0.5;
                    transition: 0.3s;

                    &:hover {
                        filter: grayscale(0);
                        opacity: 1;
                    }
                }
            }
        }
    }
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    main {
        .conteiner-productos {
            padding: 0 18px;

            h1 {
                font-size: clamp(1.6rem, 5vw, 2rem);
                margin-bottom: 20px;
            }

            .carousel-produtos-wrapper {
                .btn-nav-produtos {
                    width: 36px;
                    height: 36px;
                    z-index: 20;

                    &.prev {
                        left: 8px;
                    }

                    &.next {
                        right: 8px;
                    }
                }

                .track-productos {
                    gap: 18px;

                    .card-producto {
                        flex: 0 0 calc(50% - 9px) !important;

                        .info-producto {
                            padding: 16px;

                            h3 {
                                font-size: 1rem;
                                min-height: 40px;
                            }

                            .price {
                                font-size: 1.3rem;
                            }
                        }
                    }
                }
            }
        }

        .conteiner-banner {
            .row-banner {
                grid-template-columns: 1fr;

                .img-banner {
                    display: none;
                }
            }
        }

        .logo-slider {
            padding: 35px 0;

            h1 {
                font-size: clamp(1.6rem, 5vw, 2rem);
                margin-bottom: 24px;
            }

            .logo-track {
                animation-duration: 22s;

                .logo-item {
                    width: 160px;
                    min-width: 160px;
                    padding: 0 22px;

                    img {
                        max-height: 65px;
                    }
                }
            }
        }
    }
}

@media (max-width: 600px) {
    main {
        .carousel-conteiner .carousel-slide img {
            aspect-ratio: 16 / 9;
        }

        .conteiner-inf .row-inf .group-inf ul li {
            width: 150px;

            label {
                font-size: 1rem;
            }
        }

        .conteiner-category .row-category .group-category ul {
            gap: 20px;

            a {
                width: 140px;

                .category-icon {
                    width: 100px;
                    height: 100px;

                    i {
                        font-size: 35px;
                    }
                }
            }
        }

        .conteiner-productos {
            padding: 0 16px;

            .carousel-produtos-wrapper {
                padding: 0 34px;

                .btn-nav-produtos {
                    width: 34px;
                    height: 34px;

                    &.prev {
                        left: 0;
                    }

                    &.next {
                        right: 0;
                    }
                }

                .track-overflow {
                    width: 100%;
                }

                .track-productos {
                    gap: 14px;

                    .card-producto {
                        flex: 0 0 100% !important;

                        .img-producto {
                            aspect-ratio: 1 / 1;
                        }

                        .info-producto {
                            padding: 14px;
                            gap: 8px;

                            h3 {
                                font-size: 1rem;
                                min-height: auto;
                                line-height: 1.2;
                            }

                            a span {
                                font-size: 0.9rem;
                            }

                            .value {
                                a {
                                    font-size: 0.85rem;
                                }
                            }

                            .price {
                                font-size: 1.35rem;
                                line-height: 1.1;
                            }

                            .btn-comprar {
                                padding: 9px;
                                font-size: 0.95rem;
                            }
                        }
                    }
                }
            }
        }

        .conteiner-banner {
            width: calc(100% - 28px);

            .row-banner .title {
                .group_inf_banner {
                    flex-direction: column;

                    .banner-line {
                        width: 100%;
                        height: 1px;
                    }
                }
            }
        }

        .logo-slider {
            padding: 30px 0;

            h1 {
                font-size: 1.55rem;
                margin-bottom: 22px;
            }

            .logo-track {
                animation-duration: 18s;

                .logo-item {
                    width: 135px;
                    min-width: 135px;
                    padding: 0 18px;

                    img {
                        max-height: 55px;
                    }
                }
            }
        }
    }
}

@media (max-width: 420px) {
    main {
        .conteiner-productos {
            padding: 0 12px;

            h1 {
                font-size: 1.45rem;
                margin-bottom: 18px;
            }

            .carousel-produtos-wrapper {
                padding: 0 30px;

                .btn-nav-produtos {
                    width: 32px;
                    height: 32px;

                    i {
                        font-size: 0.85rem;
                    }
                }

                .track-productos {
                    gap: 12px;

                    .card-producto {
                        flex: 0 0 100% !important;
                        border-radius: 10px;

                        .info-producto {
                            padding: 12px;

                            h3 {
                                font-size: 0.95rem;
                            }

                            a span {
                                font-size: 0.85rem;
                            }

                            .price {
                                font-size: 1.25rem;
                            }

                            .btn-comprar {
                                padding: 8px;
                                font-size: 0.9rem;
                            }
                        }
                    }
                }
            }
        }

        .logo-slider {
            padding: 28px 0;

            h1 {
                font-size: 1.4rem;
                margin-bottom: 20px;
            }

            .logo-track {
                animation-duration: 16s;

                .logo-item {
                    width: 115px;
                    min-width: 115px;
                    padding: 0 14px;

                    img {
                        max-height: 48px;
                    }
                }
            }
        }
    }
}

@media (max-width: 360px) {
    main {
        .conteiner-productos {
            padding: 0 10px;

            .carousel-produtos-wrapper {
                padding: 0 28px;

                .btn-nav-produtos {
                    width: 30px;
                    height: 30px;
                }

                .track-productos {
                    gap: 10px;

                    .card-producto {
                        flex: 0 0 100% !important;

                        .info-producto {
                            padding: 10px;

                            h3 {
                                font-size: 0.9rem;
                            }

                            .price {
                                font-size: 1.15rem;
                            }
                        }
                    }
                }
            }
        }

        .logo-slider {
            padding: 24px 0;

            .logo-track {
                animation-duration: 14s;

                .logo-item {
                    width: 105px;
                    min-width: 105px;
                    padding: 0 12px;

                    img {
                        max-height: 44px;
                    }
                }
            }
        }
    }
}