/* Estiliza os botões de categoria */
.categoria-btn {
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.categoria-btn.active {
    background-color: #b30000;
}

/* Esconde os carrosséis que não estão ativos */
.categoria-carousel {
    display: none;
}

/* Exibe apenas o carrossel ativo */
.categoria-carousel.active {
    display: block;
}

/* Ajusta o layout dos produtos */
.categoria-carousel .row {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.categoria-carousel img {
    max-height: 300px;
    object-fit: contain;
}

/* Ajusta os botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: red;
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: -30px;
}

.next-btn {
    right: -30px;
}

/* Garante que o conteúdo deslize horizontalmente */
.categoria-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.categoria-carousel .row {
    display: flex;
    transition: transform 0.5s ease-in-out;
    flex-wrap: nowrap;
}

/* Oculta carrosséis inativos */
.categoria-carousel {
    display: none;
}

.categoria-carousel.active {
    display: block;
}


#contato {
    background: #0027ff; /* Azul vibrante */
    color: white;
}

#contato .btn-light {
    border-radius: 10px;
    font-size: 1.2rem;
}

#localizacao {
    background: #f8f9fa; /* Cinza claro para contraste */
}

.mapa-container {
    background: red;
    padding: 15px;
    border-radius: 10px;
}


#catalogo {
    background: white;
}

#catalogo .border-danger {
    border-width: 3px;
    border-radius: 10px;
}

#catalogo .btn-danger {
    border-radius: 10px;
    font-size: 1.2rem;
}

.mt-5x {
    margin-top: 9rem !important;
    margin-bottom: 5rem !important;
}
footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
    font-size: 0.9rem;
}
footer a {
    color: #bbb;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
}

/* Define a fonte Poppins para todo o site */
body {
    font-family: 'Poppins', sans-serif;
}


/* Parágrafos e textos gerais */
p, a, li, span, button, input, textarea {
    font-family: 'Poppins', sans-serif;
}

/* Botões */
button {
    font-weight: 600;
    text-transform: uppercase;
}

/* Links */
a {
    text-decoration: none;
}



li {
    font-family: 'Poppins', sans-serif;
    padding-right: 2rem;
}

.banner {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
@media(max-width:748px){
    .next-btn {
        right: 0px;
    }
    .mt-5x {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    .categoria-btn {
        padding: 6px 17px;
        border: none;
        font-weight: bold;
        cursor: pointer;
        font-size: .6rem;
        transition: background 0.3sease-in-out;
    }
    .prev-btn {
        left: 0px;
    }
    .col-md-3 {
        width: 31%;
    }
    .banner {
        position: inherit;
        bottom: 0px;
        left: 50%;
        transform: translateX(0);
        width: 100%;
        max-width: 900px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
}
