/* ===========================================================
   RECANTO PUMA — Landing Page
   Rústico-elegante · Cerrado goiano · à beira do lago
   =========================================================== */

:root {
  /* Earth / brand palette */
  --brown-900: #3a2c1f;
  --brown-800: #4a3826;
  --brown:     #5a4632;
  --brown-600: #6b4f3a;
  --cream:     #f3e5c8;
  --cream-soft:#f7eed9;
  --sand:      #e8d9bc;
  --green:     #5b6b4a;
  --green-deep:#46543a;
  --bg:        #faf6ef;

  /* Accent (dourado) */
  --gold:      #c1903f;
  --gold-deep: #a9792f;
  --gold-soft: #e9d3a4;

  /* Ink */
  --ink:       #4a3a2b;
  --ink-soft:  #7a6a58;

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Mulish', system-ui, -apple-system, sans-serif;

  /* Radius / shadow */
  --r: 16px;
  --r-lg: 22px;
  --r-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(58, 44, 31, 0.07);
  --shadow:    0 14px 40px -16px rgba(58, 44, 31, 0.30);
  --shadow-lg: 0 30px 70px -24px rgba(58, 44, 31, 0.45);

  --header-h: 86px;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--brown);
  text-wrap: balance;
}

.font-display { font-family: var(--font-display); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- Logo ---------- */
.logo-svg { display: block; height: 40px; width: auto; fill: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(169,121,47,.7);
}
.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -10px rgba(169,121,47,.75);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243,229,200,.55);
}
.btn-ghost:hover {
  background: rgba(243,229,200,.14);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: rgba(90,70,50,.3);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-lg { padding: 19px 40px; font-size: 1.05rem; }

/* ===========================================================
   HEADER
   =========================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .4s ease, box-shadow .4s ease, height .4s ease;
}
.header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 210px;
  color: var(--cream);
  transition: color .4s ease, height .4s ease;
  z-index: 2;
  flex-shrink: 0;
}
.header.scrolled {
  height: 70px;
  background: var(--brown);
  box-shadow: 0 8px 30px -14px rgba(58,44,31,.6);
}
.header.scrolled .header__logo { color: var(--cream); height: 34px; }

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav__links a {
  position: relative;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--cream);
  padding: 6px 0;
  opacity: .92;
  transition: opacity .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .28s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

.nav__cta-mobile-li { display: none; }

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border: none;
  background: rgba(243,229,200,.12);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.nav__burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transform: translate(-50%,-50%);
  transition: .3s ease;
}
.nav__burger span:nth-child(1) { transform: translate(-50%, -7px); }
.nav__burger span:nth-child(3) { transform: translate(-50%, 5px); }
.nav__burger.open span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translate(-50%,-50%) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero.webp") center 42% / cover no-repeat;
  transform: scale(1.06);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34,23,14,.82) 0%, rgba(34,23,14,.55) 34%, rgba(34,23,14,.12) 62%, rgba(34,23,14,.05) 100%),
    linear-gradient(180deg, rgba(34,23,14,.5) 0%, transparent 26%, transparent 60%, rgba(34,23,14,.72) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: calc(var(--header-h) + 40px) 28px 96px;
}
.hero__content { max-width: 760px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(40,28,18,.34);
  border: 1px solid rgba(243,229,200,.34);
  backdrop-filter: blur(6px);
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(193,144,63,.3); }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(30,20,12,.4);
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub {
  margin-top: 26px;
  max-width: 580px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.6;
  color: rgba(247,238,217,.92);
  font-weight: 400;
}
.hero__cta {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243,229,200,.8);
}
.hero__scroll .mouse {
  width: 24px; height: 38px;
  border: 1.6px solid rgba(243,229,200,.6);
  border-radius: 14px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 8px;
  width: 3px; height: 7px;
  background: var(--cream);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 12px); }
  100% { opacity: 0; }
}

/* ===========================================================
   SECTION SHELL
   =========================================================== */
.section { padding: clamp(48px, 7vh, 90px) 0; }
.section--sand { background: linear-gradient(180deg, var(--bg), #f4ecdd); }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .eyebrow::after {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.section__title {
  margin-top: 18px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 600;
}
.section__lead {
  margin-top: 20px;
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ---------- Sobre ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about__text p { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.75; margin-top: 18px; }
.about__text .lead-first { color: var(--ink); font-size: 1.18rem; }
.about__signs {
  margin-top: 34px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.about__sign { display: flex; flex-direction: column; }
.about__sign b { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-deep); font-weight: 600; line-height: 1; }
.about__sign span { font-size: 0.82rem; letter-spacing: .04em; color: var(--ink-soft); margin-top: 6px; text-transform: uppercase; font-weight: 700; }

.about__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.2fr 1fr;
  gap: 16px;
  height: 520px;
}
.about__mosaic figure { position: relative; overflow: hidden; border-radius: var(--r); box-shadow: var(--shadow); }
.about__mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.3,1); }
.about__mosaic figure:hover img { transform: scale(1.07); }
.about__mosaic .m1 { grid-row: span 2; }
.about__mosaic figcaption {
  position: absolute; left: 14px; bottom: 12px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: .04em;
  color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.6);
  background: rgba(40,28,18,.32); backdrop-filter: blur(4px);
  padding: 5px 12px; border-radius: 100px;
}

/* ---------- Estrutura ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat-card {
  background: #fff;
  border: 1px solid #ece1cf;
  border-radius: var(--r);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.feat-card__icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 20%, #fbf3e1, var(--cream));
  position: relative;
  margin-bottom: 22px;
  border: 1px solid #ecdcbd;
  flex-shrink: 0;
}
.feat-card__icon svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 26px; height: 26px;
  stroke: var(--brown); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  overflow: visible;
}
.feat-card h3 { font-size: 1.42rem; font-weight: 600; }
.feat-card h3 small { display: block; font-family: var(--font-body); font-weight: 800; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; }
.feat-card p { margin-top: 12px; color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }

.feat-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Estrutura: Blocos A & B (painéis) ---------- */
.struct-panel {
  display: grid;
  grid-template-columns: 1.02fr 1.1fr;
  background: #fff;
  border: 1px solid #ece1cf;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 26px;
}
.struct-panel--reverse .struct-panel__media { order: 2; }
.struct-panel__media {
  position: relative;
  min-height: 420px;
  background: var(--sand);
}
.struct-panel__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.struct-panel__tag {
  position: absolute; left: 18px; top: 18px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: rgba(40,28,18,.42); backdrop-filter: blur(5px);
  border: 1px solid rgba(243,229,200,.3);
  padding: 7px 15px; border-radius: 100px;
}
.struct-panel__body { padding: clamp(28px, 3.2vw, 52px); display: flex; flex-direction: column; align-items: flex-start; }
.struct-panel__body h3 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 600;
}
.struct-panel__body > p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.72;
}
.amenity-list {
  list-style: none;
  margin-top: 30px;
  display: grid;
  gap: 22px 28px;
}
.amenity-list--2 { grid-template-columns: 1fr 1fr; }
.amenity { display: flex; gap: 14px; align-items: center; }
.amenity > div { display: flex; flex-direction: column; min-width: 0; }
.amenity__ic {
  width: 54px; height: 54px; flex: none;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 20%, #fbf3e1, var(--cream));
  border: 1px solid #ecdcbd;
  position: relative;
}
.amenity__ic svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  stroke: var(--brown); fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  overflow: visible;
}
.amenity b {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.16rem;
  line-height: 1.2;
  color: var(--brown);
}
.amenity span { display: block; margin-top: 4px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; }

/* Bloco C heading */
.struct-c-head { text-align: center; margin: clamp(46px, 6vw, 70px) 0 36px; }
.struct-c-head .eyebrow::after {
  content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block;
}
.struct-c-title { margin-top: 14px; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; }

/* ---------- Galeria ---------- */
.gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.tab {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: 100px;
  border: 1.5px solid #e2d4ba;
  background: #fff;
  color: var(--brown-600);
  cursor: pointer;
  transition: .25s ease;
}
.tab:hover { border-color: var(--gold); color: var(--brown); }
.tab.active { background: var(--brown); color: var(--cream); border-color: var(--brown); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gitem {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: var(--sand);
  grid-column: span 1;
}
.gitem.tall  { /* portrait — ocupa 1 coluna, altura padrão da linha */ }
.gitem.wide  { grid-column: span 2; }
.gitem.big   { grid-column: span 2; }
.gitem img, .gitem video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.gitem:hover img, .gitem:hover video { transform: scale(1.06); }
.gitem__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(40,28,18,.72));
  opacity: 0; transition: opacity .35s ease;
  display: flex; align-items: flex-end; padding: 18px;
}
.gitem:hover .gitem__overlay { opacity: 1; }
.gitem__cap { color: #fff; font-weight: 700; font-size: .95rem; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.gitem__cat { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 800; margin-bottom: 2px; }
.gitem__play {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(40,28,18,.5); backdrop-filter: blur(4px);
  display: grid; place-items: center;
  border: 1px solid rgba(243,229,200,.4);
}
.gitem__play svg { width: 16px; height: 16px; fill: #fff; }

/* placeholder media */
.ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background-image:
    repeating-linear-gradient(45deg, rgba(90,70,50,.06) 0 12px, rgba(90,70,50,.11) 12px 24px);
  background-color: var(--sand);
}
.ph span {
  font-family: 'Mulish', monospace;
  font-size: .74rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown-600);
  background: rgba(250,246,239,.78);
  padding: 7px 14px; border-radius: 100px;
  border: 1px dashed rgba(107,79,58,.4);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(28,19,12,.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 4vw;
  opacity: 0; transition: opacity .3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(900px, 92vw);
}
.lightbox__media img,
.lightbox__media video {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}
.lightbox__cap {
  margin-top: 12px;
  color: var(--cream);
  font-weight: 600;
  font-size: .95rem;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.lb-btn {
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(28,19,12,.55);
  border: 2px solid rgba(243,229,200,.7);
  color: var(--cream);
  display: grid; place-items: center;
  cursor: pointer; transition: .2s ease;
  z-index: 2;
}
.lb-btn:hover { background: var(--gold); border-color: var(--gold); }
.lb-btn svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; }
.lb-close { top: 4vh; right: 4vw; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* ---------- Localização ---------- */
.loc__grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}
.loc__map {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  line-height: 0;
}
.loc__map iframe { width: 100%; height: 440px; border: 0; display: block; }
.loc__card .pin {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid #ece1cf;
  padding: 14px 20px; border-radius: var(--r);
  box-shadow: var(--shadow-sm); margin: 26px 0;
  font-weight: 700; color: var(--brown);
}
.loc__card .pin svg { width: 22px; height: 22px; stroke: var(--gold-deep); fill: none; stroke-width: 1.7; }

/* ---------- CTA final ---------- */
.cta {
  position: relative;
  color: var(--cream);
  overflow: hidden;
  background: var(--brown);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(60% 100% at 85% 10%, rgba(193,144,63,.22), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.cta__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin-inline: auto;
  padding: clamp(72px, 11vw, 120px) 28px;
  text-align: center;
}
.cta h2 { color: var(--cream); font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 600; }
.cta h2 em { font-style: italic; color: var(--gold-soft); }
.cta p { margin: 22px auto 0; max-width: 580px; font-size: 1.15rem; color: rgba(247,238,217,.85); }
.cta .btn { margin-top: 38px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--brown-900);
  color: rgba(243,229,200,.78);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 44px;
  align-items: start;
  text-align: center;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(243,229,200,.13);
}
.footer__logo { display: inline-block; height: 46px; width: auto; color: var(--cream); margin-bottom: 22px; }
.footer__brand { text-align: center; }
.footer__brand p { max-width: 320px; color: rgba(243,229,200,.6); font-size: .98rem; margin-inline: auto; }
.footer h4 { color: var(--cream); font-family: var(--font-body); font-weight: 800; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer__links a { color: rgba(243,229,200,.72); transition: color .2s, padding .2s; font-size: .98rem; }
.footer__links a:hover { color: var(--cream); padding-left: 5px; }
.footer__wa { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer__wa a {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; color: var(--cream); font-size: 1.02rem;
  transition: color .2s ease;
}
.footer__wa a:hover { color: var(--gold-soft); }
.footer__wa .wa-ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: #25d366;
  display: grid; place-items: center; flex: none;
}
.footer__wa .wa-ic svg { width: 20px; height: 20px; fill: #fff; }
.footer__bottom {
  text-align: center;
  padding: 26px 0;
  font-size: .86rem;
  color: rgba(243,229,200,.5);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 120;
  display: inline-flex; align-items: center; gap: 0;
  background: #25d366;
  color: #fff;
  border-radius: 100px;
  padding: 14px;
  font-weight: 800;
  box-shadow: 0 14px 34px -8px rgba(37,211,102,.6);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, padding .3s ease;
  overflow: hidden;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; flex: none; }
.wa-float span {
  max-width: 0; opacity: 0;
  white-space: nowrap;
  transition: max-width .4s ease, opacity .3s ease, margin .4s ease;
  font-size: .98rem;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px -8px rgba(37,211,102,.7); }
.wa-float:hover span { max-width: 130px; opacity: 1; margin-left: 10px; margin-right: 6px; }

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll .mouse::after { animation: none; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .struct-panel { grid-template-columns: 1fr; }
  .struct-panel--reverse .struct-panel__media { order: 0; }
  .struct-panel__media { min-height: 280px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__mosaic { height: 420px; max-width: 600px; }
  .loc__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* iPad portrait e tablets em geral */
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .header__inner { padding-inline: 24px; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    background: var(--brown);
    padding: 40px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease;
    box-shadow: none;
    list-style: none;
  }
  .nav__links.open { transform: translateX(0); box-shadow: -20px 0 60px -20px rgba(0,0,0,.6); }
  .nav__links a { font-size: 1.3rem; font-family: var(--font-display); }
  .nav__links a::after { display: none; }
  .nav__links .btn { margin-top: 18px; width: 100%; }
  .nav__cta-mobile-li { display: block; width: 100%; }
  .nav__burger { display: block; }
  .nav__cta-desktop { display: none; }
  .hero__inner { padding-inline: 24px; }
  .container { padding-inline: 24px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .gitem, .gitem.wide, .gitem.big, .gitem.tall { grid-column: span 1; }
}

@media (max-width: 720px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-grid--4 { grid-template-columns: 1fr; }
  .amenity-list--2 { grid-template-columns: 1fr; }
  .hero { align-items: flex-start; min-height: 88svh; }
  .hero__bg { background-position: center 38%; }
  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(34,23,14,.08) 0%,
        rgba(34,23,14,.12) 28%,
        rgba(34,23,14,.70) 52%,
        rgba(34,23,14,.94) 100%
      );
  }
  .hero__inner {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 120px;
    padding-inline: 20px;
    width: 100%;
  }
  .hero__content { max-width: 100%; }
  .hero__scroll { display: flex; }
  .hero__scroll .mouse::after { animation: scrollDot 1.8s ease-in-out infinite; will-change: transform, opacity; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; flex: 1 1 auto; }
  .section__head { margin-bottom: 40px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .about__mosaic { grid-template-columns: 1fr 1fr; height: 340px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .loc__map iframe { height: 300px; }
  .container { padding-inline: 20px; }
  .header__inner { padding-inline: 20px; }
}

@media (max-width: 400px) {
  body { font-size: 16px; }
  .gallery__grid { grid-template-columns: 1fr; }
}
