:root {
  --ink: #1A1A2E;
  --ink-soft: #2D2D44;
  --ink-deep: #111122;
  --fog: #F5F5F7;
  --paper: #FFFFFF;
  --orange: #FF5A3C;
  --orange-dark: #E84A2E;
  --orange-light: #FFF0EC;
  --teal: #00A699;
  --teal-light: #E6F7F5;
  --charcoal: #222222;
  --slate: #717171;
  --line: #EBEBEB;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

/* ============ HEADER ============ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .brand img { height: 28px; display: block; }

.site-header nav { display: flex; align-items: center; gap: 32px; }

.site-header nav a {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--orange); }

.site-header nav a.btn-login {
  background: var(--charcoal);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.2s;
}

.site-header nav a.btn-login:hover { background: var(--ink); }

/* ============ HERO ============ */
.hero-qa {
  position: relative;
  background: linear-gradient(180deg, var(--ink-deep) 0%, var(--ink) 100%);
  color: #fff;
  max-height: 92vh;
  padding: 80px 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-qa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,90,60,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-qa__inner {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.hero-qa__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 600px;
}

/* Coluna Esquerda - Texto e Trust Bar */
.hero-qa__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}

.hero-qa__title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.text-highlight {
  color: var(--orange);
  position: relative;
  white-space: nowrap;
}

.text-highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.3;
}

.hero-qa__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}

/* Trust Bar na coluna esquerda */
.hero-qa__left .trust-bar-qa {
  max-width: 520px;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-qa__left .trust-bar-qa__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  background: rgba(255,255,255,0.05);
  padding: 4px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}

.hero-qa__left .trust-bar-qa__item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.hero-qa__left .trust-bar-qa__item svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* Coluna Direita - Card de Busca */
.hero-qa__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding-left: 20px;
}

/* Tabs */
.hero-qa__right .search-tabs-qa {
  display: inline-flex;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.search-tabs-qa__tab {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 50px;
  transition: all 0.3s;
  white-space: nowrap;
}

.search-tabs-qa__tab.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

/* Card de Busca */
.search-card-qa {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.search-card-qa__field {
  min-width: 0;
}

.search-card-qa__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.search-card-qa__select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23717171' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.search-card-qa__select:hover {
  border-color: #ccc;
}

.search-card-qa__select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,90,60,0.1);
}

/* Linha com Valor e Quartos */
.search-card-qb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Botão de busca */
.search-card-qa__btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
}

.search-card-qa__btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============ RESPONSIVE HERO ============ */
@media (max-width: 1024px) {
  .hero-qa__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-qa__left {
    text-align: center;
    align-items: center;
    padding-right: 0;
  }
  
  .hero-qa__subtitle {
    margin: 0 auto;
  }
  
  .hero-qa__left .trust-bar-qa {
    justify-content: center;
  }
  
  .hero-qa__right {
    padding-left: 0;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  .hero-qa__right .search-tabs-qa {
    align-self: center;
  }
}

@media (max-width: 640px) {
  .hero-qa {
    padding: 60px 20px;
  }
  
  .hero-qa__title {
    font-size: 2.2rem;
  }
  
  .hero-qa__subtitle {
    font-size: 1rem;
  }
  
  .search-card-qa {
    padding: 20px;
  }
  
  .search-card-qb {
    grid-template-columns: 1fr;
  }
  
  .search-tabs-qa__tab {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* ============ TRUST BAR ============ */
.trust-bar-qa {
  max-width: 1040px;
  margin: 0 auto 0 auto;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-bar-qa__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}

.trust-bar-qa__item svg {
  color: var(--orange);
}

/* ============ SECTIONS ============ */
.section-qa {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px;
}

.section-qa--light {
  background: var(--fog);
  border-radius: var(--radius-lg);
  margin: 0 24px 20px;
  padding: 64px 48px;
}

.section-qa__header {
  margin-bottom: 20px;
}

.section-qa__header--inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-qa__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.section-qa__title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0;
  letter-spacing: -0.01em;
}

.link-qa {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.link-qa:hover { color: var(--orange-dark); }

/* ============ SPOTLIGHT GRID ============ */
.spotlight-grid-qa {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.spotlight-card-qa {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  background: linear-gradient(160deg, var(--ink-soft), var(--ink-deep));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.spotlight-card-qa:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.spotlight-card-qa__rank {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.72rem;
  background: rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 600;
}

.spotlight-card-qa__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 2px;
  font-weight: 600;
}

.spotlight-card-qa__count {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ============ AREA CHIPS ============ */
.area-chip-row-qa {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.area-chip-qa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
}

.area-chip-qa:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.area-chip-qa__count {
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 400;
}

/* ============ STEPS ============ */
.steps-grid-qa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card-qa {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.step-card-qa:hover {
  box-shadow: var(--shadow-md);
}

.step-card-qa__number {
  font-size: 2.8rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
}

.step-card-qa__title {
  font-size: 1.1rem;
  margin: 0 0 8px;
  font-weight: 600;
}

.step-card-qa__text {
  color: var(--slate);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ============ PROPERTY GRID ============ */
.property-grid-qa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-card-qa {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.property-card-qa:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.property-card-qa__photo {
  position: relative;
  height: 200px;
  background: var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 0.85rem;
  overflow: hidden;
}

.property-card-qa__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.property-card-qa:hover .property-card-qa__img {
  transform: scale(1.05);
}

.property-card-qa__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--slate);
  background: var(--fog);
}

.property-card-qa__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: var(--charcoal);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.property-card-qa__body {
  padding: 20px;
}

.property-card-qa__title {
  font-size: 1.05rem;
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--charcoal);
}

.property-card-qa__meta {
  color: var(--slate);
  font-size: 0.82rem;
  margin: 0 0 12px;
}

.property-card-qa__price {
  font-size: 0.88rem;
  color: var(--charcoal);
  margin: 0;
}

.property-card-qa__price strong {
  color: var(--teal);
  font-weight: 600;
}

.property-card-qa__divider {
  margin: 0 8px;
  color: var(--line);
}

.empty-state-qa {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--slate);
  background: var(--fog);
  border-radius: var(--radius-md);
}

/* ============ OWNER BANNER ============ */
.block-qa {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: rgba(248, 245, 245, 0.949);
  max-width: 968px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.block-qa:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: #fff;
  background: linear-gradient(45deg, var(--ink) 100%, var(--ink-soft) 0%);
}

.block-qa:hover a {
  color: var(--orange);
}

.owner-banner-qa {
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.owner-banner-qa__content {
  max-width: 560px;
}

.owner-banner-qa__title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 600;
}

.owner-banner-qa__text {
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
  line-height: 1.6;
}

.owner-banner-qa__stats {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}

.owner-banner-qa__stat {
  text-align: center;
}

.owner-banner-qa__num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.owner-banner-qa__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

/* ============ BUTTONS ============ */
.btn-qa {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-qa--primary {
  background: var(--orange);
  color: #fff;
}

.btn-qa--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.6);
  padding: 48px;
  font-size: 0.85rem;
  text-align: center;
}

.site-footer a {
  color: rgba(255,255,255,0.8);
  margin-right: 24px;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer p {
  margin: 16px 0 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .property-grid-qa,
  .spotlight-grid-qa,
  .steps-grid-qa {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .search-card-qa {
    grid-template-columns: 1fr 1fr;
  }
  
  .owner-banner-qa {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  
  .owner-banner-qa__stats {
    justify-content: center;
  }
  
  .hero-qa__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .property-grid-qa,
  .spotlight-grid-qa,
  .steps-grid-qa {
    grid-template-columns: 1fr;
  }
  
  .search-card-qa {
    grid-template-columns: 1fr;
  }
  
  .site-header,
  .hero-qa,
  .section-qa {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-qa--light {
    margin: 0 12px 40px;
    padding: 40px 20px;
  }
  
  .hero-qa__title {
    font-size: 2rem;
  }
  
  .search-tabs-qa__tab {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .trust-bar-qa {
    gap: 16px;
  }
  
  .section-qa__header--inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ============ BREADCRUMB ============ */
.breadcrumb-qa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--slate);
}

.breadcrumb-qa a {
  color: var(--slate);
  transition: color 0.2s;
}

.breadcrumb-qa a:hover {
  color: var(--orange);
}

.breadcrumb-qa__separator {
  color: var(--line);
}

/* ============ PROPERTY DETAIL ============ */
.property-detail-qa {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.property-detail-qa__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-top: 24px;
}

.property-detail-qa__main {
  min-width: 0;
}

/* ============ GALLERY ============ */
.gallery-qa {
  margin-bottom: 32px;
}

.gallery-qa__main {
  position: relative;
  height: 400px;
  background: var(--fog);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-qa__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-qa__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--slate);
}

.gallery-qa__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.gallery-qa__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.gallery-qa__thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.gallery-qa__thumb:hover {
  opacity: 0.8;
}

/* ============ PROPERTY INFO ============ */
.property-info-qa__title {
  font-size: 1.8rem;
  margin: 0 0 8px;
  font-weight: 600;
}

.property-info-qa__location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-size: 0.9rem;
  margin: 0 0 32px;
}

.property-info-qa__location svg {
  flex-shrink: 0;
  color: var(--orange);
}

.property-info-qa__description {
  margin-bottom: 32px;
}

.property-info-qa__section-title {
  font-size: 1.2rem;
  margin: 0 0 12px;
  font-weight: 600;
}

.property-info-qa__text {
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============ SPECS ============ */
.property-info-qa__specs {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.specs-grid-qa {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.spec-item-qa {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--fog);
  border-radius: var(--radius-sm);
}

.spec-item-qa svg {
  flex-shrink: 0;
  color: var(--teal);
}

.spec-item-qa__label {
  display: block;
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 2px;
}

.spec-item-qa__value {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============ PRICE CARD ============ */
.property-detail-qa__sidebar {
  position: relative;
}

.price-card-qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 80px;
}

.price-card-qa__value {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--charcoal);
}

.price-card-qa__period {
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 400;
}

.price-card-qa__type {
  font-size: 0.85rem;
  color: var(--slate);
  margin: 0 0 20px;
}

.btn-qa--full {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.price-card-qa__info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.price-card-qa__info svg {
  flex-shrink: 0;
  color: var(--teal);
}

/* ============ FILTER FORM ============ */
.filter-form-qa {
  margin-bottom: 32px;
}

.filter-form-qa__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.filter-form-qa__field {
  min-width: 0;
}

.filter-form-qa__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
}

.filter-form-qa__select,
.filter-form-qa__input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
  color: var(--charcoal);
  transition: border-color 0.2s;
}

.filter-form-qa__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23717171' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.filter-form-qa__select:focus,
.filter-form-qa__input:focus {
  outline: none;
  border-color: var(--orange);
}

.filter-form-qa__actions {
  display: flex;
  gap: 12px;
}

.btn-qa--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--line);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-block;
}

.btn-qa--outline:hover {
  border-color: var(--charcoal);
  background: var(--fog);
}

.results-count-qa {
  color: var(--slate);
  font-size: 0.9rem;
  margin: 0 0 24px;
}

/* ============ PAGINATION ============ */
.pagination-qa {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.pagination-qa nav {
  display: flex;
  gap: 8px;
}

.pagination-qa .page-link {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  transition: all 0.2s;
}

.pagination-qa .page-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.pagination-qa .page-item.active .page-link {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.pagination-qa .page-item.disabled .page-link {
  opacity: 0.5;
  pointer-events: none;
}

/* ============ EMPTY STATE ============ */
.empty-state-qa {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  color: var(--slate);
  background: var(--fog);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.empty-state-qa svg {
  color: var(--slate);
  margin-bottom: 8px;
}

.empty-state-qa p {
  margin: 0;
}

/* ============ INSTITUTIONAL ============ */
.institutional-qa {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px;
}

.institutional-qa__container {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.institutional-qa__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.institutional-qa__title {
  font-size: 2.2rem;
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.institutional-qa__subtitle {
  color: var(--slate);
  font-size: 1.05rem;
  margin: 0 0 32px;
  line-height: 1.6;
}

.institutional-qa__content {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.institutional-qa__content h1,
.institutional-qa__content h2,
.institutional-qa__content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}

.institutional-qa__content p {
  margin-bottom: 16px;
}

.institutional-qa__content ul,
.institutional-qa__content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.institutional-qa__content li {
  margin-bottom: 8px;
}

.institutional-qa__content a {
  color: var(--orange);
  text-decoration: underline;
}

.institutional-qa__content a:hover {
  color: var(--orange-dark);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .property-detail-qa__grid {
    grid-template-columns: 1fr;
  }
  
  .property-detail-qa__sidebar {
    order: -1;
  }
  
  .price-card-qa {
    position: static;
  }
  
  .filter-form-qa__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .specs-grid-qa {
    grid-template-columns: 1fr;
  }
  
  .gallery-qa__main {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .property-detail-qa,
  .institutional-qa {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .breadcrumb-qa {
    padding: 16px 20px;
  }
  
  .filter-form-qa__grid {
    grid-template-columns: 1fr;
  }
  
  .filter-form-qa__actions {
    flex-direction: column;
  }
  
  .btn-qa--outline {
    text-align: center;
  }
  
  .gallery-qa__main {
    height: 250px;
  }
  
  .institutional-qa__container {
    padding: 24px;
  }
  
  .property-info-qa__title {
    font-size: 1.5rem;
  }
}

/* ============ FOOTER PROFISSIONAL ============ */
.site-footer-qa {
  /* background: var(--ink-deep); */
  color: rgba(21, 20, 20, 0.781);
  margin-top: 80px;
}

.site-footer-qa__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* Coluna da Marca */
.site-footer-qa__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer-qa__logo {
  height: 30px;
  width: 140px;
  margin-bottom: 8px;
}

.site-footer-qa__description {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(21, 20, 20, 0.781);
  margin: 0;
  max-width: 320px;
}

.site-footer-qa__social {
  display: flex;
  gap: 12px;
}

.site-footer-qa__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(64, 64, 64, 0.977);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}

.site-footer-qa__social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

/* Colunas de Links */
.site-footer-qa__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer-qa__title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(21, 20, 20, 0.982);
  margin: 0 0 8px;
}

.site-footer-qa__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-qa__link {
  color: rgba(21, 20, 20, 0.781);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.site-footer-qa__link:hover {
  color: var(--orange);
}

/* Coluna de Contato */
.site-footer-qa__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-qa__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.site-footer-qa__contact svg {
  flex-shrink: 0;
  color: var(--orange);
}

.site-footer-qa__text {
  color: rgba(21, 20, 20, 0.781);
}

/* Barra Inferior */
.site-footer-qa__bottom {
  border-top: 1px solid rgba(21, 20, 20, 0.781);
  padding: 24px 48px;
}

.site-footer-qa__bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer-qa__bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(21, 20, 20, 0.781);
}

.site-footer-qa__bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer-qa__bottom-link {
  color: rgba(21, 20, 20, 0.781);
  font-size: 0.82rem;
  transition: color 0.2s;
}

.site-footer-qa__bottom-link:hover {
  color: var(--orange);
}

.site-footer-qa__separator {
  color: rgba(21, 20, 20, 0.781);
}

/* ============ RESPONSIVE FOOTER ============ */
@media (max-width: 960px) {
  .site-footer-qa__container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .site-footer-qa__brand {
    grid-column: 1 / -1;
  }
  
  .site-footer-qa__description {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-footer-qa__container {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
    gap: 32px;
  }
  
  .site-footer-qa__bottom {
    padding: 20px 24px;
  }
  
  .site-footer-qa__bottom-container {
    flex-direction: column;
    text-align: center;
  }
}
