/* ===================================================
   Breadcrumb FQC
   Azul: #205b8c | Naranja: #ff8f0f
=================================================== */

/* Contenedor general del breadcrumb */
.breadcrumb {
  background: transparent !important;
  margin-bottom: 0;
  padding: 0;
}

/* Ítems normales → Azul FQC */
.breadcrumb-item,
.breadcrumb-item a {
  color: #205b8c !important;
  font-family: 'Century Gothic', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

/* Hover en enlaces */
.breadcrumb-item a:hover {
  text-decoration: underline;
  color: #163f5c !important; /* azul más oscuro */
}

/* Separador (>) */
.breadcrumb-item + .breadcrumb-item::before {
  color: #205b8c !important;
}

/* Ítem activo (último) → Naranja FQC */
.breadcrumb-item.active {
  color: #ff8f0f !important;
  font-weight: 700;
}
