
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nav-h: 72px;

  /* ─ DOURADO ─ */
  --gold:        #c9a84c;
  --gold-light:  #debb6a;
  --gold-dark:   #a8882e;
  --gold-pale:   #f0dfa8;
  --gold-line:   rgba(201,168,76,0.22);
  --gold-glow:   rgba(201,168,76,0.10);

  /* ─ TEXTO ─ */
  --text-dark:   #1e1a14;
  --text-mid:    #6b5f48;
  --text-light:  #9e8f74;

  --white:       #ffffff;

  /* ─ HOME: Branco puro + bege muito suave ─ */
  --home-bg:       #fdfcfa;
  --home-bg2:      #faf8f4;
  --home-surface:  #f5f1ea;
  --home-text:     #1e1a14;
  --home-sub:      #6b5f48;

  /* ─ CONSTRUTORA: Off-white frio ─ */
  --c-bg:        #f8f8f6;
  --c-bg2:       #f0efeb;
  --c-surface:   #ffffff;
  --c-text:      #1e1a14;
  --c-sub:       #6b5f48;
  --c-accent-bg: #f2ead8;

  /* ─ IMOBILIÁRIA: Bege médio ─ */
  --i-bg:        #faf6ee;
  --i-bg2:       #f3ece0;
  --i-surface:   #ffffff;
  --i-text:      #1e1a14;
  --i-sub:       #6b5f48;

  /* ─ MARCENARIA: Bege quente ─ */
  --m-bg:        #f7f2e8;
  --m-bg2:       #ede5d4;
  --m-surface:   #ffffff;
  --m-text:      #1e1a14;
  --m-sub:       #6b5f48;
}

html, body {
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
  background: var(--white);
  scroll-behavior: smooth;
}

/* ──────────────────────────
   NAV
────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.on-dark, nav.on-light {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--gold-line), 0 4px 20px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}

.logo {
  cursor: pointer;
  display: block;
}

.nav-tabs { display: flex; gap: 4px; }
.tab-btn {
  padding: 9px 22px; border: none; cursor: pointer; border-radius: 2px;
  font-family: 'Jost'; font-size: 0.73rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; transition: all 0.28s;
  background: transparent; color: var(--text-light);
}
.tab-btn:hover  { color: var(--gold); }
.tab-btn.active { background: var(--gold); color: var(--white); }

.nav-cta {
  padding: 10px 28px; border-radius: 2px;
  font-family: 'Jost'; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.25s;
  border: 1.5px solid var(--gold); color: var(--gold); background: transparent;
}
.nav-cta:hover { background: var(--gold); color: var(--white); }

/* ──────────────────────────
   SECTIONS
────────────────────────── */
.section { display: none; min-height: 100vh; padding-top: var(--nav-h); }
.section.active { display: block; animation: fadeUp 0.5s ease forwards; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ── FUNDO SOFISTICADO GLOBAL ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(201,168,76,0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(201,168,76,0.03) 0%, transparent 55%),
    linear-gradient(135deg, rgba(201,168,76,0.015) 25%, transparent 25%),
    linear-gradient(225deg, rgba(201,168,76,0.015) 25%, transparent 25%),
    linear-gradient(315deg, rgba(201,168,76,0.015) 25%, transparent 25%),
    linear-gradient(45deg,  rgba(201,168,76,0.015) 25%, transparent 25%);
  background-size: 100% 100%, 100% 100%, 64px 64px, 64px 64px, 64px 64px, 64px 64px;
  background-position: 0 0, 0 0, 0 0, 0 32px, 32px -32px, -32px 0px;
}

/* Linha fina dourada decorativa no topo de seções claras */
.h-features,
.h-about,
.h-segments,
.h-slides-section {
  position: relative;
}
.h-features::before,
.h-about::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.25), transparent);
  pointer-events: none;
}



/* ──────────────────────────
   SHARED BUTTONS
────────────────────────── */
.btn-gold {
  padding: 14px 40px; background: var(--gold); color: #1a1712;
  font-family: 'Jost'; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; border: none; cursor: pointer;
  border-radius: 2px; text-decoration: none; display: inline-block; transition: all 0.25s;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-light {
  padding: 14px 40px; background: transparent;
  font-family: 'Jost'; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: 1.5px solid rgba(201,168,76,0.6); color: var(--gold);
  cursor: pointer; border-radius: 2px; transition: all 0.25s;
  display: inline-block; text-decoration: none;
}
.btn-outline-light:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.btn-outline-dark {
  padding: 14px 40px; background: transparent;
  font-family: 'Jost'; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: 1.5px solid var(--gold-dark); color: var(--gold-dark);
  cursor: pointer; border-radius: 2px; transition: all 0.25s;
  display: inline-block; text-decoration: none;
}
.btn-outline-dark:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.gold-label {
  font-size: 0.92rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
  display: flex; align-items: center; gap: 14px;
}
.gold-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

/* ══════════════════════════════════════════
   HOME
══════════════════════════════════════════ */
#sec-home {
  background: var(--home-bg);
  padding-top: 0;
}

/* ── HERO PRINCIPAL com slideshow ── */
.h-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0;
  overflow: hidden;
}

/* Vídeo de fundo */
.h-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.h-hero-bg video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Overlay escuro gradiente */
.h-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10,8,4,0.82) 0%,
    rgba(10,8,4,0.55) 55%,
    rgba(10,8,4,0.25) 100%
  );
}

/* Linha diagonal decorativa */
.h-diagonal {
  position: absolute; top: 0; right: 18%; z-index: 2;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4) 30%, rgba(201,168,76,0.4) 70%, transparent);
}
.h-diagonal2 {
  position: absolute; top: 0; right: 32%; z-index: 2;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15) 40%, rgba(201,168,76,0.15) 60%, transparent);
}

/* Botões laterais hero */
.h-hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.45); background: rgba(0,0,0,0.35);
  color: var(--gold-light); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; backdrop-filter: blur(4px);
}
.h-hero-nav:hover { background: var(--gold); color: #1a1712; border-color: var(--gold); }
.h-hero-nav.prev { right: 80px; left: auto; }
.h-hero-nav.next { right: 20px; }

/* Indicadores do hero slideshow */
.h-hero-indicators {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 10px;
}
.h-hero-dot {
  width: 28px; height: 2px; background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; transition: all 0.3s; padding: 0;
}
.h-hero-dot.active { background: var(--gold); width: 44px; }

/* Hero content slides — transição de conteúdo */
.h-hero-slides { position: relative; z-index: 3; min-height: 300px; }
.h-hero-slide-content {
  position: absolute; bottom: 0; left: 0;
  max-width: 780px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  width: 100%;
}
.h-hero-slide-content.active {
  opacity: 1; transform: none;
  pointer-events: auto;
}

.h-hero-content { position: relative; z-index: 3; max-width: 780px; }

.h-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.92rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 500;
  color: var(--gold-light); margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
}
.h-eyebrow span { width: 48px; height: 1px; background: var(--gold-light); display: inline-block; }

.h-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 900; line-height: 1.01;
  color: #ffffff;
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.h-title em {
  color: var(--gold-light);
  font-style: italic;
}

.h-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
  line-height: 1.8; margin-bottom: 52px;
  max-width: 520px; font-weight: 300;
}

.h-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.h-scroll {
  position: absolute; bottom: 36px; right: 80px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.h-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.h-scroll-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

/* Número flutuante */
.h-year {
  position: absolute; top: 40%; right: 8%;
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.2);
  line-height: 1;
  user-select: none; pointer-events: none;
  z-index: 2;
}

/* ── PORTFÓLIO BANNER ── */
.h-portfolio-banner {
  background: var(--text-dark);
  padding: 90px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; overflow: hidden;
}
.h-portfolio-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.h-portfolio-left { position: relative; z-index: 1; }
.h-portfolio-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.92rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 500;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.h-portfolio-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.h-portfolio-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #ffffff; font-weight: 700;
  line-height: 1.15; margin-bottom: 24px;
}
.h-portfolio-title em { color: var(--gold-light); font-style: italic; }
.h-portfolio-text {
  font-size: 0.92rem; color: rgba(255,255,255,0.6);
  line-height: 1.9; margin-bottom: 36px; font-weight: 300;
}
.h-portfolio-right {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.h-portfolio-img {
  aspect-ratio: 3/2; overflow: hidden;
  position: relative;
}
.h-portfolio-img:first-child {
  grid-column: 1 / -1; aspect-ratio: 16/7;
}
.h-portfolio-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.h-portfolio-img:hover img { transform: scale(1.04); filter: brightness(1); }
.h-portfolio-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); font-family: 'DM Mono', monospace;
}

/* ── DIFERENCIAIS COM IMAGENS ── */
.h-features {
  background: var(--home-bg);
  padding: 100px 80px;
}
.h-features-header {
  text-align: center; margin-bottom: 70px;
}
.h-features-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.92rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 500;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.h-features-eyebrow::before,
.h-features-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--gold); }
.h-features-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-dark); font-weight: 700; margin-bottom: 16px;
}
.h-features-sub {
  font-size: 0.9rem; color: var(--text-mid); font-weight: 300;
}
.h-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--gold-line);
}
.h-feature-card {
  background: var(--home-bg2);
  overflow: hidden;
  transition: background 0.3s;
}
.h-feature-card:hover { background: var(--white); }
.h-feature-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
}
.h-feature-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9);
}
.h-feature-card:hover .h-feature-img img { transform: scale(1.05); filter: brightness(1); }
.h-feature-body { padding: 36px 36px 44px; }
.h-feature-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 14px;
}
.h-feature-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--text-dark); margin-bottom: 12px;
}
.h-feature-desc {
  font-size: 0.84rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 24px;
}
.h-feature-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; font-family: 'Jost';
  border: none; background: none; cursor: pointer; transition: gap 0.2s;
}
.h-feature-link:hover { gap: 16px; }
.h-feature-link::after { content: '→'; }

/* ── SEÇÃO "ALÉM DO CONCRETO" (parallax quote) ── */
.h-quote-section {
  position: relative; overflow: hidden;
  height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.h-quote-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?w=1600&q=80&fit=crop');
  background-size: cover; background-position: center;
  filter: brightness(0.4);
}
.h-quote-content {
  position: relative; z-index: 1;
  text-align: center; padding: 0 80px; max-width: 820px;
}
.h-quote-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.h-quote-label::before,
.h-quote-label::after { content: ''; width: 40px; height: 1px; background: var(--gold); }
.h-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  color: #ffffff; font-weight: 700; line-height: 1.2;
  margin-bottom: 36px;
}
.h-quote-text em { color: var(--gold-light); font-style: italic; }

/* ── FAQ ── */
.h-faq {
  background: var(--home-bg2);
  padding: 100px 80px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.h-faq-header { margin-bottom: 60px; }
.h-faq-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.92rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 500;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.h-faq-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.h-faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; color: var(--text-dark); font-weight: 700;
}
.h-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--gold-line);
}
.h-faq-item {
  background: var(--home-bg);
  padding: 0;
  border: none; cursor: pointer;
  text-align: left; width: 100%;
  transition: background 0.25s;
  font-family: 'Jost', sans-serif;
}
.h-faq-item:hover { background: var(--white); }
.h-faq-q {
  padding: 28px 36px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.h-faq-q-text {
  font-size: 0.92rem; font-weight: 600; color: var(--text-dark); letter-spacing: 0.2px;
}
.h-faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  transition: transform 0.3s, background 0.25s, color 0.25s;
}
.h-faq-item.open .h-faq-icon {
  transform: rotate(45deg);
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.h-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 36px;
  font-size: 0.84rem; color: var(--text-mid); line-height: 1.85; font-weight: 300;
}
.h-faq-item.open .h-faq-a {
  max-height: 200px;
  padding-bottom: 28px;
}

/* ── CONTATO ── */
.h-contact {
  background: var(--home-bg);
  padding: 100px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.h-contact-left {}
.h-contact-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.92rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 500;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.h-contact-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.h-contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--text-dark); font-weight: 700;
  line-height: 1.2; margin-bottom: 24px;
}
.h-contact-title em { color: var(--gold); font-style: italic; }
.h-contact-text {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.9; font-weight: 300; margin-bottom: 36px;
}
.h-contact-info { display: flex; flex-direction: column; gap: 16px; }
.h-contact-info-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.86rem; color: var(--text-mid);
}
.h-contact-info-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.h-contact-right {}
.h-contact-form { display: flex; flex-direction: column; gap: 0; }
.h-form-group { position: relative; }
.h-form-group + .h-form-group { margin-top: -1px; }
.h-form-input, .h-form-textarea {
  width: 100%; padding: 18px 20px;
  border: 1px solid rgba(201,168,76,0.2);
  background: var(--home-bg2);
  font-family: 'Jost', sans-serif; font-size: 0.86rem;
  color: var(--text-dark); outline: none;
  transition: border-color 0.25s, background 0.25s;
  resize: none;
  display: block;
}
.h-form-input:focus, .h-form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.h-form-input::placeholder, .h-form-textarea::placeholder {
  color: var(--text-light); font-weight: 300;
}
.h-form-textarea { height: 140px; margin-top: -1px; }
.h-form-submit {
  margin-top: 16px;
  width: 100%; padding: 17px;
  background: var(--gold); color: #1a1712;
  font-family: 'Jost'; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.25s;
}
.h-form-submit:hover { background: var(--gold-light); }

/* ── SLIDES DE APRESENTAÇÃO ── */
.h-slides-section {
  background: var(--home-bg2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.h-slides-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.h-slides-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.h-slides-header {
  padding: 0 80px 60px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.h-slides-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; color: var(--text-dark); font-weight: 700;
}
.h-slides-sub {
  font-size: 0.82rem; color: var(--text-light); letter-spacing: 1px;
}

.h-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 80px;
}

.h-slider {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.h-slide {
  min-width: calc(33.333% - 19px);
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 50px 42px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.h-slide:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
}

/* Linha dourada topo */
.h-slide::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.h-slide:hover::before { opacity: 1; }

/* Número de fundo */
.h-slide::after {
  content: attr(data-num);
  position: absolute; bottom: -10px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem; font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.06);
  line-height: 1;
  pointer-events: none;
}

.h-slide-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 28px;
  background: rgba(201,168,76,0.05);
}
.h-slide-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.h-slide-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--text-dark);
  margin-bottom: 16px; font-weight: 700; line-height: 1.2;
}
.h-slide-text {
  font-size: 0.86rem; color: var(--text-mid);
  line-height: 1.8; font-weight: 300;
}
.h-slide-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 30px;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  cursor: pointer; border: none; background: none;
  font-family: 'Jost'; transition: gap 0.2s;
}
.h-slide-link:hover { gap: 16px; }
.h-slide-link::after { content: '→'; }

/* Controles do slider */
.h-slider-controls {
  display: flex; align-items: center; gap: 20px;
  padding: 40px 80px 0;
}
.h-slider-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent; color: var(--gold);
  cursor: pointer; font-size: 1rem;
  transition: all 0.25s; display: flex;
  align-items: center; justify-content: center;
}
.h-slider-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.h-slider-dots { display: flex; gap: 8px; }
.h-dot {
  width: 24px; height: 2px; background: rgba(201,168,76,0.25);
  cursor: pointer; transition: all 0.3s;
  border: none;
}
.h-dot.active { background: var(--gold); width: 40px; }

/* ── NÚMEROS DA EMPRESA (animados) ── */
.h-numbers {
  background: var(--home-bg);
  padding: 90px 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative;
  transition: opacity 0.5s;
}
.h-numbers-slide {
  display: none; grid-template-columns: repeat(4,1fr);
  width: 100%;
}
.h-numbers-slide.active { display: contents; }
.h-numbers::before {
  content: '';
  position: absolute; top: 0; left: 80px; right: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3) 20%, rgba(201,168,76,0.3) 80%, transparent);
}

.h-number-item {
  padding: 0 30px;
  border-right: 1px solid rgba(201,168,76,0.12);
  position: relative;
}
.h-number-item:first-child { padding-left: 0; }
.h-number-item:last-child { border-right: none; }

.h-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900; color: var(--gold);
  line-height: 1;
}
.h-num-label {
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-mid); margin-top: 10px; font-weight: 400;
}
.h-num-desc {
  font-size: 0.82rem; color: var(--text-light);
  margin-top: 6px; font-weight: 300;
}

/* ── SOBRE A EMPRESA ── */
.h-about {
  background: var(--home-surface);
  padding: 100px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  background: var(--home-bg2);
  border-top: 1px solid rgba(201,168,76,0.1);
}

.h-about-left {}
.h-about-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.92rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 500;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.h-about-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.h-about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-dark); font-weight: 700;
  line-height: 1.15; margin-bottom: 28px;
}
.h-about-title em { color: var(--gold); font-style: italic; }

.h-about-text {
  font-size: 0.92rem; color: var(--text-mid);
  line-height: 1.9; font-weight: 300; margin-bottom: 20px;
}

.h-about-right {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gold-line);
}

.h-pillar {
  background: var(--home-surface);
  padding: 36px 28px;
  transition: background 0.3s;
}
.h-pillar:hover { background: var(--home-bg); }
.h-pillar-icon { font-size: 1.8rem; margin-bottom: 16px; }
.h-pillar-title {
  font-weight: 600; font-size: 0.88rem;
  color: var(--text-dark); margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.h-pillar-text {
  font-size: 0.78rem; color: var(--text-mid);
  line-height: 1.7; font-weight: 300;
}

/* ── DESTAQUES DE SEGMENTOS ── */
.h-segments {
  background: var(--home-bg);
  padding: 100px 80px;
  position: relative;
}
.h-segments-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--text-dark); margin-bottom: 8px;
}
.h-segments-sub {
  font-size: 0.82rem; color: var(--text-light); margin-bottom: 60px; letter-spacing: 0.5px;
}

.h-segs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gold-line);
}
.h-seg {
  background: var(--home-bg2);
  padding: 56px 44px;
  position: relative; overflow: hidden;
  cursor: pointer; transition: background 0.35s;
}
.h-seg:hover { background: var(--white); }

.h-seg-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 3px; color: var(--gold);
  margin-bottom: 32px;
}
.h-seg-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--text-dark);
  margin-bottom: 16px; line-height: 1.15;
}
.h-seg-text {
  font-size: 0.84rem; color: var(--text-mid);
  line-height: 1.8; font-weight: 300; margin-bottom: 36px;
}

.h-seg-arrow {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  transition: all 0.25s; background: transparent;
  cursor: pointer;
}
.h-seg:hover .h-seg-arrow {
  background: var(--gold); color: var(--home-bg);
  border-color: var(--gold);
}

/* Decoração geométrica no seg */
.h-seg::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  border-left: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

/* ── HOME FOOTER ── */
.h-footer {
  background: var(--home-bg2);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 32px 80px;
  display: flex; justify-content: space-between; align-items: center;
}
.h-footer-text {
  font-size: 0.72rem; color: var(--home-sub); letter-spacing: 0.5px;
}
.h-footer-text span { color: var(--gold); }

/* ══════════════════════════════════════════
   SHARED PAGE HERO (Construtora, Imobiliária, Marcenaria)
══════════════════════════════════════════ */
.pg-hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.pg-hero-bg { position: absolute; inset: 0; z-index: 0; }
.pg-bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.pg-bg-slide.active { opacity: 1; }
.pg-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10,8,4,0.80) 0%,
    rgba(10,8,4,0.52) 55%,
    rgba(10,8,4,0.22) 100%
  );
}
.pg-hero-slides {
  position: relative; z-index: 3;
  padding: 0 80px 80px; min-height: 300px;
}
.pg-hero-indicators {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 10px;
}

/* STATS bar shared */
.pg-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; transition: opacity 0.4s;
}
.pg-stats::before {
  content: '';
  position: absolute; top: 0; left: 80px; right: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
}

/* reuse c-stat for all pages */
#sec-construtora .pg-stats,
#sec-imobiliaria .pg-stats,
#sec-marcenaria  .pg-stats {
  background: var(--c-accent-bg);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

/* ══════════════════════════════════════════
   CONSTRUTORA — Off-white com bege suave
══════════════════════════════════════════ */
#sec-construtora { background: var(--c-bg); }

.c-hero {
  min-height: calc(90vh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--white) 55%, var(--c-bg2) 100%);
}

/* Padrão geométrico suave */
.c-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Bloco bege direito */
.c-hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 38%; height: 100%;
  background: linear-gradient(160deg, var(--c-bg2) 0%, var(--c-accent-bg) 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

/* Barra dourada esquerda */
.c-left-bar {
  position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* Texto técnico no bloco bege */
.c-hero-mono {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  z-index: 2;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 2px; color: rgba(201,168,76,0.5);
  line-height: 2.2; text-align: right;
}

.c-hero > .c-hero-content { position: relative; z-index: 1; }

.c-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 900;
  line-height: 1.04; color: var(--text-dark); margin-bottom: 26px;
}
.c-hero-title em { color: var(--gold); font-style: normal; }

.c-hero-sub {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.78; margin-bottom: 46px; max-width: 480px;
}

.c-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats */
.c-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--c-accent-bg);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.c-stat {
  padding: 44px 20px; text-align: center;
  border-right: 1px solid var(--gold-line);
}
.c-stat:last-child { border-right: none; }
  font-family: 'Playfair Display', serif; font-size: 3rem;
  color: var(--gold); font-weight: 900; line-height: 1;
}
  font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-light); margin-top: 8px;
}

/* Cards */
.c-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--gold-line);
  margin: 0;
}
.c-card {
  padding: 52px 44px;
  background: var(--white);
  transition: background 0.3s;
}
.c-card:hover { background: var(--c-bg); }
.c-card-line {
  width: 40px; height: 2px; background: var(--gold);
  margin-bottom: 28px;
}
.c-card-icon { font-size: 2rem; margin-bottom: 20px; }
.c-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  color: var(--c-text); margin-bottom: 12px;
}
.c-card-text { font-size: 0.87rem; color: var(--c-sub); line-height: 1.78; }

/* ══════════════════════════════════════════
   IMOBILIÁRIA — Bege dourado quente
══════════════════════════════════════════ */
#sec-imobiliaria { background: var(--i-bg); }

.i-hero {
  min-height: calc(90vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
}

.i-hero-left {
  padding: 80px; display: flex; flex-direction: column; justify-content: center;
  background: var(--i-bg);
  position: relative;
}
.i-hero-left::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-line), transparent);
}

.i-badge {
  display: inline-block; padding: 7px 18px;
  background: rgba(201,168,76,0.1); color: var(--gold-dark);
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 28px; align-self: flex-start;
  border: 1px solid rgba(201,168,76,0.25);
  font-family: 'DM Mono', monospace;
}

.i-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem); font-weight: 900;
  line-height: 1.06; color: var(--i-text); margin-bottom: 26px;
}
.i-hero-title em { color: var(--gold); font-style: italic; }

.i-hero-sub {
  font-size: 0.88rem; color: var(--i-sub); line-height: 1.78;
  margin-bottom: 46px; max-width: 420px;
}

.i-hero-right {
  background: var(--i-bg2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* Padrão diamante */
.i-hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg, transparent, transparent 28px,
      rgba(201,168,76,0.07) 28px, rgba(201,168,76,0.07) 29px
    );
}

.i-cards-wrap {
  display: flex; flex-direction: column; gap: 14px;
  padding: 44px; z-index: 1; width: 100%;
}
.prop-card {
  background: var(--white); border-radius: 0;
  padding: 24px 28px;
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 3px solid var(--gold);
  cursor: pointer; transition: box-shadow 0.25s, transform 0.25s;
}
.prop-card:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,0.18);
  transform: translateX(5px);
}
.prop-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; margin-bottom: 5px; color: var(--i-text);
}
.prop-card-info  { font-size: 0.76rem; color: var(--i-sub); }
.prop-card-price {
  font-weight: 700; font-size: 1rem; margin-top: 10px;
  color: var(--gold-dark); font-family: 'DM Mono', monospace;
}

.i-servicos {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0;
  background: var(--i-bg2);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.i-servico {
  padding: 50px 44px;
  border-right: 1px solid rgba(201,168,76,0.15);
  transition: background 0.3s;
}
.i-servico:last-child { border-right: none; }
.i-servico:hover { background: rgba(201,168,76,0.05); }
.i-servico-line { width: 36px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.i-servico-icon  { font-size: 2rem; margin-bottom: 16px; }
.i-servico-title {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  margin-bottom: 12px; color: var(--i-text);
}
.i-servico-text  { font-size: 0.87rem; color: var(--i-sub); line-height: 1.78; }

/* ══════════════════════════════════════════
   MARCENARIA — Bege escuro / terra
══════════════════════════════════════════ */
#sec-marcenaria { background: var(--m-bg); }

.m-hero {
  min-height: calc(90vh - var(--nav-h));
  padding: 80px; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--m-bg) 60%, var(--m-bg2) 100%);
}

/* Textura madeira simulada */
.m-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg, transparent, transparent 3px,
    rgba(106,80,64,0.02) 3px, rgba(106,80,64,0.02) 4px
  );
}

/* Círculo decorativo grande */
.m-hero::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  z-index: 0;
  box-shadow: inset 0 0 80px rgba(201,168,76,0.04);
}

/* Segundo círculo */
.m-circle2 {
  position: absolute; top: 20px; right: 20px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  z-index: 0;
}

.m-hero-emoji {
  position: absolute; top: 60px; right: 120px;
  font-size: 7rem; opacity: 0.15; z-index: 1; line-height: 1;
}

.m-hero > * { position: relative; z-index: 2; }

.m-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 900;
  line-height: 1.04; color: var(--m-text); margin-bottom: 26px;
}
.m-hero-title em { color: var(--gold); font-style: italic; }

.m-hero-sub {
  font-size: 0.88rem; color: var(--m-sub);
  line-height: 1.78; margin-bottom: 46px; max-width: 460px;
}

.m-produtos {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(106,80,64,0.12);
  border-top: 1px solid rgba(106,80,64,0.12);
  border-bottom: 1px solid rgba(106,80,64,0.12);
}
.m-produto {
  background: var(--m-bg); padding: 40px 32px;
  transition: background 0.3s;
}
.m-produto:hover { background: var(--white); }
.m-produto-icon  { font-size: 2.4rem; margin-bottom: 18px; }
.m-produto-title {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  margin-bottom: 10px; color: var(--m-text);
}
.m-produto-text  { font-size: 0.84rem; color: var(--m-sub); line-height: 1.7; }

.m-processo { padding: 70px 80px 80px; background: var(--m-bg2); }
.m-proc-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 50px;
}
.m-sec-title {
  font-family: 'Playfair Display', serif; font-size: 2.2rem;
  color: var(--m-text); margin-bottom: 8px;
}
.m-sec-sub { font-size: 0.85rem; color: var(--m-sub); }
.m-gold-line { width: 48px; height: 2px; background: var(--gold); margin-bottom: 16px; }

.m-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(106,80,64,0.1); }
.m-step {
  background: var(--m-bg); padding: 36px 28px;
  transition: background 0.3s;
}
.m-step:hover { background: var(--white); }
.m-step-num {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 3px; color: var(--gold);
  margin-bottom: 20px;
}
.m-step-title { font-weight: 600; font-size: 0.92rem; color: var(--m-text); margin-bottom: 8px; letter-spacing: 0.5px; }
.m-step-text  { font-size: 0.8rem; color: var(--m-sub); line-height: 1.7; }

/* ── OBRAS ENTREGUES ── */
.c-obras {
  background: var(--c-bg);
  padding: 100px 80px;
}
.c-obras-header {
  max-width: 600px;
  margin-bottom: 72px;
}
.c-obras-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--c-text); font-weight: 900;
  line-height: 1.15; margin-bottom: 18px;
}
.c-obras-title em { color: var(--gold); font-style: italic; }
.c-obras-sub {
  font-size: 0.9rem; color: var(--c-sub);
  line-height: 1.8; max-width: 520px;
}

.c-obra-item {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--gold-line);
}
.c-obra-item:last-child {
  border-bottom: none;
  margin-bottom: 0; padding-bottom: 0;
}
.c-obra-label {
  margin-bottom: 28px;
}
.c-obra-tipo {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}
.c-obra-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--c-text);
}

.c-obra-fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.c-obra-foto-grande {
  grid-column: span 1;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.c-obra-foto-grande:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.c-obra-foto-pequena {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.c-obra-video {
  grid-column: span 2;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: #000;
}
.c-obra-video video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.c-obra-foto-grande img,
.c-obra-foto-pequena img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.95);
}
.c-obra-foto-grande:hover img,
.c-obra-foto-pequena:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

@media (max-width: 900px) {
  .c-obras { padding: 60px 24px; }
  .c-obra-fotos { grid-template-columns: 1fr 1fr; }
  .c-obra-foto-grande:first-child { grid-column: span 2; }
}
@media (max-width: 540px) {
  .c-obra-fotos { grid-template-columns: 1fr; }
  .c-obra-foto-grande:first-child { grid-column: span 1; }
}

.site-footer {
  text-align: center; padding: 32px;
  border-top: 1px solid var(--gold-line);
  color: #9a8a6a; font-size: 0.72rem; letter-spacing: 1px;
}
#sec-construtora .site-footer { background: var(--c-bg2); }
#sec-imobiliaria .site-footer { background: var(--i-bg2); }
#sec-marcenaria  .site-footer { background: var(--m-bg2); }
.site-footer span { color: var(--gold); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 16px; }
  .tab-btn { padding: 8px 10px; font-size: 0.65rem; letter-spacing: 1.5px; }
  .nav-cta { display: none; }

  .h-hero { padding: 40px 24px 60px; }
  .h-slider-wrap { padding: 0 24px; }
  .h-slide { min-width: calc(80% - 14px); }
  .h-slides-header { padding: 0 24px 40px; }
  .h-slider-controls { padding: 28px 24px 0; }
  .h-numbers { grid-template-columns: 1fr 1fr; padding: 60px 24px; gap: 40px; }
  .h-number-item { border-right: none; padding: 0; }
  .h-about { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .h-about-right { grid-template-columns: 1fr 1fr; }
  .h-segs-grid { grid-template-columns: 1fr; }
  .h-segments { padding: 60px 24px; }
  .h-footer { padding: 24px; flex-direction: column; gap: 8px; text-align: center; }
  .h-portfolio-banner { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .h-portfolio-right { grid-template-columns: 1fr 1fr; }
  .h-features { padding: 60px 24px; }
  .h-features-grid { grid-template-columns: 1fr; }
  .h-quote-section { height: 300px; }
  .h-quote-content { padding: 0 24px; }
  .h-faq { padding: 60px 24px; }
  .h-faq-grid { grid-template-columns: 1fr; }
  .h-contact { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .h-hero-indicators { bottom: 20px; }
  

  .pg-hero-slides { padding: 0 24px 60px; }
  .pg-hero-indicators { bottom: 20px; }
  .pg-stats { grid-template-columns: repeat(2,1fr); }
  
  .h-scroll { display: none; }
  .h-year { display: none; }
  .c-hero-mono { display: none; }
  .c-stats { grid-template-columns: repeat(2,1fr); }
  .c-cards { grid-template-columns: repeat(3,1fr); }

  .i-hero { grid-template-columns: 1fr; }
  .i-hero-left { padding: 44px 24px; }
  .i-hero-right { min-height: 280px; }
  .i-servicos { grid-template-columns: 1fr; }

  .m-produtos { grid-template-columns: repeat(2,1fr); }
  .m-processo { padding: 44px 24px 60px; }
  .m-steps { grid-template-columns: 1fr 1fr; gap: 1px; }
  .m-circle2 { display: none; }
}
@media (max-width: 540px) {
  .m-steps { grid-template-columns: 1fr; }
  .m-produtos { grid-template-columns: 1fr; }
  .c-stats { grid-template-columns: 1fr 1fr; }
  .h-about-right { grid-template-columns: 1fr; }
}

/* ── GALERIA ACABAMENTO EM PEDRA ── */
.c-pedra-galeria {
  background: var(--c-bg);
  padding: 70px 80px 90px;
  border-top: 1px solid var(--gold-line);
}
.c-pedra-header {
  text-align: center;
  margin-bottom: 48px;
}
.c-pedra-sub {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.c-pedra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 6px;
}
.c-pedra-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.c-pedra-large {
  grid-column: span 2;
}
.c-pedra-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: brightness(0.92);
}
.c-pedra-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.c-pedra-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,4,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.c-pedra-item:hover .c-pedra-overlay {
  opacity: 1;
}
.c-pedra-overlay span {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}
@media (max-width: 900px) {
  .c-pedra-galeria { padding: 50px 24px 60px; }
  .c-pedra-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .c-pedra-large { grid-column: span 2; }
}
@media (max-width: 540px) {
  .c-pedra-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .c-pedra-large { grid-column: span 1; }
}


/* ── SLIDES NA CONSTRUTORA ── */
.c-slides-section {
  background: var(--c-bg2);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

/* ── PEDRA INFO BLOCKS ── */
.c-pedra-grid {
  margin-bottom: 0;
}
.c-pedra-grid-2col {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 320px;
}
.c-pedra-info-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 56px 0 52px;
  border-bottom: 1px solid var(--gold-line);
  max-width: 860px;
  margin: 0 auto;
}
.c-pedra-info-block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.c-pedra-info-reverse {
  flex-direction: row-reverse;
  text-align: right;
}
.c-pedra-info-num {
  font-family: 'DM Mono', monospace;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-line);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}
.c-pedra-info-content {
  flex: 1;
}
.c-pedra-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 16px;
  line-height: 1.3;
}
.c-pedra-info-text {
  font-size: 0.875rem;
  color: var(--c-sub);
  line-height: 1.9;
  font-weight: 300;
}
@media (max-width: 900px) {
  .c-pedra-grid-2col { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .c-pedra-info-block { gap: 24px; padding: 40px 0; }
  .c-pedra-info-num { font-size: 2rem; }
  .c-pedra-info-title { font-size: 1.2rem; }
}
@media (max-width: 540px) {
  .c-pedra-grid-2col { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .c-pedra-info-block, .c-pedra-info-reverse { flex-direction: column; gap: 16px; text-align: left; }
  .c-pedra-info-num { font-size: 1.6rem; }
}

/* ══════════════════════════════════════
   LIGHTBOX GLOBAL
══════════════════════════════════════ */
#lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8,6,3,0.96);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: lbFadeIn 0.25s ease;
}
#lb-overlay.active { display: flex; }
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#lb-img-wrap {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  animation: lbZoomIn 0.28s cubic-bezier(0.25,0.46,0.45,0.94);
  cursor: default;
}
@keyframes lbZoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
#lb-bg-img {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  display: none;
}
#lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  background: rgba(8,6,3,0.6);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10001;
}
#lb-close:hover { background: var(--gold); color: #1a1712; border-color: var(--gold); }
#lb-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
  white-space: nowrap;
  pointer-events: none;
}
#lb-nav-prev,
#lb-nav-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(8,6,3,0.5);
  border: 1.5px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10001;
}
#lb-nav-prev { left: 18px; }
#lb-nav-next { right: 18px; }
#lb-nav-prev:hover,
#lb-nav-next:hover { background: var(--gold); color: #1a1712; border-color: var(--gold); }
#lb-nav-prev.hidden, #lb-nav-next.hidden { display: none; }
/* tornar clicável todas as imagens */
.lb-trigger { cursor: zoom-in !important; }
