/* Botoes Começo */

#prevBtn,
#nextBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    font-size: 2rem;
    color: #00c853;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    transition: background 0.3s;
}

#prevBtn:hover,
#nextBtn:hover {
    background: rgba(0, 0, 0, 0.8);
}

#prevBtn {
    left: -10px;
}

#nextBtn {
    right: -10px;
}

/* Botoes Fim */

#catalogo-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

#catalogo-carousel::-webkit-scrollbar {
    display: none;
}

#catalogo-carousel>div:last-child {
    margin-right: 0;
}

#catalogo-carousel-container {
    position: relative;
    padding: 0px 30px;
    max-width: 80%;
    margin: 0 auto;
}

#catalogo-carousel>div {
    margin: 12px;
    background: #222;
    padding: 18px 12px 14px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px #0003;
}

#catalogo-carousel>div:hover {
    box-shadow: 0 4px 16px #00c85355;
}

#catalogo-carousel img {
    height: 350px;
    border-radius: 8px;
    margin-bottom: 12px;
}

#catalogo-carousel h3 {
    font-size: 1.08rem;
    color: #fff;
    margin: 0;
    margin-bottom: 4px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

#catalogo-dots {
    display: flex;
    justify-content: center;
    margin-top: 18px;
    gap: 10px;
}

.catalogo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s;
}

.catalogo-dot.active {
    background: #00c853;
    box-shadow: 0 0 0 2px #fff2;
}

#btns-catalogo {
    display: flex;
    justify-content: space-evenly;
}

@media (max-width: 768px) {
    #catalogo-carousel > div {
        width: 200px;
    }

    #prevBtn,
    #nextBtn {
        display: none;
        /* esconde setas no mobile */
    }

    #btns-catalogo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}