/**
 * Hero search (home) — layout centralizado (mockup 1200px).
 */

.hero-search {
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  background: #fff;
  scroll-margin-top: calc(var(--header-h, 87px) + 0.75rem);
}

.hero-search__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-search__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #111;
  line-height: 1.25;
}

.hero-search__subtitle {
  margin: 0 auto 1.75rem;
  max-width: 44rem;
  font-size: 1.0625rem;
  color: #37474f;
  line-height: 1.5;
}

.hero-search__form {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.hero-search__fields {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
}

.hero-search__field {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
  gap: 0.625rem;
  padding: 0.35rem 0.75rem;
}

.hero-search__icon {
  display: inline-flex;
  flex-shrink: 0;
  color: #94a3b8;
}

.hero-search__divider {
  flex: 0 0 1px;
  align-self: stretch;
  width: 1px;
  margin: 0.5rem 0;
  background: #e2e8f0;
}

.hero-search__input,
.hero-search__select {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 0.65rem 0;
  font-size: 0.9375rem;
  color: #111;
  background: transparent;
  outline: none;
  box-shadow: none;
}

.hero-search__input::placeholder {
  color: #94a3b8;
}

.hero-search__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: none;
  color: #94a3b8;
}

.hero-search__select:has(option:checked:not([value=""])) {
  color: #111;
}

.hero-search__select option {
  color: #111;
}

.hero-search__select option[value=""] {
  color: #94a3b8;
}

.hero-search__input:focus,
.hero-search__select:focus {
  outline: none;
}

.hero-search__submit-wrap {
  flex: 0 0 auto;
  padding-left: 0.5rem;
}

.hero-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 12px;
  padding: 0.85rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: #e85d04;
  cursor: pointer;
  white-space: nowrap;
}

.hero-search__submit-arrow {
  font-weight: 700;
  line-height: 1;
}

.hero-search__submit:hover,
.hero-search__submit:focus {
  background: #d45103;
}

.hero-search__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.hero-search__pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #1e293b;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.hero-search__pill:hover,
.hero-search__pill:focus {
  border-color: #94a3b8;
  background: #f8fafc;
  color: #0f172a;
}

@media (max-width: 767.98px) {
  .hero-search {
    padding: 1.75rem 1rem 1rem;
  }

  .hero-search__form {
    padding: 0.75rem;
  }

  .hero-search__fields {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search__field {
    padding: 0.25rem 0.35rem;
  }

  .hero-search__divider {
    width: 100%;
    height: 1px;
    margin: 0.25rem 0;
  }

  .hero-search__submit-wrap {
    padding: 0.5rem 0 0;
  }

  .hero-search__submit {
    width: 100%;
  }
}
