/* Breadcrumb (Navegación) */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #fbc76a;
    /* Tu color dorado */
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 8px;
    color: #ccc;
}

.breadcrumb-item.active {
    color: #1a1a1a;
    font-weight: 600;
}