/* =========================
   Breadcrumbs (Makrosites)
   ========================= */
.mk-breadcrumbs {
  max-width: 1100px;
  margin: 14px auto 0;
  padding: 0 16px;
  font-size: 13px;
}

.mk-breadcrumbs ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(0, 0, 0, .06);
  backdrop-filter: blur(8px);
  
  /* Scroll lateral suave no mobile */
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.mk-breadcrumbs ol::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.mk-breadcrumbs .mk-bc-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0; /* Impede encolhimento do texto */
}

.mk-breadcrumbs .mk-bc-item::after {
  content: "›";
  opacity: .4;
  font-size: 16px;
}

.mk-breadcrumbs .mk-bc-item.is-current::after {
  content: "";
}

.mk-breadcrumbs a {
  text-decoration: none;
  color: #2563eb;
  font-weight: 500;
}

.mk-breadcrumbs .is-current span {
  font-weight: 600;
  color: #1e293b;
}