:root {
  --color-bg: #f7f5f0;
  --color-surface: rgba(255, 255, 255, 0.72);
  --color-surface-strong: #fdfcf9;
  --color-primary: #d4c4b7;
  --color-primary-deep: #a89f91;
  --color-text: #2c3338;
  --color-text-muted: #5f676d;
  --color-border: rgba(44, 51, 56, 0.08);
  --shadow-soft: 0 18px 50px rgba(44, 51, 56, 0.08);
  --shadow-card: 0 12px 30px rgba(44, 51, 56, 0.06);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-shell {
  overflow-x: clip;
}

.site-shell main,
.site-footer {
  position: relative;
  z-index: 1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 1.5rem;
}

.section-heading h2,
.hero h1,
.site-footer h2,
.mobile-sidebar h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-heading h2,
.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.section-heading p:last-child,
.site-footer p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 62ch;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  color: #fffdf9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 245, 240, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44, 51, 56, 0.07);
  box-shadow: 0 10px 30px rgba(44, 51, 56, 0.05);
  color: var(--color-text);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 0.96rem;
  line-height: 1.1;
}

.brand-copy small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.74rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header-topbar__social {
  display: none;
  align-items: center;
  gap: 0.55rem;
}

.header-topbar__social a {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.header-topbar__social a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.header-topbar__social a:nth-child(1) {
  color: #e1306c;
  background: rgba(225, 48, 108, 0.14);
}

.header-topbar__social a:nth-child(1):hover {
  background: rgba(225, 48, 108, 0.22);
}

.header-topbar__social a:nth-child(2) {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.14);
}

.header-topbar__social a:nth-child(2):hover {
  background: rgba(24, 119, 242, 0.22);
}

.header-topbar__social a:nth-child(3) {
  color: #003b95;
  background: rgba(0, 59, 149, 0.16);
}

.header-topbar__social a:nth-child(3):hover {
  background: rgba(0, 59, 149, 0.24);
}

.header-topbar__social svg {
  width: 20px;
  height: 20px;
}

.desktop-nav a {
  position: relative;
  color: currentColor;
  opacity: 0.86;
  font-weight: 500;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: #b99b53;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle,
.sidebar-close {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border-radius: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 51, 56, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 35;
}

.mobile-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100vh;
  height: 100dvh;
  padding: clamp(0.9rem, 2.6vh, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2.8vh, 1.6rem);
  overflow: hidden;
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(18px);
  border-left: 1px solid rgba(44, 51, 56, 0.08);
  box-shadow: -20px 0 40px rgba(44, 51, 56, 0.1);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 40;
}

.mobile-sidebar.is-open {
  transform: translateX(0);
}

.sidebar-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.sidebar-top--compact {
  align-items: center;
}

.sidebar-top h2 {
  font-size: 2rem;
}

.sidebar-close {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0;
  line-height: 1;
}

.sidebar-close::before,
.sidebar-close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.sidebar-close::before {
  transform: rotate(45deg);
}

.sidebar-close::after {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: clamp(0.45rem, 1.5vh, 0.85rem);
}

.mobile-nav a {
  padding-bottom: clamp(0.45rem, 1.5vh, 0.75rem);
  border-bottom: 1px solid rgba(44, 51, 56, 0.08);
  font-size: clamp(0.92rem, 2.5vh, 1.05rem);
}

.sidebar-card {
  margin-top: auto;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
}

.sidebar-card--compact {
  padding: clamp(0.85rem, 2.1vh, 1.15rem);
}

.sidebar-card .footer-social {
  justify-content: center;
  gap: 0.78rem;
  margin-bottom: 0;
}

.sidebar-card .footer-social a {
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
  gap: 0;
}

.sidebar-card .footer-social svg {
  width: 22px;
  height: 22px;
}

.sidebar-card .footer-social__whatsapp {
  background: #25d366;
  border-color: rgba(37, 211, 102, 0.35);
}

.sidebar-card .footer-social__whatsapp svg {
  width: 24px;
  height: 24px;
}

.sidebar-card p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(1rem, 2.8svh, 2rem)) 0 clamp(1.4rem, 3.6svh, 2.6rem);
  isolation: isolate;
  background: #161b19;
  color: #fffdf9;
}

.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.hero::after {
  inset: auto 0 -8svh;
  height: 36%;
  background: linear-gradient(
    180deg,
    rgba(22, 27, 25, 0) 0%,
    rgba(22, 27, 25, 0.18) 34%,
    rgba(22, 27, 25, 0.42) 56%,
    rgba(247, 245, 240, 0.22) 78%,
    rgba(247, 245, 240, 0.78) 100%
  );
  z-index: 0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(rgba(10, 15, 16, 0.1), rgba(10, 15, 16, 0.1)),
    url('./mídia/imagens/exterior/img_001.webp') 64% center/cover;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 10, 0.7) 0%, rgba(12, 14, 13, 0.5) 36%, rgba(12, 14, 13, 0.2) 68%, rgba(12, 14, 13, 0.12) 100%),
    linear-gradient(180deg, rgba(10, 14, 18, 0.4) 0%, rgba(10, 14, 18, 0.16) 46%, rgba(10, 11, 9, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.hero-copy {
  max-width: 740px;
}

.hero h1 {
  max-width: 17.6ch;
  color: #fffdf9;
  font-size: clamp(2.7rem, 4.1vw, 4.45rem);
  line-height: 0.96;
  margin-bottom: 0.8rem;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.38);
}

.hero .eyebrow {
  position: relative;
  display: inline-block;
  color: #fffdf9;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.68rem, 0.78vw, 0.84rem);
  letter-spacing: 0.12em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.34);
}

.hero .eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.62rem;
  width: 40px;
  height: 2px;
  background: #b99b53;
}

.hero-text {
  max-width: 54ch;
  color: rgba(255, 253, 249, 0.94);
  font-size: clamp(0.86rem, 0.92vw, 0.98rem);
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 1rem;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.34);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 500px);
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(32, 34, 28, 0.72);
  backdrop-filter: blur(8px);
}

.hero-stat {
  padding: 0.68rem 0.9rem 0.76rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  color: #fffdf9;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.18rem, 1.72vw, 1.5rem);
  line-height: 0.95;
}

.hero-stat span {
  display: block;
  margin-top: 0.28rem;
  color: rgba(255, 253, 249, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #2f383d, #8f7b67);
  color: #fffdf9;
  box-shadow: 0 16px 34px rgba(44, 51, 56, 0.2);
}

.button-secondary {
  border-color: rgba(44, 51, 56, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-text);
  backdrop-filter: blur(12px);
}

.hero-actions .button {
  min-height: 46px;
  padding: 0.72rem 1.2rem;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-actions .button-primary {
  background: #b99b53;
  color: #fffdf9;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.hero-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(15, 17, 14, 0.24);
  color: #fffdf9;
  backdrop-filter: blur(6px);
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  z-index: 3;
  transform: translateX(-50%);
  color: rgba(255, 253, 249, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-scroll-cue span {
  display: inline-block;
  margin-left: 0.35rem;
  color: #fffdf9;
  animation: cue-bounce 1.4s ease-in-out infinite;
}

.hero-whatsapp {
  position: absolute;
  right: clamp(1rem, 2.8vw, 2rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 4;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.hero-whatsapp svg {
  width: 34px;
  height: 34px;
  display: block;
}

@keyframes cue-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.region-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.region-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
  z-index: -2;
}

.region-card:hover::before {
  transform: scale(1.06);
}

.region-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 17, 15, 0.34) 0%, rgba(14, 17, 15, 0.14) 46%, rgba(14, 17, 15, 0) 100%),
    linear-gradient(180deg, rgba(14, 17, 15, 0) 0%, rgba(14, 17, 15, 0.12) 48%, rgba(14, 17, 15, 0.5) 100%);
  z-index: -1;
}

.region-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  color: #fffdf9;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62);
}

.region-content .eyebrow {
  color: #fffdf9;
}

.region-content p,
.region-content span {
  margin: 0;
}

.region-content h3,
.stay-body h3,
.site-footer h3 {
  margin: 0;
}

.region-content h3,
.stay-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin: 0.3rem 0 0.5rem;
}

.region-content span {
  max-width: 28ch;
  color: #fffdf9;
  font-weight: 600;
}

.region-trancoso {
  background-image: url('./mídia/imagens/exterior/img_002.webp');
}

.region-coroa {
  background-image: url('./mídia/imagens/suite com ar condicionado/img_002.webp');
}

.region-arraial {
  background-image: url('./mídia/imagens/suite com ventilador/img_002.webp');
}

.featured-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.featured-rail::-webkit-scrollbar {
  height: 8px;
}

.featured-rail::-webkit-scrollbar-thumb {
  background: rgba(168, 159, 145, 0.4);
  border-radius: 999px;
}

.stay-card {
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-strong);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.stay-image {
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.stay-image-1 {
  background-image: url('./mídia/imagens/exterior/cafe.jpg');
}

.stay-image-2 {
  background-image: url('./mídia/imagens/suite com ventilador/img_002.webp');
}

.stay-image-3 {
  background-image: url('./mídia/imagens/suite com ar condicionado/img_002.webp');
}

.stay-image-4 {
  background-image: url('./mídia/imagens/quarto simples com banheiro privativo externo/img_001.webp');
}

.stay-body {
  padding: 1.4rem;
}

.stay-tag {
  margin: 0 0 0.65rem;
  color: var(--color-primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.stay-body p {
  color: var(--color-text-muted);
}

.stay-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  color: var(--color-text);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.testimonial-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 51, 56, 0.08);
  box-shadow: var(--shadow-card);
}

.quote-mark {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--color-primary-deep);
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 0.8;
}

.faq-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(212, 196, 183, 0.2);
  color: var(--color-primary-deep);
}

.faq-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.testimonial-card p {
  margin: 0 0 1.4rem;
  color: var(--color-text-muted);
}

.testimonial-card footer {
  display: grid;
  gap: 0.15rem;
}

.testimonial-card footer span {
  color: var(--color-text-muted);
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(44, 51, 56, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.8));
}

.region-showcase {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}

.region-showcase .container {
  max-width: 980px;
}

.region-showcase--alternate {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.region-banner {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: end;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-soft);
}

.region-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 12, 0.66) 0%, rgba(10, 12, 12, 0.42) 52%, rgba(10, 12, 12, 0.16) 100%),
    linear-gradient(180deg, rgba(10, 12, 12, 0.12) 0%, rgba(10, 12, 12, 0.34) 48%, rgba(10, 12, 12, 0.68) 100%);
}

.region-banner__content {
  position: relative;
  z-index: 1;
  color: #f8f5f0;
  max-width: min(680px, 100%);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.68);
}

.region-banner__content .eyebrow,
.region-banner__content .eyebrow--light {
  color: #fffdf9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.region-banner__content h2 {
  margin: 0 0 0.85rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1.02;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.72);
}

.region-banner__content p:last-child {
  margin: 0;
  color: rgba(255, 253, 249, 0.96);
  font-weight: 500;
  line-height: 1.58;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.7);
}

.banner-trancoso {
  background-image: url('./mídia/imagens/exterior/img_004.webp');
}

.banner-coroa {
  background-image: url('./mídia/imagens/exterior/fundo.jpg');
}

.banner-arraial {
  background-image: url('./mídia/imagens/exterior/fundo2.jpg');
}

.banner-quarto {
  background-image: url('./mídia/imagens/exterior/fundo3.jpg');
}

.listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.listing-grid--compact {
  gap: 1rem;
}

.property-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(44, 51, 56, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(44, 51, 56, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(44, 51, 56, 0.1);
}

.property-media {
  position: relative;
  min-height: 320px;
  background: #e9e3da;
  touch-action: pan-y;
}

.property-track {
  position: relative;
  height: 100%;
}

.property-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.property-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.property-slide img,
.property-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  z-index: 2;
}

.carousel-arrow.prev {
  left: 1rem;
}

.carousel-arrow.next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(44, 51, 56, 0.2);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.carousel-dots button.is-active {
  transform: scale(1.25);
  background: #fff;
}

.property-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.property-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.property-kicker,
.property-price-label {
  margin: 0;
  color: var(--color-primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.property-heading h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.property-rating {
  flex-shrink: 0;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 196, 183, 0.22);
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 700;
}

.property-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.property-amenities span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(247, 245, 240, 0.95);
  border: 1px solid rgba(44, 51, 56, 0.06);
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.property-amenities svg,
.button-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.property-description {
  margin: 0;
  color: var(--color-text-muted);
}

.property-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(44, 51, 56, 0.07);
}

.property-footer strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
}

.property-footer strong span {
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--color-text-muted);
}

.property-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.button-whatsapp,
.button-booking {
  width: auto;
  gap: 0.48rem;
  min-height: 40px;
  padding: 0.58rem 0.95rem;
  font-size: 0.84rem;
  background: linear-gradient(135deg, #d9cec4, #bfb2a5);
  color: #fffdf9;
  box-shadow: 0 10px 22px rgba(44, 51, 56, 0.08);
}

.button-whatsapp--green {
  background: linear-gradient(135deg, #69c892, #48ad70);
  box-shadow: 0 10px 22px rgba(72, 173, 112, 0.16);
}

.button-booking {
  background: #5d80b3;
  box-shadow: 0 10px 22px rgba(93, 128, 179, 0.14);
}

.button-whatsapp:hover,
.button-booking:hover {
  opacity: 0.94;
}

.section-videos {
  background:
    radial-gradient(circle at top left, rgba(212, 196, 183, 0.24), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0));
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.video-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(44, 51, 56, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(44, 51, 56, 0.08);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: #e9e3da;
}

.video-card__body {
  padding: 1.15rem 1.2rem 1.25rem;
}

.video-card__body h3 {
  margin: 0.25rem 0 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.site-footer h3 {
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(44, 51, 56, 0.08);
}

.footer-social-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(44, 51, 56, 0.08);
}

.footer-social-section h3 {
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 36px;
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  background: rgba(44, 51, 56, 0.08);
  border: 1px solid rgba(44, 51, 56, 0.08);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(44, 51, 56, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(44, 51, 56, 0.16);
  filter: brightness(1.04);
}

.footer-social a:nth-child(1) {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
  border-color: rgba(221, 42, 123, 0.35);
}

.footer-social a:nth-child(2) {
  background: #1877f2;
  border-color: rgba(24, 119, 242, 0.35);
}

.footer-social a:nth-child(3) {
  background: #003b95;
  border-color: rgba(0, 53, 128, 0.35);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(1rem, 2.6vw, 1.75rem);
  bottom: calc(clamp(1rem, 2.6vw, 1.75rem) + env(safe-area-inset-bottom, 0px));
  z-index: 120;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  display: block;
}

.footer-credit,
.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(44, 51, 56, 0.08);
  text-align: center;
}

.footer-credit p,
.footer-bottom p {
  max-width: none;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

.footer-credit a,
.footer-bottom a {
  color: var(--color-text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(185, 155, 83, 0.55);
  text-underline-offset: 0.22em;
}

.footer-credit a:hover,
.footer-bottom a:hover {
  color: #8f7b67;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .floating-whatsapp {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.88);
}

@media (max-width: 767px) {
  :root {
    --header-height: 62px;
    --container: min(100% - 1.25rem, 1180px);
  }

  .section {
    padding: 3.35rem 0;
  }

  .region-showcase {
    padding-top: 0.65rem;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-copy small {
    font-size: 0.66rem;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .region-banner {
    min-height: 240px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 22px;
  }

  .region-banner__content h2 {
    font-size: clamp(1.75rem, 7vw, 2.55rem);
    margin-bottom: 0.55rem;
  }

  .region-banner__content p:last-child {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .listing-grid,
  .listing-grid--compact {
    gap: 0.85rem;
  }

  .property-card {
    border-radius: 22px;
  }

  .property-media {
    min-height: 255px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow.prev {
    left: 0.7rem;
  }

  .carousel-arrow.next {
    right: 0.7rem;
  }

  .carousel-dots {
    bottom: 0.7rem;
    gap: 0.38rem;
    padding: 0.38rem 0.58rem;
  }

  .carousel-dots button {
    width: 7px;
    height: 7px;
  }

  .property-body {
    gap: 0.72rem;
    padding: 1rem;
  }

  .property-heading {
    gap: 0.65rem;
  }

  .property-kicker,
  .property-price-label {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .property-heading h3 {
    font-size: clamp(1.42rem, 6.3vw, 1.95rem);
    line-height: 1.03;
  }

  .property-rating {
    padding: 0.34rem 0.55rem;
    font-size: 0.78rem;
  }

  .property-amenities {
    gap: 0.46rem;
  }

  .property-amenities span {
    padding: 0.48rem 0.66rem;
    font-size: 0.8rem;
  }

  .property-description {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .property-footer {
    gap: 0.72rem;
    padding-top: 0.65rem;
  }

  .property-footer strong {
    margin-top: 0.12rem;
    font-size: 1.18rem;
  }

  .property-footer strong span {
    font-size: 0.82rem;
  }

  .property-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.46rem;
  }

  .button-whatsapp,
  .button-booking {
    width: auto;
    min-width: 118px;
    min-height: 36px;
    padding: 0.5rem 0.78rem;
    font-size: 0.78rem;
  }

  .button-whatsapp svg,
  .button-booking svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 0;
    align-items: stretch;
    padding: calc(var(--header-height) + clamp(1.35rem, 3.6svh, 2.1rem)) 0 clamp(0.85rem, 2.4svh, 1.2rem);
  }

  .hero-media {
    background:
      linear-gradient(rgba(10, 15, 16, 0.08), rgba(10, 15, 16, 0.08)),
      url('./mídia/imagens/exterior/img_001.webp') 58% center/cover;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 14, 18, 0.72) 0%, rgba(10, 14, 18, 0.44) 42%, rgba(12, 13, 11, 0.7) 100%),
      linear-gradient(90deg, rgba(5, 6, 5, 0.68) 0%, rgba(8, 9, 8, 0.34) 100%);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-copy {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    gap: clamp(0.68rem, 1.9svh, 1rem);
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: clamp(2.35rem, 6.5svh, 3.7rem);
  }

  .hero h1 {
    max-width: 12.4ch;
    color: #fffdf9;
    font-size: clamp(2.08rem, 8.8vw, 2.92rem);
    line-height: 0.96;
    margin-bottom: 0;
  }

  .hero .eyebrow {
    margin-bottom: 0.12rem;
    font-size: clamp(0.64rem, 2.72vw, 0.76rem);
    letter-spacing: 0.11em;
  }

  .hero .eyebrow::after {
    bottom: -0.52rem;
    width: 32px;
  }

  .hero-text {
    max-width: 39ch;
    color: rgba(255, 253, 249, 0.96);
    margin: 0;
    font-size: clamp(0.82rem, 3.25vw, 0.92rem);
    line-height: 1.36;
  }

  .hero-stats {
    width: 100%;
    margin: 0;
  }

  .hero-stat {
    padding: 0.68rem 0.6rem 0.74rem;
    text-align: center;
  }

  .hero-stat strong {
    font-size: clamp(1.16rem, 5vw, 1.42rem);
  }

  .hero-stat span {
    font-size: clamp(0.46rem, 1.9vw, 0.58rem);
    letter-spacing: 0.07em;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.68rem;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 40px;
    padding: 0.64rem 0.85rem;
    font-size: clamp(0.62rem, 2.35vw, 0.7rem);
    white-space: normal;
  }

  .hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1.15rem;
    transform: translateX(-50%);
    align-self: auto;
    margin-top: 0;
    font-size: 0.58rem;
  }

  .hero-whatsapp {
    width: 50px;
    height: 50px;
    right: 1.05rem;
    bottom: 1.35rem;
  }

  .hero-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 374px) {
  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: 2.12rem;
  }

  .hero-text {
    font-size: 0.84rem;
  }

  .hero-stat {
    padding-inline: 0.55rem;
  }

  .hero-stat strong {
    font-size: 1.18rem;
  }

  .hero-stat span {
    font-size: 0.45rem;
  }

  .hero-actions .button {
    min-height: 40px;
    padding-inline: 0.75rem;
    font-size: 0.66rem;
  }
}

@media (max-height: 760px) and (min-width: 768px) {
  .hero {
    padding: calc(var(--header-height) + 0.9rem) 0 2.45rem;
  }

  .hero h1 {
    max-width: 18.8ch;
    font-size: clamp(2.55rem, 3.85vw, 3.8rem);
    margin-bottom: 0.62rem;
  }

  .hero .eyebrow {
    margin-bottom: 1rem;
  }

  .hero-text {
    max-width: 52ch;
    margin-bottom: 1rem;
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .hero-stats {
    margin-bottom: 1rem;
  }
}

@media (max-height: 700px) and (max-width: 767px) {
  .hero {
    padding: calc(var(--header-height) + 0.72rem) 0 16px;
  }

  .hero h1 {
    max-width: 14.8ch;
    font-size: clamp(1.82rem, 7.8vw, 2.42rem);
  }

  .hero-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }

  .hero-actions {
    gap: 0.58rem;
  }

  .hero-actions .button {
    min-height: 38px;
  }

  .hero-scroll-cue {
    display: none;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .regions-grid,
  .testimonials-grid,
  .video-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-rail {
    grid-auto-columns: minmax(360px, 420px);
  }

  .region-banner {
    min-height: 280px;
    margin-bottom: 1.15rem;
  }

  .property-body {
    padding: 1.35rem;
  }

  .property-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .property-actions {
    width: auto;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .button-whatsapp,
  .button-booking {
    width: auto;
    min-width: 118px;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: inline-flex;
    gap: clamp(0.8rem, 1.4vw, 1.35rem);
  }

  .header-topbar__social {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 0;
    padding: calc(var(--header-height) + clamp(1rem, 2.8svh, 2rem)) 0 clamp(1.4rem, 3.6svh, 2.6rem);
  }

  .hero-content {
    grid-template-columns: minmax(620px, 0.72fr) minmax(260px, 1fr);
  }

  .hero-copy {
    align-self: center;
  }

  .hero h1 {
    font-size: clamp(2.95rem, 3.85vw, 4.35rem);
  }

  .regions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
  }

  .listing-grid {
    gap: 1.1rem;
  }

  .property-card {
    grid-template-columns: minmax(420px, 1.05fr) minmax(0, 1fr);
  }

  .property-card--compact {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  }

  .property-media {
    min-height: 100%;
  }
}
