/* ============================================================
   Residencial Quinta do Arvoredo — LP
   ============================================================ */

:root {
  --olive: #6b5d36;
  --olive-dark: #514627;
  --olive-darker: #433a20;
  --leather: #3c2417;
  --leather-deep: #2a1810;
  --cream: #f7f4ec;
  --cream-2: #f0ead9;
  --white: #ffffff;
  --ink: #2b2418;
  --ink-soft: #4a4033;
  --gold: #c9a227;
  --gold-soft: #d9bd6a;
  --line: rgba(43, 36, 24, 0.12);

  --font-display: "Baskerville Old Face", "Libre Baskerville", Baskerville, "Times New Roman", serif;
  --font-body: Arial, Helvetica, "Segoe UI", sans-serif;

  --radius-brand: 28px 0 0 0; /* signature: rounded top-left corner only, matching the logo mark */
  --radius-brand-lg: 56px 0 0 0;
  --container: 1240px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
/* scroll-behavior left to Lenis (js/index.html) when it's active, so the two don't fight each other */

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--olive);
}
.eyebrow.on-dark { color: var(--gold-soft); }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

p { line-height: 1.7; color: var(--ink-soft); margin: 0; }

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head.left { margin: 0 0 40px; text-align: left; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }
@media (min-width: 761px) {
  .lazer .section-head h2 { white-space: nowrap; }
}

section { position: relative; }
.pad-lg { padding: clamp(56px, 9vw, 120px) 0; }
.pad-md { padding: clamp(40px, 6vw, 80px) 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-brand);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(107, 93, 54, 0.6);
}
.btn-primary:hover { background: var(--olive-dark); box-shadow: 0 14px 30px -10px rgba(107, 93, 54, 0.75); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--leather-deep);
  box-shadow: 0 10px 24px -10px rgba(201, 162, 39, 0.55);
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 14px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding .35s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.scrolled {
  background: rgba(107,93,54,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,0.35);
  padding: 8px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  height: 54px; width: auto;
  border-radius: var(--radius-brand);
  transition: transform .4s ease, box-shadow .4s ease;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.4);
}
.brand:hover .brand-logo { transform: translateY(-1px) scale(1.02); }
.site-header.scrolled .brand-logo { height: 46px; }
.footer-logo { height: 78px; }
.site-header, .site-header a, .nav-toggle { color: var(--white); }
.site-header.scrolled, .site-header.scrolled a, .site-header.scrolled .nav-toggle { color: var(--cream); }
.site-header.scrolled .btn-outline { color: var(--white); }
.site-header.scrolled .header-cta .btn-primary { background: var(--cream); color: var(--ink); }
.site-header.scrolled .header-cta .btn-primary:hover { background: var(--white); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold); transition: right .3s ease;
}
.main-nav a:hover::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta .btn-primary { padding: 12px 22px; font-size: 0.85rem; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  background: none; border: none; padding: 6px;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .3s ease, opacity .3s ease; }

@media (max-width: 980px) {
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: min(78vw, 340px);
    background: rgba(107,93,54,.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    flex-direction: column; align-items: flex-start;
    padding: 100px 32px 40px; gap: 22px; transition: right .4s ease; box-shadow: -20px 0 60px rgba(0,0,0,.3); }
  .main-nav.open { right: 0; }
  .main-nav a, .site-header.scrolled .main-nav a { color: var(--white); font-size: 1rem; }
  .header-cta .btn-primary.desktop-only { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle.open, .site-header.scrolled .nav-toggle.open { color: var(--white); }
}
.nav-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; pointer-events: none; transition: opacity .35s ease; z-index: 480; }
.nav-scrim.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("../img/aerial-wide.jpg") center 60% / cover no-repeat;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  border: none;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
@media (max-width: 760px) {
  .hero-video { opacity: 0; transition: opacity .3s ease; }
  .hero-video.is-playing { opacity: 1; }
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,14,8,.72) 0%, rgba(20,14,8,.38) 45%, rgba(20,14,8,.28) 65%, rgba(20,14,8,.5) 100%),
    linear-gradient(180deg, rgba(30,22,12,.5) 0%, rgba(30,22,12,.28) 28%, rgba(30,22,12,.5) 65%, rgba(20,14,8,.93) 100%);
}
@media (max-width: 760px) {
  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(15,10,5,.92) 0%, rgba(15,10,5,.75) 45%, rgba(15,10,5,.6) 65%, rgba(15,10,5,.78) 100%),
      linear-gradient(180deg, rgba(20,14,8,.78) 0%, rgba(20,14,8,.58) 28%, rgba(20,14,8,.75) 65%, rgba(15,10,5,.96) 100%);
  }
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: clamp(30px, 5vw, 56px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: end;
}
.hero-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid rgba(255,255,255,.5); border-radius: var(--radius-brand);
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(1.28rem, 0.87rem + 2.3vw, 2.15rem);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,.5), 0 8px 30px rgba(0,0,0,.55);
}
@media (min-width: 901px) {
  .hero h1 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
}
@media (min-width: 1240px) {
  .hero h1 { font-size: 1.95rem; }
}
.hero h1 .h1-accent { color: var(--gold-soft); font-weight: 700; }
.hero-sub { text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.hero-sub {
  margin-top: 20px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 46ch;
}
.hero-price {
  position: relative;
  display: inline-block;
  margin-top: 24px;
  padding: 10px 18px 10px 14px;
}
.hero-price::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15,11,6,.72), rgba(15,11,6,.6) 60%, rgba(15,11,6,.32));
  border: 1px solid rgba(217,189,106,.45);
  border-radius: var(--radius-brand);
  z-index: -1;
}
.hero-price-row { display: flex; align-items: baseline; column-gap: 10px; }
.hero-price .from { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }
.hero-price .amount { font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.hero-price-note { display: block; white-space: nowrap; margin-top: 2px; font-size: .72rem; line-height: 1.3; color: rgba(255,250,237,.72); font-weight: 400; }
@media (max-width: 400px) {
  .hero-price-note { font-size: .65rem; }
}

.hero-bullets {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  max-width: 560px;
}
.hero-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; line-height: 1.45; color: rgba(255,255,255,.92); font-weight: 600;
}
.hero-bullets svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--gold-soft); }

.hero-scroll-cue {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  z-index: 3;
}
@media (max-width: 900px) {
  .hero-scroll-cue { display: none; }
}
.hero-scroll-cue .dot-track { width: 1px; height: 34px; background: rgba(255,255,255,.35); position: relative; overflow: hidden; }
.hero-scroll-cue .dot-track::after {
  content: ""; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; background: var(--gold-soft);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue { 0% { top: -20px; } 100% { top: 40px; } }

/* ---------- form card ---------- */
.form-card {
  background: rgba(107,93,54,.7);
  border-radius: var(--radius-brand-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.55);
}
.form-card h3 { color: var(--white); font-size: 1.4rem; }
.form-card .sub { color: rgba(255,255,255,.8); font-size: 0.88rem; margin-top: 6px; }
.field { margin-top: 14px; }
.field label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 13px 15px; border-radius: 10px; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.96); font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.35); }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b2418' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.field-error { display: none; margin-top: 6px; font-size: .74rem; font-weight: 700; color: #ff9e9e; }
.field.valid input, .field.valid select { border-color: #8fd19e; box-shadow: 0 0 0 2px rgba(143,209,158,.25); }
.field.invalid input, .field.invalid select { border-color: #e2685f; box-shadow: 0 0 0 2px rgba(226,104,95,.25); }
.field.invalid .field-error { display: block; }
.form-card .btn { margin-top: 18px; }
.form-trust { margin-top: 14px; font-size: .74rem; color: rgba(255,255,255,.68); line-height: 1.5; }
.form-msg { margin-top: 12px; font-size: .85rem; font-weight: 700; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { color: var(--gold-soft); }
.form-msg.err { color: #ff9e9e; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bullets { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero { background: #171511; }
  .hero-bg {
    inset: auto; top: 0; left: 0; right: 0;
    height: 60vh;
    background-image: none;
    background-color: #171511;
  }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(23,21,17,.18) 0%, rgba(23,21,17,.45) 60%, #171511 100%);
  }
  .hero-bg.fallback-photo { height: 82vh; }
  .hero-bg.fallback-photo::after {
    background: linear-gradient(180deg, rgba(23,21,17,.45) 0%, rgba(23,21,17,.46) 14%, rgba(23,21,17,.56) 28%, rgba(23,21,17,.68) 42%, rgba(23,21,17,.82) 56%, rgba(23,21,17,.94) 70%, #171511 88%);
  }
  .hero-price { margin-top: 160px; }
}

/* ============================================================
   RIBBON STRIP (condições rápidas)
   ============================================================ */
.ribbon {
  background: var(--leather);
  background-image: linear-gradient(120deg, rgba(0,0,0,.15), rgba(0,0,0,0)), url("../img/leather-texture.jpg");
  background-size: cover;
  color: var(--white);
  padding: 26px 0;
}
.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ribbon-item { text-align: center; border-left: 1px solid rgba(255,255,255,.15); padding-left: 20px; }
.ribbon-item:first-child { border-left: none; padding-left: 0; }
.ribbon-item .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; }
.ribbon-item .num sup { font-size: 0.9rem; margin-left: 2px; }
.ribbon-item .lbl { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; margin-top: 4px; }
@media (max-width: 760px) {
  .ribbon-grid { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .ribbon-item:nth-child(3) { border-left: none; }
  .ribbon-item:nth-child(odd) { border-left: none; }
}

/* ============================================================
   APRESENTAÇÃO / condomínio fechado
   ============================================================ */
.presentation { background: var(--cream); overflow-x: hidden; }
.presentation > .container:first-child {
  position: relative;
}
.presentation > .container:first-child::before {
  content: "";
  position: absolute;
  top: clamp(-120px, -9vw, -56px); bottom: 0;
  left: 50%; width: 100vw;
  transform: translateX(-50%);
  background-image: url("../img/floral-pattern-transparent-2.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 0;
}
.presentation > .container:first-child > * { position: relative; z-index: 1; }
@media (max-width: 760px) {
  .presentation > .container:first-child::before { opacity: .4; }
}
.pres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pres-copy .eyebrow { display: block; margin-bottom: 14px; }
.pres-copy h2 { text-align: left; }
.pres-copy p { margin-top: 18px; font-size: 1.05rem; }
.pres-highlights { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.pres-highlights .hi { }
.pres-highlights .hi .n { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--olive); line-height: 1.1; }
.pres-highlights .hi .l { font-size: .86rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--ink-soft); margin-top: 4px; }

@media (max-width: 600px) {
  .pres-highlights { gap: 18px; flex-wrap: nowrap; justify-content: space-between; }
  .pres-highlights .hi { flex: 0 0 auto; }
  .pres-highlights .hi .n { font-size: 1.7rem; white-space: nowrap; }
  .pres-highlights .hi .l { font-size: .64rem; white-space: nowrap; }
}

.pres-gallery { position: relative; }
.gallery-frame {
  border-radius: var(--radius-brand-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(43,36,24,.4);
  aspect-ratio: 4/3;
}
.gallery-frame img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.gallery-thumbs button {
  flex: 1; padding: 0; border: 2px solid transparent; border-radius: 12px; overflow: hidden; background: none; aspect-ratio: 16/10;
  opacity: .55; transition: opacity .25s ease, border-color .25s ease;
}
.gallery-thumbs button.active { opacity: 1; border-color: var(--olive); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

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

/* ============================================================
   COVERFLOW CAROUSEL (dobra 2 — extra gallery)
   ============================================================ */
.coverflow { margin-top: 100px; }

.nature-strip {
  margin-top: 90px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}
.nature-strip-video .video-embed {
  position: relative; width: 100%; max-width: 320px; aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: var(--radius-brand-lg);
  box-shadow: 0 45px 70px -18px rgba(30,24,14,.85), 0 15px 30px -10px rgba(30,24,14,.5);
  overflow: hidden;
}
.nature-strip-video .video-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-play-btn {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,14,8,.4);
  border: 0; padding: 0; cursor: pointer;
  z-index: 3;
}
.video-play-btn.is-replay { background: var(--ink); }
.video-play-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(20,14,8,.55);
  border: 2px solid rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  backdrop-filter: blur(2px);
  transition: transform .25s ease, background .25s ease;
}
.video-play-circle svg { width: 28px; height: 28px; margin-left: 3px; }
.video-play-btn:hover .video-play-circle { transform: scale(1.08); background: rgba(20,14,8,.72); }
.video-play-btn.is-hidden { display: none; }

.video-mute-btn {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(20,14,8,.5);
  border: 1px solid rgba(255,255,255,.6);
  display: none; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer;
  transition: background .2s ease;
}
.video-mute-btn.is-visible { display: flex; }
.video-mute-btn:hover { background: rgba(20,14,8,.72); }
.video-mute-btn svg { width: 16px; height: 16px; }
.video-mute-btn .icon-muted { display: none; }
.video-mute-btn.is-muted .icon-unmuted { display: none; }
.video-mute-btn.is-muted .icon-muted { display: block; }

.video-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px 18px 14px;
  font-size: .85rem; font-weight: 800; color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(20,14,8,.82));
}
.nature-strip-copy .eyebrow { display: block; margin-bottom: 16px; }
.nature-strip-copy .nature-strip-sub {
  margin-top: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--olive);
}
.nature-strip-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.25;
  color: var(--ink);
}
.nature-strip-copy h2 em { font-style: normal; color: var(--olive); }
.nature-strip-copy .accent-line {
  display: block;
  width: 90px; height: 3px;
  margin-top: 26px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
@media (max-width: 860px) {
  .nature-strip { grid-template-columns: 1fr; gap: 28px; margin-top: 60px; text-align: center; }
  .nature-strip-copy h2 { font-size: clamp(1.6rem, 6vw, 2.1rem); }
  .nature-strip-copy { order: -1; }
  .nature-strip-copy .accent-line { margin-left: auto; margin-right: auto; }
}
.coverflow-head { text-align: center; margin-bottom: 20px; }
.coverflow-head h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 10px; }

.coverflow-stage {
  --slide-w: clamp(280px, 32vw, 460px);
  --slide-h: clamp(180px, 20vw, 288px);
  position: relative;
  max-width: var(--container); margin: 0 auto;
  height: clamp(260px, 26vw, 340px);
  display: flex; align-items: center; justify-content: center;
  perspective: 1400px;
  padding: 0 24px;
}
.coverflow-track { position: relative; width: 100%; height: 100%; }
.cf-slide {
  position: absolute; top: 50%; left: 50%;
  width: var(--slide-w);
  height: var(--slide-h);
  border-radius: var(--radius-brand-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 40px 60px -20px rgba(43,36,24,.55);
  transition: transform .55s cubic-bezier(.22,.75,.25,1), opacity .55s ease, filter .55s ease;
  cursor: pointer;
}
.cf-slide img { width: 100%; height: 100%; object-fit: cover; }
.cf-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px 20px 15px;
  font-size: .9rem; font-weight: 800; color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(20,14,8,.88));
}

@media (max-width: 760px) {
  .coverflow-stage { padding: 0 12px; }
}

/* ============================================================
   LAZER
   ============================================================ */
.lazer {
  background: var(--cream-2);
  position: relative; z-index: 2;
  border-radius: 0 0 clamp(28px, 5vw, 64px) clamp(28px, 5vw, 64px);
  box-shadow: 0 30px 50px -30px rgba(0,0,0,.35);
}
.lazer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lazer-card {
  position: relative; border-radius: var(--radius-brand); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 20px 40px -20px rgba(43,36,24,.4);
}
.lazer-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.lazer-card:nth-child(1) img { object-position: 20% center; }
.lazer-card:nth-child(3) img { object-position: 20% center; }
.lazer-card:hover img { transform: scale(1.08); }
.lazer-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(20,14,8,.88) 100%);
}
.lazer-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; z-index: 2; color: var(--white);
}
.lazer-card .cap .n { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); font-weight: 800; }
.lazer-card .cap h3 { color: var(--white); margin-top: 4px; font-size: 1.25rem; }
.lazer-card .cap .tagline { display: block; margin-top: 6px; font-size: .85rem; color: rgba(255,255,255,.78); font-weight: 600; }
.lazer-note { text-align: center; margin-top: 40px; font-size: .92rem; color: var(--ink-soft); }
.lazer-note a { color: var(--olive); font-weight: 800; border-bottom: 1px solid var(--olive); }

@media (max-width: 980px) { .lazer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lazer-grid { grid-template-columns: 1fr; } .lazer-card { aspect-ratio: 5/4; } }

/* ============================================================
   ENCANTAMENTO (full bleed)
   ============================================================ */
.encantamento {
  position: relative;
  z-index: 1;
  margin-top: clamp(-64px, -5vw, -28px);
  padding-top: clamp(28px, 5vw, 64px);
  min-height: 74vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--white); overflow: hidden;
}
.encantamento .bg {
  position: absolute; inset: -6% -2%; background: url("../img/familia-parallax.jpg") center 40% / cover no-repeat;
  will-change: transform;
}
.encantamento .bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,14,8,.35), rgba(20,14,8,.6)); }
.encantamento-inner { position: relative; z-index: 2; padding: 0 20px; }
.encantamento .eyebrow { color: var(--gold-soft); font-size: .82rem; letter-spacing: .28em; }
.encantamento h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  margin-top: 22px;
  max-width: 56ch; margin-left: auto; margin-right: auto;
  white-space: nowrap;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.encantamento h2 br { display: none; }
@media (max-width: 900px) {
  .encantamento h2 { white-space: normal; max-width: 34ch; }
  .encantamento h2 br { display: initial; }
}
@media (max-width: 560px) {
  .encantamento h2 br { display: none; }
  .encantamento { min-height: 62vh; }
  .encantamento .bg { background-position: 72% center; }
}
.encantamento h2 em { font-style: normal; color: var(--gold-soft); }

/* ============================================================
   PRA QUEM
   ============================================================ */
.para-quem { background: var(--cream); }
.word-reveal .word {
  display: inline-block;
  opacity: .16;
  filter: blur(2px);
  transition: opacity .5s ease, filter .5s ease;
  will-change: opacity, filter;
}
.word-reveal .word.lit { opacity: 1; filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .word-reveal .word { opacity: 1; filter: none; transition: none; }
}
.pq-instruction {
  text-align: center; margin-top: -6px; margin-bottom: 30px;
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--olive);
}
.pq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 10px; }
.pq-item {
  position: relative;
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-brand-lg);
  padding: 40px 36px 36px; display: block; text-align: left; width: 100%;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.pq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -24px rgba(43,36,24,.4);
  border-color: var(--olive);
}
.pq-item:active { transform: translateY(-2px) scale(.99); }

.pq-item .pq-num {
  position: absolute; top: 18px; right: 24px;
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 600;
  color: var(--cream-2); line-height: 1; z-index: 0;
  transition: color .35s ease, transform .35s ease;
}
.pq-item:hover .pq-num { color: var(--cream); transform: scale(1.06); }

.pq-item .ic {
  position: relative; z-index: 1;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--cream-2); display: flex; align-items: center; justify-content: center;
  color: var(--olive); margin-bottom: 22px;
  transition: background .35s ease, color .35s ease, transform .4s cubic-bezier(.2,.8,.3,1.3);
}
.pq-item .ic svg { width: 26px; height: 26px; }
.pq-item:hover .ic { background: var(--olive); color: var(--white); transform: rotate(-8deg) scale(1.08); }

.pq-item h3 { position: relative; z-index: 1; font-size: 1.3rem; }
.pq-item p { position: relative; z-index: 1; margin-top: 10px; font-size: .98rem; max-width: 40ch; }

.pq-item .pq-check {
  position: absolute; top: 22px; right: 22px; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--olive); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0) rotate(-30deg);
  transition: opacity .3s ease, transform .35s cubic-bezier(.3,1.6,.4,1);
}
.pq-item .pq-check svg { width: 15px; height: 15px; }

.pq-item.selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,162,39,.07), rgba(201,162,39,0) 55%);
  box-shadow: 0 26px 50px -26px rgba(43,36,24,.4);
}
.pq-item.selected .pq-num { opacity: 0; }
.pq-item.selected .ic { background: var(--gold); color: var(--leather-deep); }
.pq-item.selected .pq-check { opacity: 1; transform: scale(1) rotate(0); }

.pq-cta { text-align: center; margin-top: 40px; }
.pq-feedback {
  min-height: 26px; margin-bottom: 16px;
  font-weight: 800; color: var(--olive); font-size: 1rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
}
.pq-feedback.show { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .pq-grid { grid-template-columns: 1fr; }
  .pq-item { padding: 32px 26px 28px; }
}

/* ============================================================
   DOIS CAMINHOS
   ============================================================ */
.caminhos {
  background: var(--leather);
  background-image: linear-gradient(160deg, rgba(0,0,0,.35), rgba(0,0,0,.6)), url("../img/leather-texture.jpg");
  background-size: cover;
  color: var(--white);
}
.caminhos .section-head h2 { color: var(--white); }
.caminhos .section-head p { color: rgba(255,255,255,.75); }
.cam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.cam-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-brand-lg); padding: clamp(26px, 3vw, 40px);
  backdrop-filter: blur(4px);
}
.cam-card .tag { display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; padding: 7px 14px; border-radius: var(--radius-brand); background: var(--gold); color: var(--leather-deep); margin-bottom: 18px; }
.cam-card h3 { color: var(--white); font-size: 1.5rem; }
.cam-card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.cam-card li { display: flex; gap: 10px; font-size: .96rem; color: rgba(255,255,255,.88); }
.cam-card li svg { width: 18px; height: 18px; color: var(--gold-soft); flex-shrink: 0; margin-top: 3px; }
.cam-cta { text-align: center; margin-top: 40px; }

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

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.localizacao {
  background: var(--olive);
  background-image: linear-gradient(160deg, rgba(0,0,0,.05), rgba(0,0,0,.25));
  color: var(--white);
}
.loc-grid { display: grid; grid-template-columns: 0.92fr 1.18fr; gap: 56px; align-items: stretch; }
.loc-copy { display: flex; flex-direction: column; }
.loc-copy h2 { color: var(--white); text-align: left; margin-top: 18px; font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.loc-copy p.lead { margin-top: 16px; color: rgba(255,255,255,.85); font-size: 1.05rem; }
.dist-table { margin-top: 28px; border-top: 1px solid rgba(255,255,255,.2); }
.dist-row {
  display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .98rem;
  transition: padding-left .3s ease, background .3s ease;
}
.dist-row:hover { padding-left: 8px; background: rgba(255,255,255,.05); }
.dist-row .pin { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft); position: relative; }
.dist-row .pin::after { content: ""; position: absolute; inset: -5px; border: 1px solid rgba(217,189,106,.5); border-radius: 50%; }
.dist-row .place { font-weight: 700; }
.dist-row .time { color: var(--gold-soft); font-weight: 800; font-family: var(--font-display); font-size: 1.1rem; }
.dist-row.highlight { border-bottom-color: var(--gold-soft); }
.dist-row.highlight .place, .dist-row.highlight .time { color: var(--white); }
.dist-row.highlight .time { color: var(--gold); font-size: 1.3rem; }
.dist-row.highlight .pin { background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,.25); }
.loc-address { margin-top: 22px; font-size: .9rem; color: rgba(255,255,255,.75); }
.loc-tag {
  display: inline-block; margin-top: 12px; padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.35); border-radius: var(--radius-brand);
  font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-soft);
}
.loc-cta { margin-top: auto; padding-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

.loc-map { border-radius: var(--radius-brand-lg); overflow: hidden; box-shadow: 0 30px 60px -25px rgba(0,0,0,.5); min-height: 480px; position: relative; }
.loc-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.9); position: absolute; inset: 0; }

@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } .loc-map { min-height: 340px; } }

/* ============================================================
   SEGURANÇA + OBRA
   ============================================================ */
.seguranca { background: var(--cream); }
.seg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.seg-photo-stack { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.seg-photo-slot {
  flex: 1; min-height: 140px;
  border-radius: var(--radius-brand);
  border: 1.5px dashed rgba(107,93,54,.4);
  background: repeating-linear-gradient(135deg, rgba(107,93,54,.05) 0 12px, rgba(107,93,54,.09) 12px 24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--olive); text-align: center; padding: 18px;
  transition: border-color .3s ease, background .3s ease, transform .4s ease;
  position: relative; overflow: hidden;
}
.seg-photo-slot:hover { border-color: var(--olive); }
.seg-photo-slot svg { width: 30px; height: 30px; opacity: .6; }
.seg-photo-slot .slot-caption { font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }

.seg-photo-slot.has-photo {
  border: none; padding: 0; display: block;
}
.seg-photo-slot.has-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.seg-photo-slot.has-photo:hover img { transform: scale(1.06); }
.seg-photo-slot.has-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(20,14,8,.82) 100%);
}
.seg-photo-slot.has-photo .slot-caption {
  position: absolute; left: 16px; bottom: 12px; z-index: 2; color: #fff;
}
.seg-copy h2 { text-align: left; }
.seg-list { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.seg-list li { display: flex; gap: 14px; align-items: flex-start; }
.seg-list .check { width: 30px; height: 30px; border-radius: 50%; background: var(--olive); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.seg-list .check svg { width: 16px; height: 16px; }
.seg-list strong { display: block; font-size: 1rem; }
.seg-list span { font-size: .92rem; color: var(--ink-soft); }

.obra-box { margin-top: 40px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-brand); }
.obra-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; flex-wrap: wrap; gap: 6px; }
.obra-head h4 { font-family: var(--font-display); font-size: 1.15rem; margin: 0; }
.obra-head .date { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--olive); font-weight: 800; }
.obra-row { display: grid; grid-template-columns: 170px 1fr 42px; align-items: center; gap: 12px; margin-bottom: 12px; font-size: .84rem; }
.obra-row .label { color: var(--ink-soft); font-weight: 700; }
.obra-row .track { height: 8px; border-radius: 6px; background: var(--cream-2); overflow: hidden; }
.obra-row .fill { display: block; height: 100%; background: linear-gradient(90deg, var(--olive), var(--gold)); border-radius: 6px; }
.obra-row .pct { text-align: right; font-weight: 800; color: var(--olive); }

.obra-row-geral { padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.obra-row-geral .label { color: var(--ink); font-weight: 800; }
.obra-row-geral .track { height: 10px; }
.obra-row-geral .fill { background: linear-gradient(90deg, var(--gold), var(--gold-soft)); }
.obra-row-geral .pct { color: var(--ink); font-size: .95rem; }

@media (max-width: 900px) { .seg-grid { grid-template-columns: 1fr; } .obra-row { grid-template-columns: 130px 1fr 36px; } }

/* ============================================================
   A ZANARDI
   ============================================================ */
.zanardi {
  position: relative;
  background: var(--leather-deep);
  background-image: url("../img/leather-texture.jpg");
  background-size: cover;
  color: var(--white);
  overflow: hidden;
}
.zanardi::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(10,6,3,.86) 0%, rgba(10,6,3,.72) 38%, rgba(10,6,3,.42) 62%, rgba(10,6,3,.68) 100%);
  z-index: 0;
}
.zanardi .container { position: relative; z-index: 1; }
.zan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.zan-copy h2 { color: var(--white); text-align: left; text-shadow: 0 2px 18px rgba(0,0,0,.4); }
.zan-copy p { color: rgba(255,255,255,.9); margin-top: 18px; font-size: 1.02rem; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.zan-stats { margin-top: 26px; display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.zan-stats li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: #fff; font-weight: 700; }
.zan-stats svg { width: 18px; height: 18px; color: var(--gold-soft); flex-shrink: 0; margin-top: 2px; }
.zan-quote { margin-top: 30px; padding: 22px 24px; border-left: 3px solid var(--gold); font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--gold-soft); background: rgba(0,0,0,.22); border-radius: 0 12px 12px 0; }
.zan-photo { border-radius: var(--radius-brand-lg); overflow: hidden; box-shadow: 0 30px 60px -25px rgba(0,0,0,.6); min-height: 420px; }
.zan-photo img { width: 100%; height: 100%; object-fit: cover; }
.zan-cta { margin-top: 30px; }

@media (max-width: 900px) { .zan-grid { grid-template-columns: 1fr; } .zan-stats { grid-template-columns: 1fr; } .zan-photo { min-height: 300px; } }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.como-funciona { background: var(--cream); }
.steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; counter-reset: step; }
.steps-track, .steps-track-fill {
  position: absolute; top: 27px; left: 27px; right: 27px; height: 2px; z-index: 0;
}
.steps-track { background: var(--line); }
.steps-track-fill {
  background: linear-gradient(90deg, var(--olive), var(--gold));
  transform-origin: left center; transform: scaleX(0);
  transition: transform .15s linear;
}
.step { text-align: left; position: relative; z-index: 1; }
.step .n {
  width: 54px; height: 54px; border-radius: 50%; background: var(--olive); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin: 0 0 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  box-shadow: 0 0 0 6px var(--cream);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), background .3s ease, box-shadow .3s ease;
}
.step.reached .n { transform: scale(1.12); background: var(--gold); box-shadow: 0 0 0 6px var(--cream), 0 0 0 10px rgba(201,162,39,.25); }
.step p { font-size: .92rem; font-weight: 700; color: var(--ink); line-height: 1.6; max-width: 22ch; }
.steps-cta { text-align: center; margin-top: 44px; }

@media (max-width: 980px) and (min-width: 601px) {
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .steps-track, .steps-track-fill { display: none; }
}

@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; row-gap: 60px; }
  .steps-track, .steps-track-fill {
    top: 27px; bottom: 27px; left: 27px; right: auto;
    width: 2px; height: auto;
  }
  .steps-track-fill { transform-origin: top center; transform: scaleY(0); }
  .step { padding-left: 70px; }
  .step .n { position: absolute; left: 0; top: 0; margin: 0; }
  .step p { max-width: none; }
}

/* ============================================================
   CTA banner (dobra 11)
   ============================================================ */
.cta-banner {
  position: relative; overflow: hidden;
  color: var(--white);
  padding: clamp(64px, 9vw, 110px) 0;
}
.cta-banner .bg { position: absolute; inset: 0; background: url("../img/portaria-wide.jpg") center / cover no-repeat; }
.cta-banner .bg::after { content:""; position:absolute; inset:0; background: linear-gradient(115deg, rgba(20,14,8,.94) 0%, rgba(20,14,8,.8) 45%, rgba(60,36,23,.55) 100%); }
.cta-banner-grid {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  max-width: 720px; margin: 0 auto; text-align: center;
}
.cta-banner-copy { text-align: center; }
.cta-banner-copy h2 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.7rem); text-align: center; }
.cta-banner-copy h2 em { font-style: normal; color: var(--gold-soft); background: linear-gradient(100deg, transparent, rgba(201,162,39,.18)); padding: 0 4px; }
.cta-banner-copy p { color: rgba(255,255,255,.85); margin-top: 18px; font-size: 1.08rem; text-align: center; }
.cta-banner-copy strong { color: var(--gold-soft); font-weight: 800; }
.cta-banner-card {
  position: relative;
  text-align: center;
  width: 100%;
}
.cta-banner-num, .cta-banner-label { display: none; }
.cta-banner-card .btn { margin-top: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem; color: var(--ink);
}
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--olive); flex-shrink: 0; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content:""; position:absolute; background: var(--olive); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform .3s ease, opacity .3s ease; }
.faq-q .plus::before { width: 11px; height: 1.6px; }
.faq-q .plus::after { width: 1.6px; height: 11px; }
.faq-item.open .plus::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: .95rem; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--olive-darker);
  background-image: linear-gradient(160deg, rgba(0,0,0,.05), rgba(0,0,0,.3));
  color: rgba(255,255,255,.85);
  padding: clamp(50px, 7vw, 80px) 0 30px;
}
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-brand .brand-mark { border-color: rgba(255,255,255,.6); color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.7); margin-top: 14px; font-size: .92rem; max-width: 34ch; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.75); font-size: .92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-partners { display: flex; align-items: center; gap: 32px; margin-top: 30px; flex-wrap: wrap; }
.fp-item { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.fp-label { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 700; }
.fp-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.fp-logo { height: 26px; width: auto; max-width: 140px; object-fit: contain; align-self: flex-start; opacity: .95; }
.fp-logo-zanardi { height: 44px; }
.footer-legal { padding-top: 26px; font-size: .74rem; line-height: 1.7; }
.footer-legal p { color: #FFFAED; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; flex-wrap: wrap; gap: 10px; font-size: .78rem; color: rgba(255,255,255,.55); }

@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.5);
  animation: pulse 2.6s ease-in-out infinite;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.wa-fab:hover { transform: scale(1.08) rotate(-4deg); animation-play-state: paused; }
.wa-fab svg { width: 30px; height: 30px; }
.wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--leather-deep); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 8px 14px; border-radius: var(--radius-brand); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 10px 20px -8px rgba(0,0,0,.4);
}
.wa-fab:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* ---------------- scroll progress bar ---------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--olive), var(--gold));
  z-index: 600; transition: width .1s linear;
}

/* ---------------- back to top ---------------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 92px; z-index: 400;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--olive); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(12px) scale(.8); pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1), background .3s ease;
}
.back-to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { background: var(--gold); color: var(--leather-deep); transform: translateY(-3px) scale(1.05); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------------- misc micro-interactions ---------------- */
.obra-row .fill { width: 0%; transition: width 1.3s cubic-bezier(.16,.7,.15,1); }
.cam-card { transition: transform .35s ease, border-color .35s ease, background .35s ease; }
.cam-card:hover { transform: translateY(-6px); border-color: rgba(217,189,106,.5); background: rgba(255,255,255,.08); }
.cam-card li { transition: transform .25s ease; }
.cam-card li:hover { transform: translateX(4px); }
.zan-stats li { transition: transform .25s ease, color .25s ease; }
.zan-stats li:hover { transform: translateX(4px); color: var(--gold-soft); }
.footer-col a { position: relative; width: fit-content; transition: color .25s ease, padding-left .25s ease; }
.footer-col a::before { content: "→"; position: absolute; left: -16px; opacity: 0; transition: opacity .25s ease, left .25s ease; }
.footer-col a:hover { padding-left: 16px; }
.footer-col a:hover::before { opacity: 1; left: 0; }
.pillar, .pq-item, .lazer-card, .cam-card, .obra-box { will-change: transform; }
.lazer-card .cap .n { transition: transform .3s ease, color .3s ease; }
.lazer-card:hover .cap .n { transform: scale(1.15); color: var(--gold); }
.gallery-thumbs button { transition: opacity .25s ease, border-color .25s ease, transform .25s ease; }
.gallery-thumbs button:hover { transform: translateY(-3px); }
.field label { transition: color .25s ease; }
.field input:focus ~ label, .field select:focus ~ label { color: var(--gold-soft); }
.dist-row .place { transition: color .25s ease; }
.seg-list .check { transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .3s ease; }
.seg-list li:hover .check { transform: scale(1.15) rotate(-8deg); background: var(--gold); color: var(--leather-deep); }
.pillar:hover .icon-ring, .icon-ring { transition: transform .3s ease, background .3s ease, color .3s ease; }
.pillar:hover .icon-ring { transform: translateY(-4px); background: var(--olive); color: var(--white); }
.brand-logo, .fp-logo { transition: transform .3s ease; }

/* ============================================================
   reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (min-width: 761px) {
  .pq-item.reveal-left { transform: translateX(-60px); }
  .pq-item.reveal-right { transform: translateX(60px); }
  .pq-item.reveal-left.in, .pq-item.reveal-right.in { transform: translateX(0); }
}

/* small util */
.visually-hidden { position: absolute; width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap; }
