/* =============================================
   ORTIZ NEGÓCIOS IMOBILIÁRIOS
   Design System — style.css
   ============================================= */

:root {
  /* Cores */
  --black:        #0D0E12;
  --navy:         #0D2340;
  --navy-mid:     #153555;
  --gold:         #C9A84C;
  --gold-light:   #E2C97A;
  --gold-dark:    #9E7D2E;
  --gold-muted:   rgba(201,168,76,0.15);
  --cream:        #F8F4EE;
  --cream-dark:   #EDE8DF;
  --white:        #FFFFFF;
  --text-dark:    #1A1714;
  --text-mid:     #4A453E;
  --text-light:   #8A8278;
  --border:       #DDD9D0;
  --border-dark:  #C8C3BA;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Sombras */
  --shadow-xs:    0 1px 3px rgba(13,14,18,0.07);
  --shadow-sm:    0 2px 8px rgba(13,14,18,0.10);
  --shadow-md:    0 4px 20px rgba(13,14,18,0.13);
  --shadow-lg:    0 8px 36px rgba(13,14,18,0.18);
  --shadow-hover: 0 16px 48px rgba(13,14,18,0.22);

  /* Misc */
  --radius:       4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body  {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }


/* ─── HEADER ─────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: box-shadow var(--transition);
  width: 100%;
}

.header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 120px;
  width: auto;
  transition: opacity var(--transition);
}

.logo:hover img { opacity: 0.88; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--gold); }

.nav-link:hover::after,
.nav-link.active::after { right: 0; }

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff !important;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-whatsapp::after { display: none !important; }
.nav-whatsapp:hover  { background: #1ebe58 !important; transform: translateY(-1px); }

.nav-whatsapp svg { flex-shrink: 0; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─── HERO ───────────────────────────────────── */

.hero {
  position: relative;
  background: var(--black) url('capa_hero.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 18, 0.50);
  pointer-events: none;
}

/* Subtle grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.52);
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Search Box */
.hero-search-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  backdrop-filter: blur(12px);
  max-width: 860px;
  margin: 0 auto;
}

/* Filter row inside hero */
.hero-filter-row {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-top: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn-row {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}
.hero-filter-select {
  flex: 1;
  min-width: 120px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.65rem 1.75rem 0.65rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat right 0.6rem center;
  cursor: pointer;
  transition: border-color var(--transition);
  outline: none;
}
.hero-filter-select:focus { border-color: var(--gold); }
.hero-filter-select option { background: var(--navy); color: white; }

.hero-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-md);
  padding: 0.25rem;
}

.hero-tab {
  flex: 1;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.hero-tab.active {
  background: var(--gold);
  color: var(--black);
}

.hero-search-fields {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-input-wrap {
  flex: 1;
  position: relative;
}

.hero-input-wrap svg {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  pointer-events: none;
}

.hero-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.7rem 0.875rem 0.7rem 2.5rem;
  color: var(--white);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}

.hero-input::placeholder { color: rgba(255,255,255,0.35); }
.hero-input:focus { border-color: var(--gold); }

.hero-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hero wave bottom */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 56px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}


/* ─── STATS BAR ──────────────────────────────── */

.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.stat-number em { font-style: normal; color: var(--gold); }

.stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-top: 0.25rem;
  font-weight: 500;
}

.stats-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}


/* ─── FILTER BAR ─────────────────────────────── */

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 76px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 1rem 2rem;
  width: 100%;
  overflow-x: hidden;
}

.filter-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  flex-shrink: 0;
  white-space: nowrap;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-dark);
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A8278' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  cursor: pointer;
  transition: border-color var(--transition);
  flex: 1;
  min-width: 130px;
}

.filter-select:hover,
.filter-select:focus { border-color: var(--navy); outline: none; }

.filter-count {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-count strong { color: var(--navy); font-weight: 600; }


/* ─── LISTINGS ───────────────────────────────── */

.listings {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

/* Featured section on index.html */
.featured-section {
  background: var(--cream);
  max-width: 100%;
  padding: 0;
}
.featured-section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
}
.featured-cta-row {
  text-align: center;
  margin-top: 2.5rem;
}

/* Listings page (imoveis.html) hero */
.listings-page-hero {
  background: var(--navy);
  padding: 4rem 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.listings-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.listings-page-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.listings-page-hero .section-eyebrow { display: inline-flex; margin-bottom: 0.6rem; }
.listings-page-hero h1 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 0;
}
.listings-page-hero h1 em { font-style: italic; color: var(--gold); }

.listings-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.listings-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
}

.listings-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Card */
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-img {
  position: relative;
  height: 216px;
  overflow: hidden;
  background: var(--cream-dark);
}

.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.property-card:hover .card-img img { transform: scale(1.06); }

.card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  backdrop-filter: blur(8px);
}

.badge-tipo   { background: rgba(13,35,64,0.85); color: #fff; }
.badge-venda  { background: rgba(201,168,76,0.92); color: var(--black); }
.badge-aluguel{ background: rgba(255,255,255,0.92); color: var(--navy); }
.badge-lancamento { background: rgba(13,35,64,0.92); color: var(--gold); border: 1px solid rgba(201,168,76,0.4); }

.badge-destaque {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.card-body {
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.05;
}

.card-price-label {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 0.3rem;
}

.card-address {
  font-size: 0.76rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  line-height: 1.4;
  margin-bottom: 0.875rem;
}

.card-address svg { flex-shrink: 0; margin-top: 1px; }

.card-features {
  display: flex;
  gap: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  color: var(--text-mid);
}

.feature svg { color: var(--gold); flex-shrink: 0; }

.card-btn {
  display: block;
  text-align: center;
  margin-top: 0.875rem;
  padding: 0.6rem;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
}

.card-btn:hover { background: var(--navy); color: var(--white); }

/* Empty state */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.empty-state p { color: var(--text-light); }


/* ─── DEPOIMENTOS ────────────────────────────── */

/* ── NOSSO TIME — CAROUSEL ───────────────────── */
.team-section {
  background: #fff;
  padding: 5rem 0;
  overflow: hidden;
  max-width: 100%;
}
.team-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}
.team-header-text .section-eyebrow {
  display: inline-flex;
  margin-bottom: 0.6rem;
}
.team-header-text h2 { margin: 0; }
.team-nav-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-bottom: 0.25rem;
}
.team-nav-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.team-nav-btn:hover { background: var(--navy); color: #fff; }
.team-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.team-track-wrap { overflow: hidden; }
.team-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.team-card {
  flex: 0 0 calc(25% - 1rem);
  min-width: 210px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #ece9e4;
}
.team-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,35,64,0.96) 0%, rgba(13,35,64,0.65) 55%, transparent 100%);
  padding: 3.5rem 1.25rem 1.4rem;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.team-creci {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}
.team-sub { display: none; }
.placeholder-card { display: none; }
.team-avatar { display: none; }

/* ── BLOG ─────────────────────────────────────── */
.blog-hero {
  background: var(--navy);
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.blog-hero .section-eyebrow { display: inline-flex; margin-bottom: 1rem; }
.blog-hero h1 { color: white; font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1rem; }
.blog-hero p { color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto; font-size: 1rem; }
.blog-hero-line {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1.75rem auto 0;
}

.blog-section {
  background: var(--cream);
  padding: 5rem 2rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(13,35,64,0.12);
}
.blog-card.blog-featured {
  grid-column: span 2;
  flex-direction: row;
}
.blog-card.blog-featured .blog-card-img {
  width: 52%;
  height: auto;
  flex-shrink: 0;
  min-height: 260px;
}
.blog-card.blog-featured .blog-card-body { padding: 2.25rem; justify-content: center; }
.blog-card.blog-featured .blog-card-title { font-size: 1.6rem; }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-category {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.blog-card-excerpt { font-size: 0.88rem; color: #666; line-height: 1.65; flex: 1; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.75rem;
  color: #aaa;
}

.testimonials {
  background: var(--navy);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.testimonials-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.testimonials h2 em { font-style: italic; color: var(--gold); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: background var(--transition);
}

.testimonial-card:hover { background: rgba(255,255,255,0.08); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ─── CTA ANUNCIE ────────────────────────────── */

.cta-section {
  background: var(--cream-dark);
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.cta-text h2 em { font-style: italic; color: var(--gold); }

.cta-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--navy);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }


/* ─── FOOTER ─────────────────────────────────── */

.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  margin-bottom: 2rem;
}

.footer-brand .footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col ul a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-contact-item a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.25); }

.footer-social { display: flex; gap: 0.5rem; align-items: center; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-creci {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}


/* ─── WHATSAPP FLOAT ─────────────────────────── */

.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 500;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg { color: #fff; }

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(37,211,102,0.25);
  animation: pulse-wa 2.5s infinite;
}

@keyframes pulse-wa {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}


/* ─── DETAIL PAGE ────────────────────────────── */

.page-hero {
  background: var(--black);
  padding: 2.5rem 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.page-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { color: rgba(255,255,255,0.25); flex-shrink: 0; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.page-hero-meta span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.page-hero-meta svg { color: var(--gold); }

/* Detail layout */
.detail-layout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  overflow: hidden;
}

.detail-main {
  min-width: 0;
  overflow: hidden;
}

/* Gallery */
.gallery {
  margin-bottom: 2.5rem;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-dark);
  height: 480px;
  margin-bottom: 0.75rem;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #1a1a1a;
  transition: transform 0.5s ease;
}

.gallery-main:hover img { transform: scale(1.02); }

.gallery-thumbs {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 68px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: 0.65;
}

.gallery-thumb:hover { opacity: 1; }
.gallery-thumb.active { border-color: var(--gold); opacity: 1; }

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Detail sections */
.detail-section {
  margin-bottom: 2.5rem;
}

.detail-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.detail-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.detail-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.625rem 0.875rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.detail-feature svg { color: var(--gold); flex-shrink: 0; }

.detail-description {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.875rem;
  font-size: 0.76rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* Map */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream-dark);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

/* Sidebar */
.detail-sidebar {
  position: sticky;
  top: calc(76px + 1rem);
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
}

.price-card-header {
  background: var(--black);
  padding: 1.25rem 1.5rem;
}

.price-card-header .price-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.price-card-header .price-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.price-card-body {
  padding: 1.25rem 1.5rem;
}

.price-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.price-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-stat-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.price-stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.contact-form .form-group { margin-bottom: 0.875rem; }

.contact-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.625rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--navy); }

.contact-form textarea { resize: vertical; min-height: 90px; }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--transition);
  margin-bottom: 0.625rem;
}

.btn-whatsapp:hover { background: #1ebe58; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--transition);
}

.btn-submit:hover { background: var(--navy-mid); }


/* ─── SOBRE PAGE ─────────────────────────────── */

.sobre-hero {
  background: var(--black);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sobre-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.sobre-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.sobre-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.sobre-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.sobre-hero h1 em { font-style: italic; color: var(--gold); }

.sobre-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
}

.sobre-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.sobre-grid h2 em { font-style: italic; color: var(--gold); }

.sobre-grid p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.sobre-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.sobre-stat {
  text-align: center;
}

.sobre-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.sobre-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.diferenciais {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.diferenciais-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.diferenciais h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.75rem;
}

.diferenciais h2 em { font-style: italic; color: var(--gold); }

.diferenciais-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.diferencial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.diferencial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.diferencial-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold-dark);
}

.diferencial-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.diferencial-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

.sobre-cta {
  background: var(--black);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sobre-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
}

.sobre-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sobre-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.sobre-cta h2 em { font-style: italic; color: var(--gold); }

.sobre-cta p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.sobre-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ─── ANIMATIONS ─────────────────────────────── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-inner > * {
  animation: fadeInUp 0.65s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.10s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.20s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.30s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.42s; }


/* ─── RESPONSIVE ─────────────────────────────── */

@media (max-width: 1100px) {
  .properties-grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-top         { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .detail-layout      { grid-template-columns: 1fr; }
  .detail-sidebar     { position: static; }
  .sobre-grid         { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 1024px) {
  .team-card { flex: 0 0 calc(50% - 0.75rem); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.blog-featured { grid-column: span 2; flex-direction: column; }
  .blog-card.blog-featured .blog-card-img { width: 100%; height: 240px; }
  .blog-card.blog-featured .blog-card-title { font-size: 1.35rem; }
}

@media (max-width: 768px) {
  .team-card { flex: 0 0 calc(50% - 0.75rem); }
  .team-header { flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.blog-featured { grid-column: span 1; }
  .blog-card.blog-featured .blog-card-img { width: 100%; height: 220px; }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: #0a0b0e;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(201,168,76,0.1);
  }
  .nav.open { display: flex; }

  .menu-toggle { display: flex; }

  .header-inner { position: relative; }

  .properties-grid    { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .diferenciais-grid  { grid-template-columns: 1fr 1fr; }
  .stats-inner        { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stats-divider      { display: none; }

  .hero { padding: 4rem 1.5rem 4rem; }
  .hero-search-fields { flex-direction: column; }
  .hero-btn { width: 100%; justify-content: center; }

  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .gallery-main { height: 280px; }
  .sobre-visual { grid-template-columns: 1fr 1fr; }
  .sobre-cta-btns { flex-direction: column; align-items: center; }

  .filter-bar { padding: 0.75rem 1rem; }
  .filter-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .filter-label {
    grid-column: 1 / -1;
    width: 100%;
  }
  .filter-select {
    width: 100%;
    min-width: 0;
    font-size: 0.78rem;
    flex: unset;
  }
  #search-input {
    grid-column: 1 / -1;
    width: 100%;
  }
  .filter-count {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
  }

  .listings-header { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .diferenciais-grid { grid-template-columns: 1fr; }
  .sobre-visual { grid-template-columns: 1fr 1fr; }
  .detail-features-grid { grid-template-columns: 1fr; }
  .team-card { flex: 0 0 calc(100% - 0px); }
}
