/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fafaf7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

:root {
  --gold: #ad9866;
  --gold-dark: #8a7950;
  --gold-light: #c9b88a;
  --gold-soft: #e6dcc4;
  --black: #0a0a0a;
  --black-2: #14140f;
  --bg: #fafaf7;
  --bg-cream: #f3efe6;
  --bg-warm: #ebe5d5;
  --text: #1a1a1a;
  --text-muted: #6b6660;
  --line: rgba(0,0,0,0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Poppins', system-ui, sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === TOPBAR === */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 9px 0;
  font-size: 12px;
  letter-spacing: 0.3px;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar-text strong { color: var(--gold-light); font-weight: 600; }
.topbar-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-light); font-weight: 500;
  transition: color .2s;
}
.topbar-link:hover { color: #fff; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding .3s ease;
}
.site-header.scrolled { padding: 10px 0; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo-link img { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.site-nav {
  display: flex; gap: 30px;
}
.site-nav a {
  color: rgba(255,255,255,0.78);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.4px;
  transition: color .2s;
}
.site-nav a:hover { color: var(--gold-light); }
.cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all .25s;
}
.cta-pill:hover { background: var(--gold); color: var(--black); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) contrast(1.05);
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 45%, rgba(10,10,10,0.7) 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-content {
  padding-right: 12px;
}
.eyebrow {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
}
.gold { color: var(--gold-light); }
.hero-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  max-width: 520px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-stats {
  display: flex; gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.hero-stats span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* === FORM CARD === */
.hero-form {}
.form-card {
  background: #fff;
  border-radius: 4px;
  padding: 36px 32px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  border-top: 3px solid var(--gold);
}
.form-head { margin-bottom: 22px; }
.form-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.form-head h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.3px;
}
.form-body { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; border: 0; padding: 0; }
.field > span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.field input[type="text"],
.field input[type="tel"],
.field select {
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  border-radius: 2px;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.chips label {
  display: block;
  position: relative;
  cursor: pointer;
}
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span {
  display: block;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 12.5px;
  text-align: center;
  color: var(--text-muted);
  transition: all .2s;
  background: var(--bg);
}
.chips input:checked + span {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: #faf6ec;
  font-weight: 500;
}
.btn-block { width: 100%; gap: 8px; }
.form-foot {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* === BTN === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -8px rgba(173,152,102,0.5);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-large { padding: 20px 44px; font-size: 13px; }

/* === VALUE STRIP === */
.value-strip {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.value-grid > div {
  font-size: 12.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 400;
}
.value-grid span {
  color: var(--gold-light);
  margin-right: 8px;
  font-size: 14px;
}

/* === SECTIONS GENERIC === */
section { padding: 120px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.gold-eyebrow { color: var(--gold-light); }
section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
  max-width: 800px;
}
section h2 em { font-style: italic; font-weight: 300; color: var(--gold); }

/* === DIFERENCIAL === */
.diferencial { background: var(--bg); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 16px;
}
.pillar { padding-top: 14px; border-top: 1px solid var(--line); }
.pillar-num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.pillar p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* === AMBIENTES === */
.ambientes {
  background: var(--bg-cream);
}
.amb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 340px;
  gap: 14px;
}
.amb-card {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  transition: transform .35s ease;
}
.amb-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .4s ease;
  filter: brightness(0.92);
}
.amb-card:hover img { transform: scale(1.05); filter: brightness(0.7); }
.amb-card.amb-large {
  grid-row: span 2;
  grid-column: span 1;
}
.amb-card.amb-wide {
  grid-column: span 2;
}
.amb-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 26px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.85) 100%);
}
.amb-caption span {
  font-family: var(--serif);
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
  display: block;
}
.amb-caption small {
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 2px;
  display: block;
}

/* === PROCESSO === */
.processo { background: var(--black); color: #fff; }
.processo .section-eyebrow { color: var(--gold-light); }
.processo h2 { color: #fff; }
.processo h2 em { color: var(--gold-light); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 16px;
}
.steps li {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.step-num {
  position: absolute;
  top: -22px; left: 0;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.steps h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
}
.steps p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* === CONDIÇÕES === */
.condicoes { background: var(--bg); }
.cond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cond-card {
  background: #fff;
  padding: 36px 28px;
  border: 1px solid var(--line);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.cond-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(173,152,102,0.25);
}
.cond-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: #faf6ec;
  margin-bottom: 22px;
  border-radius: 4px;
}
.cond-card h4 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.cond-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === VISITA === */
.visita {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  min-height: 70vh;
  align-items: stretch;
}
.visita-image {
  background-size: cover;
  background-position: center;
  min-height: 460px;
}
.visita-content {
  background: var(--bg-cream);
  display: flex; align-items: center;
  padding: 90px 0;
}
.visita-content .container { padding: 0 80px; max-width: 100%; }
.visita-content h2 { margin-bottom: 26px; }
.visita-content > .container > p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
}
.visita-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 44px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.visita-info h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}
.visita-info p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
}
.visita-cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.visita-or {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.phone-link {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.phone-link:hover { color: var(--gold-dark); }

/* === FAQ === */
.faq { background: var(--bg-warm); }
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-head h2 { margin-bottom: 22px; font-size: clamp(30px, 3.6vw, 44px); }
.faq-head p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 15px;
  max-width: 360px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-list details {
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 22px 0;
}
.faq-list details:first-child { border-top: 1px solid rgba(0,0,0,0.12); }
.faq-list summary {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding-right: 32px;
  list-style: none;
  letter-spacing: -0.2px;
  transition: color .2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 22px;
  color: var(--gold);
  transition: transform .25s;
  font-weight: 300;
}
.faq-list details[open] summary { color: var(--gold-dark); }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details > div {
  padding-top: 14px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* === FOOTER === */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 30px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.footer-cols h6 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  transition: color .2s;
}
.footer-cols a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .container { display: flex; justify-content: space-between; }
.footer-bottom .credit a { color: var(--gold-light); }

/* === FLOATING WHATSAPP === */
.floating-wpp {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -5px rgba(37,211,102,0.6);
  z-index: 99;
  transition: transform .25s, box-shadow .25s;
}
.floating-wpp:hover { transform: translateY(-3px) scale(1.05); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-form { max-width: 540px; }
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .topbar-text { font-size: 11px; }
  .pillars { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .amb-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 270px 270px 270px; }
  .amb-card.amb-large { grid-row: span 1; grid-column: span 1; }
  .amb-card.amb-wide { grid-column: span 2; }
  .visita { grid-template-columns: 1fr; }
  .visita-image { min-height: 320px; }
  .visita-content .container { padding: 0 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-container { grid-template-columns: 1fr; gap: 40px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); text-align: left; gap: 16px; }
}

@media (max-width: 720px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .topbar { display: none; }
  .site-nav { display: none; }
  .cta-pill { padding: 8px 14px; font-size: 11px; }
  .cta-pill svg { width: 12px; height: 12px; }
  .hero { padding: 32px 0 50px; }
  .hero-content { padding-right: 0; }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .hero-stats strong { font-size: 18px; }
  .form-card { padding: 28px 22px; }
  .form-head h3 { font-size: 19px; }
  .chips { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .amb-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 240px); }
  .amb-card.amb-wide { grid-column: span 1; }
  .cond-grid { grid-template-columns: 1fr; }
  .visita-info { grid-template-columns: 1fr; gap: 18px; }
  .phone-link { font-size: 24px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .footer-cols { grid-template-columns: 1fr; }
  .floating-wpp { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .btn { padding: 14px 24px; font-size: 12px; }
  .btn-large { padding: 16px 28px; font-size: 12px; }
}
