.bc-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

.bc-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.bc-carousel::-webkit-scrollbar {
    display: none;
}

.botao-item {
    flex: 0 0 auto;
    min-width: 180px;
    background-color: #03b1e6;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s;
    scroll-snap-align: start;
}

.botao-item:hover {
    background-color: #93C01F;
    color: white;
    transform: scale(1.05);
}

/* Selo "Em breve" */
.botao-em-breve::after {
    content: "Em breve";
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 0, 0, 0.85);
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
    pointer-events: none;
}

/* Botões de navegação */
.bc-prev, .bc-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10%;
    z-index: 10;
}

.bc-prev { left: 10px; }
.bc-next { right: 10px; }

/* Responsividade */
@media (max-width: 992px) {
    .botao-item {
        min-width: 150px;
    }
}

@media (max-width: 600px) {
    .botao-item {
        min-width: 120px;
    }
}
