.location-tabs {
  display: flex;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 10;
  flex-shrink: 0;
  font-weight: 500;
  padding-left: 12px;
  padding-bottom: 12px;
  background: rgb(224, 242, 240);
}

.tab {
  padding: 8px 16px;
  color: rgb(0, 151, 165);
  border-radius: 12px;
  cursor: pointer;
  font-size: 16.5px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap; /* garante que não quebre linha */
}

.tab.active {
  background: rgb(0, 151, 165);
  color: white;
  font-weight: 500;
}

@media (prefers-color-scheme: dark) {
  .tab {
    color: white;
  }

  .tab.active {
    background: rgb(0, 151, 165); /* mantém identidade */
    color: white;
  }

  .location-tabs {
    background: rgb(20, 25, 25); /* fundo escuro */
  }
}

/* 📱 Portrait (vertical): aqui você pode personalizar depois */
@media (orientation: portrait) {
  .tab {
    padding: 6px 10px;
    font-size: 14.5px;
  }

  .location-tabs {
    padding-left: 12px;
    padding-bottom: 12px;
  }
}
