:root {
  --color-bg: #eefbfc;
  --color-surface: rgba(255, 255, 255, 0.8);
  --color-surface-strong: #ffffff;
  --color-primary: #58d2d4;
  --color-primary-deep: #128ca0;
  --color-primary-dark: #174250;
  --color-accent: #f6b51e;
  --color-accent-deep: #cf8b02;
  --color-text: #153643;
  --color-text-muted: #55707a;
  --color-border: rgba(18, 140, 160, 0.14);
  --shadow-soft: 0 22px 58px rgba(18, 140, 160, 0.14);
  --shadow-card: 0 14px 32px rgba(21, 54, 67, 0.08);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 9% 8%, rgba(88, 210, 212, 0.2), transparent 28rem),
    radial-gradient(circle at 92% 14%, rgba(246, 181, 30, 0.12), transparent 24rem),
    linear-gradient(180deg, #f8feff 0%, var(--color-bg) 42%, #ffffff 100%);
  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: 'Inter', sans-serif;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.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: #f8feff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 254, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 140, 160, 0.12);
  box-shadow: 0 14px 34px rgba(21, 54, 67, 0.08);
  color: var(--color-text);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.3rem 0.9rem 0.3rem 0.3rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(21, 83, 96, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(8, 42, 52, 0.16);
}

.site-header.is-scrolled .brand {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(18, 140, 160, 0.16);
  box-shadow: 0 10px 24px rgba(21, 54, 67, 0.08);
}

.brand-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  color: var(--color-text);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(8, 42, 52, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 1.08rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: currentColor;
  opacity: 0.84;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.055em;
}

.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: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  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.85rem, 2.5dvh, 1.5rem);
  overflow-x: visible;
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 2.2dvh, 1.35rem);
  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;
  min-height: 44px;
  flex: 0 0 44px;
}

.sidebar-close {
  position: absolute;
  top: 0;
  right: calc(clamp(0.85rem, 2.5dvh, 1.5rem) * -1);
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0;
  transform: none;
}

.mobile-nav {
  display: grid;
  gap: clamp(0.42rem, 1.4dvh, 0.82rem);
  flex: 0 1 auto;
}

.mobile-nav a {
  padding-bottom: clamp(0.5rem, 1.45dvh, 0.8rem);
  border-bottom: 1px solid rgba(44, 51, 56, 0.08);
  font-size: clamp(0.95rem, 2.8dvh, 1.05rem);
  line-height: 1.25;
}

.sidebar-card {
  margin-top: 0;
  padding: clamp(0.85rem, 2.4dvh, 1.2rem);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
}

.sidebar-card p {
  margin: 0 0 clamp(0.6rem, 1.8dvh, 0.85rem);
  color: var(--color-text-muted);
  font-size: clamp(0.84rem, 2.2dvh, 0.95rem);
  line-height: 1.35;
}

.sidebar-card .button {
  min-height: clamp(40px, 6.2dvh, 48px);
  padding: 0.68rem 1rem;
  font-size: clamp(0.78rem, 2.1dvh, 0.9rem);
}

@media (max-height: 560px) {
  .mobile-sidebar {
    gap: 0.55rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .sidebar-top {
    min-height: 38px;
    flex-basis: 38px;
  }

  .sidebar-close {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 1.35rem;
  }

  .mobile-nav {
    gap: 0.32rem;
  }

  .mobile-nav a {
    padding-bottom: 0.36rem;
    font-size: 0.9rem;
  }

  .sidebar-card {
    padding: 0.65rem;
  }

  .sidebar-card p {
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    line-height: 1.24;
  }

  .sidebar-card .button {
    min-height: 36px;
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(0.65rem, 2.2dvh, 1.35rem)) 0 clamp(2rem, 4dvh, 3rem);
  isolation: isolate;
  background: #dff8fa;
  color: #f8feff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 23%, rgba(255, 255, 255, 0.72) 0 0.36rem, transparent 0.4rem),
    radial-gradient(circle at 83% 31%, rgba(88, 210, 212, 0.46) 0 0.62rem, transparent 0.66rem),
    radial-gradient(circle at 72% 40%, rgba(255, 255, 255, 0.52) 0 0.48rem, transparent 0.52rem),
    radial-gradient(circle at 92% 74%, rgba(88, 210, 212, 0.32) 0 4.7rem, transparent 4.85rem),
    radial-gradient(circle at 8% 84%, rgba(246, 181, 30, 0.2) 0 5.3rem, transparent 5.45rem);
  animation: laundry-bubbles 9s ease-in-out infinite alternate;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.hero::after {
  inset: auto 0 -8svh;
  height: 36%;
  background: linear-gradient(
    180deg,
    rgba(238, 251, 252, 0) 0%,
    rgba(88, 210, 212, 0.16) 34%,
    rgba(238, 251, 252, 0.36) 68%,
    rgba(238, 251, 252, 0.92) 100%
  );
  z-index: 0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(rgba(232, 252, 253, 0.02), rgba(232, 252, 253, 0.02)),
    url('./mídia/imagens/IMG_3287copia.JPG.jpeg') center/cover no-repeat,
    radial-gradient(circle at 72% 48%, rgba(255, 255, 255, 0.36), rgba(88, 210, 212, 0.2) 28%, rgba(10, 15, 16, 0) 54%),
    linear-gradient(135deg, #e9fdff 0%, #58d2d4 44%, #f6b51e 100%);
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 42, 52, 0.86) 0%, rgba(18, 96, 110, 0.66) 42%, rgba(88, 210, 212, 0.18) 74%, rgba(248, 254, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(21, 54, 67, 0.52) 0%, rgba(21, 54, 67, 0.18) 46%, rgba(21, 54, 67, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.hero-copy {
  max-width: 660px;
  padding: clamp(0.78rem, 1.65vw, 1.05rem);
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(9, 42, 52, 0.24), rgba(9, 42, 52, 0.08));
  backdrop-filter: blur(3px);
}

.hero h1 {
  max-width: 14ch;
  color: #f8feff;
  font-size: clamp(2.25rem, 3.25vw, 3.45rem);
  line-height: 1.02;
  margin-bottom: 0.62rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: 0.88em;
  line-height: 1.04;
}

.hero .eyebrow {
  position: relative;
  display: inline-block;
  color: #f8feff;
  margin-bottom: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 850;
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
  letter-spacing: 0.105em;
  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: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 999px;
}

.hero-text {
  max-width: 44ch;
  color: rgba(248, 254, 255, 0.96);
  font-size: clamp(0.88rem, 0.92vw, 0.98rem);
  font-weight: 600;
  line-height: 1.42;
  margin: 0 0 0.78rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 470px);
  margin-bottom: 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(21, 54, 67, 0.2);
}

.hero-stat {
  padding: 0.62rem 0.85rem 0.68rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 850;
  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.075em;
  font-size: 0.61rem;
  font-weight: 800;
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  margin-top: 0;
  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, var(--color-primary-deep), var(--color-primary));
  color: #fff;
  box-shadow: 0 16px 34px rgba(18, 140, 160, 0.24);
}

.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.25rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-actions .button-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-deep));
  color: #fff;
  box-shadow: 0 16px 34px rgba(207, 139, 2, 0.28);
}

.hero-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
  color: #f8feff;
  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: 800;
}

.hero-scroll-cue span {
  display: inline-block;
  margin-left: 0.35rem;
  color: #f8feff;
  animation: cue-bounce 1.4s ease-in-out infinite;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(1rem, 2.8vw, 2rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 9999;
  display: grid;
  justify-items: end;
  gap: 0.8rem;
  pointer-events: none;
}

.floating-whatsapp__menu {
  width: min(320px, calc(100vw - 2rem));
  display: grid;
  gap: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transform-origin: right bottom;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.floating-whatsapp.is-open .floating-whatsapp__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-whatsapp__menu a {
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 253, 249, 0.94);
  color: var(--color-text);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.floating-whatsapp__menu a:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp__menu span {
  font-size: 0.92rem;
  font-weight: 800;
}

.floating-whatsapp__menu small {
  color: var(--color-text-muted);
  font-size: 0.76rem;
}

.floating-whatsapp__button {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-whatsapp__button:hover,
.floating-whatsapp.is-open .floating-whatsapp__button {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp.is-open .floating-whatsapp__button {
  background: #1f2d33;
}

.floating-whatsapp__button svg {
  width: 34px;
  height: 34px;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-whatsapp__close {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.75);
  font-size: 2rem;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-whatsapp.is-open .floating-whatsapp__button svg {
  opacity: 0;
  transform: scale(0.75);
}

.floating-whatsapp.is-open .floating-whatsapp__close {
  opacity: 1;
  transform: scale(1);
}

@keyframes cue-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

@keyframes laundry-bubbles {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.82;
  }

  to {
    transform: translate3d(-0.9rem, -1.2rem, 0) scale(1.04);
    opacity: 1;
  }
}

.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(18, 140, 160, 0.08), rgba(21, 54, 67, 0.66));
  z-index: -1;
}

.region-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  color: #f8feff;
}

.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: 'Inter', sans-serif;
  font-weight: 820;
  font-size: 2rem;
  margin: 0.3rem 0 0.5rem;
}

.region-content span {
  max-width: 28ch;
}

.region-trancoso {
  background-image:
    url('./mídia/imagens/IMG_3300.JPG.jpeg'),
    linear-gradient(135deg, #f8feff 0%, #58d2d4 42%, #174250 100%);
  background-size: cover;
  background-repeat: no-repeat;
}

.region-coroa {
  background-image:
    url('./mídia/imagens/IMG_3295.JPG.jpeg'),
    linear-gradient(135deg, #ffffff 0%, #baf4f5 44%, #128ca0 100%);
  background-size: cover;
  background-repeat: no-repeat;
}

.region-arraial {
  background-image:
    url('./mídia/imagens/IMG_3308.JPG.jpeg'),
    linear-gradient(135deg, #ffffff 0%, #f7d37a 42%, #153643 100%);
  background-size: cover;
  background-repeat: no-repeat;
}

.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(18, 140, 160, 0.32);
  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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(18, 140, 160, 0.16);
}

.stay-image {
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.stay-image-1 {
  background-image:
    url('./mídia/imagens/IMG_3294.JPG.jpeg'),
    linear-gradient(135deg, #ffffff 0%, #58d2d4 48%, #174250 100%);
  background-size: cover;
  background-repeat: no-repeat;
}

.stay-image-2 {
  background-image:
    url('./mídia/imagens/IMG_3313.JPG.jpeg'),
    linear-gradient(135deg, #ffffff 0%, #baf4f5 48%, #f6b51e 100%);
  background-size: cover;
  background-repeat: no-repeat;
}

.stay-image-3 {
  background-image:
    url('./mídia/imagens/IMG_3306.JPG.jpeg'),
    linear-gradient(135deg, #ffffff 0%, #e4fbfc 48%, #58d2d4 100%);
  background-size: cover;
  background-repeat: no-repeat;
}

.stay-image-4 {
  background-image:
    url('./mídia/imagens/IMG_3311.JPG.jpeg'),
    linear-gradient(135deg, #ffffff 0%, #d8fbfc 48%, #174250 100%);
  background-size: cover;
  background-repeat: no-repeat;
}

.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: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
  color: var(--color-text);
}

.stay-meta span,
.stay-meta strong {
  display: block;
  width: 100%;
  padding: 0.72rem 0.85rem;
  border-radius: 16px;
  background: rgba(18, 140, 160, 0.08);
  border: 1px solid rgba(18, 140, 160, 0.14);
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.35;
}

.stay-meta strong {
  font-weight: 800;
}

.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.82);
  border: 1px solid rgba(18, 140, 160, 0.12);
  box-shadow: var(--shadow-card);
}

.quote-mark {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--color-primary-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  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(88, 210, 212, 0.18);
  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(18, 140, 160, 0.12);
  background:
    radial-gradient(circle at 16% 22%, rgba(88, 210, 212, 0.18), transparent 25rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(232, 252, 253, 0.92));
}

.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: 360px;
  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(18, 140, 160, 0.08), rgba(21, 54, 67, 0.68));
}

.region-banner__content {
  position: relative;
  z-index: 1;
  color: #f8feff;
  max-width: 62ch;
}

.region-banner__content .eyebrow--light {
  color: rgba(248, 254, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
}

.region-banner__content h2 {
  margin: 0 0 2.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 820;
  font-size: clamp(1.5rem, 4.2vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.region-banner__content p:last-child {
  margin: 0;
  color: rgba(248, 254, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
}

.banner-trancoso {
  background-image:
    url('./mídia/imagens/IMG_3311.JPG.jpeg'),
    linear-gradient(135deg, #f8feff 0%, #58d2d4 42%, #174250 100%);
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-coroa {
  background-image:
    url('./mídia/imagens/IMG_3309.JPG.jpeg'),
    linear-gradient(135deg, #ffffff 0%, #baf4f5 44%, #128ca0 100%);
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-arraial {
  background-image:
    url('./mídia/imagens/IMG_3287copia1.JPG.jpeg'),
    linear-gradient(135deg, #ffffff 0%, #f7d37a 42%, #153643 100%);
  background-size: cover;
  background-repeat: no-repeat;
}

.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(18, 140, 160, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(18, 140, 160, 0.1);
  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;
  padding: 0;
  background: #e9e3da;
}

.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: 'Inter', sans-serif;
  font-weight: 820;
  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(88, 210, 212, 0.16);
  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: 'Inter', sans-serif;
  font-weight: 820;
}

.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, var(--color-primary-deep), var(--color-primary));
  color: #fff;
  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-credit,
.footer-bottom {
  margin-top: 2.5rem;
  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.9rem;
}

.footer-credit a,
.footer-bottom a {
  color: var(--color-text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(88, 210, 212, 0.62);
  text-underline-offset: 0.22em;
}

.footer-credit a:hover,
.footer-bottom a:hover {
  color: var(--color-primary-deep);
}

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;
    padding: 0.2rem 0.55rem 0.2rem 0.2rem;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    align-items: stretch;
    padding: calc(var(--header-height) + clamp(0.72rem, 2.4dvh, 1.25rem)) 0 clamp(0.9rem, 2.2dvh, 1.25rem);
  }

  .hero-media {
    background:
      linear-gradient(rgba(232, 252, 253, 0.02), rgba(232, 252, 253, 0.02)),
      url('./mídia/imagens/IMG_3287.JPG.jpeg') center/cover no-repeat,
      radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.32), rgba(88, 210, 212, 0.18) 32%, rgba(10, 15, 16, 0) 58%),
      linear-gradient(135deg, #e9fdff 0%, #58d2d4 44%, #f6b51e 100%);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(21, 54, 67, 0.78) 0%, rgba(18, 140, 160, 0.46) 42%, rgba(21, 54, 67, 0.64) 100%),
      linear-gradient(90deg, rgba(12, 55, 67, 0.72) 0%, rgba(88, 210, 212, 0.18) 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.46rem, 1.35dvh, 0.8rem);
    margin-top: 0;
    margin-bottom: 0;
    padding: clamp(0.72rem, 2.6vw, 0.9rem);
    padding-bottom: clamp(1.85rem, 5.2dvh, 3rem);
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-stats,
  .hero-actions .button-secondary {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero h1 {
    max-width: 12.5ch;
    color: #f8feff;
    font-size: clamp(1.72rem, 7.15vw, 2.28rem);
    line-height: 1.03;
    margin-bottom: 0;
  }

  .hero h1 span {
    letter-spacing: 0.008em;
    font-size: 0.86em;
  }

  .hero .eyebrow {
    margin-bottom: 0.02rem;
    font-size: clamp(0.62rem, 2.65vw, 0.76rem);
    letter-spacing: 0.085em;
  }

  .hero .eyebrow::after {
    bottom: -0.52rem;
    width: 32px;
  }

  .hero-text {
    max-width: 34ch;
    color: rgba(248, 254, 255, 0.97);
    margin: 0;
    font-size: clamp(0.78rem, 2.85vw, 0.9rem);
    line-height: 1.36;
  }

  .hero-stats {
    width: 100%;
    margin: 0;
  }

  .hero-stat {
    padding: clamp(0.46rem, 1.25dvh, 0.64rem) 0.52rem clamp(0.52rem, 1.42dvh, 0.7rem);
    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: clamp(0.48rem, 1.35dvh, 0.62rem);
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-actions .button {
    width: 100%;
    min-height: clamp(38px, 5.25dvh, 42px);
    padding: 0.56rem 0.85rem;
    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 {
    right: 1.05rem;
    bottom: 1.35rem;
  }

  .floating-whatsapp__button {
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp__button svg {
    width: 28px;
    height: 28px;
  }

  .floating-whatsapp__menu {
    width: min(300px, calc(100vw - 1.5rem));
  }
}

@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.45rem) 0 2.15rem;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.2rem, 3.15vw, 3.25rem);
    margin-bottom: 0.55rem;
  }

  .hero .eyebrow {
    margin-bottom: 1rem;
  }

  .hero-text {
    max-width: 42ch;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .hero-stats {
    margin-bottom: 0.62rem;
  }
}

@media (max-height: 700px) and (max-width: 767px) {
  .hero {
    padding: calc(var(--header-height) + 0.65rem) 0 0.75rem;
  }

  .hero-copy {
    gap: 0.5rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    max-width: 14.2ch;
    font-size: clamp(1.9rem, 8.1vw, 2.62rem);
  }

  .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;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    padding: calc(var(--header-height) + clamp(0.65rem, 2.2dvh, 1.35rem)) 0 clamp(2rem, 4dvh, 3rem);
  }

  .hero-content {
    grid-template-columns: minmax(620px, 0.72fr) minmax(260px, 1fr);
  }

  .hero-copy {
    align-self: start;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 3.35vw, 3.65rem);
  }

  .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%;
  }
}
