/* ========================================
   Hero
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Imagem poster como fallback bonito */
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=70") center/cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,36,54,0.35) 0%, rgba(13,36,54,0.55) 60%, rgba(13,36,54,0.78) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(13,36,54,0.15), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.hero__title {
  font-size: var(--fs-hero);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  color: #fff;
}
.hero__title-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent-2);
}
.hero__subtitle {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.88);
  max-width: 60ch;
  margin-bottom: var(--space-7);
}

/* ---- Search Bar (glassmorphism) ---- */
.search {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr auto;
  gap: 1px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 8px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  max-width: 920px;
  margin-bottom: var(--space-7);
}
.search__field {
  position: relative;
  padding: 10px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: background var(--t-base);
}
.search__field:hover { background: rgba(255,255,255,0.12); }
.search__field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
}
.search__input {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.search__input svg { color: rgba(255,255,255,0.7); flex-shrink: 0; }
.search__input input,
.search__input select {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 4px 0;
  outline: none;
  color-scheme: dark;
}
.search__input input::placeholder { color: rgba(255,255,255,0.6); }
.search__input select { appearance: none; cursor: pointer; }
.search__input select option { color: var(--color-ink); }

.search__submit {
  align-self: stretch;
  padding-inline: clamp(1.25rem, 3vw, 2rem);
}

/* ---- Trust strip ---- */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  color: rgba(255,255,255,0.88);
  font-size: var(--fs-sm);
}
.hero__trust strong {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-right: 6px;
}
.hero__trust li {
  position: relative;
  padding-right: var(--space-6);
}
.hero__trust li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 1px; height: 18px;
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%);
}
