/* ============================================
   WALL STREET EMPRESARIAL — site styles
   Tokens herdados do Design System v1.1
   ============================================ */
:root {
  /* — Marca — */
  --ws-brand-blue: #1B2D5A;
  --ws-brand-blue-deep: #0F1B3D;

  /* — Escala azul — */
  --ws-blue-950: #0A1530;
  --ws-blue-900: #0F1B3D;
  --ws-blue-800: #15234A;
  --ws-blue-700: #1B2D5A;
  --ws-blue-600: #233B72;
  --ws-blue-500: #324F94;
  --ws-blue-400: #5A75B6;
  --ws-blue-300: #8AA0CC;
  --ws-blue-200: #B8C7DF;
  --ws-blue-100: #DCE4F0;
  --ws-blue-50:  #F1F4F9;

  /* — Laranja (uso restrito a ALERTAS apenas) — */
  --ws-alert-100: #FFE4D2;
  --ws-alert-500: #FF6B1A;
  --ws-alert-600: #E55A14;
  --ws-alert-700: #C84E0F;

  /* — Sand / Gold (acento principal v1.2) — */
  --ws-sand-100: #FAF3E2;
  --ws-sand-200: #F4E5C8;
  --ws-sand-300: #E6CFA1;
  --ws-sand-400: #D4B27A;       /* ★ acento principal */
  --ws-sand-500: #BF9A5F;
  --ws-sand-600: #A78147;
  --ws-sand-700: #856331;

  /* aliases legados — apontam para a paleta gold */
  --ws-warm-stone: var(--ws-sand-500);
  --ws-champagne: var(--ws-sand-400);
  --ws-champagne-soft: var(--ws-sand-200);
  /* superfícies escuras — agora azul profundo, NÃO preto */
  --ws-onyx: #0F1B3D;
  --ws-onyx-2: #15234A;

  /* — Neutros — */
  --ws-white:    #FFFFFF;
  --ws-paper:    #FAFBFD;
  --ws-cloud:    #F2F4F9;
  --ws-mist:     #E5E9F1;
  --ws-stone:    #B8BFCC;
  --ws-graphite: #5A6275;
  --ws-charcoal: #2A3142;
  --ws-ink:      #14182A;

  --color-primary: var(--ws-brand-blue);
  --color-accent: var(--ws-sand-400);          /* ★ gold em vez de laranja */
  --color-accent-deep: var(--ws-sand-600);
  --color-alert: var(--ws-alert-500);
  --color-bg: var(--ws-paper);
  --color-surface: var(--ws-white);
  --color-text: var(--ws-ink);
  --color-text-muted: var(--ws-graphite);
  --color-border: var(--ws-mist);

  /* — Typography — */
  --font-display: 'Sora', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --tracking-tight: -0.03em;
  --tracking-snug: -0.015em;

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(15, 27, 61, 0.06);
  --shadow-sm: 0 2px 8px rgba(15, 27, 61, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 27, 61, 0.10);
  --shadow-lg: 0 16px 40px rgba(15, 27, 61, 0.14);
  --shadow-xl: 0 28px 64px rgba(15, 27, 61, 0.20);
  --shadow-glow-orange: 0 8px 28px rgba(212, 178, 122, 0.4); /* legado, agora gold */
  --shadow-glow-gold: 0 8px 28px rgba(212, 178, 122, 0.4);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1320px;
}

/* — Reset — */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--sp-6); }
@media (max-width: 720px) { .container { padding: 0 var(--sp-5); } }
@media (max-width: 480px) { .container { padding: 0 var(--sp-4); } }

/* ============================================
   NAV BAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--sp-4) 0;
  transition: background 320ms var(--ease), backdrop-filter 320ms;
}
.navbar.is-solid {
  background: rgba(10, 21, 48, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar.is-light.is-solid {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--color-border);
}
.nav-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-7);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ws-white);
  transition: color 220ms;
}
.navbar.is-light .nav-brand { color: var(--ws-brand-blue); }
.nav-brand svg, .nav-brand img { height: 45px; width: auto; }
.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.nav-brand-text small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.825rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: all 200ms var(--ease);
  letter-spacing: 0.005em;
}
.nav-link:hover { color: var(--ws-white); background: rgba(255,255,255,0.08); }
.nav-link.is-active { color: var(--ws-white); background: rgba(255,255,255,0.10); }
.navbar.is-light .nav-link { color: var(--ws-graphite); }
.navbar.is-light .nav-link:hover, .navbar.is-light .nav-link.is-active {
  color: var(--ws-brand-blue);
  background: var(--ws-blue-50);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--ws-sand-400);
  color: var(--ws-blue-900);
  font-weight: 600;
  font-size: 0.825rem;
  letter-spacing: 0.005em;
  box-shadow: var(--shadow-glow-gold);
  transition: all 220ms var(--ease-out);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(212,178,122,0.55); background: var(--ws-sand-500); color: var(--ws-blue-900); }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  color: var(--ws-white);
  background: rgba(255,255,255,0.08);
  align-items: center; justify-content: center;
}
.navbar.is-light .nav-burger { color: var(--ws-brand-blue); background: var(--ws-blue-50); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-grid { grid-template-columns: auto auto; justify-content: space-between; }
}
@media (max-width: 600px) {
  .nav-cta { display: none; }
  .navbar { padding: var(--sp-3) 0; }
  .nav-brand-text { font-size: 0.78rem; }
  .nav-brand-text small { font-size: 0.55rem; }
}

/* — Mobile drawer — */
.nav-drawer-backdrop {
  position: fixed; inset: 0;
  z-index: 105;
  background: rgba(10, 21, 48, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease);
}
.nav-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw);
  z-index: 110;
  background:
    radial-gradient(120% 100% at 100% 0%, var(--ws-blue-800) 0%, var(--ws-blue-900) 50%, var(--ws-blue-950) 100%);
  color: var(--ws-white);
  transform: translateX(100%);
  transition: transform 360ms var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: none;
  overscroll-behavior: contain;
}
.nav-drawer.is-open { transform: translateX(0); box-shadow: -28px 0 64px rgba(10, 21, 48, 0.4); }
.nav-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-drawer-head .brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ws-white);
}
.nav-drawer-head .brand .nav-brand-text { color: var(--ws-white); }
.nav-drawer-head .brand .nav-brand-text small { color: var(--color-accent); }
.nav-drawer-close {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--ws-white);
  transition: background 200ms var(--ease);
}
.nav-drawer-close:hover { background: rgba(255,255,255,0.12); }
.nav-drawer-list {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: var(--sp-4) var(--sp-3);
  display: flex; flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.nav-drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3);
  padding: 16px 18px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.82);
  transition: all 220ms var(--ease);
  min-height: 52px;
}
.nav-drawer-link:hover {
  color: var(--ws-white);
  background: rgba(255,255,255,0.05);
}
.nav-drawer-link.is-active {
  color: var(--ws-white);
  background: rgba(212, 178, 122, 0.10);
  border-left: 2px solid var(--color-accent);
  padding-left: 16px;
}
.nav-drawer-link .num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--ws-blue-300);
}
.nav-drawer-link.is-active .num { color: var(--color-accent); }
.nav-drawer-foot {
  padding: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.nav-drawer-foot .btn-accent { justify-content: center; width: 100%; }
.nav-drawer-foot-meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ws-blue-300);
  text-align: center;
}
.nav-drawer-foot-meta strong { color: var(--color-accent); display: block; margin-bottom: 4px; }

/* ============================================
   HERO — Cinemático
   ============================================ */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  background: var(--ws-blue-950);
  overflow: hidden;
  isolation: isolate;
  color: var(--ws-white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg svg { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-inner {
  position: absolute;
  inset: 0;
  animation: kenBurns 28s var(--ease) infinite alternate;
  transform-origin: 50% 60%;
}
@keyframes kenBurns {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1.5%, -2%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,21,48,0.45) 0%, rgba(10,21,48,0.10) 40%, rgba(10,21,48,0.88) 100%),
    radial-gradient(70% 55% at 10% 90%, rgba(10,21,48,0.55) 0%, transparent 70%);
  z-index: 1;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.6) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 120px 0 var(--sp-7);
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ws-blue-200);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 900ms var(--ease-out) 200ms forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-accent);
}
.hero-coords {
  display: flex; gap: var(--sp-5); align-items: center;
  opacity: 0; animation: fadeUp 900ms var(--ease-out) 350ms forwards;
}
.hero-coords span { display: inline-flex; gap: 8px; align-items: center; }
.hero-coords .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title-block {
  align-self: end;
  margin-top: var(--sp-9);
}
.hero-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-bottom: var(--sp-3);
  opacity: 0; animation: fadeUp 900ms var(--ease-out) 500ms forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 11rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  text-wrap: balance;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1100ms var(--ease-out) forwards;
}
.hero-title .line-1 span { animation-delay: 600ms; }
.hero-title .line-2 span {
  animation-delay: 800ms;
  font-style: italic;
  font-weight: 300;
  color: var(--ws-blue-200);
  font-family: var(--font-display);
}
@keyframes lineUp {
  to { transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  margin-top: var(--sp-6);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-7);
  align-items: end;
  padding-bottom: var(--sp-5);
}
.hero-sub-text {
  max-width: 38ch;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ws-blue-100);
  opacity: 0; animation: fadeUp 900ms var(--ease-out) 1000ms forwards;
}
.hero-actions {
  display: flex; gap: var(--sp-3); flex-wrap: wrap;
  justify-content: flex-end;
  opacity: 0; animation: fadeUp 900ms var(--ease-out) 1100ms forwards;
}
@media (max-width: 720px) {
  .hero-sub { grid-template-columns: 1fr; }
  .hero-actions { justify-content: flex-start; }
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.005em;
  transition: all 240ms var(--ease-out);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--ws-blue-900);
  box-shadow: var(--shadow-glow-gold);
}
.btn-accent:hover { background: var(--ws-sand-500); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,178,122,0.55); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); }
.btn-outline {
  background: transparent;
  color: var(--ws-brand-blue);
  border: 1.5px solid var(--ws-brand-blue);
  padding: 12.5px 22px;
}
.btn-outline:hover { background: var(--ws-brand-blue); color: white; }
.btn-light-accent {
  background: var(--color-accent);
  color: var(--ws-blue-900);
  box-shadow: var(--shadow-glow-gold);
}
.btn-light-accent:hover { background: var(--ws-sand-500); transform: translateY(-2px); }

.btn .arrow { transition: transform 240ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   STATS — Counter row no fim do hero
   ============================================ */
.stats-row {
  position: relative;
  z-index: 3;
  background: rgba(10, 21, 48, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stat {
  padding: var(--sp-6) var(--sp-4);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ws-white);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .unit {
  font-size: 0.8em;
  color: var(--color-accent);
  font-weight: 600;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ws-blue-300);
}
@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: none; }
  .stat:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 1px solid rgba(255,255,255,0.08) !important; }
  .stat:nth-child(2n) { border-right: none !important; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--sp-9) 0; position: relative; }
.section-dark {
  background: var(--ws-blue-950);
  color: var(--ws-white);
}
.section-deep {
  background:
    radial-gradient(80% 100% at 0% 0%, var(--ws-blue-700) 0%, var(--ws-blue-900) 50%, var(--ws-blue-950) 100%);
  color: var(--ws-white);
}

.section-head {
  display: block;
  margin-bottom: var(--sp-7);
}
.section-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--color-accent-deep);
  margin-bottom: var(--sp-4);
  white-space: nowrap;
  text-transform: uppercase;
}
.section-num::after {
  content: '';
  display: inline-block;
  width: 48px; height: 1px;
  background: var(--color-accent);
}
.section-dark .section-num,
.section-deep .section-num { color: var(--color-accent); }
.section-dark .section-num { color: var(--color-accent); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
  margin: 0;
  text-wrap: balance;
}
.section-title em {
  font-style: italic; font-weight: 300;
  color: var(--ws-blue-400);
}
.section-dark .section-title em { color: var(--ws-blue-300); }

.section-accent-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-top: var(--sp-3);
}

.section-desc {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: var(--sp-3) 0 0;
}
.section-dark .section-desc { color: var(--ws-blue-200); }



/* ============================================
   PILLARS — sobre o condomínio
   ============================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ws-mist);
  border: 1px solid var(--ws-mist);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pillar {
  background: var(--ws-white);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  transition: background 280ms var(--ease);
}
.pillar:hover { background: var(--ws-paper); }
.pillar:hover .pillar-icon { transform: rotate(-6deg) scale(1.05); }
.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--ws-blue-500);
}
.pillar-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--ws-blue-50);
  color: var(--ws-blue-700);
  display: grid; place-items: center;
  transition: transform 320ms var(--ease-out);
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.018em;
  margin: 0;
}
.pillar p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT — split com placeholder de foto
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-8);
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 var(--sp-3);
  color: var(--ws-brand-blue);
}
.about-text h3 em { font-style: italic; font-weight: 300; opacity: 0.6; }
.about-accent-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-bottom: var(--sp-5);
}
.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 var(--sp-4);
  max-width: 55ch;
}
.about-features {
  margin-top: var(--sp-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4) var(--sp-5);
}
.about-feature {
  display: flex; gap: var(--sp-3);
  align-items: flex-start;
}
.about-feature-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-feature-text {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}
.about-feature-text strong { display: block; font-family: var(--font-display); font-weight: 600; }
.about-feature-text small {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 4/3; }
}

/* ============================================
   PLACEHOLDER (gradient + label)
   ============================================ */
.ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, var(--ws-blue-400) 0%, var(--ws-blue-700) 60%, var(--ws-blue-900) 100%);
  display: flex; align-items: flex-end;
  padding: var(--sp-5);
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(40% 60% at 80% 70%, rgba(212, 178, 122, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.ph-warm {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #87B5DA 0%, #5A8BB8 50%, var(--ws-warm-stone) 95%);
}
.ph-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(10,21,48,0.4);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.15);
}
.ph-label::before {
  content: '◇  ';
  color: var(--color-accent);
}

/* ============================================
   DIRETÓRIO (lojistas + condôminos)
   ============================================ */
.directory {
  background: var(--ws-paper);
}
.directory-tabs {
  display: inline-flex;
  background: var(--ws-cloud);
  border-radius: var(--r-pill);
  padding: 4px;
  margin-bottom: var(--sp-6);
  gap: 4px;
}
.directory-tab {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 220ms var(--ease);
}
.directory-tab.is-active {
  background: var(--ws-brand-blue);
  color: white;
  box-shadow: var(--shadow-sm);
}
.directory-tab .count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: rgba(255,255,255,0.18);
  padding: 2px 8px;
  border-radius: var(--r-pill);
}
.directory-tab:not(.is-active) .count {
  background: var(--ws-mist);
  color: var(--color-text-muted);
}

.directory-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-5);
}
.search-field {
  position: relative;
  display: flex; align-items: center;
  background: var(--ws-white);
  border: 1.5px solid var(--ws-mist);
  border-radius: var(--r-pill);
  padding: 0 18px;
  transition: border-color 200ms;
}
.search-field:focus-within {
  border-color: var(--ws-brand-blue);
  box-shadow: 0 0 0 4px rgba(27,45,90,0.08);
}
.search-field svg { color: var(--color-text-muted); flex-shrink: 0; }
.search-field input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 12px;
  color: var(--color-text);
}
.search-field input::placeholder { color: var(--color-text-muted); }
.search-clear {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--ws-cloud);
}
.directory-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.directory-meta strong { color: var(--ws-brand-blue); }

.directory-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-7);
  align-items: start;
}
.directory-aside {
  position: sticky;
  top: 96px;
}
.directory-aside-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ws-blue-500);
  margin: 0 0 var(--sp-3);
  padding: 0 var(--sp-3);
}
.cat-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  max-height: 64vh;
  overflow-y: auto;
  padding-right: 4px;
}
.cat-list::-webkit-scrollbar { width: 6px; }
.cat-list::-webkit-scrollbar-thumb { background: var(--ws-mist); border-radius: 3px; }
.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  color: var(--color-text);
  cursor: pointer;
  transition: all 180ms var(--ease);
  text-align: left;
  width: 100%;
  border-left: 2px solid transparent;
}
.cat-item:hover { background: var(--ws-cloud); }
.cat-item.is-active {
  background: var(--ws-blue-50);
  color: var(--ws-brand-blue);
  font-weight: 600;
  border-left-color: var(--color-accent);
}
.cat-item-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-muted);
}
.cat-item.is-active .cat-item-count { color: var(--ws-brand-blue); }

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.dir-card {
  background: var(--ws-white);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  border: 1px solid var(--ws-mist);
  transition: all 280ms var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.dir-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--color-accent);
  transition: width 320ms var(--ease-out);
}
.dir-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.dir-card:hover::before { width: 50%; }

.dir-card-head {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}
.dir-card-logo {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--ws-blue-100), var(--ws-blue-50));
  color: var(--ws-brand-blue);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.dir-card-meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.dir-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.012em;
}
.dir-card-cat {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dir-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--ws-mist);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.dir-card-foot .room {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ws-brand-blue);
}
.dir-card-foot .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ws-blue-50);
  color: var(--ws-brand-blue);
  display: grid; place-items: center;
  transition: all 220ms var(--ease-out);
}
.dir-card:hover .dir-card-foot .arrow {
  background: var(--color-accent);
  color: white;
  transform: translateX(2px);
}

@media (max-width: 880px) {
  .directory-layout { grid-template-columns: 1fr; }
  .directory-aside { position: static; }
  .cat-list { flex-direction: row; max-height: none; overflow-x: auto; padding-bottom: 8px; }
  .cat-item { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; }
  .cat-item.is-active { border-left-color: transparent; border-bottom-color: var(--color-accent); }
}

.directory-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
  color: var(--color-text-muted);
}
.directory-empty .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ws-brand-blue);
  margin-bottom: 4px;
}

/* ============================================
   INFRA — bento
   ============================================ */
.infra-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: var(--sp-3);
}
.bento {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ws-blue-900);
  color: white;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 320ms var(--ease-out);
  cursor: pointer;
}
.bento:hover { transform: translateY(-4px); }
.bento-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bento-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,27,61,0.0) 30%, rgba(10,21,48,0.85) 100%);
}
.bento-content { position: relative; z-index: 2; }
.bento-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}
.bento h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.012em;
  margin: 0 0 4px;
}
.bento p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.45;
}

.bento.tall { grid-row: span 2; }
.bento.wide { grid-column: span 2; }

@media (max-width: 880px) {
  .infra-bento { grid-template-columns: repeat(2, 1fr); }
  .bento.wide { grid-column: span 2; }
  .bento.tall { grid-row: span 1; }
}

/* ============================================
   GALLERY — strip
   ============================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.gallery-tile {
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 320ms var(--ease-out);
}
.gallery-tile:hover { transform: scale(0.98); }
.gallery-tile:nth-child(2) { transform: translateY(28px); }
.gallery-tile:nth-child(2):hover { transform: translateY(28px) scale(0.98); }
.gallery-tile:nth-child(4) { transform: translateY(28px); }
.gallery-tile:nth-child(4):hover { transform: translateY(28px) scale(0.98); }
@media (max-width: 720px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile:nth-child(n) { transform: none; }
  .gallery-tile:nth-child(n):hover { transform: scale(0.98); }
}

/* ============================================
   LOCATION
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--sp-7);
  align-items: stretch;
}
.location-map {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 420px;
  background: linear-gradient(135deg, var(--ws-blue-50), var(--ws-mist));
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.location-info-card {
  min-width: 0;
}
.location-info-card {
  background: var(--ws-blue-950);
  color: white;
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.location-info-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0;
}
.location-info-card h3 em { font-style: italic; font-weight: 300; color: var(--ws-blue-300); }
.location-address {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ws-blue-100);
  margin: 0;
}
.location-points {
  display: grid;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.location-point {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--sp-3);
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.location-point:first-child { border-top: none; padding-top: 0; }
.location-point-time {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-accent);
}
.location-point-name {
  font-size: 0.875rem;
  color: var(--ws-blue-100);
}
.location-point-name small {
  display: block;
  font-size: 0.7rem;
  color: var(--ws-blue-300);
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 880px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NEWS preview
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.news-card {
  background: white;
  border: 1px solid var(--ws-mist);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 280ms var(--ease-out);
  cursor: pointer;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.news-img {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.news-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.news-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: flex; align-items: center; gap: 10px;
}
.news-meta .tag {
  color: var(--color-accent);
  font-weight: 600;
}
.news-body h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--color-text);
}
.news-body p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}
.news-link {
  margin-top: auto;
  padding-top: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.825rem;
  color: var(--ws-brand-blue);
  display: inline-flex; align-items: center; gap: 6px;
}
@media (max-width: 880px) { .news-grid { grid-template-columns: 1fr; } }

/* ============================================
   Article (noticia interna)
   ============================================ */
.article-cover {
  width: 100%;
  aspect-ratio: 21/9;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-7);
}
.article-cover .ph { height: 100%; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: var(--sp-8);
  align-items: start;
}

.article-body {
  min-width: 0;
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: var(--sp-6) 0 var(--sp-3);
  color: var(--color-text);
}
.article-body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0 0 var(--sp-4);
}
.article-body p + p { margin-top: 0; }
.article-body strong { color: var(--color-text); font-weight: 600; }
.article-body blockquote {
  border-left: 3px solid var(--color-accent);
  margin: var(--sp-6) 0;
  padding: var(--sp-4) var(--sp-6);
  background: var(--ws-cloud);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.article-body blockquote p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  line-height: 1.5;
}

.article-divider {
  border: none;
  border-top: 1px solid var(--ws-mist);
  margin: var(--sp-7) 0;
}

.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.sidebar-card {
  background: var(--ws-cloud);
  border-radius: var(--r-md);
  padding: var(--sp-5);
}
.sidebar-card h5 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 var(--sp-4);
}
.sidebar-news-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--ws-mist);
  text-decoration: none;
}
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-item span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  text-transform: uppercase;
}
.sidebar-news-item strong {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}
.sidebar-news-item:hover strong { color: var(--color-accent); }

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}
.article-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--ws-mist);
  border-radius: var(--r-pill);
  color: var(--color-text-muted);
}

@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .article-cover { aspect-ratio: 16/9; }
}

/* ============================================
   CTA Block
   ============================================ */
.cta-block {
  background:
    radial-gradient(80% 100% at 0% 0%, var(--ws-blue-700) 0%, var(--ws-blue-900) 50%, var(--ws-blue-950) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: var(--sp-9) var(--sp-8);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 90% 20%, rgba(212, 178, 122, 0.18) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 24px);
  pointer-events: none;
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-7);
  align-items: end;
}
.cta-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.cta-block h3 em { font-style: italic; font-weight: 300; color: var(--ws-blue-300); }
.cta-block .accent-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-top: var(--sp-3);
}
.cta-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 720px) {
  .cta-block { padding: var(--sp-7) var(--sp-5); }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ws-blue-950);
  color: var(--ws-blue-200);
  padding: var(--sp-9) 0 var(--sp-5);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-8);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  margin-bottom: var(--sp-4);
}
.footer-brand svg, .footer-brand img { height: 44px; width: auto; }
.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.footer-brand-text small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--ws-blue-400);
  margin-top: 2px;
}
.footer-about {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ws-blue-300);
  max-width: 36ch;
}
.footer h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 var(--sp-4);
  font-weight: 600;
}
.footer ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer ul a {
  font-size: 0.875rem;
  color: var(--ws-blue-200);
  transition: color 180ms;
}
.footer ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--ws-blue-400);
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-bottom .legal { display: flex; gap: var(--sp-5); }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Sub-page heros (wireframe-light)
   ============================================ */
.subhero {
  position: relative;
  padding: 180px 0 var(--sp-8);
  background:
    radial-gradient(80% 100% at 0% 0%, var(--ws-blue-700) 0%, var(--ws-blue-900) 60%, var(--ws-blue-950) 100%);
  color: white;
  overflow: hidden;
}
.subhero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(212, 178, 122, 0.18) 0%, transparent 40%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 24px);
}
.subhero-inner { position: relative; z-index: 1; }
.crumbs {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ws-blue-300);
  margin-bottom: var(--sp-4);
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.crumbs a:hover { color: white; }
.crumbs .sep { color: var(--color-accent); }
.subhero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 var(--sp-3);
  text-wrap: balance;
}
.subhero h1 em { font-style: italic; font-weight: 300; color: var(--ws-blue-300); }
.subhero .accent-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
}
.subhero-lead {
  margin-top: var(--sp-5);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ws-blue-100);
  max-width: 60ch;
}

/* — Wireframe blocks — */
.wf-grid { display: grid; gap: var(--sp-4); }
.wf-block {
  background: white;
  border: 1px dashed var(--ws-stone);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 140px;
}
.wf-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  align-self: flex-start;
  border: 1px solid var(--color-accent);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.wf-line {
  height: 14px;
  background: var(--ws-cloud);
  border-radius: var(--r-xs);
}
.wf-line.long { width: 80%; }
.wf-line.medium { width: 60%; }
.wf-line.short { width: 40%; }
.wf-block h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ws-brand-blue);
}
.wf-block p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}
.wf-cols-2 { grid-template-columns: 1fr 1fr; }
.wf-cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) {
  .wf-cols-2, .wf-cols-3 { grid-template-columns: 1fr; }
}

/* ============================================
   Reveal animations on scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* — Tweaks marker — */
[data-tweak-target='heroTitle'] { display: contents; }

/* ============================================
   HERO V2 — Full-bleed Behance Dubai style
   ============================================ */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  background: var(--ws-onyx);
  overflow: hidden;
  isolation: isolate;
  color: var(--ws-white);
  display: flex;
  flex-direction: column;
}
.hero-v2-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-v2-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 35%;
  animation: kenBurns 32s var(--ease) infinite alternate;
}
.hero-v2-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,14,20,0.55) 0%, rgba(11,14,20,0.10) 30%, rgba(11,14,20,0.92) 100%),
    linear-gradient(90deg, rgba(11,14,20,0.55) 0%, transparent 45%);
}
.hero-v2-content {
  position: relative; z-index: 3;
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  max-width: var(--container-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 160px;
  padding-right: var(--sp-6);
  padding-bottom: 0;
  padding-left: var(--sp-6);
}
.hero-v2-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--sp-5); flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.hero-v2-top .left {
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 900ms var(--ease-out) 200ms forwards;
}
.hero-v2-top .left::before {
  content: ''; width: 32px; height: 1px;
  background: var(--ws-champagne);
}
.hero-v2-top .right {
  text-align: right; line-height: 1.6;
  opacity: 0; animation: fadeUp 900ms var(--ease-out) 350ms forwards;
}
.hero-v2-top .right strong {
  display: block; color: var(--ws-champagne); font-weight: 500;
}
.hero-v2-headline {
  align-self: end;
  padding: var(--sp-7) 0 var(--sp-6);
}
.hero-v2-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ws-champagne);
  margin-bottom: var(--sp-5);
  opacity: 0; animation: fadeUp 900ms var(--ease-out) 500ms forwards;
}
.hero-v2-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.hero-v2-title .row { display: block; overflow: hidden; }
.hero-v2-title .row span {
  display: inline-block;
  transform: translateY(105%);
  animation: lineUp 1100ms var(--ease-out) forwards;
}
.hero-v2-title .row-1 span { animation-delay: 600ms; }
.hero-v2-title .row-2 span { animation-delay: 760ms; color: var(--ws-champagne); font-style: italic; font-weight: 300; }
.hero-v2-meta {
  display: flex; align-items: end; justify-content: space-between;
  gap: var(--sp-6); flex-wrap: wrap;
  margin-top: var(--sp-6);
  opacity: 0; animation: fadeUp 900ms var(--ease-out) 980ms forwards;
}
.hero-v2-meta p {
  max-width: 44ch;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.hero-v2-meta .scroll-cue {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.65);
}
.hero-v2-meta .scroll-cue::after {
  content: ''; width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--ws-champagne), transparent);
  animation: scrollCue 2.4s ease-in-out infinite;
}
@keyframes scrollCue {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* — Acesso rápido (rodapé do hero) — */
.hero-v2-search {
  position: relative; z-index: 4;
  background:
    linear-gradient(180deg, var(--ws-blue-900) 0%, var(--ws-blue-950) 100%);
  color: var(--ws-white);
  border-top: 1px solid rgba(212, 178, 122, 0.32);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 900ms var(--ease-out) 1100ms forwards;
}
.hero-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-quick-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  color: var(--ws-white);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: background 280ms var(--ease);
}
.hero-quick-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--color-accent);
  transition: width 320ms var(--ease-out);
}
.hero-quick-card:last-child { border-right: none; }
.hero-quick-card:hover { background: rgba(212, 178, 122, 0.06); }
.hero-quick-card:hover::after { width: 100%; }
.hero-quick-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212, 178, 122, 0.10);
  border: 1px solid rgba(212, 178, 122, 0.32);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 320ms var(--ease-out);
}
.hero-quick-card:hover .hero-quick-card-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--ws-blue-900);
}
.hero-quick-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.hero-quick-card-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.hero-quick-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.012em;
  color: var(--ws-white);
  line-height: 1.25;
}
.hero-quick-card-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ws-white);
  display: grid;
  place-items: center;
  transition: all 280ms var(--ease-out);
  flex-shrink: 0;
}
.hero-quick-card:hover .hero-quick-card-arrow {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--ws-blue-900);
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .hero-quick-grid { grid-template-columns: 1fr; }
  .hero-quick-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    gap: 16px;
    grid-template-columns: 44px 1fr 32px;
    min-height: 76px;
  }
  .hero-quick-card:last-child { border-bottom: none; }
  .hero-quick-card-icon { width: 40px; height: 40px; }
  .hero-quick-card-arrow { width: 32px; height: 32px; }
  .hero-quick-card-title { font-size: 1rem; }
}
@media (max-width: 480px) {
  .hero-quick-card { padding: 18px 4px; gap: 14px; }
  .hero-quick-card-label { font-size: 0.58rem; }
  .hero-quick-card-title { font-size: 0.95rem; }
}

/* ============================================
   MARQUEE — Empreendimentos
   ============================================ */
.marquee-section {
  background: var(--ws-onyx);
  color: white;
  padding: var(--sp-8) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(200,168,118,0.18);
}
.marquee-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: var(--sp-5); flex-wrap: wrap;
  margin-bottom: var(--sp-7);
}
.marquee-head .num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--ws-champagne);
}
.marquee-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 8px 0 0;
  color: white;
}
.marquee-head h2 em {
  font-style: italic; font-weight: 300; color: var(--ws-champagne);
}
.marquee-track-wrap {
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: flex; gap: 24px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-card {
  flex: 0 0 360px;
  height: 460px;
  background: var(--ws-onyx-2);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 400ms var(--ease-out);
  border: 1px solid rgba(200,168,118,0.12);
}
.marquee-card:hover { transform: translateY(-6px); }
.marquee-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.05);
}
.marquee-card-img.ph-tower-1 {
  background: linear-gradient(180deg, #1a2748 0%, #0a1530 100%),
    repeating-linear-gradient(90deg, rgba(200,168,118,0.08) 0 1px, transparent 1px 16px);
}
.marquee-card-img.ph-tower-2 {
  background: linear-gradient(180deg, #2a1f48 0%, #150f30 100%);
}
.marquee-card-img.ph-tower-3 {
  background: linear-gradient(180deg, #483a1f 0%, #30240f 100%);
}
.marquee-card-img.ph-loja {
  background: linear-gradient(180deg, #1f4848 0%, #0f3030 100%);
}
.marquee-card-img.ph-event {
  background: linear-gradient(180deg, #481f30 0%, #300f1f 100%);
}
.marquee-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,14,20,0.92));
  z-index: 1;
}
.marquee-card-body {
  position: absolute; inset: auto 0 0; z-index: 2;
  padding: 24px;
  color: white;
}
.marquee-card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ws-champagne);
  border: 1px solid rgba(200,168,118,0.4);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.marquee-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.1;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.marquee-card-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.marquee-card-stat {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  display: flex; align-items: end; gap: 6px;
}
.marquee-card-stat .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1; letter-spacing: -0.04em;
  color: white;
  -webkit-text-stroke: 1px rgba(200,168,118,0.4);
}
.marquee-card-stat .unit {
  font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.18em;
  color: var(--ws-champagne);
  text-transform: uppercase;
  padding-bottom: 8px;
}

/* ============================================
   DIRECTORY V2 — Behance: bloco branco + foto + texto chapado
   ============================================ */
.dirv2 {
  background: var(--ws-paper);
  padding: var(--sp-9) 0;
  position: relative;
}
.dirv2-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: end;
  margin-bottom: var(--sp-8);
}
.dirv2-head .num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
  display: block;
}
.dirv2-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ws-onyx);
  margin: 0;
}
.dirv2-title em { font-style: italic; font-weight: 300; color: var(--ws-champagne); }
.dirv2-lead {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 48ch;
  margin: 0;
}

/* Hero block do diretório: branco + foto + título chapado por cima */
.dirv2-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 1px 0 var(--ws-mist), 0 30px 60px -30px rgba(11,14,20,0.18);
  margin-bottom: var(--sp-8);
  min-height: 480px;
}
.dirv2-feature-text {
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.dirv2-feature-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ws-champagne);
}
.dirv2-feature-tag::before {
  content: ''; width: 24px; height: 1px; background: var(--ws-champagne);
}
.dirv2-feature-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ws-onyx);
  margin: 16px 0;
}
.dirv2-feature-h em { font-style: italic; font-weight: 300; color: var(--ws-champagne); }
.dirv2-feature-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ws-mist);
  padding-top: 24px;
}
.dirv2-feature-stats .stat {
  border-right: 1px solid var(--ws-mist);
  padding: 0 16px 0 0;
}
.dirv2-feature-stats .stat:first-child { padding-left: 0; }
.dirv2-feature-stats .stat:last-child { border-right: none; padding-right: 0; padding-left: 16px; }
.dirv2-feature-stats .stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ws-onyx);
}
.dirv2-feature-stats .stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.dirv2-feature-photo {
  position: relative;
  min-height: 320px;
  background: var(--ws-onyx);
  overflow: hidden;
}
.dirv2-feature-photo .ph {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a2748 0%, #0a1530 60%, #2a1f10 100%);
}
.dirv2-feature-photo .ph::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 30% 70%, rgba(200,168,118,0.25), transparent 70%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 32px);
}
.dirv2-feature-photo-label {
  position: absolute; bottom: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
}
.dirv2-feature-photo-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ws-champagne);
}

/* Stamp removido — comprometia o layout em larguras médias */
.dirv2-feature-stamp { display: none; }

/* — Tabs/filters — */
.dirv2-controls {
  display: flex; align-items: center; gap: var(--sp-5);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.dirv2-tabs {
  display: inline-flex;
  background: white;
  border: 1px solid var(--ws-mist);
  border-radius: 999px;
  padding: 4px;
}
.dirv2-tab {
  padding: 10px 20px;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-radius: 999px;
  cursor: pointer;
  transition: all 220ms;
  display: inline-flex; align-items: center; gap: 8px;
}
.dirv2-tab.is-active {
  background: var(--ws-onyx);
  color: white;
}
.dirv2-tab .count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
}
.dirv2-tab:not(.is-active) .count { background: var(--ws-cloud); color: var(--color-text-muted); }
.dirv2-search {
  flex: 1; min-width: 240px;
  display: flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--ws-mist);
  border-radius: 999px;
  padding: 0 18px;
  height: 44px;
}
.dirv2-search input {
  flex: 1; border: none; outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ws-ink);
}
.dirv2-cats {
  display: flex; gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: var(--sp-6);
  padding-bottom: 4px;
}
.dirv2-cats::-webkit-scrollbar { display: none; }
.dirv2-cat {
  flex-shrink: 0;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--ws-mist);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 220ms;
}
.dirv2-cat.is-active {
  background: var(--ws-champagne);
  border-color: var(--ws-champagne);
  color: var(--ws-onyx);
}
.dirv2-cat:not(.is-active):hover { border-color: var(--ws-champagne); color: var(--ws-onyx); }

.dirv2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.dirv2-card {
  background: white;
  border: 1px solid var(--ws-mist);
  border-radius: var(--r-md);
  padding: 20px;
  cursor: pointer;
  transition: all 280ms var(--ease-out);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.dirv2-card:hover {
  transform: translateY(-3px);
  border-color: var(--ws-champagne);
  box-shadow: 0 20px 40px -20px rgba(11,14,20,0.18);
}
.dirv2-card-head {
  display: flex; align-items: center; gap: 14px;
}
.dirv2-card-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--ws-onyx);
  color: var(--ws-champagne);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.dirv2-card-meta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ws-champagne);
}
.dirv2-card-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 4px 0 0;
  color: var(--ws-onyx);
  line-height: 1.2;
}
.dirv2-card-cat {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.dirv2-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--ws-mist);
}
.dirv2-card-room {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--ws-onyx);
  font-weight: 500;
}
.dirv2-card-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ws-cloud);
  display: grid; place-items: center;
  color: var(--ws-onyx);
  transition: all 220ms;
}
.dirv2-card:hover .dirv2-card-arrow {
  background: var(--ws-champagne);
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .dirv2-head { grid-template-columns: 1fr; }
  .dirv2-feature { grid-template-columns: 1fr; min-height: 0; }
  .dirv2-feature-photo { min-height: 260px; }
  .dirv2-feature-stats { grid-template-columns: 1fr 1fr; }
  .dirv2-feature-stats .stat:nth-child(2) { border-right: none; }
  .dirv2-feature-stats .stat:nth-child(3) { padding-left: 0; padding-top: 16px; border-top: 1px solid var(--ws-mist); }
}

/* — typography swaps via tweak — */
.font-manrope { font-family: 'Manrope', system-ui, sans-serif !important; }
.font-manrope * { font-family: inherit !important; }
.font-manrope code, .font-manrope .font-mono, .font-manrope [class*='mono'] {
  font-family: 'JetBrains Mono', monospace !important;
}

/* ============================================
 * LOGOS MARQUEE — Quem está aqui dentro
 * ============================================ */
.logos-section {
  background: var(--ws-paper);
  padding: 120px 0 140px;
  overflow: hidden;
  position: relative;
}
.logos-section .section-head { margin-bottom: 64px; }
.logos-track-wrap {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  margin-bottom: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logos-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.logos-track-fwd { animation: logos-scroll 80s linear infinite; }
.logos-track-rev { animation: logos-scroll-rev 90s linear infinite; }
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes logos-scroll-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.logo-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: white;
  border: 1px solid var(--ws-mist);
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.logo-chip:hover {
  border-color: var(--ws-blue-900);
  transform: translateY(-2px);
  background: var(--ws-cloud);
}
.logo-chip .logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ws-blue-900);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}
.logo-chip .logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--color-text);
}
.logo-chip:hover .logo-name { color: var(--ws-blue-900); }

/* pause on hover only when interacting with the marquee strip */
.logos-track-wrap:hover .logos-track { animation-play-state: paused; }

/* ============================================
   FORM CONTROLS (used em contato + condominos)
   ============================================ */
.field-input,
.field-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--ws-white);
  border: 1.5px solid var(--ws-mist);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field-textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.field-input::placeholder,
.field-textarea::placeholder { color: var(--ws-stone); }
.field-input:focus,
.field-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(212, 178, 122, 0.18);
}
select.field-input {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%235A6275' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}

/* ============================================
   LAYOUT UTILITIES — substituem inline grids
   ============================================ */
.split-7-5 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-7);
  align-items: start;
}
.split-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.row-end-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* Tablet — single intermediate breakpoint para todos os splits */
@media (max-width: 980px) {
  .split-7-5 { gap: var(--sp-6); }
  .split-1-1 { gap: var(--sp-6); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .split-7-5,
  .split-1-1 { grid-template-columns: 1fr; gap: var(--sp-5); }
}
@media (max-width: 520px) {
  .timeline-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE REFINEMENTS — sobreposições
   ============================================ */

/* Section padding fluido */
@media (max-width: 720px) {
  .section { padding: var(--sp-8) 0; }
}
@media (max-width: 480px) {
  .section { padding: var(--sp-7) 0; }
}

/* Subhero — reduz padding em telas pequenas */
@media (max-width: 720px) {
  .subhero { padding: 130px 0 var(--sp-7); }
  .subhero-lead { font-size: 1rem; margin-top: var(--sp-4); }
}
@media (max-width: 480px) {
  .subhero { padding: 150px 0 var(--sp-6); }
  .crumbs { font-size: 0.65rem; gap: 6px; }
}

/* Section heading & accent-sub mais leves no mobile */
@media (max-width: 720px) {
  .section-head { margin-bottom: var(--sp-6); }
  .section-num::after { width: 32px; }
  .section-accent-sub { font-size: 0.82rem; }
  .about-accent-sub { font-size: 0.82rem; }
}

/* About features — 1 coluna em telas muito estreitas */
@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; gap: var(--sp-3) 0; }
}

/* Pillars — suporta 3 e 4 colunas com fallbacks coerentes */
@media (min-width: 1100px) {
  .pillars-grid[style*="repeat(3"] { /* override do index.html não interfere */ }
}
@media (max-width: 980px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr !important; }
  .pillar { padding: var(--sp-6); }
}

/* Bento — adiciona breakpoint de telefone */
@media (max-width: 600px) {
  .infra-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento { min-height: 180px; }
  .bento.tall { grid-row: span 1; }
  .bento.wide { grid-column: span 1; }
}

/* News — adiciona passo intermediário em tablet */
@media (max-width: 1080px) and (min-width: 881px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

/* CTA — stack mais cedo */
@media (max-width: 980px) {
  .cta-grid { grid-template-columns: 1fr; gap: var(--sp-5); align-items: start; }
  .cta-actions { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .cta-block { padding: var(--sp-6) var(--sp-4); border-radius: var(--r-lg); }
  .cta-block h3 { font-size: 1.75rem; }
}

/* CTAs full-width em telas muito estreitas */
@media (max-width: 480px) {
  .btn { padding: 14px 20px; font-size: 0.8125rem; }
  .hero-actions .btn,
  .cta-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* Hero V2 — search redesenhado em mobile */
@media (max-width: 720px) {
  .hero-v2-content { padding-top: 100px; }
  .hero-v2-headline { padding: var(--sp-5) 0 var(--sp-4); }
  .hero-v2-meta { gap: var(--sp-4); }
  .hero-v2-meta .scroll-cue { display: none; }
}

/* Hero cinematic — espaço melhor em mobile */
@media (max-width: 720px) {
  .hero-content { padding: 100px 0 var(--sp-6); gap: var(--sp-5); }
  .hero-title-block { margin-top: var(--sp-7); }
  .hero-eyebrow-row { gap: var(--sp-3); font-size: 0.62rem; }
  .hero-coords { gap: var(--sp-3); flex-wrap: wrap; }
}

/* Stats row — padding mais leve no mobile */
@media (max-width: 720px) {
  .stat { padding: var(--sp-4) var(--sp-3); }
}

/* Directory toolbar — empilha em telas estreitas */
@media (max-width: 600px) {
  .directory-toolbar {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
  .directory-meta { text-align: left; font-size: 0.7rem; }
  .directory-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
  .directory-tab { padding: 12px 16px; font-size: 0.8125rem; white-space: nowrap; }
}

/* Directory v2 — controles full-width em telefone */
@media (max-width: 720px) {
  .dirv2 { padding: var(--sp-7) 0; }
  .dirv2-controls { gap: var(--sp-3); }
  .dirv2-tabs { width: 100%; }
  .dirv2-tab { flex: 1; justify-content: center; padding: 12px 14px; min-height: 48px; }
  .dirv2-search { width: 100%; min-width: 0; flex: none; height: 48px; }
  .dirv2-feature-text { padding: var(--sp-6) var(--sp-5); gap: var(--sp-5); }
  .dirv2-feature-h { font-size: 1.75rem; margin: 12px 0; }
}
@media (max-width: 480px) {
  .dirv2-feature-stats { grid-template-columns: 1fr; gap: var(--sp-4); }
  .dirv2-feature-stats .stat,
  .dirv2-feature-stats .stat:nth-child(n) {
    border-right: none !important;
    border-top: 1px solid var(--ws-mist);
    padding: 12px 0 0 !important;
  }
  .dirv2-feature-stats .stat:first-child { border-top: none; padding-top: 0 !important; }
}

/* Marquee cards — menores em mobile */
@media (max-width: 720px) {
  .marquee-card { flex: 0 0 280px; height: 380px; }
  .marquee-card-stat .num { font-size: 2.6rem; }
  .marquee-section { padding: var(--sp-7) 0; }
  .marquee-head h2 { font-size: 1.75rem; }
}

/* Logos marquee — chip mais compacto */
@media (max-width: 720px) {
  .logos-section { padding: 80px 0 96px; }
  .logos-section .section-head { margin-bottom: 40px; }
  .logo-chip { padding: 12px 16px; gap: 10px; }
  .logo-chip .logo-mark { width: 32px; height: 32px; font-size: 0.7rem; }
  .logo-chip .logo-name { font-size: 0.85rem; }
}

/* Location info card — padding menor */
@media (max-width: 720px) {
  .location-info-card { padding: var(--sp-5); }
  .location-info-card h3 { font-size: 1.5rem; }
  .location-point { grid-template-columns: 56px 1fr; }
}

/* Newsletter (noticias.html) */
.newsletter-wrap { max-width: 520px; }
.newsletter-row { padding: 4px 4px 4px 18px; }
.newsletter-row input { padding: 14px 12px; }
.newsletter-row .btn-accent { padding: 10px 18px; }
@media (max-width: 520px) {
  .newsletter-row {
    flex-wrap: wrap;
    padding: 8px;
    gap: 8px;
  }
  .newsletter-row > svg { display: none; }
  .newsletter-row input { flex: 1 1 100%; padding: 12px 14px; }
  .newsletter-row .btn-accent { width: 100%; justify-content: center; }
}

/* Footer — bottom legal stack em telefone */
@media (max-width: 600px) {
  .footer { padding: var(--sp-8) 0 var(--sp-5); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
  .footer-bottom .legal { gap: var(--sp-4); flex-wrap: wrap; }
}

/* WF blocks — padding menor em mobile */
@media (max-width: 720px) {
  .wf-block { padding: var(--sp-5); min-height: 0; }
  .wf-block h3 { font-size: 1.125rem; }
}

/* Gallery strip — desfaz o offset alterno em mobile */
@media (max-width: 720px) {
  .gallery-strip { gap: var(--sp-2); }
}

/* Tweaks panel — esconder em mobile (dev-only) */
@media (max-width: 720px) {
  [data-tweaks-panel],
  .tweaks-panel,
  #tweaks-panel { display: none !important; }
}

/* Garantir tap targets ≥44px em qualquer botão de navegação */
@media (max-width: 720px) {
  .nav-link,
  .directory-tab,
  .dirv2-tab,
  .dirv2-cat,
  .cat-item { min-height: 44px; }
  .cat-item { padding: 12px 14px; }
  .dirv2-cat { padding: 10px 14px; }
}

/* HeroEditorial — colapsa grid de 2 colunas em mobile */
@media (max-width: 720px) {
  .hero-editorial-inner { padding-top: 110px !important; }
  .hero-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: var(--sp-5) !important;
    align-items: start !important;
  }
  .hero-editorial-grid > div:last-child { aspect-ratio: 16 / 9 !important; }
}
@media (max-width: 480px) {
  .hero-editorial-inner { padding-top: 90px !important; }
}

/* HeroManifesto — colapsa grid e esconde imagem decorativa em mobile */
@media (max-width: 720px) {
  .hero-manifesto-inner { padding: 110px var(--sp-5) var(--sp-7) !important; }
  .hero-manifesto-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .hero-manifesto-grid > div:last-child { display: none !important; }
}
@media (max-width: 480px) {
  .hero-manifesto-inner { padding: 90px var(--sp-4) var(--sp-6) !important; }
}

/* HeroV2 — esconde barra superior em mobile e posiciona headline no fundo */
@media (max-width: 480px) {
  .hero-v2-top { display: none; }
  .hero-v2-content {
    padding-top: 90px;
    padding-right: var(--sp-4);
    padding-left: var(--sp-4);
    display: flex;
    flex-direction: column;
  }
  .hero-v2-headline { margin-top: auto; padding-bottom: var(--sp-6); }
}

/* HeroCinematic — esconde coordenadas geográficas em telas muito estreitas */
@media (max-width: 480px) {
  .hero-coords > span:last-child { display: none; }
  .hero-eyebrow { display: none; }
}

/* iOS Safari — usa 100svh para descontar a barra de endereço */
@supports (min-height: 100svh) {
  .hero-cinematic, .hero-v2 { min-height: 100svh; }
  .hero-content { min-height: 100svh; }
}

/* Reduce motion — respeita preferência do usuário */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg-inner,
  .hero-v2-bg img { animation: none; }
  .marquee-track,
  .logos-track-fwd,
  .logos-track-rev { animation: none; }
}

/* =============================================
   TENANT MODAL
   ============================================= */
.tm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 20, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: var(--sp-5);
  animation: tm-fade 220ms var(--ease-out) both;
}
@keyframes tm-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.tm {
  background: white;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  animation: tm-rise 280ms var(--ease-out) both;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--ws-mist) transparent;
}
@keyframes tm-rise {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.tm-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--ws-mist);
  position: relative;
}
.tm-logo {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--ws-onyx);
  color: var(--ws-champagne);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.tm-hinfo {
  flex: 1;
  min-width: 0;
  padding-right: 24px;
}
.tm-meta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ws-champagne);
  margin-bottom: 5px;
}
.tm-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ws-onyx);
  margin: 0 0 5px;
  line-height: 1.2;
}
.tm-cat {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.tm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--ws-mist);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  transition: all 180ms;
  flex-shrink: 0;
}
.tm-close:hover {
  background: var(--ws-onyx);
  color: white;
  border-color: var(--ws-onyx);
}
.tm-summary {
  padding: 18px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
  border-bottom: 1px solid var(--ws-mist);
}
.tm-photos {
  display: flex;
  gap: 8px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--ws-mist);
}
.tm-photo {
  flex: 1;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--ws-onyx) 0%, #2a3648 50%, #374151 100%);
  position: relative;
  overflow: hidden;
}
.tm-photo::after {
  content: 'FOTO';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.2);
}
.tm-contacts {
  display: flex;
  gap: 8px;
  padding: 18px 28px 24px;
  flex-wrap: wrap;
  align-items: center;
}
.tm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 200ms;
  border: 1px solid transparent;
  line-height: 1;
}
.tm-btn-wa { background: #25D366; color: white; }
.tm-btn-wa:hover { background: #1fb359; }
.tm-btn-ig {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 52%, #fcb045 100%);
  color: white;
}
.tm-btn-ig:hover { opacity: 0.88; }
.tm-btn-site {
  background: transparent;
  color: var(--ws-onyx);
  border-color: var(--ws-mist);
}
.tm-btn-site:hover {
  background: var(--ws-cloud);
  border-color: var(--ws-champagne);
}
.tm-no-contact {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
}

@media (max-width: 560px) {
  .tm-overlay { padding: 0; align-items: flex-end; }
  .tm { border-radius: var(--r-lg) var(--r-lg) 0 0; max-height: 85vh; }
  .tm-header { padding: 20px 20px 18px; }
  .tm-summary { padding: 16px 20px; }
  .tm-photos { padding: 16px 20px; gap: 6px; }
  .tm-contacts { padding: 14px 20px 20px; }
}
