.nav-link:hover {
    color: white !important;
    background-color: #0A6A92 !important;
}

.pull-right {
    float: right !important;
}

/* portal */
body {
    font-family: Arial, sans-serif;
    padding: 0;
    margin: 0;
    background-color: #f8f9fa;
}

/* MENU CATEGORIAS */
.menu-categorias {
    display: flex;
    justify-content: flex-end;
    /* Alinha para a direita */
    background-color: #007bff;
    padding: 10px;
}

.menu-categorias a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    background-color: #0056b3;
    border-radius: 20px;
}

.menu-categorias a:hover {
    background-color: #003d80;
}

h2 {
    margin: 20px;
}

.botao-carrinho {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.botao-carrinho:hover {
    background-color: #0056b3;
}

.botao-remover-carrinho {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.botao-remover-carrinho:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .botao-carrinho {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    .menu-categorias {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}

.produto img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

#modalImagem img {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: grey;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
}

#scrollTopBtn:hover {
    background-color: #555;
}

#menuPedidoFlutuante {
    position: fixed;
    bottom: 105px;
    left: 20px;
    background: #ffc107;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 1000;
}

ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: #eee;
}

ul.breadcrumb li {
    display: inline;
    font-size: 18px;
}

ul.breadcrumb li+li:before {
    padding: 4px;
    color: black;
    content: "/\00a0";
}

ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}

.descricao-limitada {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
