/* Estilos para o carrossel de múltiplos itens */
.multi-item-carousel {
    position: relative;
    margin: 20px 0 40px;
    overflow: visible;
    
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: visible;
    min-height: px; /* Altura mínima para evitar saltos no layout */
}

.carousel-slide {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    transition: transform 0.5s ease;
}

.carousel-slide.active {
    display: flex;
}

.carousel-product {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    
}

.carousel-product:hover {
    transform: translateY(-5px);
}

/* Controles do carrossel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 15px 0 0;
    list-style: none;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicator.active {
    background-color: #000000;
}
.card {
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Estilos para o card do produto */
.carousel-product .card {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 8px;
    overflow: visible;
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-product .card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    
}

.carousel-img {
    height: 450px;
    object-fit: cover;
}

.no-products-message {
    width: 100%;
    text-align: center;
    padding: 30px;
    color: #acacac;
    font-style: italic;
}

/* Mensagem para quando não há produtos */
.no-products-message {
    width: 100%;
    text-align: center;
    padding: 40px 0;
    color: #6c757d;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 992px) {
    .carousel-product {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .carousel-product {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}