/* ==============================
   BREADCRUMB LARANJA
============================== */

/* Estilo base do breadcrumb */
.breadcrumb {
    font-size: 1rem;
    background-color: #f8f9fa; /* fundo claro */
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Separador */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›"; /* Separador elegante */
    color: #6c757d;
    padding: 0 0.5rem;
    font-weight: 600;
}

/* Link ativo */
.breadcrumb-item.active {
    color: #495057;
    font-weight: 600;
}

/* ==============================
   VARIANTE LARANJA
============================== */
.breadcrumb-orange .breadcrumb-item a {
    color: #edb402; /* cor do btn-orange */
    font-weight: 600;
}

.breadcrumb-orange .breadcrumb-item a:hover {
    color: #b8942d; /* ligeiro escurecimento */
    text-decoration: underline;
}

.breadcrumb-orange .breadcrumb-item.active {
    color: #916f16; /* link ativo laranja */
}
