/* ===================================================== */
/* MARA SENA · LIVUS JARAGUÁ — IDENTIDADE FOLHA           */
/* Paleta: verde floresta + sage + areia + âmbar          */
/* Tipografia: Fraunces (display) + Inter (corpo)         */
/* ===================================================== */

:root {
  /* paleta */
  --c-forest: #2D4A3E;
  --c-forest-dark: #1F352B;
  --c-sage: #7A9171;
  --c-sage-light: #B5C3AB;
  --c-sand: #F4EDE4;
  --c-sand-dark: #E8DECF;
  --c-amber: #C8954C;
  --c-amber-dark: #A8783A;
  --c-text: #1A2E26;
  --c-text-muted: #5A5448;
  --c-text-light: #7A7468;
  --c-bg: #FAFAF7;
  --c-bg-cream: #F8F2E8;
  --c-white: #FFFFFF;
  --c-line: #E8DFCF;
  --c-whatsapp: #25D366;
  --c-whatsapp-hover: #1EBE5A;

  /* tipografia */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* tamanhos */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* outros */
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(20, 30, 25, 0.06);
  --shadow-md: 0 8px 32px rgba(20, 30, 25, 0.10);
  --shadow-lg: 0 20px 60px rgba(20, 30, 25, 0.18);
  --transition: 0.25s ease;
  --header-h: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 800px; }

.section { padding: clamp(56px, 8vw, 96px) 0; position: relative; }
.section-light { background: var(--c-bg); }
.section-cream { background: var(--c-bg-cream); }
.section-dark { background: var(--c-forest); color: var(--c-sand); }
.section-amber { background: linear-gradient(135deg, var(--c-amber) 0%, #B0823F 100%); color: var(--c-forest); }
.section-tour { background: var(--c-forest-dark); color: var(--c-sand); }
.section-final { background: var(--c-forest); color: var(--c-sand); text-align: center; padding: clamp(72px, 10vw, 120px) 0; }

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; color: inherit; }
h1 { font-size: clamp(36px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4.5vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h2 em, h1 em { font-style: italic; color: var(--c-amber); font-weight: 400; }
.section-dark h2 em, .section-tour h2 em, .section-final h2 em { color: var(--c-amber); }
.display { letter-spacing: -0.025em; }

p { color: inherit; line-height: 1.65; }
.section-dark p, .section-tour p, .section-final p { color: rgba(244, 237, 228, 0.85); }

/* ===== SECTION HEAD ===== */
.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 12px; font-size: 17px; color: var(--c-text-muted); }
.section-dark .section-head p, .section-tour .section-head p { color: rgba(244, 237, 228, 0.8); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--c-amber); }

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:focus-visible { outline: 3px solid var(--c-amber); outline-offset: 2px; }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-xl { padding: 22px 40px; font-size: 18px; }

.btn-primary {
  background: var(--c-amber);
  color: var(--c-forest);
}
.btn-primary:hover { background: var(--c-amber-dark); color: var(--c-sand); }

.btn-secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn-secondary:hover { background: currentColor; color: var(--c-forest); }

.section-dark .btn-secondary:hover { background: var(--c-sand); color: var(--c-forest); }

/* WhatsApp specific */
.btn-whatsapp {
  background: var(--c-whatsapp);
  color: var(--c-white);
  border-color: var(--c-whatsapp);
}
.btn-whatsapp:hover { background: var(--c-whatsapp-hover); color: var(--c-white); border-color: var(--c-whatsapp-hover); }
.btn-primary.btn-whatsapp { background: var(--c-amber); color: var(--c-forest); border-color: transparent; }
.btn-primary.btn-whatsapp:hover { background: var(--c-amber-dark); color: var(--c-sand); }
.btn-secondary.btn-whatsapp { background: transparent; color: inherit; border-color: currentColor; }
.btn-secondary.btn-whatsapp:hover { background: var(--c-whatsapp); color: var(--c-white); border-color: var(--c-whatsapp); }

/* CTA helper */
.section-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-line {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  color: inherit;
  font-weight: 400;
}

/* ===================================================== */
/* HEADER                                                  */
/* ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: 0 2px 12px rgba(20, 30, 25, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.brand { display: flex; align-items: center; color: var(--c-forest); }
.brand-logo { height: 42px; width: auto; }

.nav-desktop { display: flex; gap: 28px; }
.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  transition: color 0.2s;
  position: relative;
}
.nav-desktop a:hover { color: var(--c-amber); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-tel {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
}
.btn-tel svg { color: var(--c-amber); }
.header-actions .btn-whatsapp { padding: 10px 18px; font-size: 13px; }

.btn-menu {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.btn-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-forest);
  transition: var(--transition);
  border-radius: 2px;
}
.btn-menu.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-menu.active span:nth-child(2) { opacity: 0; }
.btn-menu.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  padding: 16px 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.nav-mobile.open { display: flex; max-height: 500px; padding: 16px 24px; }
.nav-mobile a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-text);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ===================================================== */
/* HERO                                                    */
/* ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 32px) 0 64px;
  overflow: hidden;
  color: var(--c-sand);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 53, 43, 0.55) 0%, rgba(31, 53, 43, 0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-forest);
  background: var(--c-amber);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--c-sand);
}
.hero-title em { color: var(--c-amber); font-style: italic; }
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(244, 237, 228, 0.92);
  margin-bottom: 36px;
  max-width: 640px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--c-sand); font-weight: 600; }
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-foot {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(244, 237, 228, 0.7);
}

/* ===================================================== */
/* BENEFÍCIOS MCMV                                         */
/* ===================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-sage-light); }
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--c-forest);
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 { margin-bottom: 10px; color: var(--c-forest); }
.benefit-card p { font-size: 14px; color: var(--c-text-muted); line-height: 1.6; }

/* ===================================================== */
/* TWO COLUMN LAYOUT                                       */
/* ===================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse .two-col-text { order: 2; }
.two-col.reverse .two-col-img { order: 1; }
.two-col-text h2 { margin-bottom: 20px; }
.two-col-text p { margin-bottom: 16px; font-size: 17px; line-height: 1.7; }
.two-col-img { position: relative; }
.two-col-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.two-col-img.round img { border-radius: 50%; aspect-ratio: 1; object-fit: cover; }

.quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: rgba(244, 237, 228, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(244, 237, 228, 0.15);
}
.section-light .quick-facts { background: var(--c-sand); border-color: var(--c-line); }
.fact strong { display: block; font-family: var(--f-display); font-size: 20px; color: var(--c-amber); margin-bottom: 2px; }
.fact span { font-size: 13px; opacity: 0.8; line-height: 1.4; }

/* mara photo placeholder */
.mara-photo-placeholder {
  aspect-ratio: 1;
  background: var(--c-sand);
  border-radius: 50%;
  border: 2px dashed var(--c-sage-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--c-text-light);
  text-align: center;
  padding: 24px;
}
.mara-photo-placeholder span { font-size: 48px; }
.mara-photo-placeholder p { font-size: 13px; line-height: 1.4; }
.mara-features { list-style: none; margin: 24px 0; }
.mara-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid var(--c-line);
}
.mara-features li:last-child { border-bottom: none; }
.mara-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 16px;
  background: var(--c-amber);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

/* ===================================================== */
/* APARTAMENTOS - TABS GRANDES                             */
/* ===================================================== */
.apto-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.apto-tab {
  position: relative;
  display: block;
  padding: 28px 32px;
  padding-right: 76px;
  background: var(--c-white);
  border: 2px solid var(--c-line);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  box-shadow: var(--shadow);
}
.apto-tab .apto-tab-size {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 40px);
  color: var(--c-forest);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.apto-tab .apto-tab-desc {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.apto-tab .apto-tab-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-forest);
  transition: var(--transition);
}
.apto-tab .apto-tab-arrow svg { width: 18px; height: 18px; }
.apto-tab:hover {
  border-color: var(--c-sage);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.apto-tab:hover .apto-tab-arrow { background: var(--c-sage); color: var(--c-white); }
.apto-tab.active {
  background: var(--c-forest);
  border-color: var(--c-forest);
}
.apto-tab.active .apto-tab-size { color: var(--c-sand); }
.apto-tab.active .apto-tab-desc { color: var(--c-amber); }
.apto-tab.active .apto-tab-arrow {
  background: var(--c-amber);
  color: var(--c-forest);
}
.apto-tab.active .apto-tab-arrow svg {
  transform: translateX(2px);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* === GRID DE RENDERS 3D === */
.apto-3d-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.apto-3d-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: none;
  padding: 0;
  background: var(--c-sand);
  transition: var(--transition);
}
.apto-3d-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.apto-3d-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.apto-3d-item:hover img { transform: scale(1.06); }
.apto-3d-item:hover .apto-3d-label { background: rgba(31, 53, 43, 0.95); }
.apto-3d-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(31, 53, 43, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--c-sand);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
  transition: var(--transition);
}

/* === DETAILS LAYOUT (FEATURES + PLANTA CTA) === */
.apto-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 16px;
  align-items: stretch;
}
.apto-info h3 {
  color: var(--c-forest);
  margin-bottom: 12px;
  font-size: clamp(22px, 2.6vw, 28px);
}
.apto-intro {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--c-forest);
  margin-bottom: 20px;
  line-height: 1.5;
}
.apto-features {
  list-style: none;
  margin-bottom: 8px;
}
.apto-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-line);
}
.apto-features li:last-child { border-bottom: none; }
.apto-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-sage);
}

/* === PLANTA CTA — BOTÃO DESTACADO === */
.apto-planta-cta {
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-forest-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--c-sand);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.apto-planta-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 149, 76, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.apto-planta-preview {
  width: 140px;
  height: 140px;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 10px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.apto-planta-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.apto-planta-text {
  flex: 1;
  position: relative;
  z-index: 1;
}
.planta-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber);
  font-weight: 600;
  margin-bottom: 6px;
}
.apto-planta-text h4 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--c-sand);
  margin-bottom: 18px;
  font-weight: 400;
  line-height: 1.2;
}
.planta-zoom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--c-amber);
  color: var(--c-forest);
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.planta-zoom:hover {
  background: var(--c-sand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.planta-zoom svg { width: 18px; height: 18px; }

/* === FICHA TÉCNICA (no Empreendimento section) === */
.ficha-tecnica {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 64px;
  padding: 36px 24px;
  background: rgba(244, 237, 228, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 237, 228, 0.15);
}
.ficha-stat { text-align: center; }
.ficha-stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 48px);
  color: var(--c-amber);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.ficha-stat strong sup {
  font-size: 0.45em;
  margin-left: 2px;
  vertical-align: super;
  font-weight: 500;
}
.ficha-stat span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(244, 237, 228, 0.75);
  text-transform: uppercase;
  font-weight: 500;
}
.ficha-disclaimer {
  margin-top: 24px;
  text-align: center;
  font-size: 13px !important;
  color: rgba(244, 237, 228, 0.55) !important;
  letter-spacing: 0.02em;
  line-height: 1.6 !important;
}

/* ===================================================== */
/* TOUR 360                                                */
/* ===================================================== */
.tour-frame {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-forest-dark);
  box-shadow: var(--shadow-lg);
}
.tour-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.tour-fallback-msg {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--c-forest);
  color: var(--c-sand);
  padding: 32px;
  text-align: center;
}
.tour-frame.tour-fallback iframe { display: none; }
.tour-frame.tour-fallback .tour-fallback-msg { display: flex; }

/* ===================================================== */
/* GALERIA                                                 */
/* ===================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter {
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--c-line);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: var(--transition);
}
.filter:hover { border-color: var(--c-sage); color: var(--c-forest); }
.filter.active { background: var(--c-forest); border-color: var(--c-forest); color: var(--c-sand); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: none;
  background: var(--c-sand);
  transition: var(--transition);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 53, 43, 0.4) 100%);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ===================================================== */
/* LAZER                                                   */
/* ===================================================== */
.lazer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.lazer-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  padding: 0;
  font: inherit;
  text-align: left;
  width: 100%;
  display: block;
  position: relative;
}
.lazer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lazer-card:focus-visible { outline: 3px solid var(--c-amber); outline-offset: 3px; }
.lazer-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.lazer-card:hover img { transform: scale(1.04); }
.lazer-card .lazer-caption {
  display: block;
  padding: 14px 16px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--c-forest);
  text-align: center;
  background: var(--c-white);
  position: relative;
}
.lazer-card::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(244, 237, 228, 0.95);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D4A3E' stroke-width='2'><circle cx='11' cy='11' r='8'/><path d='m21 21-4.35-4.35M11 8v6M8 11h6'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.lazer-card:hover::after { opacity: 1; }

.lazer-extras-wrap {
  margin-top: 40px;
  text-align: center;
}
.lazer-extras-title {
  font-family: var(--f-display);
  font-size: 19px;
  font-style: italic;
  color: var(--c-forest);
  margin-bottom: 18px;
  font-weight: 400;
}
.lazer-extras {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lazer-extras li {
  padding: 10px 20px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-forest);
}
.lazer-extras li::before { content: '✓ '; color: var(--c-sage); font-weight: 700; }

/* === LAZER BANNER FULL-WIDTH === */
.lazer-banner {
  position: relative;
  height: clamp(280px, 42vw, 520px);
  margin: 56px 0;
  overflow: hidden;
}
.lazer-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lazer-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,53,43,0.15) 0%, rgba(31,53,43,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 5vw, 56px);
}
.lazer-banner-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 3.2vw, 36px);
  color: var(--c-sand);
  max-width: 720px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ===================================================== */
/* VÍDEOS                                                  */
/* ===================================================== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-forest);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.video-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  transition: transform 0.4s ease;
}
.video-card:hover img { transform: scale(1.04); opacity: 1; }
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(244, 237, 228, 0.95);
  color: var(--c-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.video-card:hover .video-play { background: var(--c-amber); transform: translate(-50%, -50%) scale(1.1); }
.video-play svg { width: 24px; height: 24px; margin-left: 3px; }
.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(31, 53, 43, 0.9), transparent);
  color: var(--c-sand);
  font-family: var(--f-display);
  font-size: 16px;
}

/* ===================================================== */
/* LOCALIZAÇÃO                                             */
/* ===================================================== */
/* === LOC BANNER FULL-WIDTH === */
.loc-banner {
  height: clamp(240px, 36vw, 460px);
  margin: 48px 0;
  overflow: hidden;
  position: relative;
}
.loc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loc-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,53,43,0.15) 0%, rgba(31,53,43,0.55) 100%);
  pointer-events: none;
}

.loc-section-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--c-sand);
  text-align: center;
  margin-bottom: 36px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* === TABELA DE DISTÂNCIAS === */
.loc-times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.loc-times-card {
  background: rgba(244, 237, 228, 0.05);
  border: 1px solid rgba(244, 237, 228, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.loc-times-card:hover {
  background: rgba(244, 237, 228, 0.08);
  border-color: rgba(244, 237, 228, 0.25);
  transform: translateY(-2px);
}
.loc-times-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(244, 237, 228, 0.15);
  margin-bottom: 16px;
}
.loc-times-head svg {
  width: 24px;
  height: 24px;
  color: var(--c-amber);
  flex-shrink: 0;
}
.loc-times-head h4 {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0;
}
.loc-times-card ul { list-style: none; margin: 0; padding: 0; }
.loc-times-card li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(244, 237, 228, 0.08);
  font-size: 14px;
  color: rgba(244, 237, 228, 0.9);
}
.loc-times-card li:last-child { border-bottom: none; }
.loc-times-card .time {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--c-amber);
  font-weight: 500;
  min-width: 70px;
  flex-shrink: 0;
}
.loc-disclaimer {
  font-size: 12px !important;
  color: rgba(244, 237, 228, 0.5) !important;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 0.03em;
  font-style: italic;
}

.loc-cta-card {
  background: rgba(244, 237, 228, 0.08);
  border: 1px solid rgba(244, 237, 228, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.loc-cta-text h3 { color: var(--c-sand); margin-bottom: 8px; }
.loc-cta-text p { color: rgba(244, 237, 228, 0.8); font-size: 15px; max-width: 480px; }

/* ===================================================== */
/* SIMULAÇÃO                                               */
/* ===================================================== */
.simulacao-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--c-forest);
  color: var(--c-sand);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.simulacao-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}
.simulacao-steps li {
  padding: 16px 20px;
  background: rgba(244, 237, 228, 0.06);
  border-radius: var(--radius);
  font-size: 15px;
  border: 1px solid rgba(244, 237, 228, 0.1);
}
.simulacao-steps strong { color: var(--c-amber); font-family: var(--f-display); font-size: 18px; margin-right: 8px; }
.simulacao-disclaimer {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(244, 237, 228, 0.7);
  letter-spacing: 0.03em;
}

.section-amber .section-head h2 em { color: var(--c-forest-dark); }

/* ===================================================== */
/* FAQ                                                     */
/* ===================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--c-sage-light); }
.faq-item summary {
  padding: 20px 24px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-forest);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--c-amber);
  font-weight: 300;
  transition: var(--transition);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  padding: 0 24px 24px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.faq-answer p { margin-bottom: 12px; }
.faq-cta {
  display: inline-block;
  color: var(--c-amber);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  margin-top: 8px;
  transition: var(--transition);
}
.faq-cta:hover { color: var(--c-amber-dark); transform: translateX(4px); }

/* ===================================================== */
/* CTA FINAL                                               */
/* ===================================================== */
.section-final .big-p {
  font-size: clamp(17px, 2vw, 20px);
  max-width: 600px;
  margin: 24px auto 36px;
  line-height: 1.7;
}
.cta-or {
  font-family: var(--f-display);
  font-style: italic;
  margin: 20px 0 16px;
  color: rgba(244, 237, 228, 0.6);
}
.center { text-align: center; }

/* ===================================================== */
/* FOOTER                                                  */
/* ===================================================== */
.site-footer {
  background: var(--c-forest-dark);
  color: rgba(244, 237, 228, 0.85);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 56px; color: var(--c-sand); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 320px; margin-bottom: 8px; }
.footer-creci { font-size: 12px !important; opacity: 0.7; }

.footer-col h4 {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(244, 237, 228, 0.85);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--c-amber); }
.footer-wa-link {
  display: inline-flex !important;
  margin-top: 6px;
  padding: 8px 16px !important;
  background: var(--c-whatsapp);
  color: var(--c-white) !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px !important;
}
.footer-wa-link:hover { background: var(--c-whatsapp-hover); color: var(--c-white) !important; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(244, 237, 228, 0.1);
  font-size: 12px;
  color: rgba(244, 237, 228, 0.6);
  line-height: 1.7;
}
.footer-bottom p { margin: 4px 0; }

/* ===================================================== */
/* FAB WHATSAPP                                            */
/* ===================================================== */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: var(--c-whatsapp);
  color: var(--c-white);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  animation: fabPulse 3s ease-in-out infinite;
}
.fab-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); background: var(--c-whatsapp-hover); }
.fab-whatsapp svg { width: 26px; height: 26px; flex-shrink: 0; }
.fab-label { display: inline; }

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ===================================================== */
/* LIGHTBOX                                                */
/* ===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 25, 0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}
.lightbox.open { display: flex; animation: fadeIn 0.25s ease; }
.lightbox-inner {
  max-width: 1100px;
  max-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox-caption {
  color: var(--c-sand);
  font-family: var(--f-display);
  font-size: 18px;
  text-align: center;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 237, 228, 0.1);
  color: var(--c-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
  border: 1px solid rgba(244, 237, 228, 0.2);
}
.lightbox-close { top: 24px; right: 24px; font-size: 36px; line-height: 1; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 32px; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 32px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--c-amber);
  color: var(--c-forest);
  border-color: var(--c-amber);
}
.lightbox-cta { margin-top: 8px; }

body.lightbox-open { overflow: hidden; }

/* ===================================================== */
/* RESPONSIVE                                              */
/* ===================================================== */
@media (min-width: 768px) {
  .btn-tel { display: flex; }
}

@media (max-width: 920px) {
  .nav-desktop { display: none; }
  .btn-menu { display: flex; }
  .header-actions .btn-whatsapp span { display: none; }
  .header-actions .btn-whatsapp { padding: 10px 12px; }
  .header-actions .btn-whatsapp svg { margin: 0; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .two-col-text { order: 1; }
  .two-col.reverse .two-col-img { order: 2; max-width: 260px; margin: 0 auto; }

  /* Apartamentos responsivo */
  .apto-tabs { grid-template-columns: 1fr; gap: 12px; }
  .apto-tab { padding: 20px 24px; padding-right: 68px; }
  .apto-3d-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .apto-3d-item.large { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/10; }
  .apto-3d-label { font-size: 11px; padding: 6px 10px; }
  .apto-details { grid-template-columns: 1fr; gap: 24px; }
  .apto-planta-cta { flex-direction: column; text-align: center; padding: 28px 20px; }
  .apto-planta-preview { width: 130px; height: 130px; }

  /* Ficha técnica */
  .ficha-tecnica { grid-template-columns: repeat(2, 1fr); padding: 28px 16px; }
  .ficha-stat strong { font-size: 30px; }

  /* Tabela distâncias */
  .loc-times-card { padding: 22px 18px; }

  .hero { min-height: 90vh; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { text-align: center; }
  .footer-brand .footer-logo { margin: 0 auto 12px; }
  .footer-brand p { margin-left: auto; margin-right: auto; }

  .fab-label { display: none; }
  .fab-whatsapp {
    padding: 16px;
    bottom: 16px;
    right: 16px;
  }

  .loc-cta-card { flex-direction: column; text-align: center; }

  .quick-facts { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .section-head h2 { font-size: 28px; }
  .btn-lg, .btn-xl { padding: 14px 22px; font-size: 15px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-prev { left: 8px; width: 40px; height: 40px; }
  .lightbox-next { right: 8px; width: 40px; height: 40px; }
}

/* ===================================================== */
/* REVEAL ON SCROLL                                        */
/* ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reduzir movimento se o usuário preferir */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
