/* =========================================
   ANUNCIE IMÓVEL - HERO 40vh + FORM ABAIXO
   Reaproveita o padrão do Fale Conosco,
   mas sem unidades (layout single).
========================================= */

/* ===== HERO ===== */
.fc-hero {
  position: relative;
  overflow: hidden;
  height: 44vh;
  /* <<< aqui */
  min-height: 320px;
  /* evita ficar pequeno demais */
  display: flex;
  align-items: flex-end;
}

/* background do hero (default) */
.fc-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 380px at 18% 45%, rgba(12, 52, 205, .28), transparent 62%),
    linear-gradient(180deg, rgba(2, 8, 25, .78) 0%, rgba(2, 8, 25, .55) 55%, rgba(2, 8, 25, .86) 100%),
    url("../../img/paginas/fale-conosco/banner-hero-fale-conosco-alice-imoveis.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.fc-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .18);
}

.fc-hero__texture {
  position: absolute;
  inset: 0;
  opacity: .10;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .20) 0 1px, transparent 2px),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, .12) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, .10) 0 1px, transparent 2px);
  background-size: 22px 22px, 28px 28px, 34px 34px;
  pointer-events: none;
}

.fc-hero .container {
  position: relative;
  z-index: 2;
}

.fc-hero__content {
  max-width: 920px;
}

.fc-hero__kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  margin-bottom: 14px;
}

.fc-hero__title {
  color: #fff;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -.4px;
  margin: 0 0 10px;
}

.fc-hero__title-light {
  color: rgba(255, 255, 255, .78);
  font-weight: 650;
}

.fc-hero__subtitle {
  color: rgba(255, 255, 255, .86);
  font-size: 1.15rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== CONTENT AREA ===== */
.fc-content {
  position: relative;
  padding: 48px 0 70px;
  background: var(--bg, #f6f7fb);
}

/* layout single centralizado */
.fc-content__single {
  display: flex;
}

/* ===== FORM CARD (LIGHT) ===== */
.fc-formCard {
  border-radius: 16px;
  padding: 22px 22px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .10);
}

.fc-formCard--wide {
  width: 100%;
}

.fc-formCard__title {
  margin: 0;
  color: #111;
  font-weight: 950;
  font-size: 20px;
}

.fc-formCard__sub {
  margin: 6px 0 0;
  color: rgba(0, 0, 0, .65);
  font-size: 13px;
}

.fc-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.fc-row {
  display: grid;
  gap: 12px;
}

/* variações de colunas */
.fc-row.double {
  grid-template-columns: 1fr 1fr;
}

.fc-row.triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.fc-field label {
  display: block;
  color: rgba(0, 0, 0, .78);
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 6px;
}

.fc-field input,
.fc-field select,
.fc-field textarea {
  width: 100%;
  border-radius: 12px;
  padding: 12px 12px;
  color: #111;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .14);
  outline: none;
}

.fc-field textarea {
  resize: vertical;
  min-height: 140px;
}

.fc-field input::placeholder,
.fc-field textarea::placeholder {
  color: rgba(0, 0, 0, .45);
}

/* ===== ACTIONS ===== */
.fc-row--actions {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-submit {
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .06);
  color: #fff;
  font-weight: 950;
  font-size: 14px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--cor-site-1, #0c34cd), var(--cor-site-1-2, #000ca5));
  box-shadow: 0 14px 30px rgba(12, 52, 205, .22);
  transition: transform .15s ease, box-shadow .15s ease;
}

.fc-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(12, 52, 205, .30);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .fc-hero {
    align-items: flex-end;
  }

  .fc-hero__title {
    font-size: 28px;
  }

  .fc-hero__subtitle {
    color: rgba(255, 255, 255, .86);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
  }

  .fc-row.double {
    grid-template-columns: 1fr;
  }

  .fc-row.triple {
    grid-template-columns: 1fr;
  }

  .fc-formCard {
    padding: 18px 16px 14px;
  }
}