/* =====================================================
   Koch Construtora — Global CSS v2.0 (01/05/2026)
   Contém: variables, reset, base, loader, header,
           mobile-nav, hero, sections, btn, footer
   ===================================================== */

/* ---------- VARIÁVEIS ---------- */
:root {
  --gold: #c9a96e;
  --gold-dark: #b8941a;
  --black: #0a0a0a;
  --black-deep: #060606;
  --off-white: #f7f5f0;
  --cream: #f2ede4;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #9a9a9a;
  --gray-600: #4a4a4a;
  --gray-800: #1a1a1a;

  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-48: 12rem;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-label:   'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

  --duration-fast: 200ms;
  --duration-mid:  350ms;
  --duration-slow: 600ms;
  --ease-out: cubic-bezier(0.16,1,0.3,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ---------- PAGE LOADER ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo { width: 120px; }
.loader-logo img { width: 100%; }
.loader-logo-img { width: 120px; }
.loader-line {
  width: 80px;
  height: 1px;
  background: rgba(201,169,110,0.3);
  position: relative;
  overflow: hidden;
}
.loader-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loaderSweep 0.8s var(--ease-out) forwards;
}
@keyframes loaderSweep { to { left: 100%; } }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background var(--duration-mid), backdrop-filter var(--duration-mid), border-color var(--duration-mid);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,48px);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-inner.home-header-swap {
  height: 88px;
}
.header-nav {
  display: flex;
  gap: clamp(16px,2vw,32px);
  align-items: center;
}
.header-nav a {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.75);
  transition: color var(--duration-fast);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--gold); }
.header-logo { display: flex; align-items: center; }
.header-logo-img { height: 40px; width: auto; display: block; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-ghost {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.7);
  padding: 8px 16px;
  border: 1px solid rgba(247,245,240,0.15);
  transition: all var(--duration-fast);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.header-cta {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--duration-fast);
}
.header-cta:hover { opacity: 0.88; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--off-white);
  transition: all var(--duration-fast);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 190;
  padding: 24px clamp(16px,4vw,48px) 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--duration-mid) var(--ease-out), opacity var(--duration-mid);
  pointer-events: none;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.7);
  padding: 14px 0;
  border-bottom: 1px solid rgba(247,245,240,0.06);
  transition: color var(--duration-fast);
}
.mobile-nav a:hover { color: var(--gold); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.55) 80%,
    rgba(10,10,10,0.85) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(16px,5vw,80px) clamp(48px,8vw,96px);
  max-width: 900px;
}
.hero-pretitle {
  font-family: var(--font-label);
  font-size: clamp(9px,1vw,11px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--off-white);
  margin-bottom: var(--space-5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem,1.5vw,1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247,245,240,0.65);
  max-width: 520px;
  margin-bottom: var(--space-8);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
/* Reveal state */
[data-reveal].revealed,
.hero-pretitle.revealed,
.hero-title.revealed,
.hero-subtitle.revealed,
.hero-actions.revealed {
  opacity: 1;
  transform: none;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: clamp(16px,4vw,48px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(247,245,240,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDrop 2s ease-in-out infinite;
}
.hero-scroll span {
  font-family: var(--font-label);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.4);
  writing-mode: vertical-lr;
}
@keyframes scrollDrop { 0% { top: -100%; } 100% { top: 100%; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: all var(--duration-fast);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { opacity: 0.88; }
.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(247,245,240,0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- MANIFESTO BAR ---------- */
.manifesto-bar {
  background: var(--black-deep);
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  overflow: hidden;
}
.manifesto-track {
  display: flex;
  gap: var(--space-16);
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.manifesto-item {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-shrink: 0;
}
.manifesto-item span {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.45);
}
.manifesto-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SECTION BASE ---------- */
.section-header { margin-bottom: clamp(32px,5vw,64px); }
.section-header--center { text-align: center; }
.section-overline {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--off-white);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title--dark { color: var(--black); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black-deep);
  border-top: 1px solid rgba(201,169,110,0.08);
  padding: clamp(48px,6vw,80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px,4vw,56px);
  margin-bottom: 48px;
}
.footer-brand-logo { height: 32px; margin-bottom: 16px; }
.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247,245,240,0.4);
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,245,240,0.5);
  transition: color var(--duration-fast);
}
.footer-col-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(247,245,240,0.06);
}
.footer-legal {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(247,245,240,0.2);
  line-height: 1.6;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(247,245,240,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,245,240,0.4);
  font-size: 13px;
  transition: all var(--duration-fast);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- DATA-REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content { padding-bottom: clamp(32px,6vw,64px); }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: auto; }
}


/* =====================================================
   COMPONENTES FALTANTES — adicionado 01/05/2026
   ===================================================== */

/* --- STATS / KPIs --- */
.section-stats {
  padding: clamp(48px,6vw,72px) 0;
  background: var(--black);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 0;
}
.stat-item {
  padding: clamp(20px,3vw,36px) clamp(16px,2vw,24px);
  border-right: 1px solid rgba(201,169,110,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number em { font-style: italic; color: var(--gold); }
.stat-label {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.4);
  line-height: 1.5;
}
@media (max-width:600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-bottom: 1px solid rgba(201,169,110,0.08); }
}

/* --- SECTION INVESTIDORES --- */
.section-investidores {
  padding: clamp(64px,8vw,96px) 0;
  background: var(--black);
}
.inv-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem,1.5vw,1.1rem);
  font-weight: 300;
  color: rgba(247,245,240,0.5);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
  text-align: center;
}
.inv-block {
  display: flex;
  gap: clamp(20px,3vw,40px);
  align-items: flex-start;
  padding: clamp(24px,3vw,36px) clamp(20px,3vw,36px);
  border: 1px solid rgba(201,169,110,0.1);
  margin-bottom: 16px;
  background: rgba(255,255,255,0.02);
  transition: border-color 300ms;
}
.inv-block:hover { border-color: rgba(201,169,110,0.25); }
.inv-block--alt { background: rgba(201,169,110,0.03); }
.inv-block-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.inv-block-content { flex: 1; min-width: 0; }
.inv-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem,2vw,1.5rem);
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.inv-block-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.inv-block-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(247,245,240,0.55);
  line-height: 1.8;
}
.inv-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inv-bullets li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(247,245,240,0.6);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.inv-bullets li i {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.inv-bullets strong { color: var(--off-white); font-weight: 500; }

/* Cards de investimento */
.inv-cards-title {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  margin-top: 32px;
  display: block;
}
.inv-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.inv-cards-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.inv-card {
  padding: 24px 20px;
  border: 1px solid rgba(201,169,110,0.12);
  background: rgba(255,255,255,0.02);
  transition: border-color 300ms, transform 300ms;
}
.inv-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.inv-card p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(247,245,240,0.6);
  line-height: 1.7;
}
.inv-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-3px); }
.inv-card-icon {
  width: 40px; height: 40px;
  background: rgba(201,169,110,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
}

/* Badge */
.inv-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.inv-badge--gold { background: rgba(201,169,110,0.15); color: var(--gold); }
.inv-badge--gold-strong { background: var(--gold); color: var(--black); }
.inv-badge--green { background: rgba(74,222,128,0.12); color: #4ade80; }
.inv-badge--neutral { background: rgba(247,245,240,0.08); color: rgba(247,245,240,0.5); }

/* Tabela comparativa */
.inv-table-section { margin: 32px 0; }
.inv-table-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem,2.5vw,2rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 8px;
}
.inv-table-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(247,245,240,0.45);
  margin-bottom: 20px;
}
.inv-table-wrap { overflow-x: auto; }
.inv-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.inv-table th, .inv-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.inv-table th {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.05);
}
.inv-table td { color: rgba(247,245,240,0.65); }
.inv-table-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  background: rgba(201,169,110,0.12);
  color: var(--gold);
}

/* Infográfico barras */
.inv-infographic { margin: 24px 0; }
.inv-infographic-title {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.5);
  margin-bottom: 16px;
}
.inv-infographic-bars { display: flex; flex-direction: column; gap: 10px; }
.inv-bar { display: flex; align-items: center; gap: 12px; }
.inv-bar-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(247,245,240,0.6);
  min-width: 100px;
  flex-shrink: 0;
}
.inv-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.inv-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: rgba(247,245,240,0.2);
  transition: width 1s var(--ease-out);
}
.inv-bar-fill--gold { background: var(--gold); }
.inv-infographic-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(247,245,240,0.25);
  margin-top: 10px;
}

/* Stay section */
.inv-stay-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin: 24px 0;
}
.inv-stay-col {
  padding: 20px;
  border: 1px solid rgba(201,169,110,0.1);
  background: rgba(255,255,255,0.02);
}
.inv-stay-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 8px;
}
.inv-stay-col p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(247,245,240,0.55);
  line-height: 1.7;
}
.inv-stay-divider {
  text-align: center;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(247,245,240,0.25);
  text-transform: uppercase;
}
.inv-stay-yield {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 4px;
}

/* CTA investidor */
.inv-cta {
  margin-top: 40px;
  padding: clamp(28px,4vw,48px);
  background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(201,169,110,0.04));
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.inv-cta-content { flex: 1; min-width: 200px; }
.inv-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .inv-block { flex-direction: column; gap: 16px; }
  .inv-stay-compare { grid-template-columns: 1fr; }
  .inv-cta { flex-direction: column; }
}

/* --- SECTION PARCEIROS --- */
.section-parceiros {
  padding: clamp(64px,8vw,96px) 0;
  background: var(--off-white);
}
.section-parceiros .section-title { color: var(--black); }
.section-parceiros .section-overline { color: var(--gold-dark); }
.parc-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem,1.4vw,1rem);
  font-weight: 300;
  color: var(--gray-600);
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
  text-align: center;
}
.parc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 20px;
  margin-top: 40px;
}
.parc-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 28px 24px;
  transition: border-color 300ms, box-shadow 300ms, transform 300ms;
}
.parc-card:hover {
  border-color: rgba(201,169,110,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.parc-card-logo {
  height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.parc-card-logo img {
  max-height: 48px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 300ms;
}
.parc-card:hover .parc-card-logo img { filter: grayscale(0%); }
.parc-card-logo-fallback {
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: rgba(0,0,0,0.04);
  border: 1px dashed rgba(0,0,0,0.12);
}
.parc-card-logo-fallback span {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-600);
}
.parc-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
}
.parc-card-tagline {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: block;
}
.parc-card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Formulário de parceria */
.parc-form-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.parc-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,3vw,2.5rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 8px;
}
.parc-form-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.6;
}
.parc-form {
  max-width: 720px;
}
.parc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.parc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.parc-field--full { grid-column: 1 / -1; }
.parc-field label {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.parc-field input,
.parc-field select,
.parc-field textarea {
  background: white;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  padding: 12px 14px;
  outline: none;
  width: 100%;
  transition: border-color 200ms;
  border-radius: 0;
  -webkit-appearance: none;
}
.parc-field input:focus,
.parc-field select:focus,
.parc-field textarea:focus { border-color: var(--gold-dark); }
.parc-field textarea { resize: vertical; min-height: 80px; }
.parc-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  transition: opacity 200ms;
  margin-top: 8px;
}
.parc-form-submit:hover { opacity: 0.88; }
.parc-form-success {
  display: none;
  background: rgba(42,122,42,0.08);
  border: 1px solid rgba(42,122,42,0.2);
  color: #2a7a2a;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .parc-form-grid { grid-template-columns: 1fr; }
  .parc-grid { grid-template-columns: 1fr; }
}

/* --- SECTION DEPOIMENTOS --- */
.section-depoimentos {
  padding: clamp(48px,8vw,96px) 0;
  background: var(--off-white);
}

/* --- FOOTER --- */
.footer-logo { display: flex; align-items: center; margin-bottom: 16px; }
.footer-logo-img { height: 32px; width: auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px,4vw,56px);
  margin-bottom: 48px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,245,240,0.5);
  transition: color 200ms;
}
.footer-links a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(247,245,240,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,245,240,0.4);
  font-size: 13px;
  transition: all 200ms;
}
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-contact-item { margin-bottom: 12px; }
.footer-contact-label {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.3);
  display: block;
  margin-bottom: 3px;
}
.footer-contact-value {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,245,240,0.6);
}
.footer-bottom-text {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(247,245,240,0.2);
  line-height: 1.6;
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.25);
  transition: color 200ms;
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-brand {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.5);
}
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* --- LIGHTBOX --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms, visibility 300ms;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.5rem;
  color: rgba(247,245,240,0.7);
  cursor: pointer;
  background: none; border: none;
  transition: color 200ms;
}
.lightbox-close:hover { color: var(--off-white); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}
.lightbox-prev, .lightbox-next {
  pointer-events: all;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--off-white);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.15); }

/* --- BOTÕES EXTRAS --- */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.25);
  padding: 12px 24px;
  transition: all 200ms;
  text-decoration: none;
}
.btn-outline-dark:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: none; border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 200ms;
}
.btn-text:hover { opacity: 0.75; }

/* --- SECTION OVERLINE CENTER --- */
.section-overline--center { text-align: center; display: block; }

/* --- LEAD FORM WRAP --- */
.lead-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* --- WHATSAPP FLOAT (widget.js usa IDs — este é fallback para quem usa classes) --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.whatsapp-float-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 200ms;
  font-size: 1.6rem;
  color: white;
}
.whatsapp-float-btn:hover { transform: scale(1.08); }
.whatsapp-float-label {
  background: white;
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  white-space: nowrap;
}

.whatsapp-float-btn svg {
  width: 28px !important;
  height: 28px !important;
  flex-shrink: 0;
  display: block;
  fill: white;
}

/* Textos dentro de seções escuras (investidores) */
.section-investidores h3,
.section-investidores h4,
.section-investidores p,
.section-investidores li,
.section-investidores strong {
  color: rgba(247,245,240,0.75);
}
.section-investidores h3 { color: var(--off-white); }
.section-investidores h4 { color: var(--off-white); font-weight: 400; }
.section-investidores strong { color: var(--off-white); font-weight: 500; }
.section-investidores .inv-block-title { color: var(--off-white); }
.section-investidores .inv-block-desc,
.section-investidores .inv-bullets li { color: rgba(247,245,240,0.65); }
.section-investidores .inv-bullets strong { color: var(--off-white); }

/* Tabela investidores */
.inv-table td { color: rgba(247,245,240,0.7) !important; }
.inv-table tr:first-child td { color: var(--off-white) !important; font-weight: 400; }

/* Infográfico */
.inv-infographic-title { color: rgba(247,245,240,0.5) !important; }
.inv-bar-label { color: rgba(247,245,240,0.65) !important; }

/* CTA investidor textos */
.inv-cta h3, .inv-cta h4, .inv-cta p { color: var(--off-white); }
.inv-cta p { color: rgba(247,245,240,0.65); font-size: 0.9rem; }


/* =====================================================
   Koch Home — Sections CSS (migrado de inline 01/05/2026)
   Cobre: section-projects, section-manifesto,
          section-differentials, section-location,
          section-cta, section-blog, section-stats
   ===================================================== */

/* =====================================================
       INDEX.HTML — ESTILOS ESPECÍFICOS DA HOME
    ===================================================== */

    /* =====================================================
       HOME — ESTILOS ESPECÍFICOS
    ===================================================== */

    /* Manifesto Bar */
    .manifesto-bar {
      background: var(--black-deep);
      padding: var(--space-5) 0;
      border-bottom: 1px solid rgba(201,169,110,0.1);
      overflow: hidden;
    }

    .manifesto-track {
      display: flex;
      gap: var(--space-16);
      white-space: nowrap;
      animation: marquee 28s linear infinite;
    }

    .manifesto-item {
      display: flex;
      align-items: center;
      gap: var(--space-6);
      flex-shrink: 0;
    }

    .manifesto-item span {
      font-family: var(--font-label);
      font-size: var(--text-xs);
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gray-500);
    }

    .manifesto-dot {
      width: 4px;
      height: 4px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Section: Empreendimentos */
    .section-projects {
      background: var(--off-white);
      padding-top: clamp(var(--space-20), 8vw, var(--space-40));
      padding-bottom: clamp(var(--space-20), 8vw, var(--space-40));
    }

    .projects-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: var(--space-12);
      gap: var(--space-8);
    }

    /* Destaque: Trajano em foco */
    .featured-project {
      position: relative;
      height: 80vh;
      min-height: 560px;
      overflow: hidden;
      margin-bottom: var(--space-4);
      cursor: pointer;
    }

    .featured-project-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 1.2s var(--ease-out);
    }

    .featured-project:hover .featured-project-media img {
      transform: scale(1.04);
    }

    .featured-project-media {
      position: absolute;
      inset: 0;
    }

    .featured-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(5,5,5,0.85) 0%,
        rgba(5,5,5,0.45) 50%,
        transparent 100%
      );
    }

    .featured-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: var(--space-12) clamp(var(--space-8), 5vw, var(--space-16));
      max-width: 600px;
    }

    .featured-tag {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-label);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,169,110,0.4);
      padding: 5px 12px;
      margin-bottom: var(--space-4);
      background: rgba(5,5,5,0.5);
      backdrop-filter: blur(4px);
      width: fit-content;
    }

    .featured-name {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.0;
      letter-spacing: -0.01em;
      margin-bottom: var(--space-3);
    }

    .featured-location {
      font-family: var(--font-label);
      font-size: var(--text-xs);
      font-weight: 400;
      letter-spacing: 0.15em;
      color: var(--gold-light);
      text-transform: uppercase;
      margin-bottom: var(--space-6);
    }

    .featured-desc {
      font-family: var(--font-body);
      font-size: var(--text-md);
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      max-width: 44ch;
      margin-bottom: var(--space-8);
    }

    .featured-specs {
      display: flex;
      gap: var(--space-8);
      margin-bottom: var(--space-8);
    }

    .featured-spec {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .featured-spec-value {
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      font-weight: 300;
      color: var(--white);
      line-height: 1;
    }

    .featured-spec-label {
      font-family: var(--font-label);
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray-400);
    }

    .featured-actions {
      display: flex;
      align-items: center;
      gap: var(--space-5);
    }

    /* Grid secundário */
    .secondary-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-4);
    }

    .secondary-card {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      cursor: pointer;
      background: var(--gray-900);
    }

    .secondary-card-media {
      position: absolute;
      inset: 0;
    }

    .secondary-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.9s var(--ease-out);
    }

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

    .secondary-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.2) 60%, transparent 100%);
    }

    .secondary-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: var(--space-6);
    }

    .secondary-status {
      font-family: var(--font-label);
      font-size: 8px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: var(--space-2);
    }

    .secondary-name {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2vw, 1.75rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: var(--space-2);
    }

    .secondary-location {
      font-family: var(--font-label);
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.55);
      text-transform: uppercase;
      margin-bottom: var(--space-4);
    }

    .secondary-link {
      font-family: var(--font-label);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: var(--space-2);
      opacity: 0;
      transform: translateY(6px);
      transition: all var(--duration-mid) var(--ease-out);
    }

    .secondary-card:hover .secondary-link {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .secondary-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .secondary-grid {
        grid-template-columns: 1fr;
      }
      .featured-project {
        height: 70vh;
      }
      .featured-overlay {
        background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.5) 60%, rgba(5,5,5,0.2) 100%);
      }
    }

    /* Section: Manifesto / Sobre */
    .section-manifesto {
      background: var(--black);
      padding: clamp(var(--space-20), 10vw, var(--space-48)) 0;
    }

    .manifesto-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(var(--space-12), 8vw, var(--space-32));
      align-items: center;
    }

    .manifesto-image {
      aspect-ratio: 3/4;
      overflow: hidden;
      position: relative;
    }

    .manifesto-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(20%);
    }

    .manifesto-image-caption {
      position: absolute;
      bottom: var(--space-5);
      right: var(--space-5);
      font-family: var(--font-label);
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(5,5,5,0.7);
      padding: 4px 10px;
      backdrop-filter: blur(4px);
    }

    .manifesto-text {}

    .manifesto-quote {
      font-family: var(--font-display);
      font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
      font-weight: 300;
      font-style: italic;
      color: var(--off-white);
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: var(--space-8);
    }

    .manifesto-body {
      font-family: var(--font-body);
      font-size: var(--text-md);
      font-weight: 300;
      color: var(--gray-400);
      line-height: 1.8;
      margin-bottom: var(--space-10);
    }

    .manifesto-signature {
      display: flex;
      align-items: center;
      gap: var(--space-5);
    }

    .manifesto-sig-line {
      width: 40px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .manifesto-sig-text {
      font-family: var(--font-label);
      font-size: var(--text-xs);
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray-500);
    }

    @media (max-width: 768px) {
      .manifesto-layout {
        grid-template-columns: 1fr;
      }
      .manifesto-image {
        aspect-ratio: 4/3;
        order: -1;
      }
    }

    /* Section: Diferenciais */
    .section-differentials {
      background: var(--charcoal);
      padding: clamp(var(--space-20), 8vw, var(--space-40)) 0;
    }

    .diff-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.05);
      margin-top: var(--space-16);
    }

    .diff-item {
      background: var(--charcoal);
      padding: var(--space-12) var(--space-10);
      transition: background var(--duration-mid);
    }

    .diff-item:hover {
      background: var(--graphite);
    }

    .diff-number {
      font-family: var(--font-display);
      font-size: var(--text-7xl);
      font-weight: 300;
      color: rgba(201,169,110,0.08);
      line-height: 0.9;
      margin-bottom: var(--space-8);
    }

    .diff-icon {
      width: 44px;
      height: 44px;
      margin-bottom: var(--space-5);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(201,169,110,0.25);
    }

    .diff-icon i {
      color: var(--gold);
      font-size: 1.1rem;
    }

    .diff-title {
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      font-weight: 300;
      color: var(--white);
      margin-bottom: var(--space-4);
      line-height: 1.2;
    }

    .diff-desc {
      font-family: var(--font-body);
      font-size: var(--text-base);
      font-weight: 300;
      color: var(--gray-500);
      line-height: 1.8;
    }

    @media (max-width: 900px) {
      .diff-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    /* Section: Stats */
    .section-stats {
      background: var(--black-deep);
      padding: 0;
    }

    /* Section: Localização */
    .section-location {
      background: var(--off-white);
      padding: clamp(var(--space-20), 8vw, var(--space-40)) 0;
    }

    .location-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(var(--space-12), 6vw, var(--space-24));
      align-items: center;
    }

    .location-map {
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--gray-100);
      position: relative;
    }

    .location-map iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .location-info {}

    .location-feature {
      display: flex;
      gap: var(--space-5);
      padding: var(--space-6) 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .location-feature:first-of-type {
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    .location-feature-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--cream);
    }

    .location-feature-icon i {
      color: var(--gold-dark);
      font-size: 1rem;
    }

    .location-feature-text {}

    .location-feature-title {
      font-family: var(--font-label);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: var(--space-1);
    }

    .location-feature-desc {
      font-family: var(--font-body);
      font-size: var(--text-base);
      font-weight: 300;
      color: var(--gray-600);
      line-height: 1.6;
    }

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

    /* Section: Blog */
    .section-blog {
      background: var(--cream);
      padding: clamp(var(--space-20), 8vw, var(--space-40)) 0;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-6);
      margin-top: var(--space-12);
    }

    .blog-card {
      background: var(--white);
      overflow: hidden;
      transition: transform var(--duration-mid) var(--ease-out),
                  box-shadow var(--duration-mid) var(--ease-out);
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .blog-card-img {
      aspect-ratio: 16/9;
      overflow: hidden;
      background: var(--gray-100);
    }

    .blog-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--duration-slow) var(--ease-out);
    }

    .blog-card:hover .blog-card-img img {
      transform: scale(1.05);
    }

    .blog-card-body {
      padding: var(--space-6);
    }

    .blog-cat {
      font-family: var(--font-label);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: var(--space-3);
    }

    .blog-title {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 400;
      color: var(--black);
      line-height: 1.25;
      margin-bottom: var(--space-3);
    }

    .blog-excerpt {
      font-family: var(--font-body);
      font-size: var(--text-base);
      font-weight: 300;
      color: var(--gray-600);
      line-height: 1.7;
      margin-bottom: var(--space-5);
    }

    .blog-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: var(--space-4);
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    .blog-read {
      font-family: var(--font-label);
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: var(--gray-400);
    }

    .blog-link {
      font-family: var(--font-label);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold-dark);
      display: flex;
      align-items: center;
      gap: var(--space-2);
      transition: gap var(--duration-fast);
    }

    .blog-link:hover {
      gap: var(--space-3);
    }

    @media (max-width: 900px) {
      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    /* Section: CTA Final */
    .section-cta {
      position: relative;
      padding: clamp(var(--space-20), 10vw, var(--space-48)) 0;
      overflow: hidden;
    }

    .section-cta-bg {
      position: absolute;
      inset: 0;
    }

    .section-cta-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .section-cta-overlay {
      position: absolute;
      inset: 0;
      background: rgba(5,5,5,0.82);
    }

    .section-cta-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }

    .cta-eyebrow {
      font-family: var(--font-label);
      font-size: var(--text-xs);
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: var(--space-5);
    }

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(var(--text-3xl), 4.5vw, var(--text-6xl));
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: var(--space-6);
    }

    .cta-desc {
      font-family: var(--font-body);
      font-size: var(--text-lg);
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin-bottom: var(--space-10);
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-5);
      flex-wrap: wrap;
    }

    .cta-contact-info {
      margin-top: var(--space-8);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-8);
      flex-wrap: wrap;
    }

    .cta-contact-item {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      font-family: var(--font-body);
      font-size: var(--text-base);
      font-weight: 300;
      color: rgba(255,255,255,0.5);
    }

    .cta-contact-item i {
      color: var(--gold);
      font-size: 0.9rem;
    }

    /* Projects Header */
    .projects-header-left {}

    .projects-header-right {
      flex-shrink: 0;
    }

  


    /* WhatsApp float SVG fix */
    .whatsapp-float-btn svg {
      width: 28px !important;
      height: 28px !important;
      flex-shrink: 0;
      display: block;
      fill: white;
    }
    .lightbox-prev { display: none; } /* fallback — lightbox-prev já coberto */

