/* ======================================== */
/* Estilo do Breadcrumb                     */
/* ======================================== */
.breadcrumb {
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Permite quebrar linha em telas pequenas */
    gap: 8px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

/* Adiciona a seta ">" entre os itens */
.breadcrumb li:not(:last-child)::after {
    content: '❯';
    margin-left: 8px;
    color: #888;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Estilo para a página atual (último item, sem link) */
.breadcrumb li:last-child {
    color: #6c757d;
    font-weight: bold;
}