: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;
}

.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: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #ece2d6);
  color: var(--color-text);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.brand-mark--logo {
  overflow: hidden;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.12);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.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: 1.35rem;
}

.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;
}

.header-topbar__social,
.footer-social {
  display: none;
  align-items: center;
  gap: 0.55rem;
}

.header-topbar__social a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
}

.header-topbar__social svg,
.footer-social svg {
  display: block;
  width: 32px;
  height: 32px;
}

.site-header.is-scrolled .header-topbar__social a,
.footer-social a {
  border-color: rgba(44, 51, 56, 0.1);
  background: rgba(255, 255, 255, 0.68);
}

.header-topbar__social a.social-link--instagram,
.footer-social a.social-link--instagram {
  width: 32px;
  height: 32px;
  border-color: transparent;
  background: transparent;
}

.header-topbar__social a.social-link--facebook,
.footer-social a.social-link--facebook {
  width: 32px;
  height: 32px;
  border-color: transparent;
  background: transparent;
}

.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.85rem, 2.35svh, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.85svh, 1.35rem);
  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 {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-height: 0;
  padding-right: clamp(2.8rem, 9vw, 3.45rem);
}

.sidebar-top h2 {
  font-size: clamp(1.35rem, min(5.25vw, 4.3svh), 2rem);
  line-height: 1.02;
}

.sidebar-close {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text);
  font-size: clamp(1.25rem, 3.8svh, 1.6rem);
}

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.42rem, 1.35svh, 0.82rem) clamp(0.72rem, 2.4vw, 1rem);
  min-height: 0;
}

.mobile-nav a {
  padding-bottom: clamp(0.4rem, 1.25svh, 0.72rem);
  border-bottom: 1px solid rgba(44, 51, 56, 0.08);
  font-size: clamp(0.88rem, min(3.55vw, 2.35svh), 1.05rem);
  line-height: 1.2;
}

.sidebar-card {
  margin-top: auto;
  padding: clamp(0.78rem, 2.05svh, 1.2rem);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
  min-height: 0;
}

.sidebar-card p {
  margin: 0 0 clamp(0.55rem, 1.45svh, 0.9rem);
  color: var(--color-text-muted);
  font-size: clamp(0.78rem, min(3.25vw, 2.05svh), 0.95rem);
  line-height: 1.32;
}

.sidebar-card .button {
  width: 100%;
  min-height: clamp(2.55rem, 6.6svh, 3.2rem);
  padding: clamp(0.58rem, 1.5svh, 0.82rem) clamp(0.8rem, 2.5vw, 1.2rem);
  font-size: clamp(0.76rem, min(3.15vw, 1.9svh), 0.92rem);
  line-height: 1.15;
  text-align: center;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(1rem, 3.2svh, 2.4rem)) 0 clamp(2.4rem, 4.5svh, 3.8rem);
  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(90deg, rgba(22, 27, 25, 0.88) 0%, rgba(22, 27, 25, 0.68) 46%, rgba(22, 27, 25, 0.36) 100%),
    url('./mídia/imagens/img_17.jpeg') center / cover no-repeat;
  transform: scale(1.015);
}

.hero-overlay {
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 0;
}

.hero-copy {
  max-width: 740px;
  min-height: 0;
}

.hero h1 {
  max-width: 17.6ch;
  color: #fffdf9;
  font-size: clamp(2.7rem, min(5vw, 9svh), 5.25rem);
  line-height: 0.96;
  margin-bottom: 1rem;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.38);
}

.hero .eyebrow {
  position: relative;
  display: inline-block;
  color: #fffdf9;
  margin-bottom: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.78rem, 0.9vw, 0.98rem);
  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.92rem, min(1.05vw, 2.2svh), 1.08rem);
  font-weight: 500;
  line-height: 1.46;
  margin: 0 0 1.25rem;
  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%, 510px);
  margin-bottom: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(32, 34, 28, 0.72);
  backdrop-filter: blur(8px);
}

.hero-stat {
  padding: 0.78rem 1rem 0.86rem;
  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.38rem, 2vw, 1.72rem);
  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: 50px;
  padding: 0.82rem 1.35rem;
  border-radius: 0;
  font-size: 0.76rem;
  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;
}

.floating-whatsapp {
  position: fixed;
  right: max(1.15rem, env(safe-area-inset-right));
  bottom: max(1.15rem, env(safe-area-inset-bottom));
  z-index: 9999;
  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), 0 0 0 8px rgba(37, 211, 102, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.18);
  outline: none;
}

.floating-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(180deg, rgba(44, 51, 56, 0.05), rgba(44, 51, 56, 0.58));
  z-index: -1;
}

.region-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  color: #f8f5f0;
}

.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;
}

.region-trancoso {
  background-image: url('./mídia/imagens/img_3.jpeg');
}

.region-coroa {
  background-image: url('./mídia/imagens/img_4.jpeg');
}

.region-arraial {
  background-image: url('./mídia/imagens/img_5.jpeg');
}

.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/img_6.jpeg');
}

.stay-image-2 {
  background-image: url('./mídia/imagens/img_8.jpeg');
}

.stay-image-3 {
  background-image: url('./mídia/imagens/img_7.jpeg');
}

.stay-image-4 {
  background-image: url('./mídia/imagens/img_4.jpeg');
}

.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: 4.5rem 0 3rem;
  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: 1rem;
}

.region-showcase--alternate {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.region-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: end;
  padding: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-soft);
}

.region-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 51, 56, 0.1), rgba(44, 51, 56, 0.58));
}

.region-banner__content {
  position: relative;
  z-index: 1;
  color: #f8f5f0;
  max-width: 62ch;
}

.region-banner__content .eyebrow--light {
  color: rgba(255, 253, 249, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
}

.region-banner__content h2 {
  margin: 0 0 0.85rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.region-banner__content p:last-child {
  margin: 0;
  color: rgba(248, 245, 240, 0.88);
}

.banner-trancoso {
  background-color: #6f6559;
  background-image:
    linear-gradient(rgba(111, 101, 89, 0.9), rgba(111, 101, 89, 0.9)),
    url('./mídia/imagens/img_1.jpeg');
  background-blend-mode: color, luminosity;
}

.banner-coroa {
  background-image: url('./mídia/imagens/img_4.jpeg');
}

.banner-arraial {
  background-image: url('./mídia/imagens/img_7.jpeg');
}

.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.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.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.7rem, 3vw, 2.35rem);
  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.65rem 0.85rem;
  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.88rem;
}

.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);
}

.button-whatsapp {
  width: 100%;
  gap: 0.6rem;
  background: linear-gradient(135deg, #d8cabf, #b6aa9b);
  color: #fffdf9;
  box-shadow: var(--shadow-soft);
}

.button-whatsapp:hover {
  opacity: 0.94;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  color: var(--color-text-muted);
}

.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 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.media-video-card .property-media {
  min-height: clamp(320px, 48vw, 560px);
}

.media-video-card .carousel-dots {
  max-width: calc(100% - 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-credit {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(44, 51, 56, 0.08);
  text-align: center;
}

.footer-credit p {
  max-width: none;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-credit 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 {
  color: #8f7b67;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .floating-whatsapp {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
    --container: min(100% - 1.25rem, 1180px);
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.7rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    align-items: stretch;
    padding: calc(var(--header-height) + clamp(1rem, 3.8svh, 2.2rem)) 0 clamp(0.9rem, 2.4svh, 1.25rem);
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(22, 27, 25, 0.88) 0%, rgba(22, 27, 25, 0.7) 58%, rgba(22, 27, 25, 0.5) 100%),
      url('./mídia/imagens/img_17.jpeg') center / cover no-repeat;
  }

  .hero-overlay {
    background: transparent;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    min-height: 0;
    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;
    min-height: 0;
    gap: clamp(0.58rem, 1.85svh, 1.05rem);
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: clamp(2.25rem, 6.5svh, 3.65rem);
  }

  .hero h1 {
    max-width: 11.7ch;
    color: #fffdf9;
    font-size: clamp(2.14rem, min(10.2vw, 7svh), 3.35rem);
    line-height: 0.96;
    margin-bottom: 0;
  }

  .hero .eyebrow {
    margin-bottom: 0.12rem;
    font-size: clamp(0.72rem, 3.15vw, 0.88rem);
    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.84rem, min(3.55vw, 2.55svh), 1.02rem);
    line-height: 1.42;
  }

  .hero-stats {
    width: 100%;
    margin: 0;
  }

  .hero-stat {
    padding: 0.84rem 0.74rem 0.9rem;
    text-align: center;
  }

  .hero-stat strong {
    font-size: clamp(1.42rem, 6vw, 1.72rem);
  }

  .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: 44px;
    padding: 0.76rem 0.95rem;
    font-size: clamp(0.68rem, 2.6vw, 0.76rem);
    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;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    right: max(0.9rem, env(safe-area-inset-right));
    bottom: max(0.9rem, env(safe-area-inset-bottom));
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

@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.85rem) 0 2.35rem;
  }

  .hero h1 {
    max-width: 18.8ch;
    font-size: clamp(2.7rem, min(4.4vw, 8.2svh), 4.45rem);
    margin-bottom: 0.78rem;
  }

  .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 18px;
  }

  .hero h1 {
    max-width: 14.2ch;
    font-size: clamp(1.8rem, min(8.8vw, 6.7svh), 2.82rem);
  }

  .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: 40px;
  }

  .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,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-rail {
    grid-auto-columns: minmax(360px, 420px);
  }

  .region-banner {
    min-height: 360px;
    margin-bottom: 2rem;
  }

  .property-body {
    padding: 1.75rem;
  }

  .property-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .button-whatsapp {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: inline-flex;
  }

  .header-topbar__social {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding: calc(var(--header-height) + clamp(1rem, 3.2svh, 2.4rem)) 0 clamp(2.4rem, 4.5svh, 3.8rem);
  }

  .hero-content {
    grid-template-columns: minmax(620px, 0.72fr) minmax(260px, 1fr);
  }

  .hero-copy {
    align-self: center;
  }

  .hero h1 {
    font-size: clamp(3rem, min(4.65vw, 9svh), 5.1rem);
  }

  .regions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  }

  .listing-grid {
    gap: 1.5rem;
  }

  .property-card {
    grid-template-columns: minmax(420px, 1.05fr) minmax(0, 1fr);
  }

  .property-card--compact {
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  }

  .property-media {
    min-height: 100%;
  }
}
