:root {
  --color-bg: #fff7ef;
  --color-surface: rgba(255, 255, 255, 0.72);
  --color-surface-strong: #fdfcf9;
  --color-primary: #ff7a1a;
  --color-primary-deep: #f05a12;
  --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-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;
}

.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(calc(100vw - 1.25rem), 380px);
  height: 100vh;
  height: 100svh;
  max-height: 100dvh;
  padding: clamp(1rem, 4vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.15rem, 3svh, 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  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: clamp(0.75rem, 3vw, 1rem);
}

.sidebar-top h2 {
  font-size: clamp(1.62rem, 8vw, 2rem);
}

.sidebar-close {
  flex: 0 0 clamp(40px, 11vw, 44px);
  width: clamp(40px, 11vw, 44px);
  height: clamp(40px, 11vw, 44px);
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text);
  font-size: clamp(1.35rem, 5vw, 1.6rem);
}

.mobile-nav {
  display: grid;
  gap: clamp(0.58rem, 2svh, 1rem);
}

.mobile-nav a {
  padding-bottom: clamp(0.58rem, 1.8svh, 0.85rem);
  border-bottom: 1px solid rgba(44, 51, 56, 0.08);
  font-size: 1.05rem;
}

.sidebar-card {
  margin-top: auto;
  padding: clamp(1rem, 4vw, 1.4rem);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
}

.sidebar-card p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.sidebar-card .button {
  width: 100%;
  min-height: 48px;
  padding-inline: 1rem;
  text-align: center;
  white-space: normal;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(1.6rem, 4.4svh, 3.2rem)) 0 clamp(3.4rem, 6svh, 4.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(rgba(10, 15, 16, 0.1), rgba(10, 15, 16, 0.1)),
    url('./mídia/imagens/background1.jpg') 64% center/cover;
  overflow: hidden;
  transform: scale(1.015);
}

.hero-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 64% center;
}

.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(3.45rem, 5vw, 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.96rem, 1.05vw, 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, #f05a12);
  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: #f05a12;
  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(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/monteh.jpeg');
}

.region-coroa {
  background-image: url('./mídia/imagens/terceiraponte.jpg');
}

.region-arraial {
  background-image: url('./mídia/imagens/picodoitabira.jpg');
}

.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/background1.jpg');
}

.stay-image-2 {
  background-image: url('./mídia/imagens/e-commerce.jpg');
}

.stay-image-3 {
  background-image: url('./mídia/imagens/background4.jpg');
}

.stay-image-4 {
  background-image: url('./mídia/imagens/parceria2.jpg');
}

.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-image: url('./mídia/imagens/background5.jpg');
}

.banner-coroa {
  background-image: url('./mídia/imagens/background3.jpg');
}

.banner-arraial {
  background-image: url('./mídia/imagens/background4.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;
}

.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, #ff7a1a, #f05a12);
  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,
.footer-badges > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  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-instagram {
  color: var(--color-text);
  font-weight: 800;
}

.footer-instagram svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.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;
}

@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;
    min-height: 100svh;
    align-items: stretch;
    padding: calc(var(--header-height) + clamp(2.1rem, 5.2svh, 3rem)) 0 clamp(1.1rem, 3svh, 1.45rem);
  }

  .hero-media {
    background:
      linear-gradient(rgba(10, 15, 16, 0.08), rgba(10, 15, 16, 0.08)),
      url('./mídia/imagens/background1.jpg') 58% center/cover;
  }

  .hero-media video {
    object-position: 58% center;
  }

  .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.9rem, 2.4svh, 1.28rem);
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: clamp(2.9rem, 8.5svh, 4.8rem);
  }

  .hero h1 {
    max-width: 11.7ch;
    color: #fffdf9;
    font-size: clamp(2.48rem, 10.6vw, 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.94rem, 3.75vw, 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;
  }

  .hero-whatsapp {
    width: 50px;
    height: 50px;
    right: 1.05rem;
    bottom: 1.35rem;
  }

  .hero-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 374px) {
  .mobile-sidebar {
    width: calc(100vw - 0.75rem);
    padding: 0.9rem;
    gap: 0.95rem;
  }

  .sidebar-top h2 {
    font-size: 1.48rem;
  }

  .mobile-nav a {
    font-size: 0.98rem;
  }

  .sidebar-card {
    border-radius: 20px;
  }

  .sidebar-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .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: 680px) and (max-width: 767px) {
  .mobile-sidebar {
    gap: 0.85rem;
  }

  .sidebar-top h2 {
    font-size: clamp(1.34rem, 6.2vw, 1.62rem);
  }

  .mobile-nav {
    gap: 0.48rem;
  }

  .mobile-nav a {
    padding-bottom: 0.5rem;
  }

  .sidebar-card {
    margin-top: 0;
  }
}

@media (max-height: 760px) and (min-width: 768px) {
  .hero {
    padding: calc(var(--header-height) + 1.15rem) 0 3.15rem;
  }

  .hero h1 {
    max-width: 18.8ch;
    font-size: clamp(3.15rem, 4.4vw, 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.95rem) 0 20px;
  }

  .hero h1 {
    max-width: 14.2ch;
    font-size: clamp(2rem, 8.8vw, 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: 42px;
  }

  .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;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + clamp(1.6rem, 4.4svh, 3.2rem)) 0 clamp(3.4rem, 6svh, 4.8rem);
  }

  .hero-content {
    grid-template-columns: minmax(620px, 0.72fr) minmax(260px, 1fr);
  }

  .hero-copy {
    align-self: center;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 4.65vw, 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%;
  }
}
