/* ================================================
   LETHES LEGACY — Shared Styles
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --gold:    #c4a356;
  --gold-h:  #d4b568;
  --dark:    #1a1410;
  --body-c:  #5c5047;
  --cream:   #f5f0e8;
  --cream-d: #ece6d8;
  --border:  #ddd6c8;
  --white:   #fdfaf5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; }

/* ── NAVBAR ─────────────────────────────────────── */

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 80px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: -10px;
}

.logo-img-footer {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.logo-mono {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -7px;
  padding-right: 7px;
}

.logo-mono em { font-style: italic; }

.logo-sep {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
  transition: background 0.35s;
}

.logo-words { display: flex; flex-direction: column; }

.logo-words .l-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: white;
  line-height: 1.3;
  transition: color 0.35s;
}

.logo-words .l-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  transition: color 0.35s;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.btn-nav {
  background: var(--gold);
  color: white;
  padding: 11px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}

.btn-nav:hover { background: var(--gold-h); color: white; }

/* ── NAVBAR SCROLLED / OPEN STATE ── */

.navbar.scrolled,
.navbar.open {
  background: var(--white);
  border-color: var(--border);
}
.navbar.scrolled .logo-words .l-name,
.navbar.open     .logo-words .l-name { color: var(--dark); }
.navbar.scrolled .logo-words .l-sub,
.navbar.open     .logo-words .l-sub  { color: var(--body-c); }
.navbar.scrolled .logo-sep,
.navbar.open     .logo-sep           { background: var(--border); }
.navbar.scrolled .nav-links a,
.navbar.open     .nav-links a        { color: var(--dark); }
.navbar.scrolled .nav-hamburger span,
.navbar.open     .nav-hamburger span { background: var(--dark); }

/* ── SHARED SECTION PRIMITIVES ──────────────────── */

.s-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}

.s-tag.left { text-align: left; }

.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 14px;
  text-align: center;
}

.s-title.left  { text-align: left; }
.s-title.white { color: white; }
.s-title.sm    { font-size: 44px; }

.s-divider {
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 52px;
}

.s-divider.left { margin: 0 0 44px; }

/* ── HERO ────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  margin-top: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #2a1c10;
  background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,6,3,0.78) 0%,
    rgba(20,12,6,0.52) 50%,
    rgba(10,5,3,0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 880px;
}

.hero-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 300;
  color: white;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-filled {
  padding: 15px 32px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all 0.2s;
  display: inline-block;
}

.btn-filled:hover { background: transparent; color: white; border-color: white; }

.btn-outline {
  padding: 15px 32px;
  background: transparent;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── PROPERTY CATEGORY CARDS ────────────────────── */

.prop-cats-wrap {
  background: var(--cream);
  padding: 0 0 72px;
}

.prop-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: -100px auto 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 48px rgba(20,12,6,0.14);
  background: white;
}

.prop-cat-card {
  display: block;
  background: white;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.prop-cat-card:nth-child(2) { border-left: none; border-right: none; }

.prop-cat-card:hover {
  transform: translateY(-7px);
  z-index: 2;
  box-shadow: 0 22px 52px rgba(20,12,6,0.14);
}

.prop-cat-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.prop-cat-img-wrap.casa   { background: linear-gradient(135deg, #7a5618, #b88030, #5a3a10); }
.prop-cat-img-wrap.apto   { background: linear-gradient(135deg, #3a4a58, #5a6878, #2a3a48); }
.prop-cat-img-wrap.quarto { background: linear-gradient(135deg, #5a4535, #806050, #402a20); }

.prop-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.prop-cat-card:hover .prop-cat-img-wrap img { transform: scale(1.05); }

.prop-cat-body {
  padding: 20px 24px 22px;
  position: relative;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prop-cat-label { display: flex; align-items: center; gap: 7px; }

.prop-cat-label svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.prop-cat-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
}

.prop-cat-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--body-c);
}

.prop-cat-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-size: 16px;
  color: var(--dark);
  transition: transform 0.2s;
}

.prop-cat-card:hover .prop-cat-arrow { transform: translateX(5px); }

/* ── FEATURES STRIP ─────────────────────────────── */

.features {
  background: var(--cream);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0 32px;
  border-right: 1px solid var(--border);
}

.feature:first-child { padding-left: 0; }
.feature:last-child  { border-right: none; padding-right: 0; }

.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--body-c);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-copy { display: flex; flex-direction: column; gap: 6px; }

.feature-copy h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.45;
}

.feature-copy p {
  font-size: 13px;
  font-weight: 300;
  color: var(--body-c);
  line-height: 1.6;
}

/* ── DESTINOS ───────────────────────────────────── */

.destinos {
  background: var(--cream);
  padding: 80px 48px 96px;
  text-align: center;
}

.destinos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 480px;
  gap: 14px;
}

.destinos-col { display: flex; flex-direction: column; gap: 14px; }

.destino-card {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: block;
  min-height: 0;
}

.destino-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}

.destino-card:hover .destino-card-bg { transform: scale(1.06); }

.destino-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,2,0.7) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 28px;
}

.destino-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: white;
  line-height: 1;
}

.destino-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
}

.dest-porto   { background-color: #4a3a2a; }
.dest-lisboa  { background-color: #2a3a5a; }
.dest-douro   { background-color: #3a5020; }
.dest-alentejo{ background-color: #5a4030; }

/* ── GESTÃO DE AL ───────────────────────────────── */

.gestao {
  background: var(--dark);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.gestao-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 36px;
}

.gestao-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 44px;
}

.gestao-list li {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  gap: 12px;
}

.gestao-list li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.btn-gold {
  display: inline-block;
  padding: 15px 32px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-gold:hover { background: var(--gold-h); }

.gestao-visual { position: relative; }

.gestao-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #3a2a1a, #6a4a2a, #2a1a0a);
}

.gestao-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.gestao-accent {
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--gold);
  pointer-events: none;
}

/* ── EXPERIÊNCIAS ───────────────────────────────── */

.experiencias {
  background: var(--white);
  padding: 100px 80px;
  text-align: center;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.exp-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.exp-item:hover { background: var(--cream); }
.exp-item:last-child { border-right: none; }

.exp-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.exp-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.exp-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
}

.exp-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--body-c);
  line-height: 1.65;
  text-align: center;
}

/* ── SOBRE NÓS ──────────────────────────────────── */

.sobre {
  background: var(--cream);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, #3a2a1a, #6a4a2a, #2a1a0a);
}

.sobre-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.sobre-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--body-c);
  line-height: 1.85;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.stat-item  { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--body-c);
}

/* ── CONTACTOS ──────────────────────────────────── */

.contactos {
  background: var(--dark);
  padding: 100px 80px;
  text-align: center;
}

.contactos-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  max-width: 560px;
  margin: 20px auto 48px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 18px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-whatsapp:hover { background: #1fbb58; color: white; }

.btn-whatsapp svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }

.contactos-alts {
  margin-top: 36px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contacto-alt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.contacto-alt svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── FOOTER ─────────────────────────────────────── */

footer {
  background: #141008;
  padding: 64px 80px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .logo-mono  { color: var(--gold); font-size: 40px; }
.footer-logo .l-name     { color: rgba(255,255,255,0.85); }
.footer-logo .l-sub      { color: rgba(255,255,255,0.4); }
.footer-logo .logo-sep   { background: rgba(255,255,255,0.14); }

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  margin-top: 20px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── WHATSAPP FAB ───────────────────────────────── */

.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 18px rgba(37,211,102,0.42);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37,211,102,0.52);
}

.wa-fab svg { width: 28px; height: 28px; fill: white; }

/* ── PAGE HERO (alojamentos page) ───────────────── */

.page-hero {
  margin-top: 0;
  padding: 170px 80px 80px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.page-hero-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 400;
  color: white;
  position: relative;
}

/* ── FILTER BAR ─────────────────────────────────── */

.filter-bar {
  background: var(--white);
  padding: 0 80px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
  position: sticky;
  top: 80px;
  z-index: 100;
}

.filter-btn {
  padding: 18px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--body-c);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.filter-btn:hover { color: var(--dark); }

.filter-btn.active {
  color: var(--dark);
  border-bottom-color: var(--gold);
  font-weight: 600;
}

/* ── LISTINGS GRID ──────────────────────────────── */

.listings {
  background: var(--cream);
  padding: 72px 80px 96px;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.listing-card {
  background: white;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(20,12,6,0.12);
}

.listing-card.hidden { display: none; }

.listing-img-wrap {
  aspect-ratio: 16/11;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.listing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.listing-card:hover .listing-img-wrap img { transform: scale(1.04); }

.listing-type-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: white;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 10px;
}

.listing-body { padding: 22px 22px 20px; }

.listing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.2;
}

.listing-location {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--body-c);
  margin-bottom: 14px;
}

.listing-amenities { display: flex; gap: 16px; margin-bottom: 18px; }

.listing-amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--body-c);
}

.listing-amenity svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--body-c);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.listing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.listing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.listing-price span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--body-c);
}

.btn-wa-listing {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: white;
  padding: 9px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-wa-listing:hover { background: #1fbb58; color: white; }

.btn-wa-listing svg { width: 15px; height: 15px; fill: white; flex-shrink: 0; }

/* ── LISTINGS CONTACT STRIP ─────────────────────── */

.listings-cta {
  background: var(--cream-d);
  padding: 72px 80px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.listings-cta .s-title { font-size: 44px; }

/* ================================================
   HAMBURGER / MOBILE NAV — hidden on desktop
   ================================================ */

.nav-hamburger { display: none; }
.nav-li-cta    { display: none !important; }
body.nav-open  { overflow: hidden; }

/* ================================================
   RESPONSIVE — TABLET  ≤ 1023px
   ================================================ */

@media (max-width: 1023px) {
  .hero-content  { padding: 0 48px; }
  .hero-title    { font-size: 54px; }

  .prop-cats {
    grid-template-columns: 1fr;
    margin: -60px 24px 0;
  }
  .prop-cat-card:nth-child(2) {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-top: none;
  }
  .prop-cat-card:last-child { border-top: none; }

  .features-inner { grid-template-columns: repeat(2, 1fr); }

  .destinos      { padding: 64px 32px 80px; }
  .destinos-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .destino-card  { min-height: 260px; }

  .gestao { padding: 72px 48px; gap: 60px; }

  .sobre { padding: 72px 48px; gap: 48px; }

  .listings      { padding: 48px 40px 64px; }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }

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

/* ================================================
   RESPONSIVE — MOBILE  ≤ 767px
   ================================================ */

@media (max-width: 767px) {

  /* ── NAVBAR ── */
  .navbar { height: 60px; padding: 0 20px; }

  .logo-img { height: 54px; margin-bottom: -8px; }

  .navbar .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 60px 0 0 0;
    background: var(--white);
    padding: 8px 0 32px;
    gap: 0;
    z-index: 999;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  .navbar.open .nav-links { display: flex; }

  .navbar .nav-links li       { border-bottom: 1px solid var(--border); }
  .navbar .nav-links a        { display: block; padding: 16px 24px; font-size: 12px; letter-spacing: 2px; }
  .navbar .nav-links a:hover,
  .navbar .nav-links a.active { color: var(--gold); }

  .btn-nav { display: none; }

  .nav-li-cta {
    display: block !important;
    border-bottom: none !important;
    padding: 20px 20px 0;
  }
  .nav-wa-mobile {
    display: block;
    background: var(--gold);
    color: #fff !important;
    padding: 14px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.2s;
  }
  .nav-wa-mobile:hover { background: var(--gold-h); }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    transition: transform 0.25s, opacity 0.25s, background 0.35s;
    transform-origin: center;
  }
  .navbar.open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navbar.open .nav-hamburger span:nth-child(2) { opacity: 0; }
  .navbar.open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── GLOBAL SECTION PRIMITIVES ── */
  .s-title        { font-size: 32px; }
  .s-title.sm     { font-size: 28px; }
  .s-divider      { margin-bottom: 32px; }
  .s-divider.left { margin-bottom: 28px; }

  /* ── HERO ── */
  .hero         { margin-top: 0; }
  .hero-content { padding: 0 24px; max-width: 100%; }
  .hero-title   { font-size: 38px; }
  .hero-sub     { font-size: 13px; margin-bottom: 28px; }
  .hero-ctas    { flex-direction: column; gap: 12px; }
  .btn-filled,
  .btn-outline  { width: 100%; text-align: center; padding: 16px 24px; box-sizing: border-box; display: block; }

  /* ── PROPERTY CATEGORY CARDS ── */
  .prop-cats-wrap { padding: 0 0 48px; }
  .prop-cats {
    grid-template-columns: 1fr;
    margin: -60px 16px 0;
    box-shadow: 0 6px 28px rgba(20,12,6,0.12);
  }
  .prop-cat-card:nth-child(2) {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-top: none;
  }
  .prop-cat-card:last-child { border-top: none; }

  /* ── FEATURES STRIP ── */
  .features { padding: 40px 0; }
  .features-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
    gap: 0;
  }
  .feature             { padding: 20px 16px; border-right: none; border-bottom: 1px solid var(--border); }
  .feature:first-child { padding-left: 16px; }
  .feature:last-child  { border-right: none; padding-right: 16px; }
  .feature:nth-child(odd) { border-right: 1px solid var(--border); }
  .feature:nth-child(3),
  .feature:nth-child(4)   { border-bottom: none; }

  /* ── DESTINOS ── */
  .destinos        { padding: 48px 16px 56px; }
  .destinos-grid   { grid-template-columns: 1fr; grid-template-rows: auto; gap: 10px; }
  .destinos-col    { display: contents; }
  .destino-card    { min-height: 200px; }
  .destino-name    { font-size: 24px; }
  .destino-overlay { padding: 18px 20px; }

  /* ── GESTÃO ── */
  .gestao          { grid-template-columns: 1fr; padding: 48px 20px; gap: 40px; }
  .gestao-visual   { order: -1; }
  .gestao-img-wrap { aspect-ratio: 16/9; }
  .gestao-accent   { display: none; }
  .gestao-desc     { margin-bottom: 24px; }
  .gestao-list     { margin-bottom: 32px; }

  /* ── EXPERIÊNCIAS ── */
  .experiencias { padding: 48px 16px; }
  .exp-grid     { grid-template-columns: repeat(2, 1fr); }
  .exp-item              { padding: 28px 16px; border-right: none; border-bottom: 1px solid var(--border); }
  .exp-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .exp-item:nth-child(3),
  .exp-item:nth-child(4)   { border-bottom: none; }
  .exp-item:last-child     { border-right: none; }

  /* ── SOBRE NÓS ── */
  .sobre          { grid-template-columns: 1fr; padding: 48px 20px; gap: 36px; }
  .sobre-img-wrap { aspect-ratio: 3/2; }
  .stat-num       { font-size: 36px; }
  .stats-grid     { gap: 20px; }

  /* ── CONTACTOS ── */
  .contactos      { padding: 48px 20px; }
  .btn-whatsapp   { width: 100%; justify-content: center; padding: 16px 24px; box-sizing: border-box; }
  .contactos-alts { flex-direction: column; gap: 16px; }

  /* ── FOOTER ── */
  footer         { padding: 40px 20px 24px; }
  .footer-top    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* ── WHATSAPP FAB ── */
  .wa-fab     { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .wa-fab svg { width: 24px; height: 24px; }

  /* ── PAGE HERO (alojamentos) ── */
  .page-hero       { padding: 108px 20px 48px; margin-top: 0; }
  .page-hero-title { font-size: 32px; }

  /* ── FILTER BAR ── */
  .filter-bar {
    padding: 0 4px;
    top: 60px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .filter-btn { padding: 14px 18px; white-space: nowrap; flex-shrink: 0; }

  /* ── LISTINGS ── */
  .listings          { padding: 32px 16px 48px; }
  .listings-grid     { grid-template-columns: 1fr; gap: 16px; }
  .listing-name      { font-size: 18px; }
  .listing-amenities { flex-wrap: wrap; gap: 8px; }
  .listing-footer    { flex-wrap: wrap; gap: 10px; }
  .btn-wa-listing    { padding: 10px 16px; }

  /* ── LISTINGS CTA ── */
  .listings-cta          { padding: 40px 20px; }
  .listings-cta .s-title { font-size: 28px; }

}
