:root{
  --bg: #f5ede3;
  --bg-soft: #fbf6ef;
  --surface: rgba(255, 252, 248, 0.74);
  --surface-strong: rgba(255, 252, 248, 0.86);

  --text: #3a2f27;
  --text-soft: #7a6a5f;
  --line: rgba(92, 71, 54, 0.12);

  --sand: #e7d8c4;
  --sand-2: #dcc7ac;
  --sea: #3fb8c4;
  --sea-deep: #1d4ed8;
  --terracotta: #b45f4b;
  --leaf: #8fae8f;
  --sun: #f4b860;

  --shadow-sm: 0 10px 30px rgba(76, 52, 35, 0.08);
  --shadow-md: 0 18px 50px rgba(76, 52, 35, 0.12);
  --shadow-lg: 0 30px 80px rgba(76, 52, 35, 0.16);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --container: 1240px;

  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --header-h: 86px;
  --section-space: clamp(72px, 9vw, 140px);
  --ease: cubic-bezier(.22,1,.36,1);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:
    radial-gradient(circle at 10% 20%, rgba(143,174,143,0.22), transparent 30%),
    radial-gradient(circle at 85% 25%, rgba(180,95,75,0.22), transparent 28%),
    radial-gradient(circle at 50% 85%, rgba(244,184,96,0.12), transparent 30%),
    linear-gradient(180deg, #f5ede3 0%, #efe4d6 100%);
  color:var(--text);
  font-family:var(--font-sans);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

button{
  cursor:pointer;
}

main{
  overflow:hidden;
}

.wrap{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.section{
  position:relative;
  padding:var(--section-space) 0;
}

.eyebrow{
  display:inline-block;
  margin:0 0 16px;
  font-size:12px;
  line-height:1;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--text-soft);
}

.display{
  margin:0;
  font-family:var(--font-serif);
  font-size:clamp(42px, 7vw, 96px);
  line-height:.96;
  letter-spacing:-0.045em;
  color:var(--text);
}

.h1,
.h2,
.h3{
  margin:0;
  font-family:var(--font-serif);
  letter-spacing:-0.03em;
  color:var(--text);
}

.h1{
  font-size:clamp(34px, 5vw, 64px);
  line-height:1.02;
}

.h2{
  font-size:clamp(28px, 4vw, 48px);
  line-height:1.08;
}

.h3{
  font-size:clamp(22px, 3vw, 30px);
  line-height:1.14;
}

.lead{
  margin:0;
  max-width:760px;
  font-size:clamp(17px, 2.2vw, 22px);
  line-height:1.68;
  color:var(--text-soft);
}

.body{
  margin:0;
  font-size:16px;
  line-height:1.78;
  color:var(--text-soft);
}

/* HEADER */

.siteHeader{
  position:fixed;
  inset:0 0 auto 0;
  height:var(--header-h);
  z-index:1200;
  transition:
    background .45s var(--ease),
    box-shadow .45s var(--ease),
    border-color .45s var(--ease);

  background: rgba(246,238,226,0.56);
  backdrop-filter:blur(18px) saturate(145%);
  -webkit-backdrop-filter:blur(18px) saturate(145%);

  border-bottom:1px solid rgba(92,71,54,0.05);
}
.siteHeader.is-scrolled{
  background: rgba(246,238,226,0.90);
  border-bottom:1px solid rgba(92,71,54,0.10);
  box-shadow:0 12px 30px rgba(28,22,17,0.08);
}
.headerInner{
  width:min(var(--container), calc(100% - 36px));
  height:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:30px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  text-decoration:none;
}

.brandText{
  display:flex;
  flex-direction:column;
  gap:1px;
  min-width:0;
}

.brandName{
  font-family:var(--font-serif);
  font-size:18px;
  line-height:1;
  letter-spacing:-0.015em;
  color:rgba(46,35,27,0.96);
}

.brandSub{
  font-size:10px;
  line-height:1;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(98,79,64,0.68);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:38px;
  min-width:0;
}

.nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 0;
  font-size:12px;
  line-height:1;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(74,58,45,0.86);
  text-decoration:none;
  white-space:nowrap;
  transition:
    color .28s ease,
    transform .28s ease,
    opacity .28s ease;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-5px;
  height:1px;
  background:rgba(92,71,54,0.44);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .28s cubic-bezier(.22,1,.36,1);
}

.nav a:hover,
.nav a.is-active{
  color:rgba(38,29,22,1);
  transform:translateY(-1px);
}

.nav a:hover::after,
.nav a.is-active::after{
  transform:scaleX(1);
}

.headerActions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  min-width:max-content;
}

.langSwitch{
  display:inline-flex;
  align-items:center;
  gap:2px;
  padding:5px;
  border-radius:999px;
  background:rgba(255,255,255,0.62);
  border:1px solid rgba(92,71,54,0.10);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.22),
    0 4px 14px rgba(28,22,17,0.04);
}

.langSwitch a{
  min-width:38px;
  height:34px;
  padding:0 10px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  line-height:1;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:rgba(78,62,48,0.78);
  text-decoration:none;
  transition:
    background .25s ease,
    color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.langSwitch a:hover{
  color:rgba(40,30,22,0.96);
}

.langSwitch a.active,
.langSwitch a.is-active,
.langSwitch a[aria-current="true"]{
  background:rgba(255,255,255,0.96);
  color:rgba(34,27,22,0.98);
  box-shadow:0 4px 12px rgba(28,22,17,0.08);
}

.headerReserveBtn{
  min-height:42px;
  padding:0 18px;
  border-radius:999px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:0 10px 24px rgba(47,111,228,0.20);
}

@media (max-width: 1100px){
  .headerInner{
    width:min(100%, calc(100% - 26px));
    gap:20px;
  }

  .nav{
    gap:24px;
  }

  .nav a{
    font-size:11px;
    letter-spacing:.10em;
  }
}

@media (max-width: 760px){
  .headerInner{
    grid-template-columns:auto auto;
    justify-content:space-between;
    gap:12px;
  }

  .nav{
    display:none;
  }

  .brandName{
    font-size:18px;
  }

  .brandSub{
    font-size:9px;
    letter-spacing:.15em;
  }

  .headerActions{
    gap:10px;
  }

  .langSwitch a{
    min-width:34px;
    height:30px;
    font-size:11px;
    padding:0 8px;
  }

  .headerReserveBtn{
    min-height:40px;
    padding:0 14px;
    font-size:11px;
  }
}
/* ===== LOGO HEADER | FLAG HORIZONTAL ===== */

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brandMark{
  display:block;
  flex:0 0 auto;
  overflow:visible;
  background:transparent !important;
  box-shadow:none !important;
  border-radius:12px !important;
  width:auto !important;
  height:auto !important;
  padding:0 !important;
}

.brandMark--flag{
  width:72px !important;
  height:42px !important;
  border-radius:12px !important;
  overflow:hidden !important;
  background:transparent !important;
  box-shadow:none !important;
}

.brandMarkImg{
  display:block;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  border-radius:12px !important;
}

.brand:hover .brandMark--flag{
  transform:translateY(-1px) scale(1.02);
  transition:transform .35s ease, filter .35s ease;
  filter:saturate(1.03) contrast(1.02);
}

.brandText{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.brandName{
  letter-spacing:-0.015em;
}

@media (max-width: 760px){
  .brandMark--flag{
    width:62px !important;
    height:36px !important;
    border-radius:7px !important;
  }

  .brandMarkImg{
    border-radius:7px !important;
  }
}
/* BUTTONS */

.btn{
  appearance:none;
  border:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 22px;
  border-radius:var(--radius-pill);
  font-size:14px;
  font-weight:600;
  letter-spacing:.02em;
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    background .35s var(--ease),
    color .35s var(--ease),
    border-color .35s var(--ease);
}

.btn:hover{
  transform:translateY(-2px);
}

.btnPrimary{
  color:#fff;
  background:linear-gradient(135deg, #1d4ed8, #3fb8c4);
  box-shadow:0 14px 34px rgba(29,78,216,0.24);
}

.btnPrimary:hover{
  box-shadow:0 20px 40px rgba(29,78,216,0.28);
}

.btnGhost{
  color:var(--text);
  background:rgba(255,255,255,0.60);
  border:1px solid rgba(92,71,54,0.10);
  box-shadow:var(--shadow-sm);
}

.btnSoft{
  color:var(--text);
  background:#fff;
  box-shadow:var(--shadow-sm);
}

/* HERO */

.hero{
  position:relative;
  min-height:100svh;
  padding-top:calc(var(--header-h) + 18px);
  overflow:hidden;
}

.heroBackdrop{
  position:absolute;
  inset:0;
  z-index:0;
}

.heroBackdropImg{
  width:100%;
  height:100%;
  object-fit:cover;
}

.heroBackdropOverlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(34,26,20,0.50) 0%, rgba(34,26,20,0.22) 42%, rgba(34,26,20,0.12) 100%),
    linear-gradient(180deg, rgba(255,244,228,0.06) 0%, rgba(31,24,18,0.18) 100%);
}

.heroGrid{
  position:relative;
  z-index:2;
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
  min-height:calc(100svh - var(--header-h) - 18px);
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:52px;
  align-items:end;
  padding-bottom:42px;
}

.heroContent{
  position:relative;
  z-index:2;
  max-width:720px;
}

.heroDisplayLight{
  color:#fff;
  text-shadow:0 10px 30px rgba(0,0,0,0.18);
}

.heroText{
  margin:22px 0 30px;
  max-width:640px;
  font-size:18px;
  line-height:1.8;
}

.heroTextLight{
  color:rgba(255,255,255,0.88);
}

.heroActions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.heroGhostLight{
  background:rgba(255,255,255,0.14);
  color:#fff;
  border:1px solid rgba(255,255,255,0.22);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:none;
}

.heroGhostLight:hover{
  background:rgba(255,255,255,0.20);
}

.heroNotes{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.notePill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  font-size:13px;
}

.notePillLight{
  background:rgba(255,255,255,0.14);
  color:rgba(255,255,255,0.92);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.heroVisualFloating{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}

.heroInfoCard{
  max-width:360px;
  padding:24px;
  border-radius:28px;
  background:rgba(255,252,248,0.76);
  border:1px solid rgba(255,255,255,0.48);
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.heroInfoEyebrow{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--text-soft);
}

.heroInfoCard strong{
  display:block;
  margin-bottom:10px;
  font-family:var(--font-serif);
  font-size:30px;
  line-height:1;
  color:var(--text);
}

.heroInfoCard p{
  margin:0;
  color:var(--text-soft);
  line-height:1.7;
}

/* HEADERS DE SEÇÃO */

.sectionHead{
  display:grid;
  gap:16px;
  margin-bottom:38px;
}

/* CARDS */

.cardGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
}

.card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:rgba(255,252,248,0.82);
  border:1px solid rgba(255,255,255,0.56);
  box-shadow:var(--shadow-md);
}

.cardMedia{
  aspect-ratio:4 / 3;
  overflow:hidden;
}

.cardMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1.2s var(--ease);
}

.card:hover .cardMedia img{
  transform:scale(1.05);
}

.cardBody{
  padding:22px;
}

.cardMeta{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--text-soft);
}

.cardTitle{
  margin:0 0 10px;
  font-family:var(--font-serif);
  font-size:28px;
  line-height:1.06;
}

.cardText{
  margin:0;
  color:var(--text-soft);
  line-height:1.74;
}

/* SPLIT / PANELS */

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:center;
}

.softPanel{
  padding:28px;
  border-radius:28px;
  background:rgba(255,252,248,0.66);
  border:1px solid rgba(255,255,255,0.52);
  box-shadow:var(--shadow-md);
}

.bookingPanel{
  padding:26px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,252,248,0.84), rgba(255,252,248,0.72));
  border:1px solid rgba(255,255,255,0.62);
  box-shadow:var(--shadow-lg);
}

/* FORM */

.formGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.field{
  display:grid;
  gap:8px;
}

.field label{
  font-size:13px;
  color:var(--text-soft);
}

.field input,
.field select,
.field textarea{
  width:100%;
  min-height:54px;
  padding:0 16px;
  border-radius:18px;
  border:1px solid rgba(92,71,54,0.10);
  background:rgba(255,255,255,0.88);
  color:var(--text);
  outline:none;
  transition:
    border-color .3s var(--ease),
    box-shadow .3s var(--ease),
    background .3s var(--ease);
}

.field textarea{
  min-height:120px;
  padding:16px;
  resize:vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:rgba(29,78,216,0.30);
  box-shadow:0 0 0 5px rgba(63,184,196,0.12);
  background:#fff;
}

/* FOOTER */

.siteFooter{
  padding:48px 0 32px;
  border-top:1px solid rgba(92,71,54,0.08);
  background:linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,252,248,0.58));
}

.footerGrid{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  gap:30px;
}

.footerTitle{
  margin:0 0 10px;
  font-family:var(--font-serif);
  font-size:24px;
}

.footerText,
.footerNav a{
  color:var(--text-soft);
  line-height:1.8;
}

.footerNav{
  display:grid;
  gap:8px;
}

.divider{
  width:100%;
  height:1px;
  margin:24px 0;
  background:linear-gradient(90deg, transparent, rgba(92,71,54,0.12), transparent);
}

/* UTILITIES */

.mt-14{ margin-top:14px; }
.mt-16{ margin-top:16px; }
.mt-18{ margin-top:18px; }
.mt-22{ margin-top:22px; }
.mt-26{ margin-top:26px; }

.ctaRow{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hideMobile{
  display:block;
}

.showMobile{
  display:none;
}

/* RESPONSIVE */

@media (max-width: 1100px){
  .heroGrid,
  .split,
  .footerGrid{
    grid-template-columns:1fr;
  }

  .cardGrid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .heroVisualFloating{
    justify-content:flex-start;
  }

  .heroInfoCard{
    margin-top:20px;
  }
}

@media (max-width: 760px){
  :root{
    --header-h: 78px;
  }

  .nav{
    display:none;
  }

  .cardGrid,
  .formGrid{
    grid-template-columns:1fr;
  }

  .display{
    font-size:clamp(40px, 12vw, 66px);
    line-height:.96;
  }

  .hero{
    min-height:auto;
  }

  .heroGrid{
    min-height:calc(100svh - var(--header-h) - 18px);
    gap:28px;
    padding-bottom:28px;
  }

  .heroBackdropOverlay{
    background:
      linear-gradient(180deg, rgba(34,26,20,0.26) 0%, rgba(34,26,20,0.56) 100%);
  }

  .heroText{
    font-size:17px;
    line-height:1.74;
  }

  .heroActions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .heroInfoCard{
    max-width:none;
    width:100%;
  }

  .hideMobile{
    display:none;
  }

  .showMobile{
    display:block;
  }
}
.locationMapCard{
  margin:0;
  overflow:hidden;
  border-radius:28px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 24px 60px rgba(0,0,0,0.18);
  backdrop-filter:blur(12px);
}

.locationMapImage{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 4 / 3;
  object-fit:cover;
}

.locationMapCaption{
  padding:20px 22px 24px;
}

.locationMapCaption strong{
  display:block;
  margin-bottom:8px;
  font-size:0.95rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
}

.locationMapCaption p{
  margin:0 0 14px 0;
  line-height:1.65;
  opacity:0.88;
}

.locationMapLink{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.05);
  transition:all .25s ease;
}

.locationMapLink:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,0.08);
}
.homeHero{
  position:relative;
  min-height:100svh;
  overflow:hidden;
  background:#111;
  color:#fff;
}

.homeHeroMedia{
  position:absolute;
  inset:0;
  z-index:0;
}

.homeHeroVideo,
.homeHeroFallback{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.homeHeroVideo{
  display:block;
  opacity:1;
}

.homeHeroFallback{
  display:none;
}

.homeHeroInner{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:flex;
  align-items:center;
  padding:
    calc(var(--header-h, 88px) + 24px)
    48px
    48px;
}

.homeHeroContent{
  max-width:720px;
}

.homeHeroKicker{
  display:block;
  margin-bottom:14px;
  font-size:.78rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
}

.homeHeroTitle{
  margin:0;
  font-size:clamp(3.2rem, 7vw, 6.2rem);
  line-height:.92;
  font-weight:300;
  letter-spacing:-.045em;
  color:#fff;
}

.homeHeroText{
  margin:18px 0 0;
  max-width:620px;
  font-size:clamp(1rem, 1.4vw, 1.14rem);
  line-height:1.7;
  color:rgba(255,255,255,.88);
}

@media (max-width: 768px){
  .homeHeroInner{
    padding:
      calc(var(--header-h, 88px) + 18px)
      20px
      34px;
  }

  .homeHeroTitle{
    font-size:clamp(2.5rem, 10vw, 4rem);
  }

  .homeHeroText{
    font-size:1rem;
  }
}
/* ===== HERO REFINAMENTO EDITORIAL ===== */

.homeHeroInner {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 0 8vw;
}

.homeHeroContent {
  max-width: 680px;
}

/* localização */
.homeHeroKicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
}

/* título */
.homeHeroTitle {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
  .homeHeroTitle {
  text-shadow: 0 6px 18px rgba(0,0,0,0.22);
  }
}

/* descrição */
.homeHeroText {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 520px;
}

/* camada escura para contraste */
.homeHeroShade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.05) 70%
  );
  z-index: 1;
}

/* garante texto acima */
.homeHeroInner {
  position: relative;
  z-index: 3;
}

/* vídeo atrás */
.homeHeroVideo {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* ===== HERO REVEAL | Apple style ===== */

.heroReveal{
  opacity:0;
  transform:translateY(22px) scale(.985);
  filter:blur(14px);
  animation:heroRevealFade 1.15s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay:.18s;
  will-change:opacity, transform, filter;
}

@keyframes heroRevealFade{
  0%{
    opacity:0;
    transform:translateY(22px) scale(.985);
    filter:blur(14px);
  }
  55%{
    opacity:.72;
    transform:translateY(8px) scale(.992);
    filter:blur(6px);
  }
  100%{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .heroReveal{
    opacity:1;
    transform:none;
    filter:none;
    animation:none;
  }
}
/* ===== HERO REVEAL | staggered editorial ===== */

.heroReveal{
  opacity:0;
  transform:translateY(20px) scale(.985);
  filter:blur(12px);
  animation:heroRevealStagger 1.1s cubic-bezier(.22,1,.36,1) forwards;
  will-change:opacity, transform, filter;
}

.heroReveal--kicker{
  animation-delay:.10s;
}

.heroReveal--title{
  animation-delay:.24s;
}

.heroReveal--text{
  animation-delay:.40s;
}

@keyframes heroRevealStagger{
  0%{
    opacity:0;
    transform:translateY(20px) scale(.985);
    filter:blur(12px);
  }
  60%{
    opacity:.82;
    transform:translateY(6px) scale(.994);
    filter:blur(4px);
  }
  100%{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .heroReveal{
    opacity:1;
    transform:none;
    filter:none;
    animation:none;
  }
}
.homeHeroShade{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.15) 30%,
    rgba(0,0,0,0.45) 100%
  );
  z-index:1;
}
.homeHeroGlow{
  position:absolute;
  inset:0;
  background:radial-gradient(
    circle at 60% 40%,
    rgba(255,200,120,0.12),
    transparent 60%
  );
  mix-blend-mode:screen;
  z-index:1;
}
.homeHeroGrain{
  position:absolute;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  z-index:2;
  pointer-events:none;
}
/* ===== HERO VIDEO MOTION ===== */

.homeHeroMedia{
  position:absolute;
  inset:0;
  overflow:hidden;
  z-index:0;
}

.homeHeroVideo{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translate3d(0,0,0) scale(1.02);
  will-change:transform, filter;
  transition:filter .6s ease;
}

/* Drift horizontal ultra sutil */
.homeHeroVideo.is-drifting{
  animation:heroDrift 28s ease-in-out infinite alternate;
}

@keyframes heroDrift{
  0%{
    transform:translateX(-0.5%) scale(1.02);
  }
  100%{
    transform:translateX(0.5%) scale(1.02);
  }
}

/* Fade editorial ao scroll */
body.is-scrolled .homeHeroVideo{
  filter:brightness(0.78) saturate(0.95);
}

/* Ajuste do conteúdo para acompanhar */
body.is-scrolled .homeHeroContent{
  transform:translateY(-10px);
  opacity:0.92;
  transition:all .6s cubic-bezier(.22,1,.36,1);
}
/* ===== HEADER | HIDE ON TOP / SHOW ON SCROLL ===== */


/* ===== FOOTER | AMAN / FASANO STYLE ===== */
/* ===== FOOTER GLOBAL | COMPACT PREMIUM ===== */

.siteFooter{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(173,121,73,.08), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(255,232,205,.04), transparent 24%),
    linear-gradient(180deg, #4a352a 0%, #3a2a22 100%);
  color:#f3e7d7;
  padding:0 0 26px;
}

.footerTopLine{
  position:relative;
  width:100%;
  height:1px;
  background:rgba(243,231,215,.10);
  overflow:hidden;
}

.footerTopLine::after{
  content:"";
  position:absolute;
  top:0;
  left:-18%;
  width:18%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,240,220,.78), transparent);
  animation:footerLineDrift 8s ease-in-out infinite;
}

@keyframes footerLineDrift{
  0%{ left:-18%; opacity:0; }
  15%{ opacity:1; }
  55%{ left:46%; opacity:1; }
  100%{ left:110%; opacity:0; }
}

.footerInner{
  max-width:1240px;
  margin:0 auto;
  padding:46px 40px 28px;
}

.footerInner--compact{
  display:grid;
  grid-template-columns:1.3fr .9fr .9fr .9fr;
  gap:38px;
  align-items:start;
}

.footerBrand{
  max-width:360px;
}

.footerEyebrow{
  margin:0 0 10px;
  font-size:10px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(243,231,215,.56);
}

.footerLogo{
  margin:0 0 12px;
  font-family:var(--font-serif);
  font-size:clamp(24px, 2.5vw, 34px);
  line-height:1.08;
  letter-spacing:-.03em;
  color:#f8ecdc;
}

.footerTag{
  margin:0;
  font-size:14px;
  line-height:1.72;
  color:rgba(243,231,215,.70);
}

.footerTitle{
  display:block;
  margin:0 0 14px;
  font-size:10px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(243,231,215,.54);
}

.footerCol a,
.footerMeta{
  display:block;
  width:fit-content;
  margin:0 0 10px;
  font-size:14px;
  line-height:1.55;
}

.footerCol a{
  position:relative;
  color:#f3e7d7;
  text-decoration:none;
  transition:
    color .28s ease,
    transform .28s ease,
    opacity .28s ease;
}

.footerCol a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:100%;
  height:1px;
  background:rgba(243,231,215,.36);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .28s ease;
}

.footerCol a:hover{
  color:#fff6eb;
  transform:translateX(2px);
}

.footerCol a:hover::after{
  transform:scaleX(1);
}

.footerMeta{
  color:rgba(243,231,215,.58);
}

.footerSocial{
  justify-self:end;
  text-align:left;
}

.footerInstagramMinimal{
  display:inline-flex;
  flex-direction:column;
  gap:6px;
  min-width:190px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(243,231,215,.12);
  background:rgba(255,255,255,.04);
  box-shadow:0 10px 24px rgba(0,0,0,.10);
  transition:
    transform .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.footerInstagramMinimal:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.06);
  border-color:rgba(243,231,215,.20);
  box-shadow:0 16px 30px rgba(0,0,0,.14);
}

.footerInstagramHandle{
  font-family:var(--font-serif);
  font-size:22px;
  line-height:1.05;
  letter-spacing:-.02em;
  color:#f7ecde;
}

.footerInstagramAction{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(243,231,215,.62);
}

.footerBottom{
  max-width:1240px;
  margin:0 auto;
  padding:18px 40px 0;
  border-top:1px solid rgba(243,231,215,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color:rgba(243,231,215,.56);
  font-size:12px;
  letter-spacing:.04em;
}

@media (max-width: 1080px){
  .footerInner--compact{
    grid-template-columns:1fr 1fr;
    gap:30px 26px;
  }

  .footerSocial{
    justify-self:start;
  }
}

@media (max-width: 720px){
  .footerInner{
    padding:40px 20px 24px;
  }

  .footerInner--compact{
    grid-template-columns:1fr;
    gap:24px;
  }

  .footerBrand{
    max-width:100%;
  }

  .footerSocial{
    justify-self:start;
  }

  .footerInstagramMinimal{
    width:100%;
    max-width:320px;
  }

  .footerBottom{
    padding:18px 20px 0;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
}
}
/* =========================================================
   GLOBAL TYPE REFINEMENT — CASAS DA VILA
   Ajusta escala de títulos, largura de leitura e contraste
   sem desmontar o restante do site
========================================================= */

/* largura editorial padrão */
:root{
  --reading-max: 760px;
  --reading-max-narrow: 620px;
  --display-max: 11ch;
}

/* títulos gigantes do site */
.display{
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: var(--display-max);
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

/* títulos secundários */
.h1{
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.h2{
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* texto introdutório / lead */
.lead{
  max-width: var(--reading-max);
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.75;
}

/* corpo de leitura */
.body{
  max-width: var(--reading-max);
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.82;
}

/* texto pequeno acima dos blocos */
.eyebrow{
  letter-spacing: 0.16em;
}

/* limitar melhor linhas longas em cards/textos */
.aboutHeroText,
.aboutIntroText,
.aboutStatement,
.aboutDifferenceText,
.aboutClosingPanel .lead,
.aboutNarrativePanel .lead{
  max-width: var(--reading-max);
  margin-left: auto;
  margin-right: auto;
}

/* hero: texto mais estreito e mais legível */
.aboutHeroTitle{
  max-width: 9.5ch;
}

.aboutHeroText{
  max-width: var(--reading-max-narrow);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.72;
}

/* overlay um pouco mais escuro para contraste */
.aboutHeroOverlay{
  background:
    linear-gradient(180deg, rgba(16,14,12,0.58) 0%, rgba(16,14,12,0.24) 26%, rgba(16,14,12,0.18) 56%, rgba(16,14,12,0.62) 100%),
    linear-gradient(90deg, rgba(16,14,12,0.28) 0%, rgba(16,14,12,0.08) 26%, rgba(16,14,12,0.08) 74%, rgba(16,14,12,0.28) 100%);
}

/* títulos dentro dos cards */
.aboutValueCard h3{
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

/* respiro vertical mais elegante */
.section{
  scroll-margin-top: calc(var(--header-h) + 18px);
}

/* mobile */
@media (max-width: 760px){
  .display{
    font-size: clamp(2.7rem, 11vw, 4.2rem);
    line-height: 0.98;
    max-width: 9ch;
  }

  .h1{
    font-size: clamp(2.1rem, 8vw, 3.2rem);
  }

  .h2{
    font-size: clamp(1.65rem, 6vw, 2.3rem);
    line-height: 1.08;
  }

  .lead{
    font-size: 1.02rem;
    line-height: 1.72;
    max-width: 34ch;
  }

  .body{
    font-size: 0.98rem;
    line-height: 1.76;
    max-width: 34ch;
  }

  .aboutHeroText{
    max-width: 30ch;
    font-size: 1rem;
  }

  .aboutValueCard h3{
    font-size: clamp(1.55rem, 6vw, 2rem);
  }
}
/* =========================================================
   GLOBAL TYPE TUNE — SURGICAL
   Afeta apenas:
   - hero titles
   - h2
   - lead text
========================================================= */

/* 1) HERO TITLES */
.display{
  font-size: clamp(3.2rem, 6.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 10.2ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

/* 2) H2 */
.h2{
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* 3) LEAD TEXT */
.lead{
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.04rem, 1.28vw, 1.22rem);
  line-height: 1.72;
}

/* mobile refinement */
@media (max-width: 760px){
  .display{
    font-size: clamp(2.7rem, 10vw, 4rem);
    line-height: 0.98;
    max-width: 9ch;
  }

  .h2{
    font-size: clamp(1.6rem, 5.8vw, 2.15rem);
    line-height: 1.08;
  }

  .lead{
    max-width: 30ch;
    font-size: 1rem;
    line-height: 1.68;
  }
}
/* =========================================================
   HERO TYPE SYSTEM — CONTEXTUAL (VERSÃO FINAL)
   Afeta SOMENTE títulos e textos dentro de heroes
========================================================= */

/* HERO TITLES (geral) */
.hero .display,
.aboutHero .display,
.locationHero .display{
  font-size: clamp(3.4rem, 6.2vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  max-width: 9.5ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

/* HERO TEXT */
.hero .lead,
.aboutHeroText,
.locationHero .lead{
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.7;
  text-align: center;
}

/* HERO EYEBROW */
.hero .eyebrow,
.aboutHeroEyebrow,
.locationHero .eyebrow{
  letter-spacing: 0.18em;
  text-align: center;
}

/* HERO OVERLAY — MAIS CONTRASTE */
.aboutHeroOverlay,
.locationHeroOverlay,
.heroOverlay{
  background:
    linear-gradient(180deg, rgba(16,14,12,0.60) 0%, rgba(16,14,12,0.26) 30%, rgba(16,14,12,0.18) 60%, rgba(16,14,12,0.66) 100%),
    linear-gradient(90deg, rgba(16,14,12,0.30) 0%, rgba(16,14,12,0.10) 30%, rgba(16,14,12,0.10) 70%, rgba(16,14,12,0.30) 100%);
}


/* ================= MOBILE ================= */

@media (max-width: 760px){

  .hero .display,
  .aboutHero .display,
  .locationHero .display{
    font-size: clamp(2.6rem, 10vw, 3.8rem);
    line-height: 0.98;
    max-width: 8.8ch;
  }

  .hero .lead,
  .aboutHeroText,
  .locationHero .lead{
    max-width: 30ch;
    font-size: 1rem;
    line-height: 1.65;
  }
}
/* =========================================================
   HOME HERO — EDITORIAL REFINEMENT
   Afeta só a Home
========================================================= */

.hero{
  position: relative;
  isolation: isolate;
}

.hero .display{
  font-size: clamp(3.5rem, 6.3vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  max-width: 9.4ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

.hero .lead{
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.72;
  text-align: center;
  text-wrap: pretty;
}

.hero .eyebrow{
  letter-spacing: 0.18em;
  text-align: center;
}

.hero .ctaRow{
  justify-content: center;
}

.heroOverlay{
  background:
    linear-gradient(180deg, rgba(16,14,12,0.56) 0%, rgba(16,14,12,0.22) 28%, rgba(16,14,12,0.16) 56%, rgba(16,14,12,0.62) 100%),
    linear-gradient(90deg, rgba(16,14,12,0.28) 0%, rgba(16,14,12,0.08) 28%, rgba(16,14,12,0.08) 72%, rgba(16,14,12,0.28) 100%);
  transition: background 600ms ease, opacity 600ms ease;
}

@media (max-width: 760px){
  .hero .display{
    font-size: clamp(2.7rem, 10vw, 4.1rem);
    line-height: 0.98;
    max-width: 8.8ch;
  }

  .hero .lead{
    max-width: 30ch;
    font-size: 1rem;
    line-height: 1.66;
  }
}
/* =========================================================
   HERO DYNAMIC TIME OF DAY
========================================================= */

.hero[data-time="morning"] .heroOverlay{
  background:
    linear-gradient(180deg, rgba(24,20,16,0.34) 0%, rgba(24,20,16,0.10) 28%, rgba(24,20,16,0.10) 60%, rgba(24,20,16,0.42) 100%),
    linear-gradient(90deg, rgba(24,20,16,0.16) 0%, rgba(24,20,16,0.04) 28%, rgba(24,20,16,0.04) 72%, rgba(24,20,16,0.16) 100%);
}

.hero[data-time="afternoon"] .heroOverlay{
  background:
    linear-gradient(180deg, rgba(20,16,12,0.48) 0%, rgba(20,16,12,0.18) 28%, rgba(20,16,12,0.14) 58%, rgba(20,16,12,0.56) 100%),
    linear-gradient(90deg, rgba(20,16,12,0.22) 0%, rgba(20,16,12,0.06) 28%, rgba(20,16,12,0.06) 72%, rgba(20,16,12,0.22) 100%);
}

.hero[data-time="night"] .heroOverlay{
  background:
    linear-gradient(180deg, rgba(12,10,10,0.70) 0%, rgba(12,10,10,0.34) 30%, rgba(12,10,10,0.22) 58%, rgba(12,10,10,0.78) 100%),
    linear-gradient(90deg, rgba(12,10,10,0.36) 0%, rgba(12,10,10,0.12) 28%, rgba(12,10,10,0.12) 72%, rgba(12,10,10,0.36) 100%);
}

.hero[data-time="morning"] .display,
.hero[data-time="morning"] .lead,
.hero[data-time="morning"] .eyebrow{
  text-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.hero[data-time="afternoon"] .display,
.hero[data-time="afternoon"] .lead,
.hero[data-time="afternoon"] .eyebrow{
  text-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.hero[data-time="night"] .display,
.hero[data-time="night"] .lead,
.hero[data-time="night"] .eyebrow{
  text-shadow: 0 14px 32px rgba(0,0,0,0.28);
}
/* =========================================================
   HOME HERO PREMIUM — CASAS DA VILA
========================================================= */

.heroHomePremium{
  position:relative;
  min-height:100svh;
  padding-top:calc(var(--header-h) + 18px);
  overflow:hidden;
  isolation:isolate;
  display:flex;
  align-items:center;
}

.heroHomePremium .heroBg{
  position:absolute;
  inset:0;
  z-index:0;
}

.heroHomePremium .heroBg picture,
.heroHomePremium .heroBg img{
  display:block;
  width:100%;
  height:100%;
}

.heroHomePremium .heroBg img{
  object-fit:cover;
  object-position:center center;
  transform:scale(1.02);
  transition:
    opacity 700ms ease,
    transform 1200ms ease,
    filter 700ms ease;
}

.heroHomePremium .heroOverlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(14,12,10,0.54) 0%, rgba(14,12,10,0.18) 28%, rgba(14,12,10,0.14) 56%, rgba(14,12,10,0.62) 100%),
    linear-gradient(90deg, rgba(14,12,10,0.26) 0%, rgba(14,12,10,0.08) 30%, rgba(14,12,10,0.08) 70%, rgba(14,12,10,0.26) 100%);
  z-index:1;
  transition:background 700ms ease, opacity 700ms ease;
}

.heroHomePremium .heroInner{
  position:relative;
  z-index:2;
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  padding:84px 0 68px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.heroHomePremium .heroContent{
  max-width:920px;
  margin:0 auto;
}

.heroHomePremium .heroEyebrow{
  margin-bottom:18px;
  color:rgba(255,255,255,0.78);
  letter-spacing:.18em;
  text-align:center;
}

.heroHomePremium .heroTitle{
  max-width:8.8ch;
  margin:0 auto;
  color:#fff;
  font-size:clamp(3.5rem, 6.4vw, 6rem);
  line-height:0.94;
  letter-spacing:-0.032em;
  text-align:center;
  text-wrap:balance;
  text-shadow:0 14px 34px rgba(0,0,0,0.22);
}

.heroHomePremium .heroLead{
  max-width:34rem;
  margin:26px auto 0;
  color:rgba(255,255,255,0.92);
  font-size:clamp(1.05rem, 1.35vw, 1.22rem);
  line-height:1.74;
  text-align:center;
  text-wrap:pretty;
  text-shadow:0 10px 24px rgba(0,0,0,0.18);
}

.heroHomePremium .heroCtaRow{
  justify-content:center;
  gap:14px;
  margin-top:28px;
}

/* ========= MORNING ========= */

.heroHomePremium[data-time="morning"] .heroOverlay{
  background:
    linear-gradient(180deg, rgba(28,22,16,0.34) 0%, rgba(28,22,16,0.08) 28%, rgba(28,22,16,0.08) 58%, rgba(28,22,16,0.42) 100%),
    linear-gradient(90deg, rgba(28,22,16,0.15) 0%, rgba(28,22,16,0.03) 30%, rgba(28,22,16,0.03) 70%, rgba(28,22,16,0.15) 100%);
}

.heroHomePremium[data-time="morning"] .heroBg img{
  filter:saturate(1.04) brightness(1.03);
}

.heroHomePremium[data-time="morning"] .heroTitle,
.heroHomePremium[data-time="morning"] .heroLead,
.heroHomePremium[data-time="morning"] .heroEyebrow{
  text-shadow:0 8px 20px rgba(0,0,0,0.12);
}

/* ========= AFTERNOON ========= */

.heroHomePremium[data-time="afternoon"] .heroOverlay{
  background:
    linear-gradient(180deg, rgba(16,14,12,0.52) 0%, rgba(16,14,12,0.18) 28%, rgba(16,14,12,0.14) 56%, rgba(16,14,12,0.60) 100%),
    linear-gradient(90deg, rgba(16,14,12,0.24) 0%, rgba(16,14,12,0.07) 30%, rgba(16,14,12,0.07) 70%, rgba(16,14,12,0.24) 100%);
}

.heroHomePremium[data-time="afternoon"] .heroBg img{
  filter:saturate(1.02) brightness(0.98);
}

.heroHomePremium[data-time="afternoon"] .heroTitle,
.heroHomePremium[data-time="afternoon"] .heroLead,
.heroHomePremium[data-time="afternoon"] .heroEyebrow{
  text-shadow:0 12px 28px rgba(0,0,0,0.18);
}

/* ========= NIGHT ========= */

.heroHomePremium[data-time="night"] .heroOverlay{
  background:
    linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.34) 30%, rgba(10,10,10,0.24) 58%, rgba(10,10,10,0.80) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.36) 0%, rgba(10,10,10,0.12) 30%, rgba(10,10,10,0.12) 70%, rgba(10,10,10,0.36) 100%);
}

.heroHomePremium[data-time="night"] .heroBg img{
  filter:saturate(.96) brightness(0.84);
}

.heroHomePremium[data-time="night"] .heroTitle,
.heroHomePremium[data-time="night"] .heroLead,
.heroHomePremium[data-time="night"] .heroEyebrow{
  text-shadow:0 16px 38px rgba(0,0,0,0.30);
}

/* ========= MOBILE ========= */

@media (max-width: 760px){
  .heroHomePremium{
    min-height:94svh;
    padding-top:calc(var(--header-h) + 12px);
  }

  .heroHomePremium .heroInner{
    width:min(100%, calc(100% - 24px));
    padding:66px 0 48px;
  }

  .heroHomePremium .heroTitle{
    font-size:clamp(2.7rem, 10vw, 4rem);
    line-height:0.98;
    max-width:8.6ch;
  }

  .heroHomePremium .heroLead{
    max-width:30ch;
    font-size:1rem;
    line-height:1.66;
    margin-top:22px;
  }

  .heroHomePremium .heroCtaRow{
    margin-top:24px;
    gap:10px;
  }
}
/* =========================================================
   INTERNAL HERO HARMONY SYSTEM — V2 PRECISA
   Harmoniza as heros internas com a Home
   sem alterar a Home hero
========================================================= */


/* =========================================================
   0) BASE
========================================================= */

.aboutHero,
.locationHero,
.housesHero,
.experiencesHero,
.contactHero,
.bookingHero,
.pageHero{
  position: relative;
  isolation: isolate;
}

.aboutHeroGrid,
.locationHeroGrid,
.housesHeroGrid,
.experiencesHeroGrid,
.contactHeroGrid,
.bookingHeroGrid,
.pageHeroGrid{
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  align-items: center;
  gap: 28px;
}

/* overlay interno mais leve, próximo da Home */
.aboutHeroOverlay,
.locationHeroOverlay,
.housesHeroOverlay,
.experiencesHeroOverlay,
.contactHeroOverlay,
.bookingHeroOverlay,
.pageHeroOverlay{
  background:
    linear-gradient(180deg, rgba(18,16,14,0.34) 0%, rgba(18,16,14,0.10) 28%, rgba(18,16,14,0.10) 58%, rgba(18,16,14,0.42) 100%),
    linear-gradient(90deg, rgba(18,16,14,0.14) 0%, rgba(18,16,14,0.04) 28%, rgba(18,16,14,0.04) 72%, rgba(18,16,14,0.14) 100%);
}


/* =========================================================
   1) TIPO HERO INTERNO — PADRÃO GERAL
========================================================= */

.aboutHero .display,
.locationHero .display,
.housesHero .display,
.experiencesHero .display,
.contactHero .display,
.bookingHero .display,
.pageHero .display,
.aboutHeroTitle,
.locationHeroTitle,
.housesHeroTitle,
.experiencesHeroTitle,
.contactHeroTitle,
.bookingHeroTitle,
.pageHeroTitle{
  font-size: clamp(3rem, 5.1vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 8.6ch;
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.aboutHeroText,
.locationHeroText,
.housesHeroText,
.experiencesHeroText,
.contactHeroText,
.bookingHeroText,
.pageHeroText,
.aboutHero .lead,
.locationHero .lead,
.housesHero .lead,
.experiencesHero .lead,
.contactHero .lead,
.bookingHero .lead,
.pageHero .lead{
  max-width: 33rem;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.7;
  text-wrap: pretty;
  text-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.aboutHeroEyebrow,
.locationHeroEyebrow,
.housesHeroEyebrow,
.experiencesHeroEyebrow,
.contactHeroEyebrow,
.bookingHeroEyebrow,
.pageHeroEyebrow,
.aboutHero .eyebrow,
.locationHero .eyebrow,
.housesHero .eyebrow,
.experiencesHero .eyebrow,
.contactHero .eyebrow,
.bookingHero .eyebrow,
.pageHero .eyebrow{
  letter-spacing: 0.16em;
  opacity: 0.92;
}


/* =========================================================
   2) HERO COM CARD LATERAL
   Ex.: About
========================================================= */

.aboutHeroGrid.hasHeroCard,
.locationHeroGrid.hasHeroCard,
.housesHeroGrid.hasHeroCard,
.experiencesHeroGrid.hasHeroCard,
.contactHeroGrid.hasHeroCard,
.bookingHeroGrid.hasHeroCard,
.pageHeroGrid.hasHeroCard{
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.aboutHeroGrid.hasHeroCard .aboutHeroContent,
.locationHeroGrid.hasHeroCard .locationHeroContent,
.housesHeroGrid.hasHeroCard .housesHeroContent,
.experiencesHeroGrid.hasHeroCard .experiencesHeroContent,
.contactHeroGrid.hasHeroCard .contactHeroContent,
.bookingHeroGrid.hasHeroCard .bookingHeroContent,
.pageHeroGrid.hasHeroCard .pageHeroContent{
  max-width: 760px;
}

.aboutHeroCard,
.locationHeroCard,
.housesHeroCard,
.experiencesHeroCard,
.contactHeroCard,
.bookingHeroCard,
.pageHeroCard{
  max-width: 320px;
  margin-left: auto;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,252,248,0.72);
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow: 0 10px 24px rgba(0,0,0,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aboutHeroCard .eyebrow,
.locationHeroCard .eyebrow,
.housesHeroCard .eyebrow,
.experiencesHeroCard .eyebrow,
.contactHeroCard .eyebrow,
.bookingHeroCard .eyebrow,
.pageHeroCard .eyebrow{
  margin-bottom: 8px;
}

.aboutHeroCard p,
.locationHeroCard p,
.housesHeroCard p,
.experiencesHeroCard p,
.contactHeroCard p,
.bookingHeroCard p,
.pageHeroCard p{
  font-size: 0.98rem;
  line-height: 1.68;
}


/* =========================================================
   3) HERO SEM CARD LATERAL
   Ex.: páginas mais limpas
========================================================= */

.aboutHeroGrid.noHeroCard,
.locationHeroGrid.noHeroCard,
.housesHeroGrid.noHeroCard,
.experiencesHeroGrid.noHeroCard,
.contactHeroGrid.noHeroCard,
.bookingHeroGrid.noHeroCard,
.pageHeroGrid.noHeroCard{
  grid-template-columns: 1fr;
  justify-items: start;
}

.aboutHeroGrid.noHeroCard .aboutHeroContent,
.locationHeroGrid.noHeroCard .locationHeroContent,
.housesHeroGrid.noHeroCard .housesHeroContent,
.experiencesHeroGrid.noHeroCard .experiencesHeroContent,
.contactHeroGrid.noHeroCard .contactHeroContent,
.bookingHeroGrid.noHeroCard .bookingHeroContent,
.pageHeroGrid.noHeroCard .pageHeroContent{
  max-width: 760px;
}


/* =========================================================
   4) HERO CENTRALIZADO
   Ex.: editorial, mais próximo da Home
========================================================= */

.aboutHeroGrid.heroCentered,
.locationHeroGrid.heroCentered,
.housesHeroGrid.heroCentered,
.experiencesHeroGrid.heroCentered,
.contactHeroGrid.heroCentered,
.bookingHeroGrid.heroCentered,
.pageHeroGrid.heroCentered{
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.aboutHeroGrid.heroCentered .aboutHeroContent,
.locationHeroGrid.heroCentered .locationHeroContent,
.housesHeroGrid.heroCentered .housesHeroContent,
.experiencesHeroGrid.heroCentered .experiencesHeroContent,
.contactHeroGrid.heroCentered .contactHeroContent,
.bookingHeroGrid.heroCentered .bookingHeroContent,
.pageHeroGrid.heroCentered .pageHeroContent{
  max-width: 820px;
  margin: 0 auto;
}

.aboutHeroGrid.heroCentered .display,
.locationHeroGrid.heroCentered .display,
.housesHeroGrid.heroCentered .display,
.experiencesHeroGrid.heroCentered .display,
.contactHeroGrid.heroCentered .display,
.bookingHeroGrid.heroCentered .display,
.pageHeroGrid.heroCentered .display,
.aboutHeroGrid.heroCentered .aboutHeroTitle,
.locationHeroGrid.heroCentered .locationHeroTitle,
.housesHeroGrid.heroCentered .housesHeroTitle,
.experiencesHeroGrid.heroCentered .experiencesHeroTitle,
.contactHeroGrid.heroCentered .contactHeroTitle,
.bookingHeroGrid.heroCentered .bookingHeroTitle,
.pageHeroGrid.heroCentered .pageHeroTitle{
  margin-left: auto;
  margin-right: auto;
}

.aboutHeroGrid.heroCentered .aboutHeroText,
.locationHeroGrid.heroCentered .locationHeroText,
.housesHeroGrid.heroCentered .housesHeroText,
.experiencesHeroGrid.heroCentered .experiencesHeroText,
.contactHeroGrid.heroCentered .contactHeroText,
.bookingHeroGrid.heroCentered .bookingHeroText,
.pageHeroGrid.heroCentered .pageHeroText,
.aboutHeroGrid.heroCentered .lead,
.locationHeroGrid.heroCentered .lead,
.housesHeroGrid.heroCentered .lead,
.experiencesHeroGrid.heroCentered .lead,
.contactHeroGrid.heroCentered .lead,
.bookingHeroGrid.heroCentered .lead,
.pageHeroGrid.heroCentered .lead{
  margin-left: auto;
  margin-right: auto;
}

.aboutHeroGrid.heroCentered .aboutHeroCard,
.locationHeroGrid.heroCentered .locationHeroCard,
.housesHeroGrid.heroCentered .housesHeroCard,
.experiencesHeroGrid.heroCentered .experiencesHeroCard,
.contactHeroGrid.heroCentered .contactHeroCard,
.bookingHeroGrid.heroCentered .bookingHeroCard,
.pageHeroGrid.heroCentered .pageHeroCard{
  margin: 22px auto 0;
}


/* =========================================================
   5) HERO MAIS SUAVE AINDA
   quando quiser herança mais clara da Home
========================================================= */

.heroSoft .display,
.heroSoft .aboutHeroTitle,
.heroSoft .locationHeroTitle,
.heroSoft .housesHeroTitle,
.heroSoft .experiencesHeroTitle,
.heroSoft .contactHeroTitle,
.heroSoft .bookingHeroTitle,
.heroSoft .pageHeroTitle{
  font-size: clamp(2.85rem, 4.8vw, 4.4rem);
  line-height: 1.0;
  max-width: 9.2ch;
  text-shadow: 0 6px 14px rgba(0,0,0,0.10);
}

.heroSoft .aboutHeroText,
.heroSoft .locationHeroText,
.heroSoft .housesHeroText,
.heroSoft .experiencesHeroText,
.heroSoft .contactHeroText,
.heroSoft .bookingHeroText,
.heroSoft .pageHeroText,
.heroSoft .lead{
  max-width: 31rem;
  font-size: clamp(0.98rem, 1.05vw, 1.04rem);
  line-height: 1.68;
}


/* =========================================================
   6) MOBILE
========================================================= */

@media (max-width: 980px){
  .aboutHeroGrid.hasHeroCard,
  .locationHeroGrid.hasHeroCard,
  .housesHeroGrid.hasHeroCard,
  .experiencesHeroGrid.hasHeroCard,
  .contactHeroGrid.hasHeroCard,
  .bookingHeroGrid.hasHeroCard,
  .pageHeroGrid.hasHeroCard{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .aboutHeroCard,
  .locationHeroCard,
  .housesHeroCard,
  .experiencesHeroCard,
  .contactHeroCard,
  .bookingHeroCard,
  .pageHeroCard{
    max-width: 460px;
    margin-left: 0;
  }

  .aboutHeroGrid.heroCentered .aboutHeroCard,
  .locationHeroGrid.heroCentered .locationHeroCard,
  .housesHeroGrid.heroCentered .housesHeroCard,
  .experiencesHeroGrid.heroCentered .experiencesHeroCard,
  .contactHeroGrid.heroCentered .contactHeroCard,
  .bookingHeroGrid.heroCentered .bookingHeroCard,
  .pageHeroGrid.heroCentered .pageHeroCard{
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px){
  .aboutHero .display,
  .locationHero .display,
  .housesHero .display,
  .experiencesHero .display,
  .contactHero .display,
  .bookingHero .display,
  .pageHero .display,
  .aboutHeroTitle,
  .locationHeroTitle,
  .housesHeroTitle,
  .experiencesHeroTitle,
  .contactHeroTitle,
  .bookingHeroTitle,
  .pageHeroTitle{
    font-size: clamp(2.35rem, 8.6vw, 3.5rem);
    line-height: 1.02;
    max-width: 8.6ch;
  }

  .aboutHeroText,
  .locationHeroText,
  .housesHeroText,
  .experiencesHeroText,
  .contactHeroText,
  .bookingHeroText,
  .pageHeroText,
  .aboutHero .lead,
  .locationHero .lead,
  .housesHero .lead,
  .experiencesHero .lead,
  .contactHero .lead,
  .bookingHero .lead,
  .pageHero .lead{
    max-width: 29ch;
    font-size: 0.97rem;
    line-height: 1.66;
  }

  .aboutHeroCard,
  .locationHeroCard,
  .housesHeroCard,
  .experiencesHeroCard,
  .contactHeroCard,
  .bookingHeroCard,
  .pageHeroCard{
    padding: 18px;
    border-radius: 20px;
  }

  .heroSoft .display,
  .heroSoft .aboutHeroTitle,
  .heroSoft .locationHeroTitle,
  .heroSoft .housesHeroTitle,
  .heroSoft .experiencesHeroTitle,
  .heroSoft .contactHeroTitle,
  .heroSoft .bookingHeroTitle,
  .heroSoft .pageHeroTitle{
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
}
/* =========================================================
   INTERNAL HERO TITLES — MATCH HOME TONE
   Deixa as heros internas menos gritantes e mais sutis
========================================================= */

.aboutHero .display,
.locationHero .display,
.housesHero .display,
.experiencesHero .display,
.contactHero .display,
.bookingHero .display,
.pageHero .display,
.aboutHeroTitle,
.locationHeroTitle,
.housesHeroTitle,
.experiencesHeroTitle,
.contactHeroTitle,
.bookingHeroTitle,
.pageHeroTitle{
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  font-size: clamp(2.7rem, 4.2vw, 4.15rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.045em !important;
  max-width: 7.4ch !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-wrap: balance;
  text-shadow: 0 8px 18px rgba(0,0,0,0.10) !important;
}

/* texto abaixo do título */
.aboutHeroText,
.locationHeroText,
.housesHeroText,
.experiencesHeroText,
.contactHeroText,
.bookingHeroText,
.pageHeroText,
.aboutHero .lead,
.locationHero .lead,
.housesHero .lead,
.experiencesHero .lead,
.contactHero .lead,
.bookingHero .lead,
.pageHero .lead{
  max-width: 31rem !important;
  font-size: clamp(0.98rem, 1.02vw, 1.06rem) !important;
  line-height: 1.68 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

/* eyebrow mais delicado */
.aboutHeroEyebrow,
.locationHeroEyebrow,
.housesHeroEyebrow,
.experiencesHeroEyebrow,
.contactHeroEyebrow,
.bookingHeroEyebrow,
.pageHeroEyebrow,
.aboutHero .eyebrow,
.locationHero .eyebrow,
.housesHero .eyebrow,
.experiencesHero .eyebrow,
.contactHero .eyebrow,
.bookingHero .eyebrow,
.pageHero .eyebrow{
  letter-spacing: 0.14em !important;
}

/* overlay mais suave, menos dramático */
.aboutHeroOverlay,
.locationHeroOverlay,
.housesHeroOverlay,
.experiencesHeroOverlay,
.contactHeroOverlay,
.bookingHeroOverlay,
.pageHeroOverlay{
  background:
    linear-gradient(180deg, rgba(18,16,14,0.28) 0%, rgba(18,16,14,0.08) 28%, rgba(18,16,14,0.08) 58%, rgba(18,16,14,0.34) 100%) !important,
    linear-gradient(90deg, rgba(18,16,14,0.10) 0%, rgba(18,16,14,0.02) 28%, rgba(18,16,14,0.02) 72%, rgba(18,16,14,0.10) 100%) !important;
}

@media (max-width: 760px){
  .aboutHero .display,
  .locationHero .display,
  .housesHero .display,
  .experiencesHero .display,
  .contactHero .display,
  .bookingHero .display,
  .pageHero .display,
  .aboutHeroTitle,
  .locationHeroTitle,
  .housesHeroTitle,
  .experiencesHeroTitle,
  .contactHeroTitle,
  .bookingHeroTitle,
  .pageHeroTitle{
    font-size: clamp(2.2rem, 8vw, 3.15rem) !important;
    line-height: 1.0 !important;
    max-width: 8.2ch !important;
  }

  .aboutHeroText,
  .locationHeroText,
  .housesHeroText,
  .experiencesHeroText,
  .contactHeroText,
  .bookingHeroText,
  .pageHeroText,
  .aboutHero .lead,
  .locationHero .lead,
  .housesHero .lead,
  .experiencesHero .lead,
  .contactHero .lead,
  .bookingHero .lead,
  .pageHero .lead{
    max-width: 28ch !important;
    font-size: 0.96rem !important;
    line-height: 1.64 !important;
  }
}
/* =========================================================
   ABOUT HERO — HOME TONE
========================================================= */

.aboutHeroGrid--homeTone{
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: start;
  text-align: left;
  min-height: calc(76svh - var(--header-h) - 18px);
  padding-bottom: 34px;
}

.aboutHeroGrid--homeTone .aboutHeroContent{
  max-width: 760px;
}

.aboutHeroTitle--homeTone{
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(3.1rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 9.8ch;
  margin: 0;
  color: #fff;
  text-align: left;
  text-wrap: balance;
  text-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.aboutHeroGrid--homeTone .aboutHeroText{
  max-width: 34rem;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.72;
  color: rgba(255,255,255,0.92);
  text-align: left;
  text-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.aboutHeroGrid--homeTone .aboutHeroEyebrow{
  text-align: left;
  letter-spacing: 0.16em;
}

.aboutHeroGrid--homeTone .aboutHeroCard{
  display: none;
}

.aboutHeroOverlay{
  background:
    linear-gradient(180deg, rgba(18,16,14,0.28) 0%, rgba(18,16,14,0.10) 28%, rgba(18,16,14,0.10) 58%, rgba(18,16,14,0.34) 100%),
    linear-gradient(90deg, rgba(18,16,14,0.20) 0%, rgba(18,16,14,0.05) 34%, rgba(18,16,14,0.04) 70%, rgba(18,16,14,0.10) 100%);
}

@media (max-width: 760px){
  .aboutHeroGrid--homeTone{
    width: min(100%, calc(100% - 24px));
    min-height: calc(74svh - var(--header-h) - 18px);
    padding-bottom: 26px;
  }

  .aboutHeroTitle--homeTone{
    font-size: clamp(2.5rem, 8vw, 3.7rem);
    max-width: 10ch;
    line-height: 1.0;
  }

  .aboutHeroGrid--homeTone .aboutHeroText{
    max-width: 29ch;
    font-size: 0.98rem;
    line-height: 1.66;
  }
}
/* =========================================================
   GLOBAL HERO HARMONY — ALL INTERNAL PAGES EXCEPT HOME
   Deixa as heros internas com o mesmo tom elegante da Home
========================================================= */

/* páginas internas */
.aboutHero,
.locationHero,
.housesHero,
.experiencesHero,
.contactHero,
.bookingHero,
.pageHero,
.hero:not(.homeHero):not(.heroHomePremium){
  position:relative;
  isolation:isolate;
}

/* grids / containers internos */
.aboutHeroGrid,
.locationHeroGrid,
.housesHeroGrid,
.experiencesHeroGrid,
.contactHeroGrid,
.bookingHeroGrid,
.pageHeroGrid{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
  align-items:end;
  gap:32px;
}

/* =========================
   TITLES
========================= */

.aboutHero .display,
.locationHero .display,
.housesHero .display,
.experiencesHero .display,
.contactHero .display,
.bookingHero .display,
.pageHero .display,
.hero:not(.homeHero):not(.heroHomePremium) .display,
.aboutHeroTitle,
.locationHeroTitle,
.housesHeroTitle,
.experiencesHeroTitle,
.contactHeroTitle,
.bookingHeroTitle,
.pageHeroTitle{
  margin:0;
  font-family:var(--font-sans) !important;
  font-size:clamp(44px, 6vw, 72px) !important;
  line-height:1.05 !important;
  font-weight:300 !important;
  letter-spacing:-0.02em !important;
  color:#fff !important;
  max-width:9.2ch !important;
  text-wrap:balance;
  text-shadow:0 6px 18px rgba(0,0,0,0.22) !important;
}

/* =========================
   EYEBROWS
========================= */

.aboutHero .eyebrow,
.locationHero .eyebrow,
.housesHero .eyebrow,
.experiencesHero .eyebrow,
.contactHero .eyebrow,
.bookingHero .eyebrow,
.pageHero .eyebrow,
.hero:not(.homeHero):not(.heroHomePremium) .eyebrow,
.aboutHeroEyebrow,
.locationHeroEyebrow,
.housesHeroEyebrow,
.experiencesHeroEyebrow,
.contactHeroEyebrow,
.bookingHeroEyebrow,
.pageHeroEyebrow{
  display:block;
  margin:0 0 14px;
  font-size:11px !important;
  line-height:1;
  letter-spacing:0.18em !important;
  text-transform:uppercase;
  color:rgba(255,255,255,.72) !important;
  opacity:1 !important;
}

/* =========================
   TEXTS
========================= */

.aboutHeroText,
.locationHeroText,
.housesHeroText,
.experiencesHeroText,
.contactHeroText,
.bookingHeroText,
.pageHeroText,
.aboutHero .lead,
.locationHero .lead,
.housesHero .lead,
.experiencesHero .lead,
.contactHero .lead,
.bookingHero .lead,
.pageHero .lead,
.hero:not(.homeHero):not(.heroHomePremium) .lead{
  margin:18px 0 0;
  max-width:520px !important;
  font-size:16px !important;
  line-height:1.7 !important;
  color:rgba(255,255,255,.85) !important;
  text-shadow:none !important;
  text-wrap:pretty;
}

/* =========================
   OVERLAYS — mais suaves
========================= */

.aboutHeroOverlay,
.locationHeroOverlay,
.housesHeroOverlay,
.experiencesHeroOverlay,
.contactHeroOverlay,
.bookingHeroOverlay,
.pageHeroOverlay,
.heroOverlay{
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.25) 40%,
      rgba(0,0,0,0.05) 70%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.10) 32%,
      rgba(0,0,0,0.28) 100%
    ) !important;
}

/* =========================
   CENTRALIZED HERO VARIATION
   caso alguma página use hero centralizada
========================= */

.aboutHeroGrid.heroCentered,
.locationHeroGrid.heroCentered,
.housesHeroGrid.heroCentered,
.experiencesHeroGrid.heroCentered,
.contactHeroGrid.heroCentered,
.bookingHeroGrid.heroCentered,
.pageHeroGrid.heroCentered{
  justify-items:center;
  text-align:center;
}

.aboutHeroGrid.heroCentered .aboutHeroTitle,
.locationHeroGrid.heroCentered .locationHeroTitle,
.housesHeroGrid.heroCentered .housesHeroTitle,
.experiencesHeroGrid.heroCentered .experiencesHeroTitle,
.contactHeroGrid.heroCentered .contactHeroTitle,
.bookingHeroGrid.heroCentered .bookingHeroTitle,
.pageHeroGrid.heroCentered .pageHeroTitle,
.aboutHeroGrid.heroCentered .display,
.locationHeroGrid.heroCentered .display,
.housesHeroGrid.heroCentered .display,
.experiencesHeroGrid.heroCentered .display,
.contactHeroGrid.heroCentered .display,
.bookingHeroGrid.heroCentered .display,
.pageHeroGrid.heroCentered .display{
  margin-left:auto !important;
  margin-right:auto !important;
}

.aboutHeroGrid.heroCentered .aboutHeroText,
.locationHeroGrid.heroCentered .locationHeroText,
.housesHeroGrid.heroCentered .housesHeroText,
.experiencesHeroGrid.heroCentered .experiencesHeroText,
.contactHeroGrid.heroCentered .contactHeroText,
.bookingHeroGrid.heroCentered .bookingHeroText,
.pageHeroGrid.heroCentered .pageHeroText,
.aboutHeroGrid.heroCentered .lead,
.locationHeroGrid.heroCentered .lead,
.housesHeroGrid.heroCentered .lead,
.experiencesHeroGrid.heroCentered .lead,
.contactHeroGrid.heroCentered .lead,
.bookingHeroGrid.heroCentered .lead,
.pageHeroGrid.heroCentered .lead{
  margin-left:auto;
  margin-right:auto;
}

/* =========================
   HERO COM CARD LATERAL
========================= */

.aboutHeroCard,
.locationHeroCard,
.housesHeroCard,
.experiencesHeroCard,
.contactHeroCard,
.bookingHeroCard,
.pageHeroCard{
  max-width:320px;
  margin-left:auto;
  padding:20px;
  border-radius:24px;
  background:rgba(255,252,248,0.72);
  border:1px solid rgba(255,255,255,0.46);
  box-shadow:0 10px 24px rgba(0,0,0,0.07);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.aboutHeroCard .eyebrow,
.locationHeroCard .eyebrow,
.housesHeroCard .eyebrow,
.experiencesHeroCard .eyebrow,
.contactHeroCard .eyebrow,
.bookingHeroCard .eyebrow,
.pageHeroCard .eyebrow{
  color:rgba(58,47,39,.62) !important;
  margin-bottom:8px;
}

.aboutHeroCard p,
.locationHeroCard p,
.housesHeroCard p,
.experiencesHeroCard p,
.contactHeroCard p,
.bookingHeroCard p,
.pageHeroCard p{
  color:var(--text-soft);
  font-size:0.98rem;
  line-height:1.68;
}

/* =========================
   ABOUT — neutraliza o bloco antigo
========================= */

.aboutHeroGrid--homeTone{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr;
  align-items:end;
  justify-items:start;
  text-align:left;
  min-height:calc(76svh - var(--header-h) - 18px);
  padding-bottom:34px;
}

.aboutHeroGrid--homeTone .aboutHeroContent{
  max-width:680px;
}

.aboutHeroGrid--homeTone .aboutHeroEyebrow{
  text-align:left;
}

.aboutHeroTitle--homeTone{
  margin:0;
  font-family:var(--font-sans) !important;
  font-size:clamp(44px, 6vw, 72px) !important;
  line-height:1.05 !important;
  font-weight:300 !important;
  letter-spacing:-0.02em !important;
  color:#fff !important;
  max-width:9.2ch !important;
  text-align:left;
  text-wrap:balance;
  text-shadow:0 6px 18px rgba(0,0,0,0.22) !important;
}

.aboutHeroGrid--homeTone .aboutHeroText{
  margin:18px 0 0;
  max-width:520px !important;
  font-size:16px !important;
  line-height:1.7 !important;
  color:rgba(255,255,255,.85) !important;
  text-align:left;
  text-shadow:none !important;
}

.aboutHeroGrid--homeTone .aboutHeroCard{
  display:none;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 980px){
  .aboutHeroGrid,
  .locationHeroGrid,
  .housesHeroGrid,
  .experiencesHeroGrid,
  .contactHeroGrid,
  .bookingHeroGrid,
  .pageHeroGrid{
    width:min(100%, calc(100% - 28px));
    gap:24px;
  }

  .aboutHeroCard,
  .locationHeroCard,
  .housesHeroCard,
  .experiencesHeroCard,
  .contactHeroCard,
  .bookingHeroCard,
  .pageHeroCard{
    max-width:460px;
    margin-left:0;
  }
}

@media (max-width: 760px){
  .aboutHero .display,
  .locationHero .display,
  .housesHero .display,
  .experiencesHero .display,
  .contactHero .display,
  .bookingHero .display,
  .pageHero .display,
  .hero:not(.homeHero):not(.heroHomePremium) .display,
  .aboutHeroTitle,
  .locationHeroTitle,
  .housesHeroTitle,
  .experiencesHeroTitle,
  .contactHeroTitle,
  .bookingHeroTitle,
  .pageHeroTitle,
  .aboutHeroTitle--homeTone{
    font-size:clamp(2.5rem, 10vw, 4rem) !important;
    line-height:1.02 !important;
    max-width:10ch !important;
  }

  .aboutHeroText,
  .locationHeroText,
  .housesHeroText,
  .experiencesHeroText,
  .contactHeroText,
  .bookingHeroText,
  .pageHeroText,
  .aboutHero .lead,
  .locationHero .lead,
  .housesHero .lead,
  .experiencesHero .lead,
  .contactHero .lead,
  .bookingHero .lead,
  .pageHero .lead,
  .hero:not(.homeHero):not(.heroHomePremium) .lead,
  .aboutHeroGrid--homeTone .aboutHeroText{
    max-width:30ch !important;
    font-size:1rem !important;
    line-height:1.68 !important;
  }

  .aboutHeroGrid--homeTone{
    width:min(100%, calc(100% - 24px));
    min-height:calc(74svh - var(--header-h) - 18px);
    padding-bottom:26px;
  }

  .aboutHeroGrid--homeTone .aboutHeroContent{
    max-width:100%;
  }
}
/* =========================================================
   CASAS DA VILA — UNIFIED VISUAL SYSTEM
   Hero + Sections + Cards
   Editorial, quiet luxury, Aman-like consistency
========================================================= */

:root{
  --cv-max: 1240px;
  --cv-reading: 760px;
  --cv-reading-narrow: 620px;

  --cv-hero-title: clamp(44px, 6vw, 72px);
  --cv-h1: clamp(36px, 4.8vw, 58px);
  --cv-h2: clamp(30px, 3.4vw, 46px);
  --cv-h3: clamp(22px, 2.2vw, 30px);

  --cv-lead: clamp(17px, 1.45vw, 21px);
  --cv-body: 16px;
  --cv-small: 11px;

  --cv-lh-title: 1.04;
  --cv-lh-lead: 1.72;
  --cv-lh-body: 1.78;

  --cv-letter-tight: -0.028em;
  --cv-letter-hero: -0.022em;
  --cv-letter-eyebrow: 0.16em;

  --cv-panel: rgba(255,252,248,0.72);
  --cv-panel-strong: rgba(255,252,248,0.82);
  --cv-panel-line: rgba(92,71,54,0.08);

  --cv-shadow-soft: 0 10px 30px rgba(64,44,28,0.06);
  --cv-shadow-card: 0 16px 40px rgba(64,44,28,0.08);
  --cv-shadow-panel: 0 20px 50px rgba(64,44,28,0.10);

  --cv-radius-card: 28px;
  --cv-radius-panel: 30px;
  --cv-radius-soft: 24px;

  --cv-hero-overlay-x: linear-gradient(
    to right,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.24) 42%,
    rgba(0,0,0,0.06) 72%
  );

  --cv-hero-overlay-y: linear-gradient(
    to bottom,
    rgba(0,0,0,0.16) 0%,
    rgba(0,0,0,0.10) 34%,
    rgba(0,0,0,0.30) 100%
  );
}

/* =========================================================
   1) GLOBAL READING AXIS
========================================================= */

.wrap{
  width:min(var(--cv-max), calc(100% - 32px));
}

.editorialBlock,
.sectionHead,
.sectionHeadNarrow{
  max-width:var(--cv-reading);
  margin-left:0;
  margin-right:auto;
  text-align:left;
  justify-items:start !important;
}

.sectionHead > *,
.sectionHeadNarrow > *,
.editorialBlock > *{
  margin-left:0 !important;
  margin-right:auto !important;
  text-align:left !important;
}

.sectionHead{
  gap:14px;
  margin-bottom:34px;
}

.sectionHeadNarrow{
  gap:14px;
  margin-bottom:30px;
}

/* =========================================================
   2) TYPOGRAPHY SYSTEM
========================================================= */

.display,
.h1,
.h2,
.h3,
.cardTitle,
.softPanel .h2,
.softPanel .h3,
.bookingPanel .h2,
.bookingPanel .h3{
  font-family:var(--font-serif);
  color:var(--text);
  text-wrap:balance;
}

.display{
  margin:0;
  font-size:var(--cv-h1);
  line-height:0.98;
  letter-spacing:-0.035em;
}

.h1{
  margin:0;
  font-size:var(--cv-h1);
  line-height:1.00;
  letter-spacing:var(--cv-letter-tight);
}

.h2{
  margin:0;
  font-size:var(--cv-h2);
  line-height:1.06;
  letter-spacing:-0.022em;
}

.h3,
.cardTitle{
  margin:0;
  font-size:var(--cv-h3);
  line-height:1.12;
  letter-spacing:-0.018em;
}

.eyebrow{
  display:inline-block;
  margin:0 0 12px;
  font-size:var(--cv-small);
  line-height:1;
  letter-spacing:var(--cv-letter-eyebrow);
  text-transform:uppercase;
  color:var(--text-soft);
  opacity:.76;
}

.lead{
  margin:0;
  max-width:var(--cv-reading-narrow);
  font-size:var(--cv-lead);
  line-height:var(--cv-lh-lead);
  color:var(--text-soft);
  text-wrap:pretty;
}

.body,
.cardText,
.softPanel p,
.bookingPanel p{
  margin:0;
  font-size:var(--cv-body);
  line-height:var(--cv-lh-body);
  color:var(--text-soft);
  text-wrap:pretty;
}

/* =========================================================
   3) HERO SYSTEM — INTERNAL PAGES
   Não mexe na Home hero
========================================================= */

.aboutHero,
.locationHero,
.housesHero,
.experiencesHero,
.contactHero,
.bookingHero,
.pageHero,
.hero:not(.homeHero):not(.heroHomePremium){
  position:relative;
  isolation:isolate;
  overflow:hidden;
}

.aboutHeroOverlay,
.locationHeroOverlay,
.housesHeroOverlay,
.experiencesHeroOverlay,
.contactHeroOverlay,
.bookingHeroOverlay,
.pageHeroOverlay,
.hero:not(.homeHero):not(.heroHomePremium) .heroOverlay{
  background:
    var(--cv-hero-overlay-x),
    var(--cv-hero-overlay-y) !important;
}

.aboutHeroGrid,
.locationHeroGrid,
.housesHeroGrid,
.experiencesHeroGrid,
.contactHeroGrid,
.bookingHeroGrid,
.pageHeroGrid{
  width:min(var(--cv-max), calc(100% - 40px));
  margin:0 auto;
  gap:32px;
  align-items:end;
}

/* hero content internal */
.aboutHeroContent,
.locationHeroContent,
.housesHeroContent,
.experiencesHeroContent,
.contactHeroContent,
.bookingHeroContent,
.pageHeroContent{
  max-width:720px;
}

/* titles */
.aboutHero .display,
.locationHero .display,
.housesHero .display,
.experiencesHero .display,
.contactHero .display,
.bookingHero .display,
.pageHero .display,
.hero:not(.homeHero):not(.heroHomePremium) .display,
.aboutHeroTitle,
.locationHeroTitle,
.housesHeroTitle,
.experiencesHeroTitle,
.contactHeroTitle,
.bookingHeroTitle,
.pageHeroTitle,
.aboutHeroTitle--homeTone{
  margin:0;
  font-family:var(--font-sans) !important;
  font-size:var(--cv-hero-title) !important;
  line-height:var(--cv-lh-title) !important;
  font-weight:300 !important;
  letter-spacing:var(--cv-letter-hero) !important;
  color:#fff !important;
  max-width:9.2ch !important;
  text-wrap:balance;
  text-shadow:0 6px 18px rgba(0,0,0,0.20) !important;
}

/* eyebrow */
.aboutHero .eyebrow,
.locationHero .eyebrow,
.housesHero .eyebrow,
.experiencesHero .eyebrow,
.contactHero .eyebrow,
.bookingHero .eyebrow,
.pageHero .eyebrow,
.hero:not(.homeHero):not(.heroHomePremium) .eyebrow,
.aboutHeroEyebrow,
.locationHeroEyebrow,
.housesHeroEyebrow,
.experiencesHeroEyebrow,
.contactHeroEyebrow,
.bookingHeroEyebrow,
.pageHeroEyebrow{
  display:block;
  margin:0 0 14px;
  font-size:11px !important;
  line-height:1;
  letter-spacing:0.18em !important;
  text-transform:uppercase;
  color:rgba(255,255,255,.72) !important;
  opacity:1 !important;
  text-align:left !important;
}

/* lead */
.aboutHeroText,
.locationHeroText,
.housesHeroText,
.experiencesHeroText,
.contactHeroText,
.bookingHeroText,
.pageHeroText,
.aboutHero .lead,
.locationHero .lead,
.housesHero .lead,
.experiencesHero .lead,
.contactHero .lead,
.bookingHero .lead,
.pageHero .lead,
.hero:not(.homeHero):not(.heroHomePremium) .lead,
.aboutHeroGrid--homeTone .aboutHeroText{
  margin:18px 0 0;
  max-width:520px !important;
  font-size:16px !important;
  line-height:1.70 !important;
  color:rgba(255,255,255,.86) !important;
  text-shadow:none !important;
  text-align:left !important;
}

/* hero centered variation */
.aboutHeroGrid.heroCentered,
.locationHeroGrid.heroCentered,
.housesHeroGrid.heroCentered,
.experiencesHeroGrid.heroCentered,
.contactHeroGrid.heroCentered,
.bookingHeroGrid.heroCentered,
.pageHeroGrid.heroCentered{
  grid-template-columns:1fr;
  justify-items:center;
  text-align:center;
}

.aboutHeroGrid.heroCentered .aboutHeroContent,
.locationHeroGrid.heroCentered .locationHeroContent,
.housesHeroGrid.heroCentered .housesHeroContent,
.experiencesHeroGrid.heroCentered .experiencesHeroContent,
.contactHeroGrid.heroCentered .contactHeroContent,
.bookingHeroGrid.heroCentered .bookingHeroContent,
.pageHeroGrid.heroCentered .pageHeroContent{
  max-width:820px;
  margin:0 auto;
}

.aboutHeroGrid.heroCentered .aboutHeroTitle,
.locationHeroGrid.heroCentered .locationHeroTitle,
.housesHeroGrid.heroCentered .housesHeroTitle,
.experiencesHeroGrid.heroCentered .experiencesHeroTitle,
.contactHeroGrid.heroCentered .contactHeroTitle,
.bookingHeroGrid.heroCentered .bookingHeroTitle,
.pageHeroGrid.heroCentered .pageHeroTitle,
.aboutHeroGrid.heroCentered .display,
.locationHeroGrid.heroCentered .display,
.housesHeroGrid.heroCentered .display,
.experiencesHeroGrid.heroCentered .display,
.contactHeroGrid.heroCentered .display,
.bookingHeroGrid.heroCentered .display,
.pageHeroGrid.heroCentered .display{
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

.aboutHeroGrid.heroCentered .aboutHeroText,
.locationHeroGrid.heroCentered .locationHeroText,
.housesHeroGrid.heroCentered .housesHeroText,
.experiencesHeroGrid.heroCentered .experiencesHeroText,
.contactHeroGrid.heroCentered .contactHeroText,
.bookingHeroGrid.heroCentered .bookingHeroText,
.pageHeroGrid.heroCentered .pageHeroText,
.aboutHeroGrid.heroCentered .lead,
.locationHeroGrid.heroCentered .lead,
.housesHeroGrid.heroCentered .lead,
.experiencesHeroGrid.heroCentered .lead,
.contactHeroGrid.heroCentered .lead,
.bookingHeroGrid.heroCentered .lead,
.pageHeroGrid.heroCentered .lead{
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

.aboutHeroGrid.heroCentered .eyebrow,
.locationHeroGrid.heroCentered .eyebrow,
.housesHeroGrid.heroCentered .eyebrow,
.experiencesHeroGrid.heroCentered .eyebrow,
.contactHeroGrid.heroCentered .eyebrow,
.bookingHeroGrid.heroCentered .eyebrow,
.pageHeroGrid.heroCentered .eyebrow{
  text-align:center !important;
}

/* about special case */
.aboutHeroGrid--homeTone{
  width:min(var(--cv-max), calc(100% - 40px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr;
  align-items:end;
  justify-items:start;
  text-align:left;
  min-height:calc(76svh - var(--header-h) - 18px);
  padding-bottom:34px;
}

.aboutHeroGrid--homeTone .aboutHeroContent{
  max-width:680px;
}

.aboutHeroGrid--homeTone .aboutHeroCard{
  display:none;
}

/* =========================================================
   4) SECTION SYSTEM
========================================================= */

.section{
  position:relative;
  padding:clamp(72px, 8vw, 132px) 0;
  scroll-margin-top:calc(var(--header-h) + 18px);
}

.sectionAlt,
.sectionSoft{
  background:linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
}

.sectionPanel{
  padding:34px;
  border-radius:32px;
  background:rgba(255,252,248,0.58);
  border:1px solid rgba(255,255,255,0.48);
  box-shadow:var(--cv-shadow-panel);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

/* split blocks */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:center;
}

.split > div{
  min-width:0;
}

/* consistent text column in split copy */
.bookingCopy,
.aboutIntroCopy,
.aboutNarrativeCopy,
.locationCopy,
.experienceCopy,
.pageCopy{
  max-width:var(--cv-reading);
}

.bookingCopy > *,
.aboutIntroCopy > *,
.aboutNarrativeCopy > *,
.locationCopy > *,
.experienceCopy > *,
.pageCopy > *{
  text-align:left;
  margin-left:0;
  margin-right:auto;
}

/* =========================================================
   5) CARD SYSTEM
========================================================= */

.cardGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
}

.card{
  position:relative;
  overflow:hidden;
  border-radius:var(--cv-radius-card);
  background:var(--cv-panel);
  border:1px solid rgba(255,255,255,0.52);
  box-shadow:var(--cv-shadow-card);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s cubic-bezier(.22,1,.36,1),
    border-color .35s ease,
    background .35s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 46px rgba(64,44,28,0.10);
  border-color:rgba(255,255,255,0.68);
  background:var(--cv-panel-strong);
}

.cardMedia{
  aspect-ratio:4 / 3;
  overflow:hidden;
}

.cardMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1.1s cubic-bezier(.22,1,.36,1);
}

.card:hover .cardMedia img{
  transform:scale(1.04);
}

.cardBody{
  padding:22px 22px 24px;
}

.cardMeta{
  margin:0 0 10px;
  font-size:11px;
  line-height:1;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--text-soft);
  opacity:.76;
}

.cardTitle{
  margin:0 0 10px;
  max-width:14ch;
}

.cardText{
  max-width:34ch;
}

/* quieter cards for info blocks */
.softPanel,
.bookingPanel,
.aboutHeroCard,
.locationHeroCard,
.housesHeroCard,
.experiencesHeroCard,
.contactHeroCard,
.bookingHeroCard,
.pageHeroCard{
  border-radius:var(--cv-radius-panel);
  background:linear-gradient(180deg, rgba(255,252,248,0.80), rgba(255,252,248,0.68));
  border:1px solid rgba(255,255,255,0.56);
  box-shadow:var(--cv-shadow-panel);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.softPanel,
.bookingPanel{
  padding:28px;
}

.aboutHeroCard,
.locationHeroCard,
.housesHeroCard,
.experiencesHeroCard,
.contactHeroCard,
.bookingHeroCard,
.pageHeroCard{
  max-width:320px;
  margin-left:auto;
  padding:20px;
}

.aboutHeroCard .eyebrow,
.locationHeroCard .eyebrow,
.housesHeroCard .eyebrow,
.experiencesHeroCard .eyebrow,
.contactHeroCard .eyebrow,
.bookingHeroCard .eyebrow,
.pageHeroCard .eyebrow{
  color:rgba(58,47,39,.60) !important;
  margin-bottom:8px;
}

.aboutHeroCard p,
.locationHeroCard p,
.housesHeroCard p,
.experiencesHeroCard p,
.contactHeroCard p,
.bookingHeroCard p,
.pageHeroCard p{
  color:var(--text-soft);
  font-size:15.5px;
  line-height:1.68;
}

/* =========================================================
   6) FORM / BOOKING CONSISTENCY
========================================================= */

.formGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.field{
  display:grid;
  gap:8px;
}

.field label{
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--text-soft);
  opacity:.8;
}

.field input,
.field select,
.field textarea{
  width:100%;
  min-height:54px;
  padding:0 16px;
  border-radius:18px;
  border:1px solid rgba(92,71,54,0.08);
  background:rgba(255,255,255,0.82);
  color:var(--text);
  outline:none;
  transition:
    border-color .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}

.field textarea{
  min-height:120px;
  padding:16px;
  resize:vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:rgba(29,78,216,0.22);
  box-shadow:0 0 0 5px rgba(63,184,196,0.10);
  background:#fff;
}

/* =========================================================
   7) BUTTON CONSISTENCY
========================================================= */

.btn{
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:
    transform .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s cubic-bezier(.22,1,.36,1),
    background .35s ease,
    color .35s ease,
    border-color .35s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btnPrimary{
  background:linear-gradient(135deg, #2c7df0, #52c4ff);
  color:#fff;
  box-shadow:0 12px 28px rgba(45,112,212,0.22);
}

.btnGhost,
.btnSoft{
  background:rgba(255,255,255,0.58);
  color:var(--text);
  border:1px solid rgba(92,71,54,0.08);
  box-shadow:var(--cv-shadow-soft);
}

/* =========================================================
   8) IMAGE RHYTHM
========================================================= */

img{
  border:0;
}

.roundedMedia,
.sectionMedia img,
.softPanel img,
.bookingPanel img{
  border-radius:26px;
}

/* =========================================================
   9) MOBILE
========================================================= */

@media (max-width: 1100px){
  .split,
  .footerGrid{
    grid-template-columns:1fr;
  }

  .cardGrid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .aboutHeroGrid,
  .locationHeroGrid,
  .housesHeroGrid,
  .experiencesHeroGrid,
  .contactHeroGrid,
  .bookingHeroGrid,
  .pageHeroGrid{
    width:min(100%, calc(100% - 28px));
  }

  .aboutHeroCard,
  .locationHeroCard,
  .housesHeroCard,
  .experiencesHeroCard,
  .contactHeroCard,
  .bookingHeroCard,
  .pageHeroCard{
    max-width:460px;
    margin-left:0;
  }
}

@media (max-width: 760px){
  :root{
    --cv-hero-title: clamp(40px, 10vw, 64px);
    --cv-h1: clamp(34px, 8vw, 48px);
    --cv-h2: clamp(28px, 6.2vw, 36px);
    --cv-h3: clamp(21px, 5vw, 26px);
    --cv-lead: 16px;
    --cv-body: 15.5px;
  }

  .wrap{
    width:min(100%, calc(100% - 24px));
  }

  .editorialBlock,
  .sectionHead,
  .sectionHeadNarrow,
  .bookingCopy,
  .aboutIntroCopy,
  .aboutNarrativeCopy,
  .locationCopy,
  .experienceCopy,
  .pageCopy{
    max-width:100%;
  }

  .lead,
  .body,
  .cardText{
    max-width:30ch;
  }

  .section{
    padding:64px 0;
  }

  .cardGrid,
  .formGrid{
    grid-template-columns:1fr;
  }

  .cardBody,
  .softPanel,
  .bookingPanel{
    padding:20px;
  }

  .aboutHeroGrid,
  .locationHeroGrid,
  .housesHeroGrid,
  .experiencesHeroGrid,
  .contactHeroGrid,
  .bookingHeroGrid,
  .pageHeroGrid,
  .aboutHeroGrid--homeTone{
    width:min(100%, calc(100% - 24px));
    gap:22px;
  }

  .aboutHero .display,
  .locationHero .display,
  .housesHero .display,
  .experiencesHero .display,
  .contactHero .display,
  .bookingHero .display,
  .pageHero .display,
  .hero:not(.homeHero):not(.heroHomePremium) .display,
  .aboutHeroTitle,
  .locationHeroTitle,
  .housesHeroTitle,
  .experiencesHeroTitle,
  .contactHeroTitle,
  .bookingHeroTitle,
  .pageHeroTitle,
  .aboutHeroTitle--homeTone{
    max-width:10ch !important;
    line-height:1.02 !important;
  }

  .aboutHeroText,
  .locationHeroText,
  .housesHeroText,
  .experiencesHeroText,
  .contactHeroText,
  .bookingHeroText,
  .pageHeroText,
  .aboutHero .lead,
  .locationHero .lead,
  .housesHero .lead,
  .experiencesHero .lead,
  .contactHero .lead,
  .bookingHero .lead,
  .pageHero .lead,
  .hero:not(.homeHero):not(.heroHomePremium) .lead,
  .aboutHeroGrid--homeTone .aboutHeroText{
    max-width:30ch !important;
    font-size:16px !important;
    line-height:1.68 !important;
  }

  .btn{
    width:100%;
  }
}
/* =========================================================
   HERO FIX — INTERNAL PAGES FINAL OVERRIDE
   força o hero interno a obedecer o sistema elegante
========================================================= */

.aboutHero,
.locationHero,
.housesHero,
.experiencesHero,
.contactHero,
.bookingHero,
.pageHero{
  position: relative;
  isolation: isolate;
}

/* overlay mais sutil */
.aboutHeroOverlay,
.locationHeroOverlay,
.housesHeroOverlay,
.experiencesHeroOverlay,
.contactHeroOverlay,
.bookingHeroOverlay,
.pageHeroOverlay{
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.52) 0%,
      rgba(0,0,0,0.24) 42%,
      rgba(0,0,0,0.06) 72%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.16) 0%,
      rgba(0,0,0,0.10) 34%,
      rgba(0,0,0,0.30) 100%
    ) !important;
}

/* grid do hero */
.aboutHeroGrid,
.locationHeroGrid,
.housesHeroGrid,
.experiencesHeroGrid,
.contactHeroGrid,
.bookingHeroGrid,
.pageHeroGrid{
  width: min(1180px, calc(100% - 40px)) !important;
  margin: 0 auto !important;
  min-height: calc(100svh - var(--header-h) - 18px) !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: center !important;
  justify-items: start !important;
  text-align: left !important;
  padding-bottom: 36px !important;
}

/* conteúdo */
.aboutHeroContent,
.locationHeroContent,
.housesHeroContent,
.experiencesHeroContent,
.contactHeroContent,
.bookingHeroContent,
.pageHeroContent{
  max-width: 680px !important;
  margin: 0 !important;
  text-align: left !important;
}

/* eyebrow */
.aboutHeroEyebrow,
.locationHeroEyebrow,
.housesHeroEyebrow,
.experiencesHeroEyebrow,
.contactHeroEyebrow,
.bookingHeroEyebrow,
.pageHeroEyebrow,
.aboutHero .eyebrow,
.locationHero .eyebrow,
.housesHero .eyebrow,
.experiencesHero .eyebrow,
.contactHero .eyebrow,
.bookingHero .eyebrow,
.pageHero .eyebrow{
  display: block !important;
  margin: 0 0 14px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.74) !important;
  text-align: left !important;
}

/* título */
.aboutHeroTitle,
.locationHeroTitle,
.housesHeroTitle,
.experiencesHeroTitle,
.contactHeroTitle,
.bookingHeroTitle,
.pageHeroTitle,
.aboutHero .display,
.locationHero .display,
.housesHero .display,
.experiencesHero .display,
.contactHero .display,
.bookingHero .display,
.pageHero .display{
  margin: 0 !important;
  max-width: 7.2ch !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(44px, 6vw, 72px) !important;
  font-weight: 300 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  text-align: left !important;
  text-wrap: balance !important;
  text-shadow: 0 6px 18px rgba(0,0,0,0.22) !important;
}

/* texto */
.aboutHeroText,
.locationHeroText,
.housesHeroText,
.experiencesHeroText,
.contactHeroText,
.bookingHeroText,
.pageHeroText,
.aboutHero .lead,
.locationHero .lead,
.housesHero .lead,
.experiencesHero .lead,
.contactHero .lead,
.bookingHero .lead,
.pageHero .lead{
  margin: 18px 0 0 !important;
  max-width: 33rem !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,.86) !important;
  text-align: left !important;
  text-shadow: none !important;
}

/* remove centralizações herdadas */
.aboutHeroContent *,
.locationHeroContent *,
.housesHeroContent *,
.experiencesHeroContent *,
.contactHeroContent *,
.bookingHeroContent *,
.pageHeroContent *{
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* card lateral opcional */
.aboutHeroCard,
.locationHeroCard,
.housesHeroCard,
.experiencesHeroCard,
.contactHeroCard,
.bookingHeroCard,
.pageHeroCard{
  max-width: 320px !important;
  margin-left: auto !important;
  padding: 20px !important;
  border-radius: 24px !important;
  background: rgba(255,252,248,0.72) !important;
  border: 1px solid rgba(255,255,255,0.46) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.07) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* mobile */
@media (max-width: 760px){
  .aboutHeroGrid,
  .locationHeroGrid,
  .housesHeroGrid,
  .experiencesHeroGrid,
  .contactHeroGrid,
  .bookingHeroGrid,
  .pageHeroGrid{
    width: min(100%, calc(100% - 24px)) !important;
    min-height: calc(92svh - var(--header-h) - 12px) !important;
    padding-bottom: 24px !important;
  }

  .aboutHeroContent,
  .locationHeroContent,
  .housesHeroContent,
  .experiencesHeroContent,
  .contactHeroContent,
  .bookingHeroContent,
  .pageHeroContent{
    max-width: 100% !important;
  }

  .aboutHeroTitle,
  .locationHeroTitle,
  .housesHeroTitle,
  .experiencesHeroTitle,
  .contactHeroTitle,
  .bookingHeroTitle,
  .pageHeroTitle,
  .aboutHero .display,
  .locationHero .display,
  .housesHero .display,
  .experiencesHero .display,
  .contactHero .display,
  .bookingHero .display,
  .pageHero .display{
    font-size: clamp(2.5rem, 10vw, 4rem) !important;
    max-width: 8.5ch !important;
    line-height: 1.01 !important;
  }

  .aboutHeroText,
  .locationHeroText,
  .housesHeroText,
  .experiencesHeroText,
  .contactHeroText,
  .bookingHeroText,
  .pageHeroText,
  .aboutHero .lead,
  .locationHero .lead,
  .housesHero .lead,
  .experiencesHero .lead,
  .contactHero .lead,
  .bookingHero .lead,
  .pageHero .lead{
    max-width: 30ch !important;
    font-size: 1rem !important;
    line-height: 1.68 !important;
  }
}
/* =========================================================
   TWO-COLUMN EDITORIAL FIX
   Corrige textos perdidos no lado direito das páginas internas
========================================================= */

.split{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap:40px;
  align-items:start !important;
}

.split > div{
  min-width:0;
}

/* coluna esquerda: título editorial */
.split > div:first-child{
  max-width:760px;
}

/* coluna direita: texto de apoio */
.split > div:last-child{
  max-width:560px;
  justify-self:start;
  align-self:start;
}

/* tudo da coluna direita começa do mesmo eixo */
.split > div:last-child > *{
  margin-left:0 !important;
  margin-right:auto !important;
  text-align:left !important;
}

/* parágrafos da direita */
.split > div:last-child p,
.split > div:last-child .body,
.split > div:last-child .lead{
  max-width:32rem;
  font-size:16px;
  line-height:1.78;
  color:var(--text-soft);
}

/* quando houver mais de um parágrafo */
.split > div:last-child p + p,
.split > div:last-child .body + .body,
.split > div:last-child .lead + .body,
.split > div:last-child .body + .lead{
  margin-top:18px !important;
}

/* headings da coluna esquerda */
.split > div:first-child .h2,
.split > div:first-child .h1,
.split > div:first-child .display{
  margin:0;
  max-width:12ch;
}

/* subtítulo/eyebrow acima */
.split > div:first-child .eyebrow{
  margin-bottom:12px;
}

@media (max-width: 980px){
  .split{
    grid-template-columns:1fr !important;
    gap:24px !important;
  }

  .split > div:first-child,
  .split > div:last-child{
    max-width:100%;
  }

  .split > div:last-child p,
  .split > div:last-child .body,
  .split > div:last-child .lead{
    max-width:34ch;
  }
}
/* =========================================================
   EDITORIAL GRID SYSTEM — CASAS DA VILA
   sistema global para títulos à esquerda + texto à direita
========================================================= */

:root{
  --editorial-col-left: minmax(0, 1.34fr);
  --editorial-col-right: minmax(320px, 0.66fr);
  --editorial-gap: clamp(36px, 5vw, 72px);

  --editorial-title-max: 16ch;
  --editorial-text-max: 32rem;

  --editorial-row-gap: 16px;
  --editorial-section-gap: clamp(10px, 2vw, 22px);
}

/* bloco principal */
.editorialGrid{
  display:grid;
  grid-template-columns:var(--editorial-col-left) var(--editorial-col-right);
  column-gap:var(--editorial-gap);
  align-items:start;
}

/* coluna esquerda */
.editorialMain{
  display:grid;
  gap:14px;
  align-content:start;
  min-width:0;
}

.editorialMain .eyebrow{
  margin:0;
}

.editorialMain > .h1,
.editorialMain > .h2,
.editorialMain > h1,
.editorialMain > h2{
  margin:0;
  max-width:var(--editorial-title-max);
  line-height:.96;
  letter-spacing:-0.035em;
  text-wrap:balance;
}

/* coluna direita */
.editorialAside{
  display:grid;
  gap:var(--editorial-row-gap);
  align-content:start;
  min-width:0;
  padding-top:4px;
}

.editorialAside .lead,
.editorialAside p{
  margin:0;
  max-width:var(--editorial-text-max);
  line-height:1.72;
  text-align:left;
}

/* versão para blocos sequenciais sem quebrar o ritmo */
.editorialFlow{
  display:grid;
  gap:var(--editorial-section-gap);
}

/* quando houver um eyebrow acima ocupando largura toda */
.editorialKicker{
  grid-column:1 / -1;
  margin:0;
}

/* bloco com titulo + texto no mesmo grid mas com kicker separado */
.editorialGrid--withKicker{
  display:grid;
  grid-template-columns:var(--editorial-col-left) var(--editorial-col-right);
  column-gap:var(--editorial-gap);
  row-gap:10px;
  align-items:start;
}

.editorialGrid--withKicker > .editorialKicker{
  grid-column:1 / -1;
}

.editorialGrid--withKicker > .editorialMain{
  grid-column:1;
}

.editorialGrid--withKicker > .editorialAside{
  grid-column:2;
}

/* versão mais densa, boa para páginas internas */
.editorialGrid--compact{
  column-gap:clamp(28px, 4vw, 56px);
}

.editorialGrid--compact .editorialAside{
  padding-top:2px;
}

/* alinhamento de blocos consecutivos */
.editorialSection{
  padding-top:0;
  padding-bottom:0;
}

.editorialSection + .editorialSection{
  margin-top:clamp(4px, 1vw, 14px);
}

/* tablet */
@media (max-width:1100px){
  :root{
    --editorial-gap:32px;
    --editorial-title-max:15ch;
    --editorial-text-max:34rem;
  }

  .editorialGrid,
  .editorialGrid--withKicker{
    grid-template-columns:1fr;
    row-gap:16px;
  }

  .editorialGrid--withKicker > .editorialMain,
  .editorialGrid--withKicker > .editorialAside{
    grid-column:auto;
  }

  .editorialAside{
    padding-top:0;
  }

  .editorialMain > .h1,
  .editorialMain > .h2,
  .editorialMain > h1,
  .editorialMain > h2{
    max-width:15ch;
  }
}

/* mobile */
@media (max-width:760px){
  :root{
    --editorial-gap:20px;
    --editorial-title-max:10.5ch;
    --editorial-text-max:30ch;
    --editorial-row-gap:14px;
    --editorial-section-gap:12px;
  }

  .editorialMain > .h1,
  .editorialMain > .h2,
  .editorialMain > h1,
  .editorialMain > h2{
    line-height:1.00;
  }

  .editorialAside .lead,
  .editorialAside p{
    line-height:1.68;
    max-width:var(--editorial-text-max);
  }
}
/* =========================================================
   HERO EDITORIAL GLOBAL — páginas internas
   ========================================================= */

:root{
  --hero-copy-max: 620px;
  --hero-title-max: 520px;
  --hero-eyebrow-gap: 18px;
  --hero-title-gap: 26px;
  --hero-text-gap: 0;
}

/* container da coluna de texto */
.heroContent,
.pageHeroContent,
.internalHeroContent,
.hero__content{
  width:min(100%, var(--hero-copy-max));
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
  gap:0;
  position:relative;
  z-index:2;
}

/* breadcrumb / eyebrow */
.heroContent .eyebrow,
.heroContent .breadcrumb,
.heroContent .heroKicker,
.pageHeroContent .eyebrow,
.pageHeroContent .breadcrumb,
.pageHeroContent .heroKicker,
.internalHeroContent .eyebrow,
.internalHeroContent .breadcrumb,
.internalHeroContent .heroKicker,
.hero__content .eyebrow,
.hero__content .breadcrumb,
.hero__content .heroKicker{
  display:block;
  margin:0 0 var(--hero-eyebrow-gap) 0;
  font-size:11px;
  line-height:1.35;
  letter-spacing:0.24em;
  text-transform:uppercase;
  opacity:0.88;
}

/* título principal */
.heroContent h1,
.pageHeroContent h1,
.internalHeroContent h1,
.hero__content h1{
  max-width:var(--hero-title-max);
  margin:0 0 var(--hero-title-gap) 0;
  font-weight:300;
  font-size:clamp(54px, 7.2vw, 96px);
  line-height:0.94;
  letter-spacing:-0.045em;
  text-wrap:balance;
  text-rendering:optimizeLegibility;
}

/* subtítulo / parágrafo */
.heroContent p,
.pageHeroContent p,
.internalHeroContent p,
.hero__content p{
  max-width:560px;
  margin:0;
  font-size:clamp(18px, 1.45vw, 24px);
  line-height:1.72;
  letter-spacing:-0.01em;
  opacity:0.96;
}

/* evita largura excessivamente estreita que causa quebra feia */
.heroContent > *{
  width:100%;
}
.pageHeroContent > *{
  width:100%;
}
.internalHeroContent > *{
  width:100%;
}
.hero__content > *{
  width:100%;
}

/* respiro vertical do bloco de texto */
.heroContent,
.pageHeroContent,
.internalHeroContent,
.hero__content{
  padding-top:clamp(110px, 14vh, 180px);
  padding-bottom:clamp(48px, 7vh, 92px);
}

/* tablets */
@media (max-width: 980px){
  :root{
    --hero-copy-max: 560px;
    --hero-title-max: 480px;
    --hero-eyebrow-gap: 16px;
    --hero-title-gap: 22px;
  }

  .heroContent h1,
  .pageHeroContent h1,
  .internalHeroContent h1,
  .hero__content h1{
    font-size:clamp(46px, 8vw, 72px);
    line-height:0.96;
    letter-spacing:-0.04em;
  }

  .heroContent p,
  .pageHeroContent p,
  .internalHeroContent p,
  .hero__content p{
    font-size:clamp(17px, 2vw, 21px);
    line-height:1.68;
  }
}

/* mobile */
@media (max-width: 640px){
  :root{
    --hero-copy-max: 100%;
    --hero-title-max: 100%;
    --hero-eyebrow-gap: 14px;
    --hero-title-gap: 18px;
  }

  .heroContent,
  .pageHeroContent,
  .internalHeroContent,
  .hero__content{
    padding-top:calc(var(--header-h, 84px) + 42px);
    padding-bottom:40px;
  }

  .heroContent h1,
  .pageHeroContent h1,
  .internalHeroContent h1,
  .hero__content h1{
    font-size:clamp(42px, 11vw, 58px);
    line-height:0.98;
    letter-spacing:-0.035em;
    max-width:11ch;
  }

  .heroContent p,
  .pageHeroContent p,
  .internalHeroContent p,
  .hero__content p{
    max-width:34ch;
    font-size:16px;
    line-height:1.72;
  }

  .heroContent .eyebrow,
  .heroContent .breadcrumb,
  .heroContent .heroKicker,
  .pageHeroContent .eyebrow,
  .pageHeroContent .breadcrumb,
  .pageHeroContent .heroKicker,
  .internalHeroContent .eyebrow,
  .internalHeroContent .breadcrumb,
  .internalHeroContent .heroKicker,
  .hero__content .eyebrow,
  .hero__content .breadcrumb,
  .hero__content .heroKicker{
    font-size:10px;
    letter-spacing:0.22em;
  }
}
/* =========================================================
   CONTACT CARD — e-mail / WhatsApp
   ========================================================= */

.contactCard,
.contactMethod,
.contactChannel,
.contactBox{
  min-width:0;
}

.contactCard__row,
.contactMethod__row,
.contactChannel__row,
.contactBox__row{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  align-items:start;
  gap:20px;
}

.contactCard__main,
.contactMethod__main,
.contactChannel__main,
.contactBox__main{
  min-width:0;
}

.contactCard__value,
.contactMethod__value,
.contactChannel__value,
.contactBox__value,
.contactCard a[href^="mailto:"],
.contactMethod a[href^="mailto:"],
.contactChannel a[href^="mailto:"],
.contactBox a[href^="mailto:"],
.contactCard a[href^="tel:"],
.contactMethod a[href^="tel:"],
.contactChannel a[href^="tel:"],
.contactBox a[href^="tel:"]{
  display:block;
  min-width:0;
  max-width:100%;
  font-family:var(--font-display, "IvyPresto Display", "Times New Roman", serif);
  font-size:clamp(24px, 2.2vw, 34px);
  line-height:1.08;
  letter-spacing:-0.03em;
  text-decoration:none;
  color:inherit;

  /* regra principal */
  overflow-wrap:anywhere;
  word-break:break-word;
}

.contactCard__action,
.contactMethod__action,
.contactChannel__action,
.contactBox__action{
  flex:0 0 auto;
  align-self:start;
  white-space:nowrap;
}

.contactCard__desc,
.contactMethod__desc,
.contactChannel__desc,
.contactBox__desc{
  max-width:42ch;
}

/* quando houver espaço, preserva em uma linha */
@media (min-width: 981px){
  .contactCard__value.is-email,
  .contactMethod__value.is-email,
  .contactChannel__value.is-email,
  .contactBox__value.is-email,
  .contactCard a[href^="mailto:"],
  .contactMethod a[href^="mailto:"],
  .contactChannel a[href^="mailto:"],
  .contactBox a[href^="mailto:"]{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    overflow-wrap:normal;
    word-break:normal;
  }
}

/* em telas menores deixa quebrar de forma limpa */
@media (max-width: 980px){
  .contactCard__row,
  .contactMethod__row,
  .contactChannel__row,
  .contactBox__row{
    grid-template-columns:1fr;
    gap:18px;
  }

  .contactCard__action,
  .contactMethod__action,
  .contactChannel__action,
  .contactBox__action{
    width:100%;
  }

  .contactCard__action .btn,
  .contactMethod__action .btn,
  .contactChannel__action .btn,
  .contactBox__action .btn{
    width:100%;
    justify-content:center;
  }

  .contactCard__value,
  .contactMethod__value,
  .contactChannel__value,
  .contactBox__value,
  .contactCard a[href^="mailto:"],
  .contactMethod a[href^="mailto:"],
  .contactChannel a[href^="mailto:"],
  .contactBox a[href^="mailto:"]{
    white-space:normal;
    overflow-wrap:anywhere;
    word-break:break-word;
  }
}
.is-disabled{
  pointer-events:none;
  opacity:.52;
  cursor:not-allowed;
}
