/* ===========================================================
   São Pietro Sênior — Magno Moinhos
   Landing Page · Design System
   =========================================================== */

:root {
  /* Brand colors derived from Magno Moinhos + SP Sênior identity */
  --ink:          #1c2520;
  --ink-soft:     #3a463f;
  --forest:       #3d5246;   /* primary brand green */
  --forest-deep:  #28342c;
  --forest-darkest:#19211c;
  --sage:         #7d8e80;
  --tan:          #b8a380;   /* Magno bar tan */
  --tan-deep:     #9a8463;
  --tan-light:    #d7c7ae;
  --cream:        #f1ebdd;
  --paper:        #f7f3ea;
  --ivory:        #faf7f0;
  --white:        #ffffff;
  --sp-blue:      #2a6faf;   /* SP Sênior accent (rare use) */

  /* Type scale — refined, smaller titles */
  --display-xl: clamp(42px, 5.2vw, 84px);
  --display-l:  clamp(32px, 4vw, 60px);
  --display-m:  clamp(26px, 3vw, 44px);
  --display-s:  clamp(20px, 2vw, 30px);
  --body-l:     clamp(16px, 1.05vw, 18px);
  --body:       15.5px;
  --eyebrow:    11px;

  /* Layout */
  --container:  1320px;
  --gutter:     clamp(20px, 4vw, 56px);
  --section-y:  clamp(80px, 11vw, 160px);
  --radius-s:   2px;
  --radius:     4px;
  --radius-l:   12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
.serif, h1, h2, h3, h4, .display {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--display-l); margin: 0; font-weight: 500; }
h2 { font-size: var(--display-m); margin: 0; font-weight: 500; }
h3 { font-size: var(--display-s); margin: 0; font-weight: 500; line-height: 1.2; }
p  { margin: 0; }

.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan-deep);
}
.eyebrow--on-dark { color: var(--tan-light); }
.eyebrow--line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow--line::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.lead {
  font-size: var(--body-l);
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 60ch;
}

.italic-accent {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--tan-deep);
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--tight { padding-top: clamp(60px, 7vw, 100px); padding-bottom: clamp(60px, 7vw, 100px); }

.divider-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(28,37,32,0.15), transparent);
  border: 0;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--forest);
  color: var(--cream);
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--forest-deep); border-color: var(--forest-deep); }
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(241, 235, 221, 0.5);
}
.btn--ghost:hover { background: rgba(241,235,221,0.08); border-color: var(--cream); }

.btn--tan {
  background: var(--tan);
  color: var(--forest-deep);
  border-color: var(--tan);
}
.btn--tan:hover { background: var(--tan-deep); border-color: var(--tan-deep); color: var(--cream); }

.btn--link {
  background: transparent;
  color: var(--forest);
  border: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--tan);
  border-radius: 0;
}
.btn--link:hover { background: transparent; color: var(--forest-deep); border-color: var(--tan-deep); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid rgba(28,37,32,0.06);
}
.nav.is-scrolled {
  background: rgba(247, 243, 234, 0.98);
  padding: 10px 0;
  border-bottom-color: rgba(28,37,32,0.10);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo img {
  height: 56px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
.nav.is-scrolled .nav__logo img { height: 46px; }
.nav__links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--forest-deep);
  opacity: 0.78;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav__links a:hover { opacity: 1; color: var(--forest); }
.nav__cta {
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 12px 20px;
}

@media (max-width: 840px) {
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--forest-darkest);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(25,33,28,0.55) 0%, rgba(25,33,28,0.15) 25%, rgba(25,33,28,0.20) 55%, rgba(25,33,28,0.88) 100%),
    linear-gradient(90deg, rgba(25,33,28,0.55) 0%, rgba(25,33,28,0.0) 55%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(60px, 8vw, 100px);
  padding-top: 120px;
  width: 100%;
}
.hero__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 5vw, 64px);
}
.hero__location {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__location::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--tan-light);
  opacity: 0.7;
}
.hero__meta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 235, 221, 0.7);
}
.hero h1 {
  color: var(--cream);
  font-size: var(--display-xl);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.03;
  max-width: 18ch;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--tan-light);
  font-weight: 400;
}
.hero__sub {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-top: clamp(32px, 4vw, 56px);
}
.hero__lead {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
  color: rgba(241, 235, 221, 0.92);
  max-width: 48ch;
  margin: 0;
}
.hero__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.hero__cta-stack .btn { background: var(--cream); color: var(--forest-deep); border-color: var(--cream); }
.hero__cta-stack .btn:hover { background: var(--white); border-color: var(--white); }
.hero__scroll {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241,235,221,0.6);
}

@media (max-width: 720px) {
  .hero__sub { grid-template-columns: 1fr; align-items: flex-start; }
  .hero__cta-stack { align-items: flex-start; }
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--cream);
  border-top: 1px solid rgba(28,37,32,0.06);
  border-bottom: 1px solid rgba(28,37,32,0.06);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  padding: clamp(36px, 5vw, 56px) clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: rgba(28,37,32,0.12);
}
.stat__value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1;
  color: var(--forest);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.stat__value sup {
  font-size: 0.45em;
  vertical-align: super;
  margin-left: 4px;
  color: var(--tan-deep);
}
.stat__label {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 32ch;
}
.stat__tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--tan-deep);
}
@media (max-width: 820px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat + .stat::before { left: 18%; right: 18%; top: 0; bottom: auto; width: auto; height: 1px; }
}

/* ---------- Section header (shared) ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section-head h2 {
  text-wrap: balance;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Conceito ---------- */
.conceito {
  background: var(--paper);
}
.conceito__intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.conceito__intro h2 {
  font-size: var(--display-l);
  font-weight: 400;
}
.conceito__intro h2 em { font-style: italic; color: var(--forest); }

/* ---------- Conceito (2-col: copy + 3-tile mosaic) ---------- */
.conceito {
  background: var(--paper);
}
.conceito__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.conceito__copy h2 {
  margin-top: 18px;
  margin-bottom: clamp(28px, 3vw, 44px);
  max-width: 18ch;
}
.conceito__copy h2 em { font-style: italic; color: var(--forest); }
.conceito__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 56ch;
}
.conceito__body p {
  color: var(--ink-soft);
  font-size: var(--body-l);
  line-height: 1.7;
  text-wrap: pretty;
}
.conceito__closer {
  font-size: clamp(18px, 1.3vw, 21px) !important;
  color: var(--ink) !important;
  border-top: 1px solid rgba(28,37,32,0.12);
  padding-top: 22px;
  margin-top: 10px;
}

.conceito__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(12px, 1.6vw, 20px);
  position: sticky;
  top: 100px;
}
.conceito__tile {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  border-radius: var(--radius);
}
.conceito__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.conceito__tile:hover img { transform: scale(1.04); }
.conceito__tile--a {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 10;
}
.conceito__tile--b {
  aspect-ratio: 4 / 5;
}
.conceito__tile--c {
  aspect-ratio: 4 / 5;
}
@media (max-width: 900px) {
  .conceito__wrap { grid-template-columns: 1fr; }
  .conceito__mosaic { position: static; }
}

/* ---------- Galeria (carousel) ---------- */
.galeria {
  background: var(--cream);
  overflow: hidden;
}
.galeria__head { margin-bottom: clamp(28px, 3.4vw, 44px); }
.galeria__head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
}
.galeria__head-row h2 {
  font-size: var(--display-l);
  font-weight: 500;
  margin: 0;
}
.galeria__head-row h2 em { font-style: italic; color: var(--forest); }
.galeria__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-bottom: 6px;
}
.galeria__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--tan-deep);
  background: transparent;
  color: var(--forest-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.galeria__btn svg { width: 20px; height: 20px; }
.galeria__btn:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.galeria__counter {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  min-width: 58px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.galeria__counter #gal-current { color: var(--forest); font-style: italic; }
.galeria__track {
  display: flex;
  gap: clamp(16px, 1.6vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px var(--gutter) 8px;
  margin: 0 calc(-1 * var(--gutter));
  scrollbar-width: none;
  cursor: grab;
}
.galeria__track::-webkit-scrollbar { display: none; }
.galeria__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.galeria__track.is-dragging img { pointer-events: none; }
.galeria__slide {
  flex: 0 0 clamp(280px, 46vw, 760px);
  margin: 0;
  scroll-snap-align: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest-deep);
}
.galeria__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.galeria__slide:hover img { transform: scale(1.04); }
@media (max-width: 820px) {
  .galeria__head-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .galeria__slide { flex-basis: 85vw; aspect-ratio: 4 / 3; }
}

/* ---------- Localização (full-bleed) ---------- */
.localizacao {
  position: relative;
  background: var(--forest-darkest);
  color: var(--cream);
  overflow: hidden;
}
.localizacao__bg {
  position: absolute; inset: 0; z-index: 0;
}
.localizacao__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
}
.localizacao__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(25,33,28,0.30) 0%, rgba(25,33,28,0.65) 70%, rgba(25,33,28,0.90) 100%);
}
.localizacao__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  min-height: 90vh;
  padding-top: clamp(120px, 14vw, 200px);
  padding-bottom: clamp(60px, 8vw, 120px);
}
.localizacao h2 {
  color: var(--cream);
  font-size: var(--display-l);
  font-weight: 500;
  line-height: 1.04;
  max-width: 16ch;
}
.localizacao h2 em {
  font-style: italic;
  color: var(--tan-light);
}
.localizacao__caption {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 24px;
}
.localizacao__sub {
  color: rgba(241,235,221,0.9);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.6;
  max-width: 52ch;
  margin-top: 28px;
}
.localizacao__pois {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid rgba(241,235,221,0.18);
  padding-top: 28px;
}
.poi {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(241,235,221,0.12);
}
.poi:last-child { border-bottom: none; }
.poi__distance {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  color: var(--tan-light);
  line-height: 1;
  font-style: italic;
}
.poi__label {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.92;
}
@media (max-width: 900px) {
  .localizacao__inner { grid-template-columns: 1fr; min-height: auto; }
}

/* ---------- Estrutura ---------- */
.estrutura { background: var(--paper); }
.estrutura__intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.estrutura__intro h2 {
  font-size: var(--display-l);
}
.estrutura__intro h2 em { font-style: italic; color: var(--forest); }

.pillar {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 7vw, 100px);
}
.pillar:last-child { margin-bottom: 0; }
.pillar--reverse .pillar__media { order: 2; }
.pillar__media {
  aspect-ratio: 1 / 1;
  max-width: 520px;
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.pillar:not(.pillar--reverse) .pillar__media { margin-right: auto; }
.pillar--reverse .pillar__media { margin-left: auto; }
.pillar__media img { width: 100%; height: 100%; object-fit: cover; }
.pillar__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 5.4vw, 84px);
  font-weight: 500;
  font-style: italic;
  color: var(--tan);
  line-height: 0.85;
  margin-bottom: 12px;
}
.pillar__kicker {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tan-deep);
  font-weight: 600;
  margin-bottom: 16px;
}
.pillar h3 {
  font-size: var(--display-m);
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 18ch;
}
.pillar__copy {
  color: var(--ink-soft);
  font-size: var(--body-l);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 48ch;
}
.feature-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  border-top: 1px solid rgba(28,37,32,0.1);
  padding-top: 24px;
}
.feature-list li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--tan-deep);
}
@media (max-width: 820px) {
  .pillar { grid-template-columns: 1fr; gap: 32px; }
  .pillar--reverse .pillar__media { order: -1; }
  .pillar__media { aspect-ratio: 4 / 3; max-width: none; margin: 0; }
  /* Image 01 (rooftop + biblioteca) shows the rooftop half on top */
  .pillar:first-of-type .pillar__media img { object-position: center top; }
  .feature-list { grid-template-columns: 1fr; }
  .estrutura__intro { grid-template-columns: 1fr; }
}

/* ---------- Suítes ---------- */
.suites {
  background: var(--cream);
}
.suites__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.suites__media {
  position: sticky;
  top: 100px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
}
.suites__media-main {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest-deep);
  position: relative;
}
.suites__media-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.45s ease; }
.suites__media-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}
.suites__media-caption .name {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: var(--forest);
  font-weight: 500;
}
.suites__media-caption .size {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan-deep);
}
.suites__body h2 {
  font-size: var(--display-m);
  margin-bottom: 24px;
}
.suites__body h2 em { font-style: italic; color: var(--forest); }
.suites__body p {
  color: var(--ink-soft);
  font-size: var(--body-l);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 56ch;
}
.suites__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(28,37,32,0.15);
}
.suite-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(28,37,32,0.12);
  cursor: pointer;
  transition: padding 0.25s ease;
}
.suite-row:hover { padding-left: 12px; }
.suite-row.is-active { padding-left: 12px; }
.suite-row__num {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--tan-deep);
  font-weight: 500;
}
.suite-row__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(19px, 1.6vw, 24px);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}
.suite-row.is-active .suite-row__name { color: var(--forest); }
.suite-row__meta {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-align: right;
  max-width: 22ch;
}
.suites__cta { margin-top: 36px; }

@media (max-width: 900px) {
  .suites__grid { grid-template-columns: 1fr; }
  .suites__media { position: static; }
}

/* ---------- Públicos atendidos ---------- */
.publicos {
  background: var(--forest-deep);
  color: var(--cream);
}
.publicos h2 { color: var(--cream); }
.publicos h2 em { color: var(--tan-light); font-style: italic; }
.publicos__head { margin-bottom: clamp(48px, 6vw, 88px); }

.publicos__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
  margin-bottom: clamp(28px, 3vw, 48px);
}
.col-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(241,235,221,0.12);
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  transition: background 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.col-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(241,235,221,0.22); }
.col-card--featured {
  background: var(--forest);
  border-color: var(--tan);
}
.col-card--featured:hover { background: var(--forest); border-color: var(--tan); }
.col-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(241,235,221,0.12);
}
.col-card__num {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--tan);
  font-weight: 500;
}
.col-card__badge {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan-light);
  font-weight: 500;
  padding: 5px 10px;
  border: 1px solid var(--tan);
  border-radius: 999px;
}
.col-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  color: var(--cream);
  margin: 0;
  line-height: 1.2;
}
.col-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(241,235,221,0.82);
  flex-grow: 1;
  text-wrap: pretty;
}
.col-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  align-self: flex-start;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan-light);
  padding: 11px 18px;
  border: 1px solid rgba(184,163,128,0.5);
  border-radius: var(--radius);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.col-card__cta .arrow { transition: transform 0.3s ease; }
.col-card__cta:hover {
  background: var(--tan);
  color: var(--forest-deep);
  border-color: var(--tan);
}
.col-card__cta:hover .arrow { transform: translateX(4px); }
.col-card--featured .col-card__cta {
  background: var(--tan);
  color: var(--forest-deep);
  border-color: var(--tan);
}
.col-card--featured .col-card__cta:hover { background: var(--cream); border-color: var(--cream); }

.publicos__extra {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(16px, 1.5vw, 24px);
  margin-bottom: clamp(36px, 4vw, 60px);
}
.extra-card {
  background: var(--ink);
  padding: clamp(32px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(241,235,221,0.10);
}
.extra-card--memory {
  background: linear-gradient(135deg, #2c2517 0%, #1a1f1a 100%);
  border-color: var(--tan-deep);
}
.extra-card__tag {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan-light);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.extra-card__tag::before {
  content: "";
  width: 22px; height: 1px; background: var(--tan-light);
}
.extra-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  color: var(--cream);
  margin: 0;
  line-height: 1.18;
  text-wrap: balance;
}
.extra-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(241,235,221,0.82);
  text-wrap: pretty;
  max-width: 64ch;
}
.extra-card__note {
  font-size: 13px !important;
  color: rgba(241,235,221,0.6) !important;
  border-top: 1px solid rgba(241,235,221,0.14);
  padding-top: 16px;
  margin-top: 6px;
}
.extra-card__note strong { color: var(--tan-light); font-weight: 600; }

/* Memory Care feature icons */
.memory-features {
  list-style: none;
  margin: 8px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(241,235,221,0.14);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
.memory-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.memory-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--tan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
  background: rgba(184,163,128,0.08);
  flex-shrink: 0;
}
.memory-feature__icon svg { width: 24px; height: 24px; display: block; }
.memory-feature__label {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(241,235,221,0.88);
  text-wrap: balance;
}
@media (max-width: 600px) {
  .memory-features { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.publicos__incl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  border-top: 1px solid rgba(241,235,221,0.12);
  padding-top: clamp(36px, 4vw, 60px);
}
.publicos__incl h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  color: var(--cream);
  margin: 0;
  line-height: 1.25;
}
.publicos__incl ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.publicos__incl li {
  font-size: 14.5px;
  color: rgba(241,235,221,0.88);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.publicos__incl li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--tan);
  font-size: 13px;
  top: 1px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .publicos__cols { grid-template-columns: 1fr; }
  .publicos__extra { grid-template-columns: 1fr; }
  .publicos__incl { grid-template-columns: 1fr; }
  .publicos__incl ul { grid-template-columns: 1fr; }
}

/* ---------- Pré-reserva ---------- */
.reserva {
  background: var(--cream);
  position: relative;
}
.reserva__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.reserva__copy h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  margin-bottom: 24px;
}
.reserva__copy h2 em { font-style: italic; color: var(--forest); }
.reserva__copy p { color: var(--ink-soft); margin-bottom: 32px; max-width: 44ch; font-size: var(--body-l); line-height: 1.6; }
.reserva__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(28,37,32,0.12);
  padding-top: 24px;
}
.reserva__perks li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}
.reserva__perks li::before {
  content: "";
  width: 18px; height: 1px; background: var(--tan-deep);
  margin-top: 11px;
}

.form-card {
  background: var(--white);
  border: 1px solid rgba(28,37,32,0.08);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow: 0 30px 60px -40px rgba(28,37,32,0.25);
}
.form-card__head {
  border-bottom: 1px solid rgba(28,37,32,0.12);
  padding-bottom: 20px;
  margin-bottom: 28px;
}
.form-card__head h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-card__head p {
  font-size: 13.5px;
  color: var(--ink-soft);
}
.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.field input, .field select {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid rgba(28,37,32,0.18);
  background: var(--ivory);
  border-radius: var(--radius-s);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--white);
}

.field--radio { gap: 12px; }
.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.radio-group--2 { grid-template-columns: 1fr 1fr; }
.radio-pill {
  position: relative;
}
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill span {
  display: block;
  padding: 12px 10px;
  text-align: center;
  font-size: 13px;
  border: 1px solid rgba(28,37,32,0.18);
  background: var(--ivory);
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.2;
  color: var(--ink-soft);
}
.radio-pill input:checked + span {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-card__note {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
@media (max-width: 820px) {
  .reserva__grid { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.faq h2 {
  font-size: var(--display-l);
  font-weight: 400;
}
.faq h2 em { font-style: italic; color: var(--forest); }
.faq__intro p { margin-top: 24px; max-width: 36ch; color: var(--ink-soft); }
.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(28,37,32,0.12);
}
.faq-item {
  border-bottom: 1px solid rgba(28,37,32,0.12);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  transition: color 0.2s ease;
}
.faq-item__q:hover { color: var(--forest); }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--tan-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--tan-deep);
  font-size: 16px;
  transition: transform 0.3s ease, background 0.25s ease, color 0.25s ease;
  margin-top: 4px;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.is-open .faq-item__a {
  max-height: 400px;
  padding-bottom: 28px;
}
.faq-item__a p {
  color: var(--ink-soft);
  font-size: var(--body-l);
  line-height: 1.6;
  max-width: 64ch;
}
@media (max-width: 820px) {
  .faq__grid { grid-template-columns: 1fr; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background: var(--forest-darkest);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
  padding: clamp(100px, 13vw, 180px) 0;
}
.final-cta__bg {
  position: absolute; inset: 0; z-index: 0;
}
.final-cta__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 65%;
  opacity: 0.40;
}
.final-cta__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(25,33,28,0.85), rgba(25,33,28,0.95));
}
.final-cta__inner {
  position: relative; z-index: 2;
}
.final-cta .eyebrow { color: var(--tan-light); margin-bottom: 28px; display: inline-block; }
.final-cta h2 {
  color: var(--cream);
  font-size: clamp(40px, 5vw, 76px);
  max-width: 18ch;
  margin: 0 auto 28px;
  font-weight: 500;
  line-height: 1.04;
}
.final-cta h2 em { font-style: italic; color: var(--tan-light); }
.final-cta p {
  max-width: 56ch;
  margin: 0 auto 44px;
  color: rgba(241,235,221,0.85);
  font-size: var(--body-l);
  line-height: 1.6;
}
.final-cta .btn { background: var(--tan); color: var(--forest-deep); border-color: var(--tan); }
.final-cta .btn:hover { background: var(--cream); border-color: var(--cream); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(241,235,221,0.7);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(241,235,221,0.1);
}
.footer__lockup {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 28px;
  display: block;
}
.footer__about p {
  font-size: 14px;
  line-height: 1.55;
  max-width: 36ch;
  margin-bottom: 18px;
}
.footer__col h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a, .footer__col span {
  font-size: 14px;
  color: rgba(241,235,221,0.7);
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--tan-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 12.5px;
  color: rgba(241,235,221,0.55);
}
.footer__copy {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(241,235,221,0.4);
}
.footer__brands {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__brands-label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241,235,221,0.5);
  font-weight: 500;
}
.footer__brands img {
  height: 60px;
  width: auto;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 3px;
  transition: opacity 0.25s ease;
}
.footer__brands img:hover { opacity: 0.9; }
@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__about { margin-bottom: 4px; }
  .footer__about p { max-width: none; }
  .footer__col h5 { margin-bottom: 14px; }
  .footer__col ul { gap: 10px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Mobile overflow + readability guards ---------- */
html, body { overflow-x: clip; }
img, svg, video, canvas { max-width: 100%; height: auto; }
.container { max-width: 100%; box-sizing: border-box; }

@media (max-width: 720px) {
  /* Hero: stronger overlay so the text reads cleanly on the building photo */
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(15,22,18,0.55) 0%, rgba(15,22,18,0.35) 30%, rgba(15,22,18,0.78) 78%, rgba(15,22,18,0.92) 100%),
      linear-gradient(90deg, rgba(15,22,18,0.55) 0%, rgba(15,22,18,0.25) 100%);
  }
  .hero h1 { text-shadow: 0 2px 22px rgba(0,0,0,0.45); }
  .hero__lead, .hero__subtitle { text-shadow: 0 1px 14px rgba(0,0,0,0.55); }
  .hero__lead { color: rgba(241,235,221,0.92); }

  /* Generic overflow safety */
  .hero, .reserva, .faq, .footer, .galeria, .localizacao, .publicos, .suites, .comodidades, .conceito, .final-cta, .stats { overflow-x: clip; }
  .hero__content, .container { max-width: 100%; }
  /* Form fields cannot exceed their column */
  input, select, textarea, button { max-width: 100%; box-sizing: border-box; }
  .form-row, .form-row--2, .reserva__grid { width: 100%; box-sizing: border-box; }
}

@media (max-width: 820px) {
  .form-row--2, .reserva__grid { min-width: 0; }
  .form-row--2 > *, .reserva__grid > * { min-width: 0; }
  input, select, textarea { width: 100%; box-sizing: border-box; }
}
.hero__subtitle {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--tan-light);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.4;
  margin-top: clamp(20px, 2vw, 28px);
  max-width: 42ch;
}
.lead--on-dark { color: rgba(241,235,221,0.85) !important; max-width: 72ch; }
.reserva__intro {
  font-size: 13px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan-deep) !important;
  font-weight: 500;
  margin: 8px 0 4px !important;
  max-width: none !important;
}
.suites__media-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(25, 33, 28, 0.7);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}
.suites__media-badge span { color: var(--tan-light); }
.hero__scroll {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241,235,221,0.6);
  transition: color 0.2s ease;
}
.hero__scroll:hover { color: var(--tan-light); }

/* ---------- Conceito (editorial sticky-narrative) ---------- */
.conceito__head {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.conceito__head .eyebrow { padding-bottom: 8px; }
.conceito__head h2 { max-width: 22ch; }
.conceito__head h2 em { font-style: italic; color: var(--forest); }
@media (max-width: 900px) {
  .conceito__head { grid-template-columns: 1fr; align-items: start; gap: 18px; }
}

.conceito__editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(72px, 8vw, 120px);
}

/* Story column */
.conceito__story {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 10vw, 140px);
  padding-top: 8px;
}
.chapter {
  position: relative;
}
.chapter__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 2.4vw, 36px);
  align-items: baseline;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(28,37,32,0.14);
}
.chapter__num {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(28px, 2.6vw, 40px);
  color: var(--tan-deep);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}
.chapter.is-active .chapter__num { color: var(--forest); }
.chapter__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2vw, 30px);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
  max-width: 20ch;
  text-wrap: balance;
  transition: color 0.4s ease;
}
.chapter.is-active .chapter__title { color: var(--forest); }
.chapter__body { display: flex; flex-direction: column; gap: 18px; }
.chapter__body p {
  font-size: var(--body-l);
  line-height: 1.74;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}
.chapter__media {
  display: none;
  margin: 12px 0 0;
}
.chapter__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--forest-deep);
}

/* Sticky visual frame (desktop) */
.conceito__visual {
  position: sticky;
  top: 110px;
  align-self: start;
}
.visual__frame {
  position: relative;
  aspect-ratio: 5 / 6;
  max-width: 480px;
  margin-left: auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest-deep);
  box-shadow: 0 30px 80px -40px rgba(28,37,32,0.4);
}
.visual__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.4,0,.2,1);
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.visual__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}
.visual__slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual__slide figcaption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px clamp(24px, 2.6vw, 36px) clamp(20px, 2.4vw, 32px);
  background: linear-gradient(180deg, rgba(25,33,28,0) 0%, rgba(25,33,28,0.4) 50%, rgba(25,33,28,0.88) 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.visual__index {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan-light);
  font-weight: 500;
}
.visual__caption {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.32;
  color: var(--cream);
  max-width: 30ch;
  font-weight: 500;
}
.visual__progress {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  justify-content: flex-end;
}
.visual__step {
  height: 2px;
  width: 38px;
  background: rgba(28,37,32,0.15);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.4s ease, width 0.4s ease;
}
.visual__step:hover { background: rgba(28,37,32,0.35); }
.visual__step.is-active {
  background: var(--forest);
  width: 64px;
}

/* Closing manifesto */
.conceito__manifesto {
  margin: 0 auto;
  max-width: 920px;
  padding: clamp(36px, 4vw, 52px) clamp(32px, 4.5vw, 60px);
  background: var(--cream);
  border-left: 3px solid var(--tan);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: center;
}
.manifesto__mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(56px, 6vw, 88px);
  color: var(--tan);
  line-height: 0.9;
  font-weight: 500;
  align-self: start;
  margin-top: -4px;
}
.conceito__manifesto p {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.36;
  color: var(--ink);
  text-wrap: pretty;
  font-weight: 500;
  margin: 0;
}

/* Mobile: inline media + no sticky aside */
@media (max-width: 900px) {
  .conceito__editorial { grid-template-columns: 1fr; }
  .conceito__visual { display: none; }
  .chapter__media { display: block; }
  .chapter__head { padding-bottom: 16px; margin-bottom: 18px; }
  .conceito__story { gap: clamp(56px, 9vw, 88px); }
  .conceito__manifesto { grid-template-columns: 1fr; gap: 6px; padding-left: clamp(24px, 6vw, 40px); padding-right: clamp(24px, 6vw, 40px); }
  .manifesto__mark { font-size: 48px; margin-top: 0; }
}

/* ---------- Assistências incluídas (icon grid) ---------- */
.incl {
  margin-top: clamp(48px, 6vw, 88px);
  border-top: 1px solid rgba(241,235,221,0.14);
  padding-top: clamp(48px, 6vw, 88px);
}
.incl__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.incl__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tan-light);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
}
.incl__eyebrow::before {
  content: "";
  width: 26px; height: 1px; background: var(--tan-light);
  opacity: 0.7;
}
.incl__head h4 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 14px;
  line-height: 1.18;
  max-width: 22ch;
}
.incl__head h4 em { font-style: italic; color: var(--tan-light); }
.incl__head p {
  color: rgba(241,235,221,0.75);
  font-size: 15px;
  line-height: 1.65;
  max-width: 52ch;
}
@media (max-width: 820px) {
  .incl__head { grid-template-columns: 1fr; align-items: start; }
}

.incl__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(241,235,221,0.10);
  border: 1px solid rgba(241,235,221,0.10);
}
.incl__item {
  background: var(--forest-deep);
  padding: clamp(24px, 2.4vw, 36px) clamp(20px, 2vw, 28px);
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 110px;
  transition: background 0.25s ease;
}
.incl__item:hover { background: var(--forest); }
.incl__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--tan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
  position: relative;
  background: rgba(184,163,128,0.06);
}
.incl__icon svg {
  width: 26px; height: 26px;
  display: block;
}
.incl__icon-tag {
  position: absolute;
  bottom: -6px; right: -10px;
  background: var(--tan);
  color: var(--forest-deep);
  font-family: "Montserrat", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 999px;
  line-height: 1;
}
.incl__label {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--cream);
  font-weight: 400;
  text-wrap: balance;
}
@media (max-width: 900px) {
  .incl__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .incl__grid { grid-template-columns: 1fr; }
  .incl__item { min-height: 0; padding: 18px 22px; }
}
