/* ====== BANNER ====== */
.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.banner-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide img {
    width: 1420px;
    display: block;
}

.prev-banner,
.next-banner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev-banner {
    left: 10px;
}

.next-banner {
    right: 10px;
}


/* ====== CATEGORIA ====== */
.categoria {
    padding: 20px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

.categoria h2 {
    margin-bottom: 25px;
}

.produtos-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.produtos {
    width: 100%;
    display: flex;
    gap: 15px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.produto {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    min-width: 206px;
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.produto button {
    padding: 5px;
    background-color: #6e0000;
    padding: 10px;
    border: none;
    color: white;
}

.produto button:hover {
    cursor: pointer;
}

.produto h3 {
    font-size: small;
}

.produto p {
    font-size: smaller;
}

.produto img {
    width: 100%;
    height: 200px;
    margin: 15px 0;
    object-fit: contain;
}

.produto span {
    color: green;
    font-weight: bold;
    font-size: medium;
}



.prev,
.next {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.banner-exclusivo {
    height: 325px;
    display: flex;
    justify-content: flex-end;
    align-items: first baseline;
    background-color: red;
    margin-bottom: 50px;
}

.banner-exclusivo .categoria {
    width: 1145px;
    height: 300px;
    top: 19px;
    right: 25px;
    position: relative;
    padding: 0;
    border: none;
}

.banner-exclusivo .categoria img {
    height: 150px;
}

@media only screen and (max-width:1419px) {

    .banner-exclusivo .categoria {
        width: calc(100vw - 275px) ;
        height: 300px;
        top: 19px;
        right: 5px;
        position: relative;
        padding: 0;
    }

    .banner-exclusivo .categoria .produtos {
        width: calc(100vw - 275px) ;
    }
}

@media only screen and (max-width:1024px) {
    .banner-slide img {
        width: 1024px;
    }

    .banner-exclusivo .categoria {
        width: 744px;
        right: 5px;
        position: relative;
        padding: 0;
    }

    .banner-exclusivo .categoria .produtos {
        width: 655px;
    }
}

@media only screen and (max-width:900px) {
    .banner-slide img {
        width: 900px;
    }
}

@media only screen and (max-width:451px) {
    .banner-slide img {
        width: 450px;
    }
}