/* ==========================================================================
   Pousada Normandy — visual boutique clássico
   As variáveis --wine, --wine-dark, --terracotta, --cream, --cream-alt, --ink,
   --ink-soft e --menu-bg são sobrescritas pelas cores do painel (theme_style_tag).
   --gold, --gold-soft e --choco são detalhes fixos do layout.
   ========================================================================== */

:root {
  --wine: #5c3a2e;
  --wine-dark: #482d24;
  --terracotta: #9a5230;
  --cream: #faf6f0;
  --cream-alt: #f2ebe0;
  --ink: #241d19;
  --ink-soft: #5d524b;
  --menu-bg: #faf6f0;
  --gold: #b08d57;
  --gold-soft: #dcc59f;
  --choco: #241915;
  --line: #e6dccd;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 6px;
  --shadow: 0 18px 40px -18px rgba(36, 25, 21, 0.28);
  --shadow-lg: 0 34px 70px -24px rgba(36, 25, 21, 0.42);
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0 0 0.4em;
  line-height: 1.08;
  color: var(--wine-dark);
  letter-spacing: -0.005em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.icon { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

section[id] { scroll-margin-top: 70px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Tipografia de apoio ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--terracotta);
  margin: 0 0 1em;
}
.eyebrow-light { color: var(--gold-soft); }

.ornament { display: flex; align-items: center; gap: 12px; margin: 18px 0 26px; }
.ornament span { width: 44px; height: 1px; background: var(--gold); }
.ornament i { width: 7px; height: 7px; border: 1px solid var(--gold); transform: rotate(45deg); }

.section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-head .ornament { justify-content: center; }
.section-head .section-lead { margin: 0; }

.section { padding: 116px 0; }
.section-alt { background: var(--cream-alt); }
.section h2 { font-size: clamp(2.3rem, 4.4vw, 3.5rem); }
.section-lead { font-size: 1.02rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.74rem; font-weight: 600;
  color: var(--terracotta);
}
.link-arrow .icon { transition: transform .35s var(--ease); }
.link-arrow:hover .icon { transform: translateX(5px); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 600; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn .icon { width: 1.35em; height: 1.35em; }

.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--wine-dark); box-shadow: var(--shadow); }

.btn-gold { background: var(--gold); color: #1f1612; }
.btn-gold:hover { background: #c3a26d; box-shadow: 0 16px 34px -14px rgba(176, 141, 87, .7); }

.btn-ghost { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: #fff; color: var(--wine-dark); }

.btn-outline { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn-outline:hover { background: var(--wine); color: #fff; }

.btn-outline-light { background: transparent; color: #fff; border-color: var(--gold); }
.btn-outline-light:hover { background: var(--gold); color: #1f1612; }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; transition: height .4s var(--ease); }
.brand img { height: 56px; width: auto; filter: brightness(0) invert(1); transition: filter .4s, height .4s var(--ease); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  color: rgba(255, 255, 255, .92);
  font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  position: relative; padding: 6px 0;
  transition: color .3s;
}
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta { border: 1px solid var(--gold); padding: 11px 22px !important; border-radius: 3px; }
.nav-cta:hover { background: var(--gold); color: #1f1612 !important; }

.site-header.is-solid,
.no-js .site-header {
  background: color-mix(in srgb, var(--menu-bg) 94%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(36, 25, 21, .5);
}
.site-header.is-solid .header-inner { height: 72px; }
.site-header.is-solid .brand img,
.no-js .site-header .brand img { filter: none; height: 50px; }
.site-header.is-solid .nav a,
.no-js .site-header .nav a { color: var(--ink); }
.site-header.is-solid .nav-cta,
.no-js .site-header .nav-cta { background: var(--wine); border-color: var(--wine); color: #fff !important; }
.site-header.is-solid .nav-cta:hover { background: var(--wine-dark); border-color: var(--wine-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 10px; }
.nav-toggle span { width: 26px; height: 1.5px; background: #fff; display: block; transition: transform .3s, opacity .3s, background .3s; }
.site-header.is-solid .nav-toggle span { background: var(--wine-dark); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background: var(--choco);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.02); }
.hero-slide.active:not(.is-lowres) .hero-slide-img { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1.02) translate(0, 0); }
  to { transform: scale(1.13) translate(-1.5%, -1%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(20, 13, 10, .82) 0%, rgba(20, 13, 10, .5) 50%, rgba(20, 13, 10, .18) 100%),
    linear-gradient(0deg, rgba(20, 13, 10, .7) 0%, transparent 45%);
}
.hero-content { position: relative; z-index: 3; padding-top: 150px; padding-bottom: 190px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin: 0;
  text-transform: uppercase; letter-spacing: 0.3em;
  font-size: 0.72rem; font-weight: 500;
  color: var(--gold-soft);
}
.hero-line { width: 54px; height: 1px; background: var(--gold); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 5.6vw, 5.1rem);
  line-height: 1;
  max-width: 900px;
  margin: 26px 0 26px;
  text-wrap: balance;
}
.hero-sub { max-width: 520px; color: rgba(255, 255, 255, .84); font-size: 1.06rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero-dots { display: flex; gap: 10px; margin-top: 56px; }
.hero-dot { width: 46px; padding: 10px 0; border: 0; background: none; cursor: pointer; }
.hero-dot span { display: block; height: 2px; background: rgba(255, 255, 255, .28); position: relative; overflow: hidden; }
.hero-dot span::after { content: ""; position: absolute; inset: 0; background: var(--gold-soft); transform: scaleX(0); transform-origin: left; }
.hero-dot.active span::after { animation: fillbar 7s linear forwards; }
@keyframes fillbar { to { transform: scaleX(1); } }

.hero-scroll {
  position: absolute; z-index: 3; right: 40px; bottom: 150px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: rgba(255, 255, 255, .7);
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.hero-scroll span { writing-mode: vertical-rl; }
.hero-scroll i { width: 1px; height: 64px; background: linear-gradient(var(--gold-soft), transparent); animation: scrollcue 2.2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollcue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* ---------- Barra de reserva ---------- */
.booking-wrap { position: relative; z-index: 5; margin-top: -86px; }
.booking {
  background: #fff;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr) auto;
  gap: 18px;
  align-items: end;
}
.booking-head { display: flex; flex-direction: column; gap: 2px; align-self: center; padding-right: 8px; border-right: 1px solid var(--line); }
.booking-kicker { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; }
.booking-head strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; line-height: 1.1; color: var(--wine-dark); }
.booking-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.booking-field span { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); }
.booking-field input,
.booking-field select { width: 100%; }
.booking-submit { height: 50px; padding: 0 26px; }
.booking-note { grid-column: 1 / -1; margin: -4px 0 0; font-size: 0.86rem; color: var(--terracotta); }
.booking-note:empty { display: none; }

/* ---------- Diferenciais ---------- */
.features { padding: 84px 0 12px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 8px 20px; gap: 4px;
}
.feature + .feature { border-left: 1px solid var(--line); }
.feature-icon {
  width: 62px; height: 62px; margin-bottom: 14px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-soft); border-radius: 50%;
  color: var(--gold);
  transition: background .4s, color .4s, transform .4s var(--ease);
}
.feature-icon .icon { width: 26px; height: 26px; stroke-width: 1.3; }
.feature:hover .feature-icon { background: var(--gold); color: #fff; transform: translateY(-4px); }
.feature strong { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--wine-dark); line-height: 1.1; }
.feature > span:last-child { font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- Mini-slider (apartamentos e Sobre) ---------- */
.mini-slider { position: relative; overflow: hidden; background: var(--cream-alt); }
.mini-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease, transform 1.2s var(--ease);
}
.mini-slide.active { opacity: 1; }
.mini-slide-empty { background: var(--cream-alt); }
.mini-slider-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 2; }
.mini-slider:hover .mini-slider-nav,
.mini-slider:focus-within .mini-slider-nav { opacity: 1; }
.mini-arrow {
  pointer-events: auto;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(36, 25, 21, .45); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .3s;
}
.mini-arrow:hover { background: rgba(36, 25, 21, .8); }
.mini-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.mini-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .55); cursor: pointer; transition: width .3s, background .3s; }
.mini-dot.active { width: 18px; border-radius: 3px; background: #fff; }

/* ---------- Sobre ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 90px; align-items: center; }
.about-media { position: relative; padding: 0 22px 22px 0; }
.about-frame { position: relative; }
.about-frame::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold); border-radius: var(--radius);
}
.about-slider { position: relative; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.about-badge {
  position: absolute; right: -18px; bottom: 60px; z-index: 3;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px;
  background: var(--wine); color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge-num { font-family: var(--serif); font-size: 3.4rem; line-height: 0.8; color: var(--gold-soft); }
.about-badge-text { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.5; max-width: 170px; }
.about-text h2 { max-width: 16ch; }
.about-text p { font-size: 1.02rem; }
.about-text .link-arrow { margin-top: 12px; }

/* ---------- Apartamentos ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.room-media { position: relative; }
.room-slider { height: 240px; }
.room-card:hover .mini-slide.active { transform: scale(1.06); }
.room-cap {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .94);
  border-radius: 999px;
  font-size: 0.74rem; font-weight: 600; color: var(--wine);
}
.room-card-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.room-card-body h3 { font-size: 1.65rem; margin-bottom: 8px; }
.room-card-body p { font-size: 0.92rem; flex: 1; }
.room-card-body .link-arrow { margin-top: 6px; }

/* ---------- Faixa Parque das Águas ---------- */
.parque {
  position: relative; overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(176, 141, 87, .18), transparent 45%),
    radial-gradient(circle at 90% 90%, rgba(176, 141, 87, .12), transparent 40%),
    var(--choco);
  color: #fff;
}
.parque-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.parque h2 { color: #fff; font-size: clamp(2.4rem, 4.4vw, 3.8rem); max-width: 16ch; text-wrap: balance; }
.parque h2 em { color: var(--gold-soft); font-style: italic; }
.parque p { color: rgba(255, 255, 255, .74); max-width: 470px; font-size: 1.02rem; }
.parque .btn { margin-top: 14px; }
.ornament-light span { background: var(--gold); opacity: .8; }
.parque-media { position: relative; justify-self: end; width: 100%; max-width: 420px; }
.parque-media::before {
  content: ""; position: absolute; inset: -16px;
  border: 1px solid rgba(176, 141, 87, .55);
  border-radius: 999px 999px 10px 10px;
}
.arch { position: relative; aspect-ratio: 3 / 4; border-radius: 999px 999px 6px 6px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7); }
.arch img { width: 100%; height: 116%; object-fit: cover; transform: translate3d(0, var(--py, -6%), 0); will-change: transform; }

/* ---------- Galeria em mosaico ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-item {
  position: relative; overflow: hidden;
  padding: 0; border: 0;
  border-radius: var(--radius);
  background: var(--cream-alt);
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(36, 25, 21, .55), transparent 55%);
  opacity: 0; transition: opacity .45s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.gallery-zoom {
  position: absolute; z-index: 2; right: 14px; bottom: 14px;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .92); color: var(--wine);
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s, transform .45s var(--ease);
}
.gallery-item:hover .gallery-zoom, .gallery-item:focus-visible .gallery-zoom { opacity: 1; transform: none; }
.g-big { grid-column: span 2; grid-row: span 2; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px;
  padding: 24px;
  background: rgba(18, 12, 10, .95);
  animation: lbfade .35s ease;
}
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; min-width: 0; }
.lb-figure img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 4px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); animation: lbzoom .45s var(--ease); }
@keyframes lbzoom { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.lb-figure figcaption { display: flex; gap: 18px; justify-content: space-between; width: 100%; max-width: 900px; margin-top: 16px; color: rgba(255, 255, 255, .82); font-size: 0.92rem; }
.lb-count { color: var(--gold-soft); letter-spacing: 0.12em; white-space: nowrap; }
.lb-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: transparent; color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  cursor: pointer; transition: background .3s, border-color .3s;
}
.lb-btn:hover { background: var(--gold); border-color: var(--gold); color: #1f1612; }
.lb-btn .icon { width: 22px; height: 22px; }
.lb-close { position: absolute; top: 20px; right: 20px; }

/* ---------- Vídeos ---------- */
/* Colunas limitadas a 360px: os vídeos atuais são 360x640 e 640x640, então
   nenhum deles é ampliado além da resolução nativa (evita imagem borrada). */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 360px)); justify-content: center; gap: 36px; }
.video-item { margin: 0; }
.video-item video { display: block; width: 100%; height: auto; background: #000; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.video-caption { margin-top: 16px; font-size: 0.9rem; color: var(--ink-soft); }
.video-caption strong { display: block; margin-bottom: 2px; font-family: var(--serif); font-weight: 600; font-size: 1.35rem; color: var(--wine-dark); }

/* ---------- Localização ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.loc-address { font-family: var(--serif); font-weight: 600; color: var(--wine-dark); font-size: 1.5rem; line-height: 1.35; }
.loc-text .btn { margin-top: 8px; }
.loc-map { position: relative; }
.loc-map::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; border: 1px solid var(--gold); border-radius: var(--radius); }
.loc-map iframe { position: relative; width: 100%; height: 380px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list li > div { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.contact-icon { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--gold-soft); border-radius: 50%; color: var(--gold); }
.contact-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--terracotta); font-weight: 600; }
.contact-list a, .contact-list li > div > span:last-child { font-weight: 500; color: var(--ink); overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--terracotta); }

.contact-form { background: #fff; padding: 44px 40px; border-radius: var(--radius); border-top: 3px solid var(--gold); box-shadow: var(--shadow-lg); }
.form-row { margin-bottom: 20px; display: flex; flex-direction: column; gap: 7px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 0; }
.form-row-2 > div { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
input, select, textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s, background .3s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(176, 141, 87, .2); }
.form-note { margin: 12px 0 0; font-size: 0.9rem; color: var(--wine); min-height: 1.2em; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--choco); color: rgba(255, 255, 255, .7); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding: 84px 24px 56px; }
.footer-logo { height: 66px; width: auto; filter: brightness(0) invert(1); opacity: .92; margin-bottom: 20px; }
.footer-brand p { color: rgba(255, 255, 255, .62); max-width: 290px; font-size: 0.92rem; }
.site-footer h4 { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a, .site-footer p { font-size: 0.92rem; }
.site-footer ul a:hover, .footer-map:hover { color: var(--gold-soft); }
.site-footer .footer-grid p { color: rgba(255, 255, 255, .62); }
.footer-map { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; font-weight: 600; }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 22px; padding-bottom: 26px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 0.82rem; }
.footer-base p { margin: 0; color: rgba(255, 255, 255, .5); }
.footer-credit strong { color: #fff; }
.footer-credit a:hover strong { color: var(--gold-soft); }

/* ---------- Avaliações do Google ---------- */
.reviews-head { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: end; margin-bottom: 44px; }
.reviews-head .section-lead { margin: 0; max-width: 520px; }
.reviews-score {
  justify-self: end;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 250px; padding: 26px 32px;
  background: #fff; border-radius: var(--radius); border-top: 3px solid var(--gold);
  box-shadow: var(--shadow); text-align: center;
}
.google-g { width: 28px; height: 28px; flex-shrink: 0; }
.reviews-score-num { font-family: var(--serif); font-weight: 600; font-size: 3.6rem; line-height: 1; color: var(--wine-dark); }
.reviews-score-label { font-size: 0.82rem; color: var(--ink-soft); }
.reviews-score .btn { margin-top: 12px; padding: 12px 20px; }

.stars { display: inline-block; font-size: 1.05rem; letter-spacing: 3px; line-height: 1; }
.stars::before {
  content: "★★★★★";
  background: linear-gradient(90deg, var(--gold) calc(var(--rating) / 5 * 100%), #dcd2c4 0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.reviews-carousel { position: relative; }
.reviews-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 8px 4px 28px;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  position: relative; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 18px;
  padding: 30px 28px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.review-top { display: flex; justify-content: space-between; align-items: center; }
.review-top .google-g { width: 20px; height: 20px; }
.review-text { margin: 0; flex: 1; }
.review-text p {
  margin: 0; font-size: 0.97rem; line-height: 1.75; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden;
}
.review-card.is-open .review-text p { -webkit-line-clamp: unset; }
.review-more { align-self: flex-start; margin-top: -8px; padding: 0; background: none; border: 0; cursor: pointer; color: var(--terracotta); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.review-avatar { width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: var(--wine); color: #fff; font-family: var(--serif); font-size: 1.35rem; }
.review-author strong { display: block; font-size: 0.95rem; color: var(--ink); }
.review-author small { font-size: 0.8rem; color: var(--ink-soft); }
.reviews-nav { display: flex; justify-content: center; gap: 10px; margin-top: 4px; }
.reviews-arrow { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--gold); background: transparent; color: var(--wine); cursor: pointer; transition: background .3s, color .3s; }
.reviews-arrow:hover { background: var(--gold); color: #1f1612; }

@media (max-width: 900px) {
  .reviews-head { grid-template-columns: 1fr; gap: 28px; }
  .reviews-score { justify-self: start; }
  .reviews-track { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
  .reviews-track { grid-auto-columns: 86%; }
  .reviews-score { justify-self: stretch; }
}

/* ---------- Revelar ao rolar ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .booking { grid-template-columns: repeat(2, 1fr); }
  .booking-head { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 14px; }
  .booking-submit { grid-column: 1 / -1; }
  .hero-scroll { display: none; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .about-grid, .loc-grid, .contact-grid, .parque-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-media { max-width: 520px; }
  .parque-media { justify-self: center; max-width: 340px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .feature:nth-child(3) { border-left: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .header-inner { height: 70px; }
  .brand img { height: 46px; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--menu-bg);
    flex-direction: column; align-items: flex-start;
    padding: 12px 24px 26px; gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px -20px rgba(36, 25, 21, .4);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { color: var(--ink); padding: 12px 0; font-size: 0.8rem; }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 10px; background: var(--wine); border-color: var(--wine); color: #fff !important; }
  .nav-toggle { display: flex; }
  .hero-content { padding-top: 120px; padding-bottom: 150px; }
  .hero-dots { margin-top: 40px; }
  .booking-wrap { margin-top: -64px; }
  .booking { padding: 22px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 22px; }
  .about-badge { right: 0; bottom: 30px; padding: 14px 18px; }
  .about-badge-num { font-size: 2.6rem; }
  .lightbox { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto; padding: 70px 14px 20px; }
  .lb-figure { grid-column: 1 / -1; grid-row: 1; }
  .lb-prev { grid-row: 2; justify-self: end; }
  .lb-next { grid-row: 2; justify-self: start; }
}

@media (max-width: 520px) {
  .booking { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature { padding: 4px 8px; }
  .feature strong { font-size: 1.25rem; }
  .gallery { grid-auto-rows: 130px; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 64px; }
  .hero-actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-dot.active span::after { transform: scaleX(1); }
}
