.introducao-tipo-usuario__body-grid--Rede-Credenciada {
  background-color: #ebf7bf;
  display: flex;
}

.lista-container h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--corPrimaria);
}

#segmentos-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.segmento-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-radius: 8px;
  padding: 16px;
  min-width: 240px;
  width: 100%;
  flex-grow: 1;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.2s ease;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.segmento-card.active {
  outline: 2px solid #32bb8b;
}

.segmento-card.skeleton {
  background-color: #f4f4f4;
  box-shadow: none;
  pointer-events: none;
  animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d8d8d8;
  flex-shrink: 0;
}

.skeleton-line.skeleton-label {
  height: 14px;
  width: 120px;
  background: #e0e0e0;
  border-radius: 4px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #32bb8b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 36px;
  height: 36px;
  display: block;
  fill: white;
}
.label {
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
}

.servicos-item {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  padding: 16px;
  gap: 16px;
  margin-bottom: 8px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  align-items: start;
}

.servicos-header {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  gap: 16px;
  padding: 16px;
  margin-bottom: 8px;
  border-bottom: solid #32bb8b;
  font-weight: bold;
}

.lista-container {
  background: #f8f8f8;
  width: calc(100% - 80px);
  max-width: 1160px;
  padding: 16px;
  margin: 0 auto;
}

.pagination-container {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-end;
  align-items: center;
}

.pagination-container button {
  display: flex;
  width: min-content;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  padding: 12px;
  white-space: nowrap;
  transition: 0.3s ease all;
  border-color: #25cc9f;
  color: #25cc9f;
}

.pagination-container button:disabled {
  color: #cbcbcb;
}

.pagination-info {
  margin: 0;
  text-align: center;
}

.filtros {
  display: none;
  margin: 32px 0 16px;
  gap: 12px;
  align-items: center;
}

.filtros.active {
  display: flex;
  flex-wrap: wrap;
}

.search-wrapper {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 12px;
  gap: 12px;
  height: 48px;
  width: 500px;
  box-sizing: border-box;
}

.search-icon {
  font-size: 16px;
  color: #888;
  height: 24px;
}

#search-input {
  border: none;
  outline: none;
  flex: 1;
  box-sizing: border-box;
  padding: 0px;
  overflow: hidden;
  color: var(--global-color-neutral-700, #5d677d);
  text-overflow: ellipsis;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

#search-input::placeholder {
  color: var(--global-color-neutral-400, #9ba2b0);
}

.buttons-container {
  display: flex;
  flex-grow: 1;
  gap: 12px;
  justify-content: space-between;
}

.select-wrapper {
  position: relative;
  width: 50%;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 48px;
  width: 100%;
  padding: 12px 48px 12px 12px;
  border: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: black;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.custom-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.filter-button option {
  color: black;
  background-color: white;
}

.sort-button {
  all: unset;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.sort-button:hover {
  color: #0074d9;
}

.sort-button .arrow {
  font-size: 12px;
  color: #aaa;
}

.sort-button.active {
  font-weight: bold;
}

@media (max-width: 768px) {
  .servicos-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .servicos-item > div {
    font-size: 14px;
  }

  .servicos-header {
    display: none;
  }

  #city-filter {
    width: 100%;
  }

  #bairro-filter {
    width: 100%;
  }
  .buttons-container {
    display: flex;
    flex-wrap: wrap;
  }
  .select-wrapper {
    width: 100%;
  }
}
