/* ════════════════════════════════════════
   DIAS & COSTA — STYLESHEET PRINCIPAL
   Versão: 1.0
════════════════════════════════════════ */

/* ── VARIÁVEIS ── */
:root {
  --gold:       #C4A660;
  --gold-light: #D4BA7A;
  --gold-dim:   rgba(196,166,96,0.18);
  --gold-pale:  rgba(196,166,96,0.07);
  --dark:       #000000;
  --dark2:      #080808;
  --dark3:      #0f0f0f;
  --warm:       #111111;
  --border:     #1e1e1e;
  --text:       #C3C3C3;
  --muted:      #7a7a7a;
  --cream:      #E8E6E6;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: 'Jost', sans-serif; }

/* ════════════════════════════════════════
   NAVEGAÇÃO
════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,166,96,0.12);
  transition: background 0.3s;
}
.nav-top {
  width: 100%; max-width: 1100px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  line-height: 0;
}
.nav-logo em { color: var(--gold); font-style: normal; }

.nav-cta {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dark);
  background: var(--gold); border: none;
  padding: 9px 20px; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

/* barra de abas centralizada */
.nav-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(196,166,96,0.08);
}
.nav-tab {
  padding: 12px 36px;
  background: none; border: none;
  border-bottom: 2px solid transparent;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-tab:hover { color: var(--text); }
.nav-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* offset para o nav duplo (logo + abas) */
.nav-offset { padding-top: 144px; }

/* ════════════════════════════════════════
   BOTÕES
════════════════════════════════════════ */
.btn-primary {
  background: var(--gold); color: var(--dark);
  border: none; padding: 15px 36px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  background: none; color: var(--muted);
  border: 1px solid var(--border); padding: 15px 36px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-whatsapp {
  width: 100%;
  background: #25D366; color: #0a0a0a;
  border: none; padding: 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-whatsapp:hover { background: #22c55e; }

.btn-ligar {
  width: 100%;
  background: none; color: var(--muted);
  border: 1px solid var(--border); padding: 12px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.2s; margin-top: 8px;
}
.btn-ligar:hover { border-color: var(--gold); color: var(--gold); }

/* ════════════════════════════════════════
   COMPONENTES REUTILIZÁVEIS
════════════════════════════════════════ */
.gold-div {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,166,96,0.4) 30%, rgba(196,166,96,0.6) 50%, rgba(196,166,96,0.4) 70%, transparent);
}

.section-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.eyebrow-line { width: 32px; height: 1px; background: var(--gold); opacity: 0.6; }
.eyebrow-text {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 300;
  color: var(--cream); line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: var(--muted); letter-spacing: 0.08em;
}
.footer-brand em { color: var(--gold); font-style: normal; }
.footer-copy { font-size: 11px; color: #2a2a2a; letter-spacing: 0.08em; }

/* ════════════════════════════════════════
   ANIMAÇÕES
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.anim   { animation: fadeUp 0.7s ease both; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.2s; }
.anim-d3 { animation-delay: 0.3s; }
.anim-d4 { animation-delay: 0.4s; }
.anim-d5 { animation-delay: 0.5s; }

/* ════════════════════════════════════════
   INDEX — HERO
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 48px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, #000000 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 70%, #000000 0%, transparent 55%),
    linear-gradient(120deg, #000000 0%, #000000 40%, #000000 70%, #000000 100%);
}
.hero-lines {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-lines::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 48px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(196,166,96,0.15) 30%, rgba(196,166,96,0.2) 60%, transparent);
}
.hero-deco {
  position: absolute; bottom: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(196,166,96,0.05); pointer-events: none;
}
.hero-deco2 {
  position: absolute; bottom: -40px; right: -40px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(196,166,96,0.08); pointer-events: none;
}
.hero-inner {
  position: relative; max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-label {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.hero-label-line { width: 40px; height: 1px; background: var(--gold); opacity: 0.7; }
.hero-label-text {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px); font-weight: 300;
  line-height: 1.08; color: var(--cream);
  margin-bottom: 28px; letter-spacing: 0.01em;
}
.hero-h1 em { font-style: italic; color: var(--gold); display: block; }
.hero-p {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--muted); margin-bottom: 44px; max-width: 400px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-stats { display: flex; flex-direction: column; gap: 2px; }
.stat-card {
  background: rgba(196,166,96,0.05);
  border: 1px solid rgba(196,166,96,0.12);
  padding: 22px 28px;
  transition: border-color 0.3s;
}
.stat-card:hover { border-color: rgba(196,166,96,0.3); }
.stat-card + .stat-card { border-top: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint span { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(196,166,96,0.4); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, rgba(196,166,96,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* ════════════════════════════════════════
   PORTFÓLIO — GRID
════════════════════════════════════════ */
.portfolio-wrap {
  padding: 60px 48px 100px;
  max-width: 1200px; margin: 0 auto;
}
.emp-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}
.emp-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  overflow: hidden; transition: border-color 0.3s;
  cursor: pointer; display: block; text-decoration: none;
}
.emp-card:hover { border-color: rgba(196,166,96,0.4); }
.emp-card:hover .emp-arrow { transform: translateX(4px); }

.emp-img {
  height: 220px; position: relative; overflow: hidden;
  background: var(--warm);
  display: flex; align-items: center; justify-content: center;
}
.emp-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.emp-img-placeholder { font-size: 64px; opacity: 0.08; }
.emp-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--dark3) 100%);
  opacity: 0.7; transition: opacity 0.3s;
}
.emp-card:hover .emp-img-overlay { opacity: 0.5; }
.emp-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--dark);
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 4px 10px;
}
.emp-badge.mcmv {
  background: var(--dark3); color: var(--gold);
  border: 1px solid rgba(196,166,96,0.3);
}
.emp-body { padding: 24px; }
.emp-location {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.emp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--cream);
  margin-bottom: 10px; line-height: 1.2;
}
.emp-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.emp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.emp-tag { font-size: 11px; color: var(--muted); border: 1px solid var(--border); padding: 4px 10px; }
.emp-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.emp-cta { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.emp-arrow { color: var(--gold); font-size: 18px; transition: transform 0.2s; }

/* ════════════════════════════════════════
   SOBRE
════════════════════════════════════════ */
.sobre-hero {
  padding: 60px 48px 80px;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.sobre-p { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.creci {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 10px;
  border: 1px solid var(--border); padding: 10px 18px;
}
.creci-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.creci-val { font-size: 13px; font-weight: 500; color: var(--gold); letter-spacing: 0.08em; }

.value-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(196,166,96,0.04); border: 1px solid var(--border);
  padding: 18px 20px; transition: border-color 0.3s;
}
.value-item:hover { border-color: rgba(196,166,96,0.25); }
.value-item + .value-item { border-top: none; }
.value-icon { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.value-title { font-size: 13px; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
.value-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2px;
  margin-top: 40px;
}
.team-card {
  background: var(--dark3); border: 1px solid var(--border); padding: 28px 24px;
  text-align: center; transition: border-color 0.3s;
}
.team-card:hover { border-color: rgba(196,166,96,0.3); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--warm); border: 1px solid var(--border);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; opacity: 0.5;
}
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--cream); margin-bottom: 4px; }
.team-role { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

/* ════════════════════════════════════════
   LANDING PAGE — PALESTRA LIFE
════════════════════════════════════════ */
.lp-hero {
  min-height: 100vh; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding: 0 48px 80px;
}
.lp-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 60%, #000000 100%),
    linear-gradient(120deg, #000000 0%, #000000 40%, #000000 100%);
}
.lp-hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(196,166,96,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,166,96,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 80%, black 0%, transparent 70%);
}
.lp-hero-inner {
  position: relative; max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: flex-end;
}
.lp-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.lp-breadcrumb a, .lp-breadcrumb-link {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s; background: none; border: none; cursor: pointer;
}
.lp-breadcrumb a:hover, .lp-breadcrumb-link:hover { color: var(--gold); }
.lp-breadcrumb-sep { color: var(--border); }
.lp-breadcrumb-current { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

.lp-status {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,166,96,0.1); border: 1px solid rgba(196,166,96,0.3);
  padding: 6px 14px; margin-bottom: 24px;
}
.lp-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; }
.lp-status-text { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.lp-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px); font-weight: 300;
  color: var(--cream); line-height: 1.0; margin-bottom: 16px;
}
.lp-h1 em { font-style: italic; color: var(--gold); display: block; }
.lp-tagline { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.7; margin-bottom: 40px; max-width: 480px; }

.lp-quick-facts { display: flex; border: 1px solid var(--border); border-right: none; }
.lp-fact { border-right: 1px solid var(--border); padding: 16px 24px; transition: background 0.2s; }
.lp-fact:hover { background: rgba(196,166,96,0.05); }
.lp-fact-val { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--gold); line-height: 1; }
.lp-fact-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.lp-contact-card {
  background: rgba(0,0,0,0.97); border: 1px solid rgba(196,166,96,0.25);
  padding: 36px 28px; backdrop-filter: blur(8px);
}
.lp-card-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--cream); margin-bottom: 8px; }
.lp-card-sub { font-size: 12px; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }
.lp-card-div { height: 1px; background: var(--border); margin-bottom: 24px; }
.lp-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.lp-contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.lp-contact-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.lp-contact-val { font-size: 13px; color: var(--text); font-weight: 400; }

.lp-section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.lp-section-bg { padding: 80px 0; background: var(--dark2); }
.lp-section-bg .lp-section { padding-top: 0; padding-bottom: 0; }

.dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.dif-card { background: var(--dark3); border: 1px solid var(--border); padding: 32px 28px; transition: border-color 0.3s; }
.dif-card:hover { border-color: rgba(196,166,96,0.3); }
.dif-icon { font-size: 28px; margin-bottom: 16px; }
.dif-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--cream); margin-bottom: 10px; }
.dif-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

.planta-section { background: var(--warm); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 48px; }
.planta-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.planta-vis {
  aspect-ratio: 1; background: var(--dark3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  overflow: hidden;
}
.planta-vis img { width: 100%; height: 100%; object-fit: contain; }
.planta-vis-icon { font-size: 40px; opacity: 0.15; }
.planta-details { display: flex; flex-direction: column; gap: 0; }
.planta-row { display: flex; justify-content: space-between; align-items: center; background: var(--dark3); border: 1px solid var(--border); padding: 16px 20px; transition: border-color 0.3s; }
.planta-row:hover { border-color: rgba(196,166,96,0.25); }
.planta-row + .planta-row { border-top: none; }
.planta-item-name { font-size: 13px; color: var(--muted); }
.planta-item-val { font-size: 14px; color: var(--cream); font-weight: 400; }

.loc-grid { display: grid; grid-template-columns: 15fr 1fr; gap: 2px; max-width: 900px; margin: 0 auto; }
.loc-map { background: var(--dark3); border: 1px solid var(--border); min-height: 400px; display: flex; align-items: stretch; overflow: hidden; width: 100%;}
.loc-map iframe { width: 100%; height: 100%; border: none; }
.loc-map-icon { font-size: 36px; opacity: 0.15; }
.loc-map-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.loc-points { background: var(--dark3); border: 1px solid var(--border); padding: 32px; border-left: none; }
.loc-point { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.loc-point:last-child { margin-bottom: 0; }
.loc-point-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--gold); line-height: 1; min-width: 32px; opacity: 0.6; }
.loc-point-title { font-size: 13px; font-weight: 500; color: var(--cream); margin-bottom: 3px; }
.loc-point-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

.lp-cta-section { background: var(--warm); border-top: 1px solid var(--border); padding: 80px 48px; text-align: center; }
.lp-cta-inner { max-width: 560px; margin: 0 auto; }
.lp-cta-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 16px; }
.lp-cta-h em { font-style: italic; color: var(--gold); }
.lp-cta-p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.lp-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   FOOTER CTA (HOME / SOBRE)
════════════════════════════════════════ */
.footer-cta { padding: 100px 48px; text-align: center; position: relative; overflow: hidden; }
.footer-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(196,166,96,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta-inner { position: relative; max-width: 600px; margin: 0 auto; }
.footer-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 20px; }
.footer-cta h2 em { font-style: italic; color: var(--gold); }
.footer-cta p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; }
.footer-cities { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.city-item { text-align: center; }
.city-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--cream); }
.city-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ════════════════════════════════════════
   RESPONSIVO
════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-tab { padding: 12px 20px; }
  .hero { padding: 140px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-wrap { padding: 40px 20px 80px; }
  .sobre-hero { padding: 40px 20px 60px; grid-template-columns: 1fr; gap: 48px; }
  .footer-cta { padding: 60px 20px; }
  footer { padding: 20px; flex-direction: column; gap: 8px; text-align: center; }
  .lp-hero { padding: 0 20px 60px; }
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-contact-card { display: none; }
  .lp-section { padding: 60px 20px; }
  .lp-section-bg { padding: 60px 0; }
  .dif-grid { grid-template-columns: 1fr; }
  .planta-section { padding: 60px 20px; }
  .planta-inner { grid-template-columns: 1fr; gap: 40px; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-points { border-left: 1px solid var(--border); border-top: none; }
  .lp-cta-section { padding: 60px 20px; }
  .lp-quick-facts { flex-wrap: wrap; }
}
.gal-item {
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: zoom-in;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s;
}
.gal-item:hover img { transform: scale(1.05); }


/* ── CAROUSEL DE EMPREENDIMENTOS ── */
.carousel-outer {
  overflow: hidden;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  opacity: 1;
  transform: translateY(0);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-btn {
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1;
}
.carousel-btn:hover {
  border-color: var(--gold);
  background: rgba(196,166,96,0.06);
}

.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .carousel-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .carousel-controls {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}


/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 760px;
  background: var(--dark3);
  border: 1px solid rgba(196,166,96,0.22);
  padding: 20px 24px;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
  pointer-events: none;
}
.cookie-banner.cookie-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.cookie-hide {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
  pointer-events: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 240px;
}
.cookie-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.cookie-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.cookie-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.cookie-link:hover { color: var(--gold-light); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn-recusar {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 9px 18px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-recusar:hover {
  border-color: var(--muted);
  color: var(--text);
}

.cookie-btn-aceitar {
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-aceitar:hover { background: var(--gold-light); }

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    width: 100%;
    max-width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .cookie-banner.cookie-visible {
    transform: translateX(0) translateY(0);
  }
  .cookie-banner.cookie-hide {
    transform: translateX(0) translateY(100%);
  }
  .cookie-inner {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}


/* ── FILTRO DE CIDADE (portfólio) ── */
.filtros-cidade {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filtro-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 20px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filtro-btn:hover {
  border-color: rgba(196,166,96,0.4);
  color: var(--text);
}
.filtro-btn.active {
  background: rgba(196,166,96,0.1);
  border-color: var(--gold);
  color: var(--gold);
}


/* ── PLAYER DE VÍDEO DO IMÓVEL ── */
.video-section {
  padding: 60px 48px;
  background: var(--dark);
  max-width: 1200px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  background: #000;
  border: 1px solid var(--border);
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.video-caption {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-top: none;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.video-caption strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .video-section { padding: 40px 20px; }
}