/* ============================================================ 
   BREADCRUMB & HEADER DA PÁGINA
   ============================================================ */
.breadcrumb-section {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  color: var(--color-white);
  text-align: center;
}

.breadcrumb-title {
  font-size: 36px;
  margin-bottom: 10px;
}

.breadcrumb-nav {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav a { color: var(--color-primary); }

/* ============================================================ 
   LAYOUT LISTAGEM
   ============================================================ */
.listing-wrapper {
  display: flex;
  gap: 40px;
  padding: 80px 0;
}

.listing-sidebar {
  width: 320px;
  flex-shrink: 0;
}

.listing-results {
  flex: 1;
}

/* ============================================================ 
   SIDEBAR & WIDGETS
   ============================================================ */
.filter-widget {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 30px;
  position: sticky;
  top: 100px;
}

.widget-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.filter-group select, .filter-group input {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 0 15px;
  background: var(--color-accent);
  transition: var(--transition);
}

.filter-group select:focus, .filter-group input:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
}

/* Lista de Categorias */
.cat-list li {
  margin-bottom: 14px;
}

.cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--color-text-body);
}

.cat-list a:hover, .cat-list li.active a {
  color: var(--color-primary);
  font-weight: 700;
}

.cat-count {
  font-size: 12px;
  background: var(--color-accent);
  padding: 2px 10px;
  border-radius: 20px;
  color: var(--color-text-light);
}

/* ============================================================ 
   RESPONSIVIDADE LISTING
   ============================================================ */
@media (max-width: 992px) {
  .listing-wrapper { flex-direction: column; }
  .listing-sidebar { width: 100%; }
  .filter-widget { position: static; }
}
