

.nav-secciones {
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}


.nav-secciones a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transition: all 0.2s ease;
}

.nav-secciones a:hover {
  color: #6b7280;
}

.nav-secciones a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #f3f4f6;
  color: #9ca3af;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.nav-secciones a svg {
  color: currentColor;
}

.nav-secciones a.active {
  color: var(--naranja-color, #ff8a00);
}

.nav-secciones a.active span {
  background-color: var(--naranja-color, #ff8a00);
  color: #ffffff;
}