/* ========================================
   Paraíso do Dendê — Luxury Landing
   ======================================== */

:root {
  --bg: #0e0e0e;
  --bg-elevated: #141414;
  --gold: #b08d57;
  --gold-soft: #c4a574;
  --gold-deep: #8a6b3a;
  --gold-btn: #9a7a45;
  --wine: #8b1e1e;
  --green: #69bc54;
  --green-soft: #81c96f;
  --wine-hover: #a52828;
  --text: #f5f2eb;
  --text-muted: #a8a29a;
  --line: rgba(176, 141, 87, 0.45);
  --radius: 14px;
  --header-h: 103px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
  --surface-glow:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(176, 141, 87, 0.06), transparent 55%),
    var(--bg);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 134px;
  padding: 0.78rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 6px;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn__icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.btn--gold {
  background: var(--gold-btn);
  color: #0e0e0e;
  border: 1px solid var(--gold-btn);
}

.btn--gold:hover {
  background: #765f38;
  border-color: var(--gold-soft);
  transform: translateY(-2px);

}

.btn--wine {
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  min-width: 140px;
  padding: 0.45rem 2rem;
  border-radius: 8px;
}

.btn--wine:hover {
  background: var(--green-soft);
  border-color: var(--green-soft);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  min-width: 102px;
  padding: 0.5rem 1.3rem;
  font-size: 0.86rem;
}

.btn--outline:hover {
  background: rgba(176, 141, 87, 0.12);
  transform: translateY(-1px);
}

/* ---------- Header ---------- */
.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}

.header--scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(176, 141, 87, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  transition: padding 0.4s var(--ease);
}

.header--scrolled .header__inner {
  padding: 1rem 2rem;
}

@media (max-width: 640px) {
  .header--scrolled .header__inner {
    padding: 0.5rem 1rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  display: block;
  max-width: 210px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: max-width 0.4s var(--ease);
}

@media (max-width: 640px) {
  .logo img {
    max-width: 90px;
  }
}

.header--scrolled .logo img {
  max-width: 90px;
}

.nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 1.1rem;
}

.nav a {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.88);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav a.nav__cta {
  padding: 0.45rem 1.15rem;
  border: 1px solid rgba(176, 141, 87, 0.55);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(176, 141, 87, 0.08);
}

.nav a.nav__cta::after {
  display: none;
}

.nav a.nav__cta:hover,
.nav a.nav__cta.is-active {
  background: rgba(176, 141, 87, 0.12);
  border-color: var(--gold);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 120;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Decorative leaves ---------- */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.has-leaves {
  position: relative;
  overflow: hidden;
}

.has-leaves> :not(.leaf-decor) {
  position: relative;
  z-index: 1;
}

.leaf-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: rgba(255, 255, 255, 0.14);
  opacity: 0.9;
}

.leaf-decor--season-left {
  top: -30px;
  left: -55px;
  width: clamp(120px, 14vw, 190px);
  transform: rotate(-32deg);
}

.leaf-decor--season-right {
  bottom: -70px;
  right: -40px;
  width: clamp(140px, 16vw, 220px);
  transform: rotate(148deg) scaleX(-1);
}

.leaf-decor--casa-top {
  top: 40px;
  right: -50px;
  width: clamp(130px, 15vw, 200px);
  transform: rotate(55deg);
  color: rgba(255, 255, 255, 0.1);
}

.leaf-decor--casas-left {
  top: 50%;
  left: -70px;
  width: clamp(110px, 12vw, 170px);
  transform: translateY(-50%) rotate(-18deg);
}

.leaf-decor--casas-right {
  bottom: -50px;
  right: 2%;
  width: clamp(150px, 17vw, 240px);
  transform: rotate(125deg) scaleX(-1);
  color: rgba(255, 255, 255, 0.11);
}

.leaf-decor--conceito-right {
  top: 8%;
  right: -60px;
  width: clamp(160px, 18vw, 260px);
  transform: rotate(72deg);
  color: rgba(255, 255, 255, 0.12);
}

.leaf-decor--valores-left {
  top: 10%;
  left: -55px;
  width: clamp(120px, 14vw, 180px);
  transform: rotate(-28deg);
  color: rgba(255, 255, 255, 0.1);
}

.leaf-decor--valores-right {
  bottom: 8%;
  right: -45px;
  width: clamp(130px, 15vw, 200px);
  transform: rotate(135deg) scaleX(-1);
  color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {

  .leaf-decor--season-left,
  .leaf-decor--casas-left {
    width: 100px;
    opacity: 0.6;
  }

  .leaf-decor--season-right,
  .leaf-decor--casas-right,
  .leaf-decor--conceito-right,
  .leaf-decor--valores-right {
    width: 120px;
    opacity: 0.55;
  }

  .leaf-decor--casa-top {
    width: 90px;
    right: -35px;
    opacity: 0.5;
  }
}

@media (max-width: 640px) {
  .leaf-decor {
    opacity: 0.35;
  }

  .leaf-decor--season-right,
  .leaf-decor--casas-right {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 72vh;
}

.hero__media {
  position: relative;
  height: 72vh;
  min-height: 420px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero__media::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 22vh, 220px);
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%,
      color-mix(in srgb, var(--bg) 45%, transparent) 45%,
      color-mix(in srgb, var(--bg) 75%, transparent) 70%, var(--bg) 100%);
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.4) 18%, rgba(0, 0, 0, 0.28) 42%, transparent 58%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, transparent 45%);
  pointer-events: none;
}

.hero__media::after {
  display: none;
}

.hero__waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(72px, 14vw, 140px);
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero__wave {
  position: absolute;
  left: -5%;
  bottom: 0;
  width: 110%;
  height: 100%;
  /* mesmo glow da .season, ancorado na base pra continuar no topo da seção */
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(176, 141, 87, 0.06), transparent 55%),
    var(--bg);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M0,95 C200,40 380,130 560,85 C740,40 920,125 1100,80 C1280,35 1380,110 1440,75 L1440,160 L0,160 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M0,95 C200,40 380,130 560,85 C740,40 920,125 1100,80 C1280,35 1380,110 1440,75 L1440,160 L0,160 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: hero-wave-drift 12s ease-in-out infinite alternate;
}

@keyframes hero-wave-drift {
  from {
    transform: translateX(-2.5%);
  }

  to {
    transform: translateX(2.5%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__wave {
    animation: none;
  }
}

.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 1.5rem;
  max-width: 900px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.hero__subtitle {
  margin-top: 1rem;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.9);
}

.hero__cta {
  margin-top: 1.75rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0e0e0e;
  min-width: 180px;
  padding: 0.55rem 1.85rem;
}

/* ---------- Season CTA ---------- */
.season {
  padding: 3.5rem 1.5rem 4rem;
  text-align: center;
  background: var(--surface-glow);
}

.season__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
  opacity: 0;
  transform: translateY(16px);
}

.season__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(24px);
}

.season__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.season__divider {
  position: relative;
  width: 1px;
  background: linear-gradient(180deg,
      transparent 0%,
      var(--gold-soft) 12%,
      var(--gold-soft) 88%,
      transparent 100%);
  opacity: 0.7;
  align-self: stretch;
  min-height: 100%;
}

.season__divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(176, 141, 87, 0.4);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.season__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.35rem 1.65rem;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(176, 141, 87, 0.16);
  background: rgba(255, 255, 255, 0.02);
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.season__option:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 141, 87, 0.4);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.season__option-photo {
  display: block;
  width: calc(100% + 2.7rem);
  margin: 0 -1.35rem 0.35rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(176, 141, 87, 0.08);
}

.season__option-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.season__option:hover .season__option-photo img {
  transform: scale(1.04);
}

.season__option-title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.season__option-title a {
  color: inherit;
}

.season__option-title a:hover {
  color: var(--gold-soft);
}

.season__option-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 36ch;
  margin: 0 auto;
  flex: 1;
}

.season__option .btn {
  margin-top: auto;
}

.season__option .btn--gold {
  font-family: var(--font-serif);
  font-size: 1.10rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  min-width: 128px;
  padding: 0.40rem 1.85rem;
  color: #0e0e0e;
}

/* ---------- Section titles ---------- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-title--gold {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-title--center {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ---------- Property preview (index) ---------- */
.property {
  padding: 4.5rem 1.5rem 5rem;
  position: relative;
}

.property--alt {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(176, 141, 87, 0.05), transparent 55%),
    var(--bg-elevated);
}

.property__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.property__header {
  max-width: 640px;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.property__eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.property__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.property__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.property__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.75rem;
  margin: 0 auto 2.25rem;
  max-width: 760px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.property__highlights li {
  padding: 0.45rem 1rem;
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(176, 141, 87, 0.06);
}

.property__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.property__photo {
  position: relative;
  overflow: hidden;
  border: 0;
  background: none;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  padding: 0;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.property__photo img {
  transition: transform 0.7s var(--ease);
}

.property__photo:hover img {
  transform: scale(1.05);
}

.property__cta {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  min-width: 188px;
  padding: 0.58rem 2.05rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.property__cta--static {
  opacity: 1;
  transform: none;
  margin-top: 2.5rem;
}

/* ---------- Casa Alta (detail pages) ---------- */
.casa-alta {
  padding: 2rem 1.5rem 5rem;
}

.casa-alta__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

.casa-alta__gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 110px;
  gap: 0.75rem;
}

.casa-alta__gallery .gallery-item--sm:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.casa-alta__gallery .gallery-item--sm:nth-child(2) {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
}

.casa-alta__gallery .gallery-item--sm:nth-child(3) {
  grid-column: 5 / 7;
  grid-row: 1 / 3;
}

.casa-alta__gallery .gallery-item--wide {
  grid-column: 1 / 5;
  grid-row: 3 / 5;
}

.casa-alta__gallery .gallery-item--tall {
  grid-column: 5 / 7;
  grid-row: 3 / 5;
}

.casa-alta__gallery .gallery-item--sm:nth-child(6) {
  grid-column: 1 / 3;
  grid-row: 5 / 7;
}

.casa-alta__gallery .gallery-item--wide-sm {
  grid-column: 3 / 7;
  grid-row: 5 / 7;
}

.casa-alta__gallery .gallery-item--sm:nth-child(8) {
  grid-column: 1 / 3;
  grid-row: 7 / 9;
}

.casa-alta__gallery .gallery-item--sm:nth-child(9) {
  grid-column: 3 / 5;
  grid-row: 7 / 9;
}

.casa-alta__gallery .gallery-item--sm:nth-child(10) {
  grid-column: 5 / 7;
  grid-row: 7 / 9;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  background: none;
  border-radius: var(--radius);
  padding: 0;
  cursor: zoom-in;
  isolation: isolate;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
}

.gallery-item img {
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.play-icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
}

.play-icon svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.player-ui {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.player-ui__play {
  width: 28px;
  height: 28px;
  color: #fff;
  flex-shrink: 0;
}

.player-ui__play svg {
  width: 100%;
  height: 100%;
}

.player-ui__bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  overflow: hidden;
}

.player-ui__progress {
  display: block;
  width: 28%;
  height: 100%;
  background: var(--gold);
  border-radius: inherit;
}

.player-ui__time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.casa-alta__content {
  padding-top: 0.25rem;
  opacity: 0;
  transform: translateY(24px);
}

.casa-alta__eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}

.casa-alta__text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.casa-alta__text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.casa-alta__staff {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(176, 141, 87, 0.25);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.casa-alta__staff strong {
  color: var(--gold);
  font-weight: 500;
}

.casa-alta__details {
  max-width: 820px;
  margin: 3rem auto 0;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
}

.casa-alta__details .detail-block__title {
  font-size: clamp(1.22rem, 2vw, 1.52rem);
  margin-bottom: 1rem;
}

.casa-alta__details .suite-list {
  gap: 0.72rem;
}

.casa-alta__details .suite-list li {
  font-size: 0.92rem;
  line-height: 1.55;
  padding-left: 0.85rem;
}

.casa-alta__videos {
  max-width: 1280px;
  margin: 3rem auto 0;
  opacity: 0;
  transform: translateY(24px);
}

.detail-block__title--center {
  text-align: center;
  margin-bottom: 1.75rem;
}

.video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1a1a1a;
  cursor: pointer;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
}

.video-thumb__cover {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.6s var(--ease);
}

.video-thumb__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.32);
  transition: background 0.35s var(--ease);
}

.video-thumb:hover .video-thumb__cover {
  transform: scale(1.03);
}

.video-thumb:hover .video-thumb__cover::after {
  background: rgba(10, 10, 10, 0.2);
}

.video-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176, 141, 87, 0.65);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.42);
  color: var(--gold);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.video-thumb__play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.video-thumb:hover .video-thumb__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(176, 141, 87, 0.22);
  border-color: var(--gold);
}

/* ---------- Property detail page (Bahia Homes–inspired) ---------- */
.detail-hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: #0a0a0a;
}

.detail-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.35) 0%, rgba(8, 8, 8, 0.15) 40%, rgba(8, 8, 8, 0.82) 100%);
  pointer-events: none;
}

.detail-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 1.5rem 3.5rem;
}

.detail-hero__eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.detail-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
  letter-spacing: 0.02em;
  max-width: 14ch;
  margin-bottom: 0.85rem;
}

.detail-hero__meta {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.78);
}

.detail-hero__cta {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0e0e0e;
  min-width: 180px;
  padding: 0.55rem 1.75rem;
}

.detail-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(14, 14, 14, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(176, 141, 87, 0.22);
}

.detail-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.25rem 1.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}

@media (max-width: 640px) {
  .detail-nav__inner {
    justify-content: flex-start;
  }
}

.detail-nav__inner::-webkit-scrollbar {
  display: none;
}

.detail-nav a {
  flex-shrink: 0;
  padding: 1rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.detail-nav a:hover {
  color: var(--gold);
  border-bottom-color: rgba(176, 141, 87, 0.45);
}

.detail-nav a.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.page-sub main section[id]:not(.detail-hero):not(.entretenimento-hero),
.page-sub .location[id] {
  scroll-margin-top: calc(var(--header-h) + 3.25rem);
}

main section[id] {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.detail-kicker {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.detail-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 1.75rem;
}

.detail-about {
  padding: 4.5rem 1.5rem;
}

.detail-about__inner {
  max-width: 820px;
  margin: 0 auto;
}

.detail-about__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.detail-about__text {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.detail-about__text strong {
  color: var(--gold);
  font-weight: 500;
}

.detail-about__text+.detail-about__text {
  margin-top: -0.85rem;
}

.detail-about__staff {
  margin-top: 50px;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(176, 141, 87, 0.12) 0%, rgba(176, 141, 87, 0.04) 100%);
  font-family: var(--font-serif);
  font-size: clamp(1.10rem, 2.1vw, 0.85rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: 0.02em;
  text-align: center;
}

.detail-about__staff strong {
  color: var(--gold);
  font-weight: 600;
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(176, 141, 87, 0.25);
}

.detail-stats li {
  text-align: center;
}

.detail-stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.detail-stats span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail-perks {
  padding: 4.5rem 1.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(176, 141, 87, 0.07), transparent 55%),
    var(--bg-elevated);
}

.detail-perks__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.detail-perks__header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.detail-perks .conceito__highlights {
  margin-bottom: 0;
}

.detail-specs {
  padding: 5rem 1.5rem;
}

.detail-specs__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.detail-specs__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.detail-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.detail-spec-card {
  padding: 2.25rem 2rem;
  border: 1px solid rgba(176, 141, 87, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(176, 141, 87, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.02);
}

.detail-spec-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(176, 141, 87, 0.25);
}

.detail-spec-card__list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.detail-spec-card__list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(176, 141, 87, 0.45);
}

.detail-spec-card__list strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.detail-spec-card__list span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.suite-table-wrap {
  overflow-x: auto;
}

.suite-table {
  width: 100%;
  border-collapse: collapse;
}

.suite-table th,
.suite-table td {
  text-align: left;
  padding: 0.85rem 0.75rem 0.85rem 0;
  border-bottom: 1px solid rgba(176, 141, 87, 0.2);
  vertical-align: top;
}

.suite-table thead th {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding-top: 0;
}

.suite-table tbody th {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.suite-table td {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.suite-table td:last-child {
  white-space: nowrap;
  color: var(--gold-soft);
}

.suite-table--two td:last-child {
  color: var(--text-muted);
  white-space: normal;
}

.suite-table tbody tr:last-child th,
.suite-table tbody tr:last-child td {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-gallery {
  padding: 5rem 1.5rem;
  background: var(--bg-elevated);
}

.detail-gallery__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.detail-gallery__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.detail-gallery__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.detail-gallery__mosaic .gallery-item {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.detail-gallery__mosaic .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-videos {
  padding: 5rem 1.5rem 5.5rem;
  text-align: center;
}

.detail-videos__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.detail-videos .video-row {
  margin: 0 auto 2.5rem;
  text-align: left;
}

.detail-videos .video-row:has(> :only-child) {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.detail-videos .detail-section-title {
  margin-bottom: 2rem;
}

.detail-rates {
  padding: 5rem 1.5rem;
}

.detail-rates__inner {
  max-width: 720px;
  margin: 0 auto;
}

.detail-rates__header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.detail-rates__lead {
  max-width: 52ch;
  margin: -0.5rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.detail-rates__card {
  margin: 0 auto;
  opacity: 1;
  transform: none;
}

.detail-rates__card .valores__cta {
  align-self: center;
}

.valores__disclaimer {
  max-width: 52ch;
  margin: 1.75rem auto 0;
  padding: 0 0.5rem;
  text-align: center;
  font-size: 12px;
  line-height: 1.65;
  color: #6b645a;
}

.valores__disclaimer strong {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #4a453e;
}

.page-sub .valores__disclaimer {
  color: var(--text-muted);
}

.page-sub .valores__disclaimer strong {
  color: #d6d0c8;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  cursor: pointer;
  isolation: isolate;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-card.is-playing::after {
  opacity: 0;
}

.video-card.is-playing .player-ui {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card.is-playing:hover .player-ui {
  opacity: 1;
}

.media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1a1a1a;
}

.video-card--native {
  cursor: default;
}

.video-card--native::after {
  display: none;
}

.video-card--native .media-video {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-block__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.suite-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.suite-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 1rem;
  border-left: 1px solid rgba(176, 141, 87, 0.35);
}

.suite-list strong {
  color: var(--text);
  font-weight: 500;
}

.suite-list span {
  color: rgba(168, 162, 154, 0.8);
  font-size: 0.85em;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.75rem;
}

.features__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.features__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.5;
  padding-top: 0.15rem;
}

.features__text strong {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.features__text small {
  font-size: 0.88em;
  color: var(--text-muted);
  line-height: 1.45;
}

.features__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--gold);
  background: rgba(176, 141, 87, 0.08);
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 9px;
}

.features__icon svg {
  width: 21px;
  height: 21px;
}

/* ---------- Casas gallery ---------- */
.casas {
  width: 100%;
  padding: 0;
  background: #faf8f4;
  overflow: hidden;
}

.casas .leaf-decor {
  color: rgba(176, 141, 87, 0.22);
}

.casas__showcase {
  display: grid;
  grid-template-columns: minmax(280px, 36%) 1fr;
  min-height: clamp(420px, 52vw, 560px);
}

.casas__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  background: #faf8f4;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
}

.casas__ornament {
  display: block;
  width: 48px;
  height: 12px;
  color: #b8b0a4;
  margin-bottom: 0.85rem;
}

.casas__ornament svg {
  width: 100%;
  height: 100%;
}

.casas__eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9288;
  margin-bottom: 0.65rem;
}

.casas__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #1e1b16;
  margin-bottom: 1.25rem;
}

.casas__lead {
  max-width: 34ch;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  color: #6b645a;
}

.casas__carousel-panel {
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0px 100px 50px;
  background:
    linear-gradient(135deg, rgba(14, 14, 14, 0.92) 0%, rgba(20, 18, 14, 0.88) 100%),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat;
  overflow: hidden;
}

.casas__video {
  width: 100%;
}

.casas-video {
  position: relative;
  display: block;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: #141210;
  cursor: pointer;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
}

.casas-video__cover {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.casas-video__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.28);
  transition: background 0.35s var(--ease);
}

.casas-video:hover .casas-video__cover::after {
  background: rgba(10, 10, 10, 0.18);
}

.casas-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176, 141, 87, 0.65);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.42);
  color: var(--gold);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: translate(-50%, -50%);
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    opacity 0.35s var(--ease),
    visibility 0.35s;
}

.casas-video__play svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.casas-video__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(176, 141, 87, 0.18);
  border-color: var(--gold);
}

.casas__carousel-nav {
  position: absolute;
  top: clamp(1.25rem, 2.5vw, 2rem);
  right: clamp(1.25rem, 3.5vw, 3rem);
  display: flex;
  gap: 0.65rem;
  z-index: 3;
}

.casas__nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.casas__nav-btn svg {
  width: 20px;
  height: 20px;
}

.casas__nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.casas__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.casas__carousel {
  display: flex;
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem clamp(1.25rem, 3.5vw, 3rem);
  padding-left: clamp(0.75rem, 2vw, 1.5rem);
}

.casas__carousel::-webkit-scrollbar {
  display: none;
}

.casas__slide {
  flex: 0 0 clamp(240px, 26vw, 320px);
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #2a2620;
  padding: 0;
  isolation: isolate;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.5s var(--ease);
}

.casas__slide.is-visible:hover {
  transform: translateY(-4px) scale(1.01) !important;
}

.casas__slide img {
  transition: transform 0.7s var(--ease);
}

.casas__slide:hover img {
  transform: scale(1.06);
}

.casa-alta__gallery .gallery-item {
  background: #1a1a1a;
  min-height: 0;
}

/* ---------- Conceito ---------- */
.conceito {
  padding: 4rem 1.5rem 5.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(176, 141, 87, 0.07), transparent 55%),
    var(--bg);
}

.conceito__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.conceito__header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(24px);
}

.conceito__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.conceito__showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem 3.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.conceito__figure {
  position: relative;
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
  isolation: isolate;
}

.conceito__figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.conceito__figure::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: calc(var(--radius) + 4px);
  z-index: 0;
  pointer-events: none;
}

.conceito__caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  padding: 1rem 1.15rem;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(176, 141, 87, 0.25);
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.4;
}

.conceito__caption-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.conceito__body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  opacity: 0;
  transform: translateY(24px);
}

.conceito__body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.conceito__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem) !important;
  color: var(--text) !important;
  line-height: 1.65 !important;
  letter-spacing: 0.01em;
}

.conceito__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
}

.conceito__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(176, 141, 87, 0.18);
  border-radius: var(--radius);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.conceito__card:hover {
  border-color: rgba(176, 141, 87, 0.45);
  transform: translateY(-3px);
}

.conceito__card-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.conceito__card-icon svg {
  width: 100%;
  height: 100%;
}

.conceito__card strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.conceito__card span:last-child {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.conceito__sustain {
  padding: 2rem 2.25rem;
  border: 1px solid rgba(176, 141, 87, 0.22);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0;
  transform: translateY(24px);
}

.conceito__sustain-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  text-align: center;
}

.conceito__sustain-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.conceito__sustain-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.conceito__sustain-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- Blog ---------- */
.blog {
  background: #fff;
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
}

.blog__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  opacity: 0;
  transform: translateY(20px);
}

.blog__heading {
  max-width: 640px;
}

.blog__ornament {
  display: block;
  width: 48px;
  height: 12px;
  color: #b8b0a4;
  margin-bottom: 0.85rem;
}

.blog__ornament svg {
  width: 100%;
  height: 100%;
}

.blog__eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9288;
  margin-bottom: 0.5rem;
}

.blog__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: #1e1b16;
  letter-spacing: 0.01em;
}

.btn--blog-all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #5a6b52;
  border: 1px solid #5a6b52;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn--blog-all:hover {
  background: #6b7d62;
  border-color: #6b7d62;
  transform: translateY(-2px);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.blog-card {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
}

.blog-card__media {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 1.15rem;
}

.blog-card__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card__media:hover img {
  transform: scale(1.04);
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  color: #9a9288;
}

.blog-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card__meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.blog-card__meta-sep {
  color: #d4cec4;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-card__title a {
  color: #1e1b16;
  transition: color 0.25s ease;
}

.blog-card__title a:hover {
  color: var(--gold-deep);
}

.blog-card__more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #3d3830;
  background: #fff;
  border: 1px solid #ddd6cb;
  border-radius: 999px;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}

.blog-card__more:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-1px);
}

/* ---------- Valores & Temporadas ---------- */
.valores {
  padding: clamp(4rem, 7vw, 6rem) 1.5rem;
  background: #fff;
}

.valores .leaf-decor {
  color: rgba(176, 141, 87, 0.2);
}

.valores__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.valores__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  opacity: 0;
  transform: translateY(24px);
}

.valores__eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9288;
  margin-bottom: 0.85rem;
}

.valores__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: #6b645a;
  margin-top: -0.5rem;
}

.valores__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.valores__card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem 1.75rem;
  background: #fff;
  border: 1px solid #e8e2d8;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 8px 32px rgba(30, 27, 22, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.valores__card:hover {
  border-color: rgba(176, 141, 87, 0.45);
  box-shadow: 0 16px 40px rgba(30, 27, 22, 0.1);
}

.valores__card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ebe5db;
}

.valores__card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gold-deep);
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 10px;
  background: #faf8f4;
}

.valores__card-icon svg {
  width: 22px;
  height: 22px;
}

.valores__card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.valores__card-sub {
  font-size: 0.85rem;
  color: #9a9288;
  line-height: 1.45;
}

.valores__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  margin-bottom: 1.75rem;
}

.valores__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0ebe3;
}

.valores__row:last-child {
  border-bottom: none;
}

.valores__row--highlight {
  padding: 1.15rem 1rem;
  margin-inline: -1rem;
  margin-bottom: 0.25rem;
  background: #faf8f4;
  border: 1px solid #ebe5db;
  border-radius: 10px;
  border-bottom: 1px solid #ebe5db;
}

.valores__row-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.valores__row-info strong {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: #1e1b16;
  letter-spacing: 0.02em;
}

.valores__row-info span {
  font-size: 0.9rem;
  color: #9a9288;
}

.valores__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 2.1vw, 1.45rem);
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
  text-align: right;
  line-height: 1.2;
}

.valores__price small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: #9a9288;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.valores__consult {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-deep);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.valores__cta {
  align-self: flex-start;
  min-width: auto;
  margin-top: auto;
  font-size: 0.95rem;
  padding: 0.78rem 1.75rem;
}

.valores__note {
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #6b645a;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #ebe5db;
  opacity: 0;
  transform: translateY(16px);
}

/* ---------- Subpages ---------- */
.page-sub .header--sub {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(176, 141, 87, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.page-sub .header--sub .header__inner {
  padding: 1rem 2rem;
}

.page-sub .header--sub .logo img {
  max-width: 90px;
}

/* ---------- Shared subpage hero ---------- */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 1.5rem 3.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(176, 141, 87, 0.1), transparent 55%),
    var(--bg);
  text-align: center;
}

.page-hero--compact {
  padding-bottom: 2.5rem;
}

.page-hero__content {
  max-width: 640px;
  margin: 0 auto;
}

.page-hero__eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}

.page-hero__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ---------- Contato page ---------- */
.contato {
  padding: 100px 50px;
  background: #fff;
}

.contato__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contato__info {
  padding-top: 0.5rem;
}

.contato__info-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.contato__info-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #6b645a;
  margin-bottom: 2rem;
}

.contato__details {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contato__details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contato__details-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gold-deep);
  background: #faf8f4;
  border: 1px solid #ebe5db;
  border-radius: 10px;
}

.contato__details-icon svg {
  width: 20px;
  height: 20px;
}

.contato__details strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: #1e1b16;
  margin-bottom: 0.25rem;
}

.contato__details a,
.contato__details span {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #6b645a;
}

.contato__details a {
  transition: color 0.25s ease;
}

.contato__details a:hover {
  color: var(--gold-deep);
}

.contato__form-wrap {
  padding: clamp(1.75rem, 4vw, 2.25rem);
  background: #faf8f4;
  border: 1px solid #ebe5db;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 12px 40px rgba(30, 27, 22, 0.06);
}

.contato__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contato__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contato__field label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b645a;
}

.contato__field input,
.contato__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: #1e1b16;
  background: #fff;
  border: 1px solid #ddd6cb;
  border-radius: 8px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contato__field input::placeholder,
.contato__field textarea::placeholder {
  color: #b8b0a4;
}

.contato__field input:focus,
.contato__field textarea:focus {
  outline: none;
  border-color: rgba(176, 141, 87, 0.65);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.12);
}

.contato__field input:invalid:not(:placeholder-shown),
.contato__field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(139, 30, 30, 0.45);
}

.contato__field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contato__submit {
  align-self: flex-start;
  min-width: 180px;
  margin-top: 0.25rem;
}

.contato__submit-loading {
  display: none;
  align-items: center;
  gap: 0.55rem;
}

.contato__submit.is-loading .contato__submit-label {
  display: none;
}

.contato__submit.is-loading .contato__submit-loading {
  display: inline-flex;
}

.contato__spinner {
  width: 1.1em;
  height: 1.1em;
  border: 2px solid rgba(14, 14, 14, 0.2);
  border-top-color: #0e0e0e;
  border-radius: 50%;
  animation: contato-spin 0.75s linear infinite;
}

@keyframes contato-spin {
  to {
    transform: rotate(360deg);
  }
}

.contato__submit:disabled,
.contato__submit.is-loading {
  opacity: 0.85;
  cursor: wait;
  transform: none;
}

.contato__feedback {
  font-size: 0.92rem;
  line-height: 1.6;
  padding: 0.85rem 1rem;
  border-radius: 8px;
}

.contato__feedback--success {
  color: #2d5a3d;
  background: rgba(105, 188, 84, 0.12);
  border: 1px solid rgba(105, 188, 84, 0.35);
}

.contato__feedback--error {
  color: #8b1e1e;
  background: rgba(139, 30, 30, 0.08);
  border: 1px solid rgba(139, 30, 30, 0.25);
}

/* ---------- Entretenimento page ---------- */
.entretenimento-hero {
  position: relative;
  min-height: clamp(420px, 58vh, 560px);
  display: grid;
  place-items: center;
  padding-top: var(--header-h);
}

.entretenimento-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.entretenimento-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entretenimento-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
}

.entretenimento-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  max-width: 820px;
}

.entretenimento-hero__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.entretenimento-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0.35rem;
}

.entretenimento-hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.82);
  margin-bottom: 1.75rem;
}

.entretenimento-hero__distances {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.entretenimento-hero__distances li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  color: var(--text);
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.entretenimento-hero__distances strong {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--gold-soft);
}

.entretenimento-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(250, 248, 244, 0.96);
  border-bottom: 1px solid #ebe5db;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.entretenimento-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.35rem;
}

.entretenimento-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b645a;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.entretenimento-nav a:hover {
  color: var(--gold-deep);
  border-color: rgba(176, 141, 87, 0.35);
  background: #fff;
}

.entretenimento-nav a.is-active {
  color: var(--gold-deep);
  border-color: rgba(176, 141, 87, 0.45);
  background: #fff;
}

.entretenimento {
  position: relative;
  padding: clamp(4rem, 7vw, 5.5rem) clamp(1.15rem, 4vw, 2rem);
}

.entretenimento--light {
  background: #fff;
}

.entretenimento--light .section-title:not(.section-title--gold) {
  color: #1e1b16;
}

.entretenimento--dark {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(176, 141, 87, 0.08), transparent 55%),
    var(--bg);
}

.entretenimento .leaf-decor {
  color: rgba(176, 141, 87, 0.18);
}

.leaf-decor--entretenimento-left {
  top: 8%;
  left: -55px;
  width: clamp(120px, 14vw, 180px);
  transform: rotate(-28deg);
}

.leaf-decor--entretenimento-right {
  bottom: 10%;
  right: -50px;
  width: clamp(130px, 15vw, 200px);
  transform: rotate(130deg) scaleX(-1);
  color: rgba(255, 255, 255, 0.1);
}

.entretenimento__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.entretenimento__header {
  text-align: center;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
}

.entretenimento__eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9288;
  margin-bottom: 0.85rem;
}

.entretenimento__intro {
  max-width: 780px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  opacity: 0;
  transform: translateY(24px);
}

.entretenimento__intro p {
  font-size: 16px;
  line-height: 1.40;
  color: #6b645a;
}

.entretenimento__lead {
  font-family: var(--font-serif);
  font-size: 18px !important;
  line-height: 1.55;
  color: #1e1b16 !important;
}

.entretenimento__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
}

.entretenimento__card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.5rem 1.35rem;
  background: #faf8f4;
  border: 1px solid #ebe5db;
  border-radius: calc(var(--radius) + 2px);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.entretenimento__card:hover {
  border-color: rgba(176, 141, 87, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30, 27, 22, 0.08);
}

.entretenimento__card-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--gold-deep);
  border: 1px solid rgba(176, 141, 87, 0.3);
  border-radius: 10px;
  background: #fff;
}

.entretenimento__card-icon svg {
  width: 20px;
  height: 20px;
}

.entretenimento__card strong {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: #1e1b16;
  line-height: 1.3;
}

.entretenimento__card span:last-child {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #9a9288;
}

.entretenimento__note {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #6b645a;
  border-left: 2px solid rgba(176, 141, 87, 0.45);
  background: #faf8f4;
  border-radius: 0 8px 8px 0;
  opacity: 0;
  transform: translateY(16px);
}

.entretenimento__blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.entretenimento__block {
  position: relative;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(176, 141, 87, 0.22);
  border-radius: calc(var(--radius) + 2px);
  opacity: 0;
  transform: translateY(24px);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), opacity 0.9s var(--ease);
}

.entretenimento__block:hover {
  border-color: rgba(176, 141, 87, 0.4);
  transform: translateY(-4px);
}

.entretenimento__block-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(176, 141, 87, 0.22);
  margin-bottom: 1rem;
}

.entretenimento__block-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1.15rem;
}

.entretenimento__block-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.entretenimento__block-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.entretenimento__block-body strong {
  color: var(--gold);
  font-weight: 500;
}

.entretenimento__tip {
  padding: 0.85rem 1rem;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  color: var(--text) !important;
  background: rgba(176, 141, 87, 0.08);
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.entretenimento__tip strong {
  color: var(--gold-soft);
}

.entretenimento-spotlight {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) clamp(1.15rem, 4vw, 2rem);
  background:
    radial-gradient(ellipse 60% 45% at 20% 50%, rgba(176, 141, 87, 0.07), transparent 55%),
    var(--bg-elevated);
}

.entretenimento-spotlight__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem 3.5rem;
  align-items: start;
}

.entretenimento-spotlight__figure {
  position: relative;
  margin: 0;
  isolation: isolate;
  padding: 0 1.25rem 1.25rem 0;
  opacity: 0;
  transform: translateY(24px);
}

.entretenimento-spotlight__figure img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.entretenimento-spotlight__figure::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: calc(var(--radius) + 4px);
  z-index: 0;
  pointer-events: none;
}

.entretenimento-spotlight__caption {
  position: absolute;
  left: 1.25rem;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  padding: 1rem 1.15rem;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(176, 141, 87, 0.25);
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.4;
}

.entretenimento-spotlight__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.entretenimento-spotlight__content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  opacity: 0;
  transform: translateY(24px);
}

.entretenimento-spotlight__eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.entretenimento-spotlight__content .section-title {
  margin-bottom: 0.25rem;
}

.entretenimento-spotlight__content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.entretenimento-spotlight__content a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

.entretenimento-spotlight__content a:hover {
  color: #000;
}

.entretenimento-spotlight__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.entretenimento-spotlight__tags li {
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid rgba(176, 141, 87, 0.28);
  border-radius: 999px;
}

.entretenimento-sunset-list {
  margin: 0.35rem 0 0.15rem;
  padding: 1.25rem 0 0.25rem;
  border-top: 1px solid rgba(176, 141, 87, 0.22);
}

.entretenimento-sunset-list__title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

.entretenimento-sunset-list__items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.entretenimento-sunset-list__items li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.entretenimento-sunset-list__items li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
}

.entretenimento-sunset-list__items strong {
  color: var(--text);
  font-weight: 600;
}

.entretenimento-spotlight__closing {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.55 !important;
  color: var(--text) !important;
  font-style: italic;
}

.entretenimento-spotlight__content .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ---------- Entretenimento gallery (Slick) ---------- */
.entretenimento-gallery {
  padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(4.5rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(176, 141, 87, 0.1), transparent 55%),
    var(--bg);
  overflow: hidden;
}

.entretenimento-gallery__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.entretenimento-gallery__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
  opacity: 0;
  transform: translateY(24px);
}

.entretenimento-gallery__eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.entretenimento-gallery__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: -0.25rem;
}

.entretenimento-gallery__panel {
  position: relative;
  padding: 0 clamp(0.5rem, 3vw, 2.5rem);
}

.entretenimento-gallery__slider {
  margin: 0 -0.5rem;
}

.entretenimento-gallery__slide {
  padding: 0 0.5rem;
  outline: none;
}

.entretenimento-gallery__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  text-align: left;
  font: inherit;
  color: inherit;
}

.entretenimento-gallery__slide figure {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.entretenimento-gallery__slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.entretenimento-gallery__slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.15rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.entretenimento-gallery__slider .slick-center .entretenimento-gallery__slide figure {
  border-color: rgba(176, 141, 87, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transform: scale(1.03);
}

.entretenimento-gallery__slider .slick-center .entretenimento-gallery__slide img {
  transform: scale(1.02);
}

.entretenimento-gallery__slider .slick-slide:not(.slick-center) .entretenimento-gallery__slide figure {
  opacity: 0.72;
}

.entretenimento-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(176, 141, 87, 0.45);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.entretenimento-gallery__arrow svg {
  width: 20px;
  height: 20px;
}

.entretenimento-gallery__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a140c;
  transform: translateY(-50%) scale(1.05);
}

.entretenimento-gallery__arrow--prev {
  left: 0;
}

.entretenimento-gallery__arrow--next {
  right: 0;
}

.entretenimento-gallery__slider .slick-dots {
  position: static;
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.entretenimento-gallery__slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.entretenimento-gallery__slider .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.28);
  border: 1px solid rgba(176, 141, 87, 0.35);
  font-size: 0;
  line-height: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.entretenimento-gallery__slider .slick-dots li button::before {
  display: none;
}

.entretenimento-gallery__slider .slick-dots li.slick-active button {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}

.entretenimento-gallery__slider.slick-initialized .entretenimento-gallery__slide figure {
  opacity: 1;
}

/* ---------- Localização ---------- */
.location {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(176, 141, 87, 0.08), transparent 55%),
    var(--bg);
}

.location__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.location__info {
  opacity: 0;
  transform: translateY(24px);
}

.location__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}

.location__info .section-title {
  margin-bottom: 2rem;
}

.location__address {
  font-style: normal;
  margin-bottom: 1.5rem;
}

.location__address strong,
.location__note strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

.location__address p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.location__note {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 1.15rem 1.25rem;
  border-left: 2px solid rgba(176, 141, 87, 0.45);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
}

.location__note strong {
  display: inline;
  font-family: var(--font-sans);
  font-size: inherit;
  color: var(--text);
  margin-bottom: 0;
}

.location__link {
  min-width: auto;
}

.location__map {
  opacity: 0;
  transform: translateY(24px);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 3;
  min-height: 320px;
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Footer ---------- */
.footer {
  padding: 0 1.5rem 3rem;
}

.footer__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 2.5rem;
  opacity: 0.7;
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__link,
.footer__address {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  color: var(--gold-soft);
  transition: color 0.25s ease;
}

.footer__link:hover {
  color: var(--gold);
}

.footer__link svg,
.footer__address svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

.footer__address {
  justify-self: center;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.social {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(176, 141, 87, 0.55);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.social:hover {
  transform: translateY(-3px);
  background: var(--gold);
  border-color: var(--gold);
  color: #1a140c;
}

.social svg {
  width: 22px;
  height: 22px;
}

.footer__credits {
  max-width: 1180px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(176, 141, 87, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__credit {
  display: flex;
  align-items: center;
  gap: 0 5px;
  align-items: flex-end;
}

.footer__copy,
.footer__credit {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer__credit a {
  color: var(--gold-soft);
  transition: color 0.25s ease;
}

.footer__credit a:hover {
  color: var(--gold);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.35rem;
  bottom: 1.5rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: #1ebe57;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1.15rem;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ---------- Fancybox (vídeo casas) ---------- */
.fancybox__container {
  --fancybox-bg: rgba(8, 8, 8, 0.96);
  --fancybox-color: #f5f2eb;
}

.fancybox__toolbar {
  --f-button-color: var(--gold);
  --f-button-hover-color: #fff;
}


/* ---------- Reveal ---------- */
.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.property__photo.is-visible:nth-child(1) {
  transition-delay: 0.05s;
}

.property__photo.is-visible:nth-child(2) {
  transition-delay: 0.12s;
}

.property__photo.is-visible:nth-child(3) {
  transition-delay: 0.19s;
}

.casa-alta__gallery .gallery-item.is-visible:nth-child(1) {
  transition-delay: 0.05s;
}

.casa-alta__gallery .gallery-item.is-visible:nth-child(2) {
  transition-delay: 0.12s;
}

.casa-alta__gallery .gallery-item.is-visible:nth-child(3) {
  transition-delay: 0.19s;
}

.casa-alta__gallery .gallery-item.is-visible:nth-child(4) {
  transition-delay: 0.26s;
}

.casa-alta__gallery .gallery-item.is-visible:nth-child(5) {
  transition-delay: 0.33s;
}

.casa-alta__gallery .gallery-item.is-visible:nth-child(6) {
  transition-delay: 0.4s;
}

.casa-alta__gallery .gallery-item.is-visible:nth-child(7) {
  transition-delay: 0.47s;
}

.casa-alta__gallery .gallery-item.is-visible:nth-child(8) {
  transition-delay: 0.54s;
}

.casa-alta__gallery .gallery-item.is-visible:nth-child(9) {
  transition-delay: 0.61s;
}

.casa-alta__gallery .gallery-item.is-visible:nth-child(10) {
  transition-delay: 0.68s;
}

.detail-gallery__mosaic .gallery-item.is-visible:nth-child(1) {
  transition-delay: 0.05s;
}

.detail-gallery__mosaic .gallery-item.is-visible:nth-child(2) {
  transition-delay: 0.12s;
}

.detail-gallery__mosaic .gallery-item.is-visible:nth-child(3) {
  transition-delay: 0.19s;
}

.detail-gallery__mosaic .gallery-item.is-visible:nth-child(4) {
  transition-delay: 0.26s;
}

.detail-gallery__mosaic .gallery-item.is-visible:nth-child(5) {
  transition-delay: 0.33s;
}

.detail-gallery__mosaic .gallery-item.is-visible:nth-child(6) {
  transition-delay: 0.4s;
}

.detail-gallery__mosaic .gallery-item.is-visible:nth-child(7) {
  transition-delay: 0.47s;
}

.detail-gallery__mosaic .gallery-item.is-visible:nth-child(8) {
  transition-delay: 0.54s;
}

.detail-gallery__mosaic .gallery-item.is-visible:nth-child(9) {
  transition-delay: 0.61s;
}

.detail-gallery__mosaic .gallery-item.is-visible:nth-child(10) {
  transition-delay: 0.68s;
}

.casas__slide.is-visible:nth-child(1) {
  transition-delay: 0.04s;
}

.casas__slide.is-visible:nth-child(2) {
  transition-delay: 0.1s;
}

.casas__slide.is-visible:nth-child(3) {
  transition-delay: 0.16s;
}

.casas__slide.is-visible:nth-child(4) {
  transition-delay: 0.22s;
}

.casas__slide.is-visible:nth-child(5) {
  transition-delay: 0.28s;
}

.casas__slide.is-visible:nth-child(6) {
  transition-delay: 0.34s;
}

.casas__slide.is-visible:nth-child(7) {
  transition-delay: 0.4s;
}

.casas__slide.is-visible:nth-child(8) {
  transition-delay: 0.46s;
}

.blog-card.is-visible:nth-child(1) {
  transition-delay: 0.08s;
}

.blog-card.is-visible:nth-child(2) {
  transition-delay: 0.16s;
}

.blog-card.is-visible:nth-child(3) {
  transition-delay: 0.24s;
}

.valores__card.is-visible:nth-child(1) {
  transition-delay: 0.08s;
}

.valores__card.is-visible:nth-child(2) {
  transition-delay: 0.16s;
}

.entretenimento__card.is-visible:nth-child(1) {
  transition-delay: 0.04s;
}

.entretenimento__card.is-visible:nth-child(2) {
  transition-delay: 0.08s;
}

.entretenimento__card.is-visible:nth-child(3) {
  transition-delay: 0.12s;
}

.entretenimento__card.is-visible:nth-child(4) {
  transition-delay: 0.16s;
}

.entretenimento__card.is-visible:nth-child(5) {
  transition-delay: 0.2s;
}

.entretenimento__card.is-visible:nth-child(6) {
  transition-delay: 0.24s;
}

.entretenimento__block.is-visible:nth-child(1) {
  transition-delay: 0.06s;
}

.entretenimento__block.is-visible:nth-child(2) {
  transition-delay: 0.12s;
}

.entretenimento__block.is-visible:nth-child(3) {
  transition-delay: 0.18s;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open[hidden] {
  display: grid;
}

.lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  z-index: 2;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--gold);
  padding: 0.5rem 0.75rem;
  line-height: 1;
  z-index: 2;
}

.lightbox__nav--prev {
  left: 0.75rem;
}

.lightbox__nav--next {
  right: 0.75rem;
}

.lightbox__nav:hover,
.lightbox__close:hover {
  color: var(--gold-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .casa-alta__grid {
    grid-template-columns: 1fr;
  }

  .casas__showcase {
    grid-template-columns: minmax(260px, 40%) 1fr;
  }

  .casas__slide {
    flex-basis: clamp(220px, 32vw, 280px);
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 480px;
  }

  .casa-alta__gallery {
    grid-auto-rows: 90px;
  }

  .detail-gallery__mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .detail-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .detail-specs__grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-hero {
    min-height: min(68vh, 620px);
  }

  .detail-hero__title {
    max-width: 18ch;
  }

  .casa-alta__details {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 520px;
  }

  .video-row {
    grid-template-columns: 1fr;
  }

  .conceito__showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .conceito__figure img {
    aspect-ratio: 16 / 10;
  }

  .conceito__highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .entretenimento__highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .entretenimento__blocks {
    grid-template-columns: 1fr;
  }

  .entretenimento-spotlight__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .entretenimento-spotlight__figure img {
    aspect-ratio: 16 / 10;
  }

  .entretenimento-gallery__panel {
    padding-inline: 3rem;
  }

  .contato__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 991px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 110;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 5rem 1.5rem 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    font-family: var(--font-serif);
    font-size: clamp(18px, 4.5vw, 22px);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    text-align: center;
    color: var(--gold);
    padding: 0.35rem 0;
  }

  .nav a::after {
    display: none;
  }

  .nav a.nav__cta {
    margin-top: 0.5rem;
    padding: 0.65rem 1.75rem;
    font-size: clamp(16px, 4vw, 18px);
    border: 1px solid rgba(176, 141, 87, 0.55);
    border-radius: 999px;
    background: rgba(176, 141, 87, 0.08);
  }

  .nav a.nav__cta:hover,
  .nav a.nav__cta.is-active {
    background: rgba(176, 141, 87, 0.16);
    border-color: var(--gold);
  }

  .header--nav-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.94);
    border-bottom: 1px solid rgba(176, 141, 87, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 1.75rem;
  }

  .footer__contact {
    align-items: center;
  }

  .footer__address {
    justify-self: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__credits {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .casas__showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .casas__intro {
    padding: 3rem 1.5rem 2rem;
  }

  .casas__carousel-panel {
    padding: 5.5rem 0 3rem 4rem;
  }

  .casas-video {
    height: clamp(280px, 55vw, 450px);
  }

  .casas-video__play {
    width: 72px;
    height: 72px;
  }

  .casas-video__play svg {
    width: 28px;
    height: 28px;
  }

  .casas__slide {
    flex-basis: clamp(220px, 72vw, 280px);
  }

  .blog__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .blog-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .location__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .location__map {
    min-height: 280px;
  }

  .valores__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .entretenimento-nav__inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .entretenimento-nav__inner::-webkit-scrollbar {
    display: none;
  }

  .entretenimento-nav a {
    flex-shrink: 0;
  }
}

@media (max-width: 1024px) {
  .season__options {
    grid-template-columns: 1fr;
    max-width: 440px;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .season__options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .property__photos {
    grid-template-columns: 1fr;
  }

  .property__highlights {
    gap: 0.5rem;
  }

  .property__highlights li {
    font-size: 0.72rem;
    padding: 0.4rem 0.85rem;
  }

  .conceito__highlights {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .conceito__highlights .conceito__card {
    align-items: center;
  }

  .entretenimento__highlights {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .entretenimento__highlights .entretenimento__card {
    align-items: center;
  }

  .entretenimento-spotlight__figure {
    padding: 0 0.75rem 0.75rem 0;
  }

  .entretenimento-spotlight__figure::before {
    top: 0.75rem;
    left: 0.75rem;
  }

  .entretenimento-spotlight__caption {
    bottom: 2rem;
    right: 2rem;
  }

  .entretenimento-hero__distances {
    flex-direction: column;
    align-items: center;
  }

  .entretenimento-gallery__panel {
    padding-inline: 2.75rem;
  }

  .entretenimento-gallery__arrow {
    width: 40px;
    height: 40px;
  }

  .conceito__figure::before {
    inset: 0.75rem -0.75rem -0.75rem 0.75rem;
  }

  .conceito__sustain {
    padding: 1.5rem 1.25rem;
  }

  .valores__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .valores__price,
  .valores__consult {
    text-align: left;
  }

  .valores__row--highlight {
    margin-inline: 0;
  }

  .conceito__sustain-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .season__divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    margin: 0.5rem 0;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold-soft) 15%,
        var(--gold-soft) 85%,
        transparent 100%);
  }

  .season__option {
    padding: 0 1.25rem 1.5rem;
  }

  .season__option-photo {
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .casa-alta__gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
  }

  .detail-gallery__mosaic {
    grid-template-columns: 1fr;
  }

  .casa-alta__gallery .gallery-item--sm:nth-child(1),
  .casa-alta__gallery .gallery-item--sm:nth-child(2),
  .casa-alta__gallery .gallery-item--sm:nth-child(3),
  .casa-alta__gallery .gallery-item--wide,
  .casa-alta__gallery .gallery-item--tall,
  .casa-alta__gallery .gallery-item--sm:nth-child(6),
  .casa-alta__gallery .gallery-item--wide-sm,
  .casa-alta__gallery .gallery-item--sm:nth-child(8),
  .casa-alta__gallery .gallery-item--sm:nth-child(9),
  .casa-alta__gallery .gallery-item--sm:nth-child(10),
  .detail-gallery__mosaic .gallery-item--sm:nth-child(1),
  .detail-gallery__mosaic .gallery-item--sm:nth-child(2),
  .detail-gallery__mosaic .gallery-item--sm:nth-child(3),
  .detail-gallery__mosaic .gallery-item--wide,
  .detail-gallery__mosaic .gallery-item--tall,
  .detail-gallery__mosaic .gallery-item--sm:nth-child(6),
  .detail-gallery__mosaic .gallery-item--wide-sm,
  .detail-gallery__mosaic .gallery-item--sm:nth-child(8),
  .detail-gallery__mosaic .gallery-item--sm:nth-child(9),
  .detail-gallery__mosaic .gallery-item--sm:nth-child(10) {
    grid-column: auto;
    grid-row: auto;
  }

  .casa-alta__gallery .gallery-item--wide,
  .casa-alta__gallery .gallery-item--wide-sm,
  .detail-gallery__mosaic .gallery-item--wide,
  .detail-gallery__mosaic .gallery-item--wide-sm {
    grid-column: 1 / -1;
  }

  .detail-specs__grid {
    grid-template-columns: 1fr;
  }

  .detail-spec-card {
    padding: 1.75rem 1.35rem;
  }

  .casa-alta__text {
    grid-template-columns: 1fr;
  }

  .hero__media {
    height: 58vh;
    min-height: 320px;
  }

  .hero {
    min-height: 58vh;
  }

  .header__inner {
    padding: 1rem 1.15rem;
  }
}