/* ── Design Tokens ── */
:root {
  --teal:       #15788c;
  --teal-dark:  #0f4c5c;
  --coral:      #e84e63;
  --ink:        #20262b;
  --slate:      #4c565d;
  --slate-2:    #5b6770;
  --slate-3:    #6b7780;
  --line:       #e6ebee;
  --line-2:     #eef2f4;
  --bg-light:   #f4f8f9;
  --bg-page:    #eef2f4;
  --amber:      #e8a33e;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg-page); font-family: Manrope, sans-serif; color: var(--ink); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
p { margin: 0; }
h1, h2, h3 { margin: 0; }

/* ── Container ── */
.site-wrap {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
}

/* ── Utility Bar ── */
.util-bar {
  background: var(--teal-dark);
  color: #cfe4ea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 56px;
  font-size: 13px;
  font-weight: 500;
}
.util-bar__left,
.util-bar__right {
  display: flex;
  gap: 26px;
  align-items: center;
}
.util-bar__dot { color: #7fd0e0; }

/* ── Site Header ── */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 56px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 20;
}
.site-header__logo img { height: 97px; width: auto; }
.site-header__nav {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.site-header__nav a {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  transition: background .15s;
}
.site-header__nav a:hover  { background: #126575; color: #fff; }
.site-header__nav a.active { background: #126575; color: #fff; }
.site-header__wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--coral);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(232,78,99,.28);
  transition: background .15s;
}
.site-header__wa:hover { background: #d43d52; color: #fff; }

/* ── Hero (Home) ── */
.hero {
  position: relative;
  height: 540px;
  background: repeating-linear-gradient(135deg, #21586a 0 18px, #235e71 18px 36px);
  display: flex;
  align-items: center;
}
.hero--image {
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,52,62,.92) 0%, rgba(15,52,62,.55) 55%, rgba(15,52,62,.25) 100%);
}
.hero__content {
  position: relative;
  padding: 0 56px;
  max-width: 760px;
}
.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #eafaff;
  padding: 7px 15px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.hero__title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: #d4e3e8;
  max-width: 560px;
}
/* CSS do Swiper põe display:block em .swiper-slide, quebrando a centralização do .hero */
.hero-swiper .swiper-slide.hero {
  height: 540px;
  display: flex;
  align-items: center;
}
.hero__cta {
  display: inline-block;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
/* search-wrap sobrepõe os 44px inferiores do hero com z-index:5 */
.hero-swiper .swiper-pagination { bottom: 62px; z-index: 4; }
.hero-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: .55;
  width: 10px;
  height: 10px;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--coral);
  opacity: 1;
  width: 26px;
  border-radius: 6px;
}

/* ── Search Bar (Home) ── */
.search-wrap {
  padding: 0 56px;
  margin-top: -44px;
  position: relative;
  z-index: 5;
}
.search-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15,52,62,.14);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr auto;
  gap: 14px;
  align-items: end;
}
.btn-search {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: Manrope, sans-serif;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(21,120,140,.3);
  transition: background .15s;
  white-space: nowrap;
}
.btn-search i { font-size: 1.2em; }
.btn-search:hover { background: #126575; }

/* ── Filter controls ── */
.filter-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #8a97a0;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.filter-select,
.filter-input {
  background: #fff;
  border: 1px solid #dde4e8;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa6ad' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  cursor: pointer;
}
.filter-input { background-image: none; cursor: text; }
.filter-select:focus,
.filter-input:focus { outline: 2px solid var(--teal); outline-offset: 1px; }

/* ── Stats Band ── */
.stats-band {
  margin: 56px 56px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.stats-band--full {
  margin: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
}
.stats-band__item { background: #fff; padding: 26px 28px; }
.stats-band--full .stats-band__item { padding: 30px 40px; }
.stats-band__num {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--teal);
}
.stats-band--full .stats-band__num { font-size: 36px; }
.stats-band__label { font-size: 14px; color: var(--slate-2); margin-top: 4px; font-weight: 600; }

/* ── Section header ── */
.section { padding: 64px 56px 8px; }
.section--bottom { padding-bottom: 64px; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
.section-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -.02em;
}
.link-more {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.link-more:hover { color: var(--teal-dark); }

/* ── Grids ── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ── Property Card (home, 4-col) ── */
.card-imovel {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.card-imovel__img-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
  flex-shrink: 0;
}
.card-imovel--lg .card-imovel__img-wrap { height: 210px; }
.card-imovel__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-imovel__placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(135deg, #dfe6ea 0 12px, #e8edf0 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: #8b98a0;
}
.card-imovel__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 30px;
}
.card-imovel--lg .card-imovel__tag { top: 14px; left: 14px; padding: 6px 13px; }
.card-imovel__tag--venda   { background: var(--teal); }
.card-imovel__tag--locacao { background: var(--coral); }
.card-imovel__type-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15,52,62,.86);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 30px;
}
.card-imovel__body { padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.card-imovel--lg .card-imovel__body { padding: 18px 18px 20px; }
.card-imovel__price {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--teal);
  margin-bottom: 8px;
}
.card-imovel--lg .card-imovel__price { font-size: 22px; }
.card-imovel__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 8px;
  min-height: 40px;
}
.card-imovel--lg .card-imovel__title { font-size: 16px; min-height: 44px; }
.card-imovel__loc {
  font-size: 13px;
  color: var(--slate-3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.card-imovel--lg .card-imovel__loc { margin-bottom: 16px; }
.card-imovel__specs {
  display: flex;
  gap: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--slate);
  font-weight: 600;
}
.card-imovel--lg .card-imovel__specs {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 16px;
}
.btn-interest {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--coral);
  color: #fff;
  padding: 13px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  transition: background .15s;
}
.btn-interest:hover { background: #d43d52; color: #fff; }

/* ── About Strip (Home) ── */
.about-strip {
  margin: 64px 56px 0;
  background: var(--bg-light);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 340px 1fr;
  overflow: hidden;
}
.about-strip__img {
  background: repeating-linear-gradient(135deg, #dfe6ea 0 12px, #e8edf0 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: .12em;
  color: #8b98a0;
}
.about-strip__img img { width: 100%; height: 100%; object-fit: cover; }
.about-strip__body { padding: 42px 44px; }
.about-strip__title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.about-strip__text { font-size: 16px; line-height: 1.65; color: var(--slate); margin-bottom: 22px; max-width: 560px; }
.about-strip__btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ── Testimonials ── */
.card-depo {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 26px;
  background: #fff;
}
.card-depo__stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.card-depo__quote { font-size: 16px; line-height: 1.6; color: #2b343a; margin-bottom: 22px; font-weight: 500; }
.card-depo__author { display: flex; align-items: center; gap: 12px; }
.card-depo__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
.card-depo__name { font-size: 15px; font-weight: 700; color: var(--ink); }
.card-depo__role { font-size: 13px; color: var(--slate-3); }

/* ── CTA Bar ── */
.cta-bar {
  margin: 64px 56px 0;
  background: var(--teal-dark);
  border-radius: 16px;
  padding: 48px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(232,78,99,.16);
}
.cta-bar--sm { padding: 44px 52px; }
.cta-bar__text { position: relative; }
.cta-bar__title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.cta-bar--sm .cta-bar__title { font-size: 30px; }
.cta-bar__sub { font-size: 17px; color: #bcd6dd; }
.cta-bar--sm .cta-bar__sub { font-size: 16px; }

/* ── Buttons ── */
.btn-coral {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: #fff;
  padding: 17px 32px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(232,78,99,.36);
  transition: background .15s;
}
.btn-coral:hover { background: #d43d52; color: #fff; }
.btn-coral--sm { padding: 16px 30px; font-size: 16px; }
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background .15s;
}
.btn-teal:hover { background: #126575; color: #fff; }
.btn-teal-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background .15s, color .15s;
}
.btn-teal-outline:hover { background: var(--teal); color: #fff; }
.btn-coral-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: #fff;
  padding: 15px 30px;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(232,78,99,.3);
  transition: background .15s;
}
.btn-coral-lg:hover { background: #d43d52; color: #fff; }

/* ── Site Footer ── */
.site-footer {
  background: var(--ink);
  color: #aeb8bf;
  padding: 50px 56px 30px;
  margin-top: 60px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid #333b41;
}
.site-footer__wordmark {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  margin-bottom: 6px;
}
.site-footer__wordmark span { color: var(--coral); }
.site-footer__tagline {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7f8b92;
  margin-bottom: 16px;
}
.site-footer__desc { font-size: 15px; line-height: 1.6; max-width: 320px; }
.site-footer__col-title { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.site-footer__nav { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.site-footer__nav a:hover { color: #fff; }
.site-footer__contact { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.site-footer__bottom { padding-top: 22px; font-size: 13px; color: #7f8b92; display: flex; justify-content: space-between; }

/* ── Page Header (Imóveis / Sobre) ── */
.page-header {
  padding: 48px 56px 30px;
  border-bottom: 1px solid var(--line-2);
}
.breadcrumb {
  font-size: 13px;
  color: #8a97a0;
  font-weight: 600;
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--teal); }
.page-title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.page-sub { font-size: 17px; color: var(--slate-2); }

/* ── Filter Bar (Imóveis) ── */
.filter-bar {
  padding: 24px 56px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.filter-bar .filter-select { font-size: 14px; padding: 12px 13px; }
.btn-filter {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: Manrope, sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.btn-filter:hover { background: #126575; }

/* ── Result Toolbar ── */
.result-toolbar {
  padding: 22px 56px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.result-count { font-size: 15px; color: var(--slate-2); }
.result-count strong { color: var(--ink); }
.sort-wrap { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--slate-2); }
.sort-select {
  background: var(--bg-light);
  border: 1px solid #dde4e8;
  border-radius: 8px;
  padding: 9px 30px 9px 13px;
  font-size: 14px;
  font-weight: 600;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa6ad' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}
.sort-select:focus { outline: 2px solid var(--teal); outline-offset: 1px; }

/* ── Listings Grid ── */
.listings-grid {
  padding: 22px 56px 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Pagination ── */
.pagination { padding: 40px 56px 8px; display: flex; justify-content: center; gap: 8px; }
.page-btn {
  width: 42px; height: 42px;
  border-radius: 9px;
  border: 1px solid #dde4e8;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.page-btn:hover { background: var(--bg-light); color: var(--ink); }
.page-btn.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.page-btn.disabled { color: #9aa6ad; pointer-events: none; }

/* ── Sobre Hero ── */
.sobre-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.sobre-hero__content {
  padding: 70px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sobre-hero__creci {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sobre-hero__title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.sobre-hero__text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 26px;
  max-width: 520px;
}
.sobre-hero__img {
  background: repeating-linear-gradient(135deg, #dfe6ea 0 14px, #e8edf0 14px 28px);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  color: #8b98a0;
}
.sobre-hero__img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Story (Sobre) ── */
.story { padding: 70px 56px 30px; max-width: 820px; }
.story__title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.story__p { font-size: 17px; line-height: 1.75; color: var(--slate-2); margin-bottom: 20px; }
.story__p:last-child { margin-bottom: 0; }

/* ── Values (Sobre) ── */
.card-value {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px;
}
.card-value__icon {
  width: 48px; height: 48px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
  margin-bottom: 18px;
}
.card-value__icon--teal { background: #e9f3f5; color: var(--teal); }
.card-value__icon--coral { background: #fdeaed; color: var(--coral); }
.card-value__title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
}
.card-value__text { font-size: 15px; line-height: 1.6; color: var(--slate-2); }

/* ── Detalhe do Imóvel ── */
.detalhe-wrap { padding: 40px 56px 0; }
.detalhe-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: start;
}

/* Slider */
.slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: repeating-linear-gradient(135deg, #dfe6ea 0 12px, #e8edf0 12px 24px);
  user-select: none;
}
.slider__track {
  display: flex;
  height: 100%;
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.slider__slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,52,62,.62);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background .15s;
  padding: 0;
  line-height: 1;
}
.slider__btn:hover { background: rgba(15,52,62,.9); }
.slider__btn--prev { left: 14px; }
.slider__btn--next { right: 14px; }
.slider__counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,.52);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  z-index: 3;
  pointer-events: none;
}

/* Thumbnails */
.gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery__thumbs::-webkit-scrollbar { height: 4px; }
.gallery__thumbs::-webkit-scrollbar-track { background: var(--line-2); border-radius: 4px; }
.gallery__thumbs::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }
.gallery__thumb {
  width: 90px;
  height: 66px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .58;
  transition: opacity .15s, border-color .15s;
}
.gallery__thumb.is-active,
.gallery__thumb:hover { opacity: 1; border-color: var(--teal); }

/* Aside */
.detalhe-aside { position: sticky; top: 90px; }
.detalhe-aside__card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: #fff;
}
.detalhe-aside__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.detalhe-badge {
  padding: 5px 13px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.detalhe-badge--venda   { background: var(--teal); }
.detalhe-badge--locacao { background: var(--coral); }
.detalhe-badge--cat     { background: var(--ink); }
.detalhe-aside__price {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 4px;
}
.detalhe-aside__ref { font-size: 13px; color: var(--slate-3); font-weight: 600; margin-bottom: 20px; }
.detalhe-aside__specs-strip {
  display: flex;
  padding: 16px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 18px;
}
.detalhe-aside__spec {
  flex: 1;
  text-align: center;
  padding: 0 6px;
  border-right: 1px solid var(--line-2);
}
.detalhe-aside__spec:last-child { border-right: none; }
.detalhe-aside__spec-val {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  display: block;
}
.detalhe-aside__spec-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-3);
  letter-spacing: .04em;
}
.detalhe-aside__loc {
  font-size: 14px;
  color: var(--slate-2);
  line-height: 1.6;
  margin-bottom: 22px;
}
.btn-wa-detalhe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366;
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37,211,102,.28);
  transition: background .15s;
  margin-bottom: 10px;
}
.btn-wa-detalhe:hover { background: #1db954; color: #fff; }
.btn-tel-detalhe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 1px solid #dde4e8;
  color: var(--slate-2);
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: border-color .15s, color .15s;
}
.btn-tel-detalhe:hover { border-color: var(--teal); color: var(--teal); }

/* Info boxes */
.detalhe-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.info-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 26px;
  background: #fff;
}
.info-box__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-box__title::after { content: ''; flex: 1; height: 1px; background: var(--line-2); }
.info-box__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.info-box__spec-val {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  display: block;
}
.info-box__spec-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 3px;
  display: block;
}
.info-box__rows { display: flex; flex-direction: column; }
.info-box__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-2);
}
.info-box__row:last-child { border-bottom: none; padding-bottom: 0; }
.info-box__row:first-child { padding-top: 0; }
.info-box__row-label { color: var(--slate-3); font-weight: 600; white-space: nowrap; }
.info-box__row-val { color: var(--ink); font-weight: 700; text-align: right; }

/* Descrição */
.detalhe-desc {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 36px;
  background: #fff;
}
.detalhe-desc__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}
.detalhe-desc__title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 22px;
}
.detalhe-desc__body { max-width: 760px; }
.detalhe-desc__p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--slate-2);
  margin-bottom: 16px;
}
.detalhe-desc__p:last-child { margin-bottom: 0; }

/* Card — link para detalhe */
.card-imovel__img-link { display: block; }
.card-imovel__title-link { color: inherit; display: block; }
.card-imovel__title-link:hover { color: var(--teal); }
.btn-detail {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  padding-top: 10px;
  display: block;
}
.btn-detail:hover { color: var(--teal-dark); }

/* ── Coverage (Sobre) ── */
.coverage {
  margin: 64px 56px 0;
  background: var(--bg-light);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 42px 44px;
}
.coverage__title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.coverage__sub { font-size: 16px; color: var(--slate-2); margin-bottom: 22px; }
.coverage__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: #fff;
  border: 1px solid #dde4e8;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #2b343a;
}

/* ── Hamburger (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .util-bar            { padding: 9px 24px; }
  .site-header         { padding: 14px 24px; }
  .hero__content       { padding: 0 24px; max-width: 100%; }
  .search-wrap         { padding: 0 24px; }
  .search-bar          { grid-template-columns: 1fr 1fr; }
  .stats-band          { margin: 40px 24px 0; }
  .section             { padding: 48px 24px 8px; }
  .about-strip         { margin: 48px 24px 0; }
  .cta-bar             { margin: 48px 24px 0; padding: 36px 32px; }
  .filter-bar          { padding: 18px 24px; grid-template-columns: 1fr 1fr; }
  .listings-grid       { padding: 16px 24px 8px; grid-template-columns: repeat(2, 1fr); }
  .grid-4              { grid-template-columns: repeat(2, 1fr); }
  .page-header         { padding: 36px 24px 20px; }
  .result-toolbar      { padding: 18px 24px 8px; }
  .pagination          { padding: 32px 24px 8px; }
  .detalhe-wrap        { padding: 32px 24px 0; }
  .site-footer         { padding: 40px 24px 24px; }
  .coverage            { margin: 48px 24px 0; }
  .story               { padding: 56px 24px 24px; }
  .sobre-hero__content { padding: 48px 24px; }
  .detalhe-layout      { grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Util bar */
  .util-bar { display: none; }

  /* Header */
  .site-header       { padding: 14px 16px; z-index: 500; }
  .site-header__wa   { display: none; }
  .nav-toggle        { display: flex; position: relative; z-index: 510; }

  /* Nav — mobile overlay */
  .site-header__nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 32px;
    gap: 10px;
    font-size: 17px;
    z-index: 150;
    box-shadow: none;
    overflow-y: auto;
  }
  .site-header__nav.is-open { display: flex; }
  .site-header__nav a { justify-content: center; padding: 14px 18px; }
  .site-header__nav a.active { background: #126575; }

  /* Hero */
  .hero              { height: auto; min-height: 320px; padding-bottom: 36px; }
  /* com effect fade, height:auto colapsa os slides */
  .hero-swiper .swiper-slide.hero { height: 420px; min-height: 0; }
  .hero__content     { padding: 32px 16px 0; }
  .hero__title       { font-size: 32px; letter-spacing: -.01em; }
  .hero__sub         { font-size: 16px; }
  .hero__badge       { font-size: 12px; margin-bottom: 16px; }

  /* Search */
  .search-wrap       { padding: 0 16px; margin-top: -36px; }
  .search-bar        { grid-template-columns: 1fr; padding: 16px; gap: 12px; }
  .btn-search        { width: 100%; justify-content: center; }

  /* Stats */
  .stats-band        { margin: 28px 16px 0; grid-template-columns: 1fr; }
  .stats-band--full  { margin: 0; }

  /* Sections & grids */
  .section           { padding: 36px 16px 8px; }
  .grid-4            { grid-template-columns: 1fr; }
  .grid-3            { grid-template-columns: 1fr; }

  /* About strip */
  .about-strip       { margin: 36px 16px 0; grid-template-columns: 1fr; }
  .about-strip__img  { min-height: 220px; }
  .about-strip__body { padding: 28px 20px 32px; }
  .about-strip__btns { flex-direction: column; align-items: stretch; }
  .about-strip__btns a { text-align: center; justify-content: center; }

  /* CTA bar */
  .cta-bar           { flex-direction: column; gap: 22px; text-align: center; padding: 32px 20px; margin: 36px 16px 0; }
  .cta-bar::before   { display: none; }
  .btn-coral         { width: 100%; justify-content: center; }
  .btn-coral--sm     { width: 100%; justify-content: center; }

  /* Filter bar */
  .filter-bar        { grid-template-columns: 1fr 1fr; padding: 16px; gap: 10px; }
  .filter-bar > :last-child { grid-column: 1 / -1; }
  .btn-filter        { width: 100%; justify-content: center; }

  /* Result toolbar */
  .result-toolbar    { flex-direction: column; gap: 10px; align-items: flex-start; padding: 16px; }

  /* Listings */
  .listings-grid     { grid-template-columns: 1fr; padding: 12px 16px; }

  /* Pagination */
  .pagination        { padding: 28px 16px 8px; }

  /* Page header */
  .page-header       { padding: 24px 16px 14px; }
  .page-title        { font-size: 28px; }
  .page-sub          { font-size: 15px; }

  /* Sobre hero */
  .sobre-hero            { grid-template-columns: 1fr; }
  .sobre-hero__img       { min-height: 260px; order: 1; }
  .sobre-hero__content   { padding: 32px 16px 24px; order: 2; }
  .sobre-hero__title     { font-size: 32px; }
  .sobre-hero__text      { font-size: 16px; }

  /* Story */
  .story             { padding: 36px 16px 16px; }
  .story__title      { font-size: 26px; }

  /* Coverage */
  .coverage          { margin: 36px 16px 0; padding: 28px 20px; }

  /* Detalhe */
  .detalhe-wrap      { padding: 20px 16px 0; }
  .detalhe-layout    { grid-template-columns: 1fr; gap: 24px; }
  .detalhe-aside     { position: static; }
  .detalhe-boxes     { grid-template-columns: 1fr !important; gap: 14px; }
  .detalhe-desc      { padding: 24px 20px; }

  /* Footer */
  .site-footer             { padding: 32px 16px 20px; margin-top: 40px; }
  .site-footer__grid       { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__bottom     { flex-direction: column; gap: 4px; text-align: center; }

  /* Section header */
  .section-header          { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-title           { font-size: 28px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE PEQUENO (≤ 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__title           { font-size: 26px; }
  .search-bar            { padding: 14px; }
  .stats-band__num       { font-size: 26px; }
  .section-title         { font-size: 24px; }
  .about-strip__title    { font-size: 22px; }
  .cta-bar__title        { font-size: 22px; }
  .sobre-hero__title     { font-size: 26px; }
  .sobre-hero__text      { font-size: 15px; }
  .page-title            { font-size: 24px; }
  .detalhe-aside__price  { font-size: 28px; }
  .filter-bar            { grid-template-columns: 1fr; }
}

/* ── Vídeos (página de detalhe) ── */
.detalhe-videos { margin-top: 40px; }
.detalhe-videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.detalhe-videos__item {
  position: relative;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.detalhe-videos__item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Vídeos (admin) ── */
.video-admin-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.video-admin-card { width: 180px; }
.video-admin-thumb {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.video-admin-thumb img { width: 100%; display: block; }
.video-admin-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
  color: #fff;
  font-size: 2.2rem;
  pointer-events: none;
}
.video-admin-titulo {
  font-size: .8rem;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #444;
}
.video-admin-actions { margin-top: 6px; }
