/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  --void:        #05080d;
  --deep:        #080f1a;
  --ocean:       #0d1e30;
  --mid:         #122640;
  --horizon:     #1a3d5c;
  --foam:        #c4dae8;
  --sand:        #d4b896;
  --gold:        #c8912a;
  --gold-hi:     #e8b84b;
  --gold-glow:   rgba(200,145,42,0.25);
  --white:       #f4efe8;
  --dim:         #6a8fa8;
  --danger:      #e05252;

  --f-display: 'Bebas Neue', sans-serif;
  --f-serif:   'Cormorant Garamond', serif;
  --f-body:    'DM Sans', sans-serif;

  --ease-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-sine:     cubic-bezier(0.37, 0, 0.63, 1);
  --ease-back:     cubic-bezier(0.34, 1.56, 0.64, 1);

  --trans-speed: 0.9s;
}

/* ═══════════════════════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 300;
  overflow: hidden;
  height: 100vh;
}
/* Block selection only on interactive/decorative elements, not on readable text */
nav, .hero-title, .hero-eyebrow, .s-label, .btn,
.nav-main, .nav-lang, .nav-burger, .snap-section,
.gr-card, .fq-btn, .rm-filter-btn, .hero-slide-dot,
.gr-dot, #mobile-drawer { user-select: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: var(--f-body); }

/* Custom cursor — desktop (fine pointer) only */
@media (hover: hover) and (pointer: fine) {
  body, a, button, input, textarea, select { cursor: none; }
}

/* ═══════════════════════════════════════════════════════════════
   NOISE OVERLAY
═══════════════════════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed; 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.014;
  pointer-events: none;
  z-index: 9000;
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════════════ */
#cur-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold-hi);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease-expo), height .25s var(--ease-expo), background .25s;
  mix-blend-mode: screen;
}
#cur-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(232,184,75,.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .5s var(--ease-expo), height .5s var(--ease-expo), border-color .3s, background .3s;
}
#cur-text {
  position: fixed;
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-hi);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: opacity .3s;
  white-space: nowrap;
}
body.cur-hover #cur-dot  { width: 0; height: 0; }
body.cur-hover #cur-ring { width: 72px; height: 72px; border-color: rgba(232,184,75,.7); background: rgba(232,184,75,.05); }
body.cur-hover #cur-text { opacity: 1; }
body.cur-click #cur-ring { width: 28px; height: 28px; }

/* ═══════════════════════════════════════════════════════════════
   PAGE TRANSITION OVERLAY
═══════════════════════════════════════════════════════════════ */
#page-veil {
  position: fixed; inset: 0;
  z-index: 8000;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.veil-col {
  background: var(--void);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .6s var(--ease-expo);
}
.veil-col:nth-child(1) { transition-delay: 0s; }
.veil-col:nth-child(2) { transition-delay: .05s; }
.veil-col:nth-child(3) { transition-delay: .1s; }
.veil-col:nth-child(4) { transition-delay: .05s; }
.veil-col:nth-child(5) { transition-delay: 0s; }
#page-veil.closing .veil-col { transform: scaleY(1); transform-origin: top; }
#page-veil.opening .veil-col { transform: scaleY(0); transform-origin: bottom; }

/* ═══════════════════════════════════════════════════════════════
   APP SHELL — PAGES
═══════════════════════════════════════════════════════════════ */
#app {
  position: fixed; inset: 0;
  overflow: hidden;
}
.page {
  position: absolute; inset: 0;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Home usa snap-container para scroll — .page não deve rolar */
#page-home {
  overflow: hidden;
}
/* snap-container ocupa 100% do pai (page-home já tem 100vh) */
#home-snap {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.page.active {
  opacity: 1;
  pointer-events: all;
}
.page.active:not(#page-home) {
  overflow-y: auto;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 7000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px,5vw,72px);
  transition: background .5s, padding .4s, backdrop-filter .5s;
}
#nav.solid {
  background: rgba(5,8,13,.88);
  backdrop-filter: blur(14px);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(200,145,42,.12);
}

.nav-logo {
  font-family: var(--f-display);
  font-size: clamp(16px,2.2vw,24px);
  letter-spacing: .14em;
  color: var(--gold-hi);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-logo em { color: var(--foam); font-style: normal; }

/* Desktop links */
.nav-main {
  display: flex;
  align-items: center;
  gap: clamp(16px,2.5vw,40px);
  list-style: none;
}
.nav-main a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(196,218,232,.65);
  transition: color .3s;
  position: relative;
  padding-bottom: 3px;
}
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease-expo);
}
.nav-main a:hover,
.nav-main a.active { color: var(--gold-hi); }
.nav-main a:hover::after,
.nav-main a.active::after { width: 100%; }

/* Lang + right controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-lang {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-lang button {
  background: none;
  border: none;
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 5px 7px;
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
}
.nav-lang button.active,
.nav-lang button:hover { color: var(--gold-hi); border-bottom-color: var(--gold); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 26px; height: 1px;
  background: var(--foam);
  transition: all .35s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
#mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(5,8,13,.97);
  backdrop-filter: blur(20px);
  z-index: 6900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .6s var(--ease-expo);
}
#mobile-drawer.open { transform: translateX(0); }
#mobile-drawer a {
  font-family: var(--f-display);
  font-size: clamp(36px,8vw,64px);
  letter-spacing: .06em;
  color: var(--foam);
  transition: color .3s;
}
#mobile-drawer a:hover { color: var(--gold-hi); }

/* ═══════════════════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════════════════ */
.s-wrap {
  min-height: 100vh;
  padding: clamp(80px,10vh,140px) clamp(20px,7vw,120px) clamp(60px,8vh,100px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.s-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.s-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.s-title {
  font-family: var(--f-display);
  font-size: clamp(56px,10vw,150px);
  line-height: .88;
  letter-spacing: .02em;
}
.s-lead {
  font-family: var(--f-serif);
  font-size: clamp(18px,2.2vw,26px);
  font-style: italic;
  font-weight: 300;
  color: var(--foam);
  line-height: 1.55;
}
.s-body {
  font-size: clamp(13px,1.3vw,15px);
  color: var(--dim);
  line-height: 1.9;
  max-width: 54ch;
}

/* Reveal on scroll */
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease-expo), transform .85s var(--ease-expo);
}
.rv.in { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .22s; }
.rv.d3 { transition-delay: .36s; }
.rv.d4 { transition-delay: .52s; }
.rv.d5 { transition-delay: .7s; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: transform .35s var(--ease-expo), box-shadow .35s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-expo);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: scaleX(1); }
.btn span { position: relative; z-index: 1; }

.btn-gold { background: var(--gold); color: var(--void); }
.btn-gold::before { background: var(--gold-hi); }
.btn-gold:hover { box-shadow: 0 14px 44px rgba(200,145,42,.35); }

.btn-outline {
  border: 1px solid rgba(196,218,232,.28);
  color: var(--foam);
}
.btn-outline::before { background: rgba(196,218,232,.06); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-hi); }

.btn-ghost {
  color: var(--dim);
  border-bottom: 1px solid rgba(106,143,168,.3);
  padding: 6px 0;
}
.btn-ghost:hover { color: var(--white); border-bottom-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE TOGGLE
═══════════════════════════════════════════════════════════════ */
[data-lang] { display: none; }
[data-lang="pt"] { display: block; }
.il[data-lang] { display: none; }
.il[data-lang="pt"] { display: inline; }

/* ═══════════════════════════════════════════════════════════════
   FULLSCREEN SECTION SNAP (HOME PAGE)
═══════════════════════════════════════════════════════════════ */
.snap-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.snap-section {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* ═══════════════════════════════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   HERO BACKGROUND SLIDESHOW
═══════════════════════════════════════════════════════════════ */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  will-change: opacity, transform;
  transform: scale(1.04);
}
.hero-slide-bg img.active {
  opacity: 0.82;
  animation: hero-ken-burns 6s ease-out forwards;
}
.hero-slide-bg img.leaving {
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
@keyframes hero-ken-burns {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.0); }
}

/* Overlay dark gradient above the slideshow */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,8,13,.62) 0%, rgba(5,8,13,.18) 45%, rgba(5,8,13,.55) 100%),
    linear-gradient(90deg, rgba(5,8,13,.65) 0%, transparent 55%);
  pointer-events: none;
}

/* hero-bg subtle gradient sits above overlay */
.hero-bg {
  z-index: 2;
}
.hero-particles { z-index: 3; }
.wind-lines      { z-index: 3; }
.kite-wrap       { z-index: 4; }
.hero-content    { z-index: 5; position: relative; }
.hero-scroll     { z-index: 5; }

/* Slideshow dots */
.hero-slide-dots {
  position: absolute;
  bottom: 32px;
  left: clamp(20px,7vw,120px);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 6;
}
.hero-slide-dot {
  width: 24px; height: 2px;
  background: rgba(196,218,232,.3);
  border: none;
  transition: background .4s, width .4s var(--ease-expo);
  cursor: pointer;
}
.hero-slide-dot.on {
  background: var(--gold);
  width: 40px;
}

/* Slide caption */
.hero-slide-caption {
  position: absolute;
  bottom: 44px;
  right: clamp(20px,4vw,64px);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(196,218,232,.45);
  z-index: 6;
  max-width: 26ch;
  text-align: right;
  transition: opacity .6s;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(5,8,13,.9) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 60%, rgba(5,8,13,.6) 0%, transparent 55%);
  transform-origin: center;
  will-change: transform;
}
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,75,.6) 0%, transparent 70%);
  animation: particle-drift linear infinite;
}
@keyframes particle-drift {
  0%   { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-10vh) translateX(var(--drift)) scale(1); opacity: 0; }
}
/* Wind lines */
.wind-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.wl {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,218,232,.07), transparent);
  animation: wl-sweep linear infinite;
}
@keyframes wl-sweep {
  0%   { transform: translateX(-100%); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(200vw); opacity: 0; }
}
/* Kite SVGs */
.kite-wrap {
  position: absolute;
  pointer-events: none;
  animation: kite-dance ease-in-out infinite alternate;
}
@keyframes kite-dance {
  0%   { transform: translate(0,0) rotate(-3deg); }
  100% { transform: translate(8px,-18px) rotate(3deg); }
}
/* Lagoon */
.hero-lagoon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg,transparent,rgba(13,30,48,.7) 60%,var(--void));
  pointer-events: none;
}
.lagoon-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg,transparent,transparent 4px,rgba(196,218,232,.025) 4px,rgba(196,218,232,.025) 5px);
  animation: lagoon-shift 8s linear infinite;
}
@keyframes lagoon-shift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 10;
  padding: 0 clamp(20px,7vw,120px) clamp(48px,7vh,90px);
  width: 100%;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0;
  animation: fu .8s var(--ease-expo) .3s forwards;
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(80px,16vw,240px);
  line-height: .85;
  letter-spacing: .02em;
  opacity: 0;
  animation: fu 1s var(--ease-expo) .5s forwards;
}
.hero-title .gold { color: var(--gold-hi); }
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(244,239,232,.25);
  color: transparent;
}
.hero-sub {
  font-family: var(--f-serif);
  font-size: clamp(15px,2vw,24px);
  font-style: italic;
  color: var(--foam);
  margin-top: 12px;
  opacity: 0;
  animation: fu .8s var(--ease-expo) .9s forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu .8s var(--ease-expo) 1.1s forwards;
}
.h-stat { display: flex; flex-direction: column; }
.h-stat-n {
  font-family: var(--f-display);
  font-size: clamp(32px,5vw,64px);
  line-height: 1;
  color: var(--gold-hi);
}
.h-stat-l {
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px;
}
.h-divider { width: 1px; height: 44px; background: rgba(200,145,42,.25); }
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu .8s var(--ease-expo) 1.3s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: clamp(20px,4vw,64px);
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fi 1s ease 2s forwards;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(180deg,var(--gold),transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: .3; transform: scaleY(.6); }
  50%      { opacity: 1; transform: scaleY(1); }
}
.scroll-label {
  font-size: 8px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--dim);
  writing-mode: vertical-rl;
}

/* ═══════════════════════════════════════════════════════════════
   HOME — SECTION 2: SPOT TEASER
═══════════════════════════════════════════════════════════════ */
.spot-snap {
  background: var(--deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.spot-left {
  height: 100%;
  background: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.spot-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1.8s var(--ease-expo);
  z-index: 0;
}
.spot-photo-bg.loaded { opacity: 1; }
.spot-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5,8,13,.55) 0%, rgba(13,30,48,.30) 100%),
    linear-gradient(0deg, rgba(5,8,13,.5) 0%, transparent 60%);
  z-index: 1;
}
.spot-circles { z-index: 2; }
.spot-left-inner {
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 40px;
}
.spot-big-num {
  font-family: var(--f-display);
  font-size: clamp(120px,18vw,260px);
  line-height: 1;
  color: rgba(232,184,75,.18);
  letter-spacing: -.02em;
}
.spot-unit {
  font-family: var(--f-display);
  font-size: clamp(28px,4vw,52px);
  color: var(--gold-hi);
  letter-spacing: .1em;
  margin-top: -20px;
}
.spot-sub-label {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 8px;
}
/* Animated circles */
.spot-circles {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.s-circle {
  position: absolute;
  border: 1px solid rgba(200,145,42,.12);
  border-radius: 50%;
  animation: expand linear infinite;
}
@keyframes expand {
  0%   { transform: scale(.4); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.spot-right {
  padding: clamp(40px,6vw,96px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   HOME — SECTION 3: EXPERIENCE GRID
═══════════════════════════════════════════════════════════════ */
.exp-snap {
  background: var(--void);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(26,61,92,.2);
}
.exp-card {
  background: var(--void);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px,4vw,56px);
  position: relative;
  overflow: hidden;
  min-height: 33.33vh;
  transition: background .5s;
}
/* Photo background per card */
.exp-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease-expo), transform .8s var(--ease-expo);
  z-index: 0;
  transform: scale(1.05);
}
.exp-card-bg.loaded { opacity: 0.30; }
.exp-card:hover .exp-card-bg.loaded { opacity: 0.55; transform: scale(1.0); }
/* Dark overlay always on top of photo */
.exp-card::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5,8,13,.3) 0%, rgba(5,8,13,.75) 70%, rgba(5,8,13,.92) 100%);
  transition: opacity .5s;
}
.exp-card:hover::before { opacity: 0.7; }
/* Gold accent line on hover */
.exp-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-expo);
  z-index: 3;
}
.exp-card:hover::after { transform: scaleX(1); }

.exp-num {
  font-family: var(--f-display);
  font-size: clamp(80px,12vw,160px);
  line-height: 1;
  color: rgba(196,218,232,.05);
  position: absolute;
  top: 20px; right: 20px;
  letter-spacing: -.02em;
  transition: color .4s, opacity .4s;
  z-index: 2;
}
.exp-card:hover .exp-num { color: rgba(232,184,75,.12); }
.exp-icon {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: var(--gold);
  opacity: .8;
  transition: opacity .3s, transform .4s var(--ease-expo);
}
.exp-card:hover .exp-icon { opacity: 1; transform: translateY(-4px); }
.exp-title {
  font-family: var(--f-display);
  font-size: clamp(28px,3.5vw,48px);
  letter-spacing: .04em;
  line-height: 1;
  position: relative; z-index: 2;
  transition: color .3s;
}
.exp-card:hover .exp-title { color: var(--gold-hi); }
.exp-desc {
  font-size: 12px;
  color: var(--dim);
  margin-top: 10px;
  line-height: 1.7;
  position: relative; z-index: 2;
  max-width: 28ch;
  transition: color .3s;
}
.exp-card:hover .exp-desc { color: var(--foam); }
.exp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  position: relative; z-index: 2;
  transition: color .3s;
}
.exp-link::after {
  content: '→';
  transition: transform .3s var(--ease-expo);
}
.exp-card:hover .exp-link { color: var(--gold-hi); }
.exp-card:hover .exp-link::after { transform: translateX(6px); }

/* ═══════════════════════════════════════════════════════════════
   HOME — SECTION 4: GOOGLE REVIEWS
═══════════════════════════════════════════════════════════════ */
.gr-snap {
  background: var(--deep);
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
}
.gr-left {
  height: 100%;
  background: var(--void);
  border-right: 1px solid rgba(26,61,92,.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px,5vw,64px) clamp(24px,3vw,44px);
}
.gr-google-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.gr-google-wordmark {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(244,239,232,.7);
  letter-spacing: .01em;
}
.gr-score-big {
  font-family: var(--f-display);
  font-size: clamp(72px,8vw,108px);
  line-height: 1;
  color: var(--gold-hi);
  letter-spacing: -.02em;
}
.gr-stars-agg {
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-top: 6px;
}
.gr-count {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 12px;
  line-height: 1.6;
}
.gr-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,145,42,.3);
  padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}
.gr-view-all:hover { color: var(--gold-hi); border-color: var(--gold-hi); }

.gr-right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px,5vw,64px) clamp(20px,4vw,52px);
  overflow: hidden;
  min-width: 0;
}
.gr-track-wrap { overflow: hidden; margin-top: 20px; }
.gr-track {
  display: flex;
  gap: 14px;
  transition: transform .65s var(--ease-expo);
  will-change: transform;
}
.gr-card {
  min-width: min(290px, 78vw);
  max-width: min(290px, 78vw);
  background: rgba(5,8,13,.5);
  border: 1px solid rgba(26,61,92,.7);
  padding: 18px 20px 36px;
  flex-shrink: 0;
  transition: border-color .4s var(--ease-expo), transform .45s var(--ease-expo),
              background .4s, box-shadow .45s;
  position: relative;
  overflow: hidden;
}
/* Shimmer sweep on hover */
.gr-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(200,145,42,.06) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .7s var(--ease-expo);
}
/* Bottom gold line that grows on hover */
.gr-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-expo);
}
.gr-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(200,145,42,.5);
  background: rgba(13,28,46,.75);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(200,145,42,.15);
}
.gr-card:hover::before { transform: translateX(100%); }
.gr-card:hover::after  { transform: scaleX(1); }
.gr-card.active-r {
  border-color: rgba(200,145,42,.4);
  transform: translateY(-5px);
  background: rgba(5,8,13,.7);
}
.gr-card.active-r:hover {
  transform: translateY(-12px) scale(1.02);
}

/* Expand hint */
.gr-expand-hint {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  text-align: center;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .35s, transform .35s var(--ease-expo);
  pointer-events: none;
}
.gr-card:hover .gr-expand-hint {
  opacity: 1;
  transform: translateY(0);
}

.gr-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.gr-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--f-body);
  letter-spacing: 0;
  transition: transform .35s var(--ease-expo), box-shadow .35s;
}
.gr-card:hover .gr-avatar {
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.gr-name-wrap { flex: 1; min-width: 0; }
.gr-name {
  font-size: 11px; font-weight: 500;
  color: var(--foam);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color .3s;
}
.gr-card:hover .gr-name { color: var(--white); }
.gr-reviewer-sub {
  font-size: 8px; color: var(--dim);
  margin-top: 2px; letter-spacing: .04em;
}
.gr-photo-badge {
  font-size: 8px; color: var(--dim);
  border: 1px solid rgba(106,143,168,.28);
  padding: 2px 6px; letter-spacing: .06em; flex-shrink: 0;
  transition: border-color .3s, color .3s;
}
.gr-card:hover .gr-photo-badge { border-color: rgba(200,145,42,.4); color: var(--gold); }
.gr-stars-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 9px;
}
.gr-stars {
  color: var(--gold); font-size: 10px; letter-spacing: 2px;
  transition: letter-spacing .3s;
}
.gr-card:hover .gr-stars { letter-spacing: 4px; }
.gr-date  { font-size: 8px; color: rgba(106,143,168,.5); letter-spacing: .06em; }
.gr-text {
  font-family: var(--f-serif);
  font-size: clamp(12px,1.2vw,14px);
  font-style: italic;
  color: var(--foam);
  line-height: 1.65;
  transition: color .3s;
}
.gr-card:hover .gr-text { color: var(--white); }
.gr-tags {
  display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px;
}
.gr-tag {
  font-size: 7px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,145,42,.22); padding: 2px 6px;
  transition: background .3s, border-color .3s;
}
.gr-card:hover .gr-tag { background: rgba(200,145,42,.08); border-color: rgba(200,145,42,.45); }
.gr-g-watermark {
  position: absolute; bottom: 12px; right: 12px;
  opacity: .18;
  transition: opacity .4s;
}
.gr-card:hover .gr-g-watermark { opacity: .5; }

/* ── EXPANDED OVERLAY ───────────────────────────────────────── */
#gr-overlay {
  position: fixed; inset: 0;
  z-index: 8500;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,8,13,.88);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease-expo);
  padding: 20px;
}
#gr-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.gr-expanded {
  background: var(--ocean);
  border: 1px solid rgba(200,145,42,.38);
  padding: clamp(28px,4vw,44px);
  max-width: min(560px, 92vw);
  width: 100%;
  position: relative;
  transform: scale(.88) translateY(28px);
  transition: transform .5s var(--ease-expo);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(200,145,42,.2);
}
#gr-overlay.open .gr-expanded {
  transform: scale(1) translateY(0);
}
.gr-exp-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: 1px solid rgba(196,218,232,.18);
  color: var(--dim);
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; line-height: 1;
  transition: border-color .3s, color .3s, background .3s;
  cursor: pointer;
}
.gr-exp-close:hover {
  border-color: var(--gold); color: var(--gold-hi);
  background: rgba(200,145,42,.08);
}
.gr-exp-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; padding-right: 36px;
}
.gr-exp-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600;
  color: #fff; flex-shrink: 0; font-family: var(--f-body);
}
.gr-exp-name {
  font-size: 14px; font-weight: 500; color: var(--white);
}
.gr-exp-sub { font-size: 9px; color: var(--dim); margin-top: 3px; letter-spacing: .06em; }
.gr-exp-stars {
  color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px;
}
.gr-exp-text {
  font-family: var(--f-serif);
  font-size: clamp(15px,1.6vw,18px);
  font-style: italic;
  color: var(--foam);
  line-height: 1.8;
}
.gr-exp-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px;
}
.gr-exp-tag {
  font-size: 8px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,145,42,.28); padding: 3px 8px;
}
.gr-exp-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px; padding-top: 16px;
  border-top: 1px solid rgba(26,61,92,.6);
}
.gr-exp-date { font-size: 9px; color: var(--dim); letter-spacing: .1em; }
.gr-exp-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(200,145,42,.3); padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.gr-exp-link:hover { color: var(--gold-hi); border-color: var(--gold-hi); }

.gr-nav {
  display: flex; align-items: center; gap: 8px; margin-top: 18px;
}
.gr-dot {
  width: 26px; height: 2px;
  background: rgba(196,218,232,.18);
  border: none;
  transition: background .3s, width .35s var(--ease-expo);
  cursor: pointer;
}
.gr-dot.on { background: var(--gold); width: 42px; }

/* ═══════════════════════════════════════════════════════════════
   HOME — SECTION 5: INSTAGRAM STRIP
═══════════════════════════════════════════════════════════════ */
.ig-snap {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding: 64px clamp(20px,6vw,100px);
  background: var(--void);
  border-top: 1px solid rgba(26,61,92,.4);
  position: relative;
  overflow: hidden;
}
.ig-snap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,145,42,.04) 0%, transparent 70%);
  pointer-events: none;
}
.ig-header { text-align: center; position: relative; z-index: 1; }
.ig-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(200,145,42,.25);
  border-radius: 2px; padding: 5px 14px;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim);
  margin-bottom: 18px;
}
.ig-badge svg { color: var(--gold); flex-shrink: 0; }
.ig-handle {
  font-family: var(--f-display);
  font-size: clamp(36px,6vw,80px);
  letter-spacing: .05em;
  line-height: 1;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.ig-sub {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: .14em;
  text-transform: uppercase;
  max-width: 36ch;
  margin: 0 auto;
  line-height: 1.7;
}
.ig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 5px;
  width: 100%;
  max-width: 960px;
  border-radius: 4px;
  overflow: hidden;
  position: relative; z-index: 1;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.ig-item {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--ocean);
}
.ig-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.ig-item:nth-child(5) { grid-column: 3 / 5; }
.ig-item:nth-child(6) { grid-column: 3 / 5; }
.ig-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease-expo);
}
.ig-item:hover .ig-photo { transform: scale(1.08); }
.ig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(240,148,51,0) 0%, rgba(188,24,136,0) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: background .4s;
}
.ig-item:hover .ig-overlay {
  background: linear-gradient(135deg, rgba(240,148,51,.45) 0%, rgba(188,24,136,.45) 100%);
}
.ig-icon {
  color: #fff;
  opacity: 0;
  transform: scale(.7) translateY(6px);
  transition: opacity .35s, transform .35s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.ig-item:hover .ig-icon { opacity: 1; transform: scale(1) translateY(0); }
.ig-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(0deg, rgba(5,8,13,.8) 0%, transparent 100%);
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(196,218,232,.6);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s, transform .3s;
}
.ig-item:hover .ig-item-label { opacity: 1; transform: translateY(0); }
.ig-footer {
  display: flex; align-items: center; gap: 20px;
  position: relative; z-index: 1;
  flex-wrap: wrap; justify-content: center;
}
.ig-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 2px;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 8px 24px rgba(220,39,67,.3);
}
.ig-btn:hover { opacity: .88; transform: translateY(-2px); }
.ig-handle-link {
  font-size: 11px; color: var(--dim); letter-spacing: .1em;
  text-decoration: none;
  transition: color .3s;
}
.ig-handle-link:hover { color: var(--foam); }
@media (max-width: 680px) {
  .ig-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,160px); }
  .ig-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
  .ig-item:nth-child(5) { grid-column: 1 / 2; }
  .ig-item:nth-child(6) { grid-column: 2 / 3; }
}

/* ═══════════════════════════════════════════════════════════════
   HOME — SECTION 6: CTA SNAP
═══════════════════════════════════════════════════════════════ */
.cta-snap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--void);
  overflow: hidden;
}
/* CTA photo background */
.cta-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  opacity: 0;
  transition: opacity 2s var(--ease-expo);
  z-index: 0;
}
.cta-photo-bg.loaded { opacity: 1; }
.cta-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(5,8,13,.0) 0%, rgba(5,8,13,.92) 80%),
    linear-gradient(180deg, rgba(5,8,13,.75) 0%, rgba(5,8,13,.5) 40%, rgba(5,8,13,.85) 100%);
  z-index: 1;
}
.cta-bg-text {
  position: absolute;
  font-family: var(--f-display);
  font-size: clamp(120px,22vw,380px);
  color: rgba(255,255,255,.025);
  letter-spacing: -.02em;
  pointer-events: none;
  white-space: nowrap;
  animation: cta-drift 20s linear infinite;
  z-index: 2;
}
@keyframes cta-drift {
  0%   { transform: translateX(-5%); }
  100% { transform: translateX(5%); }
}
.cta-content { position: relative; z-index: 3; }
.cta-title {
  font-family: var(--f-display);
  font-size: clamp(64px,12vw,180px);
  line-height: .85;
  color: var(--white);
}
.cta-channels {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { box-shadow: 0 14px 44px rgba(37,211,102,.3); }
.btn-wa::before { background: #1db954; }

/* ═══════════════════════════════════════════════════════════════
   COUNTER — animated stat numbers
═══════════════════════════════════════════════════════════════ */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(26,61,92,.25);
  margin-top: 48px;
}
.counter-item {
  background: var(--void);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.counter-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  transform: scaleX(0);
  transition: transform .6s var(--ease-expo);
}
.counter-item.counted::after { transform: scaleX(1); }
.counter-val {
  font-family: var(--f-display);
  font-size: clamp(40px,6vw,80px);
  line-height: 1;
  color: var(--gold-hi);
}
.counter-label {
  font-size: 8px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY — LIGHTBOX
═══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-grid.tall {
  grid-template-rows: auto auto auto;
}
.g-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ocean);
  transition: transform .4s var(--ease-expo);
}
.g-item.tall-1 { grid-row: span 2; aspect-ratio: auto; }
.g-item.wide-1 { grid-column: span 2; }
.g-item-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(32px,5vw,64px);
  color: rgba(196,218,232,.15);
  position: relative;
  transition: transform .5s var(--ease-expo);
}
.g-item:hover .g-item-inner { transform: scale(1.04); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,transparent 40%,rgba(5,8,13,.85));
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: opacity .3s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-caption {
  font-family: var(--f-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--foam);
}
.g-open-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 52px; height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(5,8,13,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-hi);
  transition: transform .3s var(--ease-back), background .3s;
  z-index: 2;
}
.g-item:hover .g-open-btn { transform: translate(-50%,-50%) scale(1); }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(5,8,13,.97);
  z-index: 8500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
  backdrop-filter: blur(20px);
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 88vw;
  max-height: 82vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(196,218,232,.2);
  transition: opacity .3s;
}
.lb-img img {
  max-width: 88vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.lb-caption {
  position: absolute;
  bottom: -40px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--dim);
  font-size: 15px;
}
.lb-close {
  position: fixed;
  top: 28px; right: 28px;
  width: 48px; height: 48px;
  border: 1px solid rgba(196,218,232,.2);
  background: none;
  color: var(--foam);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, color .3s, transform .3s;
}
.lb-close:hover { border-color: var(--gold); color: var(--gold-hi); transform: rotate(90deg); }
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1px solid rgba(196,218,232,.15);
  background: rgba(5,8,13,.6);
  color: var(--foam);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, color .3s, background .3s;
}
.lb-arrow:hover { border-color: var(--gold); color: var(--gold-hi); background: rgba(5,8,13,.9); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--dim);
}

/* ═══════════════════════════════════════════════════════════════
   SLIDER / CAROUSEL
═══════════════════════════════════════════════════════════════ */
.slider-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26,61,92,.5);
}
.slider-track {
  display: flex;
  transition: transform .7s var(--ease-expo);
  will-change: transform;
}
.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.slide-visual {
  height: 60vh;
  background: linear-gradient(135deg, var(--ocean), var(--horizon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(48px,8vw,96px);
  color: rgba(196,218,232,.15);
  position: relative;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,8,13,.8) 0%, transparent 50%, rgba(5,8,13,.5) 100%);
  display: flex;
  align-items: center;
  padding: 0 clamp(28px,5vw,80px);
}
.slide-text { max-width: 380px; }
.slide-title {
  font-family: var(--f-display);
  font-size: clamp(36px,5vw,72px);
  line-height: .9;
  letter-spacing: .05em;
}
.slide-desc {
  font-size: 13px;
  color: var(--foam);
  margin-top: 12px;
  line-height: 1.6;
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px clamp(16px,3vw,32px);
  background: var(--deep);
}
.slider-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(26,61,92,.8);
  background: none;
  color: var(--dim);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, color .3s;
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold-hi); }
.slider-dots { display: flex; gap: 6px; }
.s-dot {
  width: 24px; height: 2px;
  background: rgba(196,218,232,.2);
  border: none;
  transition: background .3s, width .3s;
}
.s-dot.on { background: var(--gold); width: 36px; }
.slider-label {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ═══════════════════════════════════════════════════════════════
   MAP SECTION
═══════════════════════════════════════════════════════════════ */
.map-wrap {
  position: relative;
  height: 400px;
  background: var(--ocean);
  overflow: hidden;
  border: 1px solid rgba(26,61,92,.5);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: invert(1) hue-rotate(180deg) saturate(0.7) brightness(0.7);
  opacity: .75;
  transition: opacity .4s;
}
.map-wrap:hover iframe { opacity: 1; }
.map-overlay-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(5,8,13,.92);
  border: 1px solid rgba(200,145,42,.3);
  padding: 14px 20px;
  backdrop-filter: blur(8px);
}
.map-badge-name {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: .08em;
  color: var(--gold-hi);
}
.map-badge-coord {
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--dim);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════════════════ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.form-field.full { grid-column: 1 / -1; }
.form-label {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
  transition: color .3s;
}
.form-field:focus-within .form-label { color: var(--gold); }
.form-input {
  background: rgba(13,30,48,.6);
  border: 1px solid rgba(26,61,92,.7);
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color .3s, background .3s;
  resize: none;
}
.form-input:focus {
  border-color: var(--gold);
  background: rgba(13,30,48,.9);
}
.form-input::placeholder { color: rgba(106,143,168,.4); }
.form-select {
  background: rgba(13,30,48,.6);
  border: 1px solid rgba(26,61,92,.7);
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  appearance: none;
  transition: border-color .3s;
}
.form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--ocean); }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  border: 1px solid rgba(200,145,42,.3);
  background: rgba(200,145,42,.05);
}
.form-success.show { display: block; }
.form-success-icon { font-size: 40px; margin-bottom: 12px; }
.form-success h3 {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: .08em;
  color: var(--gold-hi);
}
.form-success.show { animation: fadeUp .5s var(--ease-expo) both; }
@keyframes spin { to { transform: rotate(360deg); } }
.s-spin {
  display: inline-block;
  width: 13px; height: 13px;
  border: 2px solid rgba(200,145,42,.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .65s linear infinite;
  vertical-align: middle;
  margin-right: 7px;
  flex-shrink: 0;
}
.form-err-msg {
  display: none;
  margin-top: 12px;
  padding: 11px 16px;
  border: 1px solid rgba(192,57,43,.5);
  background: rgba(192,57,43,.07);
  color: #e07060;
  font-size: 12px;
  letter-spacing: .03em;
  line-height: 1.6;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   URGENCY SIGNALS (v2.14.0)
═══════════════════════════════════════════════════════════════ */
.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(200,145,42,.45);
  background: rgba(200,145,42,.07);
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 18px;
  font-family: var(--f-body);
}
.urgency-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: u-pulse 2.2s ease-in-out infinite;
}
@keyframes u-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.65); }
}
.flags-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 28px;
  font-size: 20px;
  line-height: 1;
}
.flags-strip-label {
  width: 100%;
  text-align: center;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 8px;
  font-family: var(--f-body);
}
.season-hint {
  display: none;
  margin-top: 6px;
  padding: 7px 11px 7px 13px;
  border-left: 2px solid var(--gold);
  background: rgba(200,145,42,.06);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--gold-hi);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE: POUSADA
═══════════════════════════════════════════════════════════════ */
.rooms-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.room-card {
  background: var(--deep);
  border: 1px solid rgba(26,61,92,.6);
  overflow: hidden;
  position: relative;
  transition: border-color .35s, transform .45s var(--ease-expo);
}
.room-card:hover { border-color: rgba(200,145,42,.4); transform: translateY(-4px); }
.room-thumb {
  height: 200px;
  background: linear-gradient(135deg,var(--ocean),var(--horizon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(196,218,232,.15);
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease-expo);
}
.room-card:hover .room-thumb { transform: scale(1.04); }
.room-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,transparent 50%,rgba(5,8,13,.8));
}
.room-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.room-info { padding: 24px; }
.room-name {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: .06em;
}
.room-price {
  font-family: var(--f-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  margin-top: 4px;
}
.room-desc {
  font-size: 12px;
  color: var(--dim);
  margin-top: 10px;
  line-height: 1.6;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.room-tag {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid rgba(26,61,92,.7);
  padding: 4px 10px;
  transition: border-color .3s, color .3s;
}
.room-card:hover .room-tag { border-color: rgba(200,145,42,.3); color: var(--foam); }

/* ─── ROOMS — accordion, filter, section header ─── */
.rooms-layout { align-items: start; }
.rm-vista {
  position: absolute; bottom: 12px; left: 14px;
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(196,218,232,.8); background: rgba(5,8,13,.45);
  padding: 3px 9px; border-radius: 20px; pointer-events: none;
}
.rm-cap {
  font-size: 12px; color: var(--dim); margin-top: 4px;
  font-family: var(--f-serif); font-style: italic;
}
.room-card { cursor: pointer; }
.room-card:hover { border-color: rgba(200,145,42,.3); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.rm-details { display: none; }
.rm-open-hint {
  border-top: 1px solid rgba(26,61,92,.3);
  padding: 11px 24px;
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim); display: flex; align-items: center; justify-content: space-between;
  transition: color .3s;
}
.room-card:hover .rm-open-hint { color: var(--gold); }
/* Room modal */
#rm-modal {
  display: none; position: fixed; inset: 0; z-index: 9200;
  background: rgba(5,8,13,.92); backdrop-filter: blur(10px);
  overflow-y: auto; padding: 40px 20px; cursor: auto;
}
#rm-modal.open { display: block; }
#rm-modal-inner {
  max-width: 540px; margin: 0 auto; background: var(--deep);
  border: 1px solid rgba(26,61,92,.7); border-radius: 6px;
  overflow: hidden; animation: rmFadeUp .28s var(--ease-expo);
}
@keyframes rmFadeUp {
  from { opacity:0; transform: translateY(18px); }
  to   { opacity:1; transform: translateY(0); }
}
#rm-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 22px 24px 18px; border-bottom: 1px solid rgba(26,61,92,.45);
}
#rm-modal-title {
  font-family: var(--f-display); font-size: 30px;
  letter-spacing: .06em; color: var(--gold); line-height: 1;
}
#rm-modal-sub { font-size: 11px; color: var(--dim); margin-top: 5px; font-style: italic; }
#rm-modal-close {
  flex-shrink: 0; background: none; border: 1px solid rgba(26,61,92,.5);
  color: var(--dim); width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s; margin-left: 16px; margin-top: 2px;
}
#rm-modal-close:hover { color: var(--foam); border-color: rgba(100,140,168,.6); }
#rm-modal-body { padding-bottom: 4px; }
.rm-price-table {
  border: 1px solid rgba(26,61,92,.4); border-radius: 5px;
  overflow: hidden; margin: 20px 24px 0;
}
.rm-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; border-bottom: 1px solid rgba(26,61,92,.25);
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim);
}
.rm-price-row:last-child { border-bottom: none; }
.rm-price-row.rm-alta { background: rgba(200,145,42,.05); color: var(--gold); }
.rm-price-val {
  font-family: var(--f-display); font-size: 22px;
  letter-spacing: .04em; color: var(--foam);
}
.rm-alta .rm-price-val { color: var(--gold); font-size: 18px; }
.rm-price-val small {
  font-family: var(--f-body); font-size: 9px;
  color: var(--dim); letter-spacing: 0; margin-left: 3px;
}
.rm-info-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; margin: 12px 24px 0;
}
.rm-info-cell {
  background: rgba(10,26,46,.5); border: 1px solid rgba(26,61,92,.35);
  border-radius: 4px; padding: 10px 6px; text-align: center;
}
.rm-info-cell small {
  display: block; font-size: 8px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.rm-info-cell strong { font-size: 12px; color: var(--foam); font-weight: 600; display: block; }
.rm-cta {
  display: block; margin: 16px 24px 24px;
  background: var(--gold); color: var(--void);
  text-align: center; padding: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 3px; transition: background .3s;
}
.rm-cta:hover { background: var(--gold-hi); }

/* Filter bar */
.pd-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-filter-btn {
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--dim); border: 1px solid rgba(26,61,92,.6);
  padding: 7px 18px; border-radius: 2px;
  background: none; cursor: pointer; transition: all .3s; font-family: var(--f-body);
}
.pd-filter-btn:hover { color: var(--foam); border-color: rgba(100,140,168,.5); }
.pd-filter-btn.active { color: var(--gold); border-color: rgba(200,145,42,.4); background: rgba(200,145,42,.06); }

/* Availability calendar */
.av-wrap {
  display: grid; grid-template-columns: 1fr 300px; gap: 24px;
  align-items: start;
}
@media (max-width: 760px) { .av-wrap { grid-template-columns: 1fr; } }
.av-cal {
  border: 1px solid rgba(26,61,92,.4); border-radius: 5px;
  padding: 20px; background: rgba(10,26,46,.35);
}
.av-cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.av-cal-btn {
  width: 32px; height: 32px; border: 1px solid rgba(26,61,92,.8);
  background: none; color: var(--dim); font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .3s, color .3s;
}
.av-cal-btn:hover { border-color: var(--gold); color: var(--gold-hi); }
.av-cal-btn:disabled { opacity: .3; cursor: default; }
.av-cal-btn:disabled:hover { border-color: rgba(26,61,92,.8); color: var(--dim); }
.av-cal-label {
  font-family: var(--f-display); font-size: 16px; letter-spacing: .08em;
  color: var(--foam); text-transform: uppercase;
}
.av-cal-weekdays, .av-cal-grid {
  display: grid; grid-template-columns: repeat(7,1fr); gap: 4px;
}
.av-cal-weekdays {
  margin-bottom: 6px; font-size: 9px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dim); text-align: center;
}
.av-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--foam); border: 1px solid rgba(26,61,92,.3);
  border-radius: 3px; cursor: pointer; background: rgba(200,145,42,.04);
  transition: border-color .2s, background .2s;
}
.av-day:hover { border-color: rgba(200,145,42,.6); }
.av-day.av-day-outside { color: var(--dim); background: none; opacity: .35; cursor: default; pointer-events: none; }
.av-day.av-day-past { color: var(--dim); opacity: .4; cursor: default; pointer-events: none; }
.av-day.av-day-full { background: rgba(26,61,92,.15); color: var(--dim); }
.av-day.av-day-selected { border-color: var(--gold); color: var(--gold-hi); background: rgba(200,145,42,.12); }
.av-cal-legend {
  display: flex; gap: 18px; margin-top: 14px; font-size: 10px;
  letter-spacing: .05em; color: var(--dim);
}
.av-legend-item { display: flex; align-items: center; gap: 6px; }
.av-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.av-dot-free { background: rgba(200,145,42,.7); }
.av-dot-full { background: rgba(106,143,168,.3); }
.av-panel {
  border: 1px solid rgba(26,61,92,.4); border-radius: 5px;
  padding: 20px; background: rgba(10,26,46,.35); min-height: 200px;
}
.av-panel-empty { font-size: 12px; color: var(--dim); text-align: center; padding: 40px 10px; }
.av-panel-date {
  font-family: var(--f-display); font-size: 15px; letter-spacing: .06em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.av-rooms-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.av-room-chip {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; padding: 8px 10px; border-radius: 3px;
  border: 1px solid rgba(26,61,92,.35);
}
.av-room-chip .av-room-status { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.av-room-chip.livre { color: var(--foam); }
.av-room-chip.livre .av-room-status { color: var(--gold); }
.av-room-chip.ocupado { color: var(--dim); background: rgba(26,61,92,.12); }
.av-room-chip.ocupado .av-room-status { color: var(--dim); }
.av-fallback {
  margin-top: 20px; text-align: center; font-size: 12px; color: var(--dim);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}

/* Rooms section header */
.pd-rooms-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-top: 60px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(26,61,92,.3); margin-bottom: 32px;
}
.pd-rooms-hd-title {
  font-family: var(--f-display); font-size: clamp(28px,4vw,46px);
  letter-spacing: .06em; color: var(--foam); line-height: 1;
}
.pd-rooms-hd-sub { font-size: 11px; color: var(--dim); margin-top: 6px; }
.pd-quickinfo {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim);
  align-items: flex-end;
}
.pd-quickinfo b { color: var(--foam); font-weight: 600; display: block; font-size: 11px; margin-top: 3px; }

/* Estrutura blocks */
.pd-est-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  border: 1px solid rgba(26,61,92,.35);
  overflow: hidden;
  min-height: 360px;
}
.pd-est-photo {
  position: relative;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s var(--ease-expo);
}
.pd-est-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,8,13,.45) 0%, rgba(13,30,48,.25) 100%);
}
.pd-est-photo.loaded { opacity: 1; }
.pd-est-num {
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--f-display);
  font-size: 72px;
  color: rgba(232,184,75,.13);
  letter-spacing: -.02em;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.pd-est-items {
  padding: 40px 36px;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pd-est-eyebrow {
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.pd-est-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.pd-est-item {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 0 14px; align-items: flex-start;
  padding: 17px 0; border-bottom: 1px solid rgba(26,61,92,.3);
}
.pd-est-item:last-child { border-bottom: none; }
.pd-est-icon { font-size: 20px; line-height: 1.3; }
.pd-est-name {
  font-family: var(--f-display); font-size: 17px;
  letter-spacing: .06em; color: var(--gold-hi); margin-bottom: 4px;
}
.pd-est-desc { font-size: 11px; color: var(--dim); line-height: 1.65; }
@media (max-width: 768px) {
  .pd-est-block { grid-template-columns: 1fr; }
  .pd-est-photo { min-height: 220px; }
  .pd-est-block .pd-est-photo:last-child { order: -1; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE: ESCOLA
═══════════════════════════════════════════════════════════════ */
.packages-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.pkg-card {
  background: var(--deep);
  border: 1px solid rgba(26,61,92,.6);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .35s, transform .45s var(--ease-expo);
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,var(--gold),var(--gold-hi),var(--gold));
  transform: scaleX(0);
  transition: transform .5s var(--ease-expo);
}
.pkg-card:hover { border-color: rgba(200,145,42,.35); transform: translateY(-4px); }
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-card.featured { border-color: rgba(200,145,42,.35); }
.pkg-card.featured::before { transform: scaleX(1); }
.pkg-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 7px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,145,42,.4);
  padding: 3px 8px;
}
.pkg-name {
  font-family: var(--f-display);
  font-size: clamp(28px,3vw,40px);
  letter-spacing: .05em;
  line-height: 1;
  margin-top: 8px;
}
.pkg-price {
  font-family: var(--f-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--gold-hi);
  margin-top: 12px;
}
.pkg-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pkg-list li {
  font-size: 12px;
  color: var(--dim);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.pkg-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* IKO badge */
.iko-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(200,145,42,.3);
  padding: 10px 18px;
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE: BLOG
═══════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.blog-main { display: flex; flex-direction: column; gap: 16px; }
.blog-side  { display: flex; flex-direction: column; gap: 12px; }

.blog-card-featured {
  background: var(--deep);
  border: 1px solid rgba(26,61,92,.6);
  overflow: hidden;
  transition: border-color .3s;
}
.blog-card-featured:hover { border-color: rgba(200,145,42,.35); }
.blog-thumb-featured {
  height: 280px;
  background: linear-gradient(135deg,var(--ocean),var(--horizon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: rgba(196,218,232,.1);
  position: relative;
  overflow: hidden;
}
.blog-thumb-featured img { width: 100%; height: 100%; object-fit: cover; }
.blog-info { padding: 24px; }
.blog-tag {
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.blog-title {
  font-family: var(--f-display);
  font-size: clamp(24px,3vw,36px);
  letter-spacing: .04em;
  line-height: 1;
  transition: color .3s;
}
.blog-card-featured:hover .blog-title { color: var(--gold-hi); }
.blog-excerpt {
  font-size: 13px;
  color: var(--dim);
  margin-top: 10px;
  line-height: 1.7;
}
.blog-meta {
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(106,143,168,.5);
  margin-top: 16px;
}

.blog-card-small {
  background: var(--deep);
  border: 1px solid rgba(26,61,92,.6);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .3s;
}
.blog-card-small:hover { border-color: rgba(200,145,42,.3); }
.blog-thumb-small {
  width: 72px; height: 72px;
  background: var(--ocean);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(196,218,232,.2);
}
.blog-small-title {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--foam);
  line-height: 1.4;
  transition: color .3s;
}
.blog-card-small:hover .blog-small-title { color: var(--gold-hi); }
.blog-small-meta { font-size: 9px; color: var(--dim); margin-top: 4px; letter-spacing: .1em; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (hover: none), (pointer: coarse) {
  /* Touch devices: hide custom cursor elements */
  #cur-dot, #cur-ring, #cur-text { display: none !important; }
}

@media (max-width: 960px) {
  .spot-snap     { grid-template-columns: 1fr; }
/* Blog snap — cards compactos para caber em 100vh */
.blog-snap .article-card-thumb   { height: 110px; font-size: 36px; }
.blog-snap .article-card-body    { padding: 12px 14px 14px; }
.blog-snap .article-card-title   { font-size: 13px; margin-bottom: 4px; -webkit-line-clamp: 2; }
.blog-snap .article-card-excerpt { -webkit-line-clamp: 2; font-size: 12px; }
.blog-snap .article-card-meta    { margin-top: 8px; }
.blog-snap > div:first-child      { margin-bottom: 16px; }
  .spot-left     { min-height: 40vh; height: auto; }
  .spot-right    { height: auto; }
  .exp-snap      { grid-template-columns: 1fr; background: var(--void); }
  .exp-card      { min-height: 25vh; }
  .packages-layout { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .rooms-layout  { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2,1fr); }
  .counter-grid  { grid-template-columns: repeat(2,1fr); }
  .nav-main      { display: none; }
  .nav-burger    { display: flex; }
  #cur-dot, #cur-ring, #cur-text { display: none; }
}
@media (max-width: 600px) {
  .hero-stats    { gap: 20px; }
  .h-divider     { height: 32px; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .form-grid     { grid-template-columns: 1fr; }
  .gr-snap { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .gr-left { height: auto; border-right: none; border-bottom: 1px solid rgba(26,61,92,.45); padding: 28px 20px 24px; flex-direction: row; flex-wrap: wrap; gap: 16px; align-items: center; }
  .gr-google-logo { margin-bottom: 0; }
  .gr-score-big { font-size: 52px; }
  .gr-right { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   CINEMATIC PAGE HEROES — shared pattern
═══════════════════════════════════════════════════════════════ */
.cin-header {
  position: relative;
  height: 68vh; min-height: 440px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(24px,7vw,120px) 60px;
  overflow: hidden;
}
.cin-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease-expo);
}
.cin-bg.loaded { opacity: 1; }
.cin-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(5,8,13,1) 0%, rgba(5,8,13,.6) 45%, rgba(5,8,13,.2) 100%);
}
.cin-watermark {
  position: absolute; bottom: -0.05em; left: clamp(16px,4vw,60px); z-index: 2;
  font-family: var(--f-display); font-size: clamp(110px,16vw,220px);
  color: transparent; -webkit-text-stroke: 1px rgba(200,145,42,.12);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -0.02em;
}
.cin-inner { position: relative; z-index: 3; }
.cin-eyebrow {
  font-family: var(--f-body); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.cin-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.cin-title {
  font-family: var(--f-display); font-size: clamp(56px,9vw,130px);
  line-height: .92; color: var(--white); margin: 0;
}
.cin-title em { font-style: normal; color: var(--gold-hi); }
.cin-lead {
  font-family: var(--f-body); font-size: clamp(14px,1.4vw,16px);
  color: var(--dim); max-width: 52ch; margin-top: 18px; line-height: 1.7;
}
.cin-body { min-height: 50vh; }
.cin-body-pad { padding: clamp(40px,6vw,80px) clamp(20px,7vw,120px) 80px; }

/* ═══════════════════════════════════════════════════════════════
   PAGE: COMO CHEGAR
═══════════════════════════════════════════════════════════════ */
#page-como-chegar { overflow-y: auto; }

.cg-hero {
  position: relative;
  height: 70vh; min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(24px,7vw,120px) 56px;
  overflow: hidden;
}
.cg-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease-expo);
}
.cg-hero-bg.loaded { opacity: 1; }
.cg-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(5,8,13,1) 0%, rgba(5,8,13,.55) 55%, rgba(5,8,13,.25) 100%);
}
.cg-hero-inner { position: relative; z-index: 3; }

.cg-body { background: var(--void); padding-bottom: 100px; }

.cg-step {
  padding: 68px clamp(24px,7vw,120px);
  border-bottom: 1px solid rgba(200,145,42,.08);
}
.cg-step-head {
  display: flex; align-items: flex-start; gap: 28px;
  margin-bottom: 40px;
}
.cg-step-num {
  font-family: var(--f-display);
  font-size: 96px; line-height: .82;
  color: rgba(200,145,42,.12);
  flex-shrink: 0; user-select: none;
}
.cg-step-text { padding-top: 6px; }
.cg-step-eyebrow {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.cg-step-title {
  font-family: var(--f-display);
  font-size: clamp(28px,4vw,52px); letter-spacing: .06em;
  color: var(--white); line-height: 1;
  margin-bottom: 10px;
}
.cg-step-sub { font-size: 13px; color: var(--dim); }

.cg-airport-tag {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(200,145,42,.06); border: 1px solid rgba(200,145,42,.3);
  padding: 10px 20px; margin-bottom: 32px;
}
.cg-airport-code {
  font-family: var(--f-display); font-size: 32px;
  color: var(--gold-hi); letter-spacing: .12em;
}
.cg-airport-name { font-size: 11px; color: var(--dim); line-height: 1.4; }

.cg-origins { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cg-origin {
  background: var(--ocean); border: 1px solid rgba(26,61,92,.5);
  padding: 30px 32px;
}
.cg-origin-flag { font-size: 26px; margin-bottom: 10px; }
.cg-origin-title {
  font-family: var(--f-display); font-size: 20px;
  letter-spacing: .08em; color: var(--white); margin-bottom: 20px;
}
.cg-flight-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.cg-flight-item {
  font-size: 13px; color: var(--dim); line-height: 1.55;
  border-left: 2px solid rgba(200,145,42,.2); padding-left: 14px;
}
.cg-flight-item strong { color: var(--white); display: block; font-weight: 500; font-size: 13px; }
.cg-flight-tag {
  display: inline-block; font-size: 9px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(200,145,42,.08); border: 1px solid rgba(200,145,42,.25);
  padding: 2px 7px; margin-top: 3px;
}

.cg-transfer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cg-transfer-card {
  background: var(--ocean); border: 1px solid rgba(26,61,92,.5);
  padding: 32px 28px; position: relative;
  transition: border-color .3s, transform .3s;
  display: flex; flex-direction: column;
}
.cg-transfer-card:hover { border-color: rgba(200,145,42,.3); transform: translateY(-4px); }
.cg-transfer-card.featured {
  border-color: rgba(200,145,42,.45);
  background: linear-gradient(160deg, rgba(200,145,42,.07) 0%, var(--ocean) 60%);
}
.cg-transfer-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi), var(--gold));
}
.cg-tc-icon { font-size: 30px; margin-bottom: 16px; }
.cg-tc-title {
  font-family: var(--f-display); font-size: 20px;
  letter-spacing: .07em; color: var(--white); margin-bottom: 6px;
}
.cg-tc-time {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.cg-tc-detail { font-size: 13px; color: var(--dim); line-height: 1.65; flex: 1; }
.cg-tc-cta { margin-top: 24px; }

.cg-map-wrap {
  margin: 68px clamp(24px,7vw,120px) 0;
  border: 1px solid rgba(200,145,42,.2); overflow: hidden;
}
.cg-map-wrap iframe {
  display: block; width: 100%; height: 420px;
  filter: invert(1) hue-rotate(180deg) saturate(0.7) brightness(0.85);
}

.cg-cta-bar {
  margin: 0 clamp(24px,7vw,120px);
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(200,145,42,.08), rgba(8,13,20,.9));
  border: 1px solid rgba(200,145,42,.25); border-top: none;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cg-cta-text { }
.cg-cta-label {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.cg-cta-title {
  font-family: var(--f-display); font-size: clamp(20px,3vw,32px);
  letter-spacing: .05em; color: var(--white);
}

@media (max-width: 768px) {
  .cg-origins        { grid-template-columns: 1fr; }
  .cg-transfer-grid  { grid-template-columns: 1fr; }
  .cg-step-num       { font-size: 64px; }
  .cg-cta-bar        { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE: FAQ
═══════════════════════════════════════════════════════════════ */
#page-faq { overflow-y: auto; }

.fq-hero {
  position: relative; height: 65vh; min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(24px,7vw,120px) 52px; overflow: hidden;
}
.fq-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease-expo);
}
.fq-hero-bg.loaded { opacity: 1; }
.fq-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(5,8,13,1) 0%, rgba(5,8,13,.55) 55%, rgba(5,8,13,.2) 100%);
}
.fq-hero-inner { position: relative; z-index: 3; }
.fq-body { background: var(--void); padding-bottom: 100px; }

.fq-tabs {
  display: flex; border-bottom: 1px solid rgba(200,145,42,.15);
  padding: 0 clamp(24px,7vw,120px);
  overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none;
}
.fq-tabs::-webkit-scrollbar { display: none; }
.fq-tab {
  background: none; border: none; border-bottom: 2px solid transparent;
  padding: 20px 22px 18px; margin-bottom: -1px;
  font-family: var(--f-body); font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--dim); white-space: nowrap;
  transition: color .3s, border-color .3s; cursor: pointer;
}
.fq-tab:hover { color: var(--white); }
.fq-tab.active { color: var(--gold-hi); border-bottom-color: var(--gold); }
.fq-group { display: none; padding: 0 clamp(24px,7vw,120px); }
.fq-group.active { display: block; }
.fq-item { border-bottom: 1px solid rgba(26,61,92,.4); }
.fq-question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; text-align: left; cursor: pointer;
}
.fq-q-text {
  font-family: var(--f-serif); font-size: clamp(15px,1.8vw,18px);
  font-weight: 400; color: var(--white); line-height: 1.35; transition: color .3s;
}
.fq-question:hover .fq-q-text { color: var(--gold-hi); }
.fq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(200,145,42,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1; color: var(--gold);
  transition: transform .38s var(--ease-expo), background .3s, border-color .3s;
}
.fq-item.open .fq-icon { transform: rotate(45deg); background: rgba(200,145,42,.1); border-color: var(--gold); }
.fq-answer { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-expo); }
.fq-item.open .fq-answer { max-height: 600px; }
.fq-answer-inner {
  padding: 4px 0 28px; font-size: 14px;
  color: var(--dim); line-height: 1.78; max-width: 72ch;
}
.fq-answer-inner a { color: var(--gold); border-bottom: 1px solid rgba(200,145,42,.3); }
.fq-answer-inner a:hover { color: var(--gold-hi); border-bottom-color: var(--gold-hi); }
.fq-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(200,145,42,.05); border-left: 2px solid rgba(200,145,42,.35);
  padding: 10px 14px; margin-top: 14px;
  font-size: 12px; color: var(--dim); line-height: 1.6;
}
.fq-cta {
  margin: 56px clamp(24px,7vw,120px) 0; padding: 40px 48px;
  background: linear-gradient(135deg, rgba(200,145,42,.07), rgba(8,13,20,.9));
  border: 1px solid rgba(200,145,42,.2);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
@media (max-width: 768px) {
  .fq-tab { padding: 16px 14px 14px; font-size: 9px; letter-spacing: .15em; }
  .fq-cta { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   WIND CALENDAR BARS
═══════════════════════════════════════════════════════════════ */
.wind-bar {
  background: linear-gradient(to top, rgba(106,143,168,.5), rgba(106,143,168,.15));
  border: 1px solid rgba(106,143,168,.3);
  border-radius: 1px;
  position: relative;
  transition: background .3s;
  cursor: default;
}
.wind-bar:hover {
  background: linear-gradient(to top, rgba(200,145,42,.6), rgba(200,145,42,.2));
}


/* ═══════════════════════════════════════════════════════════════
   BLOG SYSTEM v2.2
═══════════════════════════════════════════════════════════════ */

/* Carrossel de artigos na home */
.article-carousel { position:relative; overflow:hidden; }
.article-track {
  display:flex;
  gap:20px;
  transition:transform .6s cubic-bezier(0.16,1,0.3,1);
}
.article-card {
  flex:0 0 calc(33.333% - 14px);
  min-width:280px;
  border:1px solid rgba(200,145,42,.15);
  background:var(--deep);
  cursor:pointer;
  transition:border-color .3s, transform .3s;
  position:relative;
  overflow:hidden;
}
.article-card:hover { border-color:rgba(200,145,42,.4); transform:translateY(-3px); }
.article-card-thumb {
  height:160px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:52px;
  background:linear-gradient(135deg,var(--ocean),var(--mid));
  position:relative;
}
.article-card-cat {
  position:absolute;
  top:12px;
  left:12px;
  font-size:8px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  background:rgba(5,8,13,.7);
  padding:4px 8px;
  border:1px solid rgba(200,145,42,.3);
}
.article-card-body { padding:18px 20px 20px; }
.article-card-title {
  font-family:var(--f-serif);
  font-size:16px;
  font-weight:400;
  color:var(--white);
  line-height:1.45;
  margin-bottom:8px;
}
.article-card-excerpt {
  font-size:11px;
  color:var(--dim);
  line-height:1.65;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.article-card-meta {
  margin-top:12px;
  font-size:9px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(106,143,168,.6);
}
.carousel-btn {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:36px;
  height:36px;
  border:1px solid rgba(200,145,42,.3);
  background:rgba(5,8,13,.85);
  color:var(--gold);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  z-index:10;
  transition:background .2s;
}
.carousel-btn:hover { background:rgba(200,145,42,.15); }
.carousel-btn.prev { left:0; }
.carousel-btn.next { right:0; }

/* Página artigo completo */
#page-article {
  background:var(--deep);
  min-height:100vh;
}
.article-hero {
  padding:120px clamp(20px,7vw,120px) 60px;
  border-bottom:1px solid rgba(200,145,42,.1);
}
.article-body-wrap {
  max-width:760px;
  margin:0 auto;
  padding:60px clamp(20px,5vw,80px);
}
.article-section { margin-bottom:48px; }
.article-section h2 {
  font-family:var(--f-display);
  font-size:clamp(22px,3vw,32px);
  letter-spacing:.06em;
  color:var(--gold-hi);
  margin-bottom:16px;
}
.article-section p {
  font-family:var(--f-body);
  font-size:15px;
  line-height:1.85;
  color:rgba(196,218,232,.8);
  white-space:pre-line;
}
.article-back {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:10px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  text-decoration:none;
  cursor:pointer;
  margin-bottom:32px;
  transition:opacity .2s;
}
.article-back:hover { opacity:.7; }
.article-cat-badge {
  display:inline-block;
  font-size:9px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  border:1px solid rgba(200,145,42,.3);
  padding:4px 10px;
  margin-bottom:16px;
}
.article-title-hero {
  font-family:var(--f-serif);
  font-size:clamp(32px,5vw,64px);
  font-weight:300;
  color:var(--white);
  line-height:1.2;
  margin-bottom:16px;
}
.article-subtitle-hero {
  font-size:16px;
  color:var(--dim);
  font-style:italic;
  margin-bottom:24px;
}
.article-meta-hero {
  font-size:10px;
  letter-spacing:.15em;
  color:rgba(106,143,168,.6);
  text-transform:uppercase;
}

/* Blog page — filtros de categoria */
.blog-filters {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:32px;
}
.blog-filter-btn {
  font-size:9px;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:6px 14px;
  border:1px solid rgba(106,143,168,.25);
  background:transparent;
  color:var(--dim);
  cursor:pointer;
  transition:all .2s;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  border-color:rgba(200,145,42,.5);
  color:var(--gold);
}






.admin-field label {
  display:block;
  font-size:9px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:6px;
}
.admin-field select,
.admin-field input,
.admin-field textarea {
  width:100%;
  background:var(--ocean);
  border:1px solid rgba(106,143,168,.2);
  color:var(--white);
  padding:10px 14px;
  font-family:var(--f-body);
  font-size:13px;
  outline:none;
  transition:border-color .2s;
}
.admin-field select:focus,
.admin-field input:focus,
.admin-field textarea:focus { border-color:rgba(200,145,42,.5); }
.admin-field textarea { min-height:200px; resize:vertical; }

.admin-preview h3 {
  font-family:var(--f-display);
  color:var(--gold-hi);
  margin-bottom:12px;
  font-size:20px;
}
.admin-preview p {
  font-size:13px;
  color:var(--dim);
  line-height:1.8;
  white-space:pre-line;
}
.admin-ai-status {
  font-size:11px;
  color:var(--gold);
  font-style:italic;
  min-height:20px;
}

@keyframes fu {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fi {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Fundos de seção (home) ─────────────────────────────── */
.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-sine);
}
.section-bg.loaded { opacity: 1; }
.section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,8,13,0.72) 0%,
    rgba(5,8,13,0.55) 40%,
    rgba(5,8,13,0.72) 100%
  );
}
/* Seções com bg precisam de z-index nos filhos */
.has-section-bg > *:not(.section-bg) { position: relative; z-index: 1; }


  .wf-setup-grid  { grid-template-columns: 1fr 1fr; }
  .wf-profiles    { grid-template-columns: 1fr; }
  .wf-hero-content { max-width: 100%; }
  .wf-kite-svg    { display: none; }
}
@media (max-width: 600px) {
  .wf-setup-grid  { grid-template-columns: 1fr; }
  .wf-compare-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESTAURANTE — cinematic layout (v2.18.0)
═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.rt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #050208;
}
.rt-hero-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.rt-hero-ov {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,2,8,.52) 0%, rgba(5,2,8,.08) 40%, rgba(5,2,8,.78) 100%),
    linear-gradient(110deg, rgba(5,2,8,.88) 0%, transparent 52%);
}
.rt-hero-glow {
  position: absolute;
  bottom: 0; right: 0;
  width: 65%; height: 60%;
  background: radial-gradient(ellipse at 80% 100%, rgba(200,70,12,.24) 0%, transparent 62%);
  pointer-events: none;
}
.rt-hero-word {
  position: absolute;
  bottom: -12px; right: -10px;
  font-family: var(--f-display);
  font-size: clamp(72px, 13vw, 190px);
  letter-spacing: .04em;
  line-height: .82;
  color: rgba(200,145,42,.045);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.rt-embers { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.rt-ember {
  position: absolute;
  border-radius: 50%;
  animation: rt-ember-rise linear infinite;
}
@keyframes rt-ember-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: .45; }
  100% { transform: translateY(-90vh) translateX(var(--rt-drift,0px)); opacity: 0; }
}
.rt-hero-content {
  position: relative; z-index: 4;
  padding: clamp(110px,14vh,160px) clamp(24px,7vw,120px) clamp(64px,9vh,110px);
  max-width: 720px;
}
.rt-hero-eyebrow {
  font-size: 9px; font-weight: 500;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
  opacity: 0; animation: fu .8s var(--ease-expo) .4s forwards;
}
.rt-hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.rt-hero-title {
  font-family: var(--f-display);
  font-size: clamp(60px, 11vw, 136px);
  line-height: .88; letter-spacing: .02em;
  color: var(--foam);
  margin-bottom: 26px;
  opacity: 0; animation: fu 1s var(--ease-expo) .6s forwards;
}
.rt-hero-title em { color: var(--gold-hi); font-style: normal; }
.rt-hero-lead {
  font-family: var(--f-serif);
  font-size: clamp(15px, 1.7vw, 20px);
  font-style: italic;
  color: rgba(196,218,232,.7);
  line-height: 1.65; max-width: 460px;
  margin-bottom: 34px;
  opacity: 0; animation: fu .8s var(--ease-expo) 1s forwards;
}
.rt-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
  opacity: 0; animation: fu .8s var(--ease-expo) 1.2s forwards;
}
.rt-badge {
  font-size: 9px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(200,145,42,.3);
  color: var(--gold); background: rgba(200,145,42,.06);
}
.rt-hero-cta { opacity: 0; animation: fu .8s var(--ease-expo) 1.4s forwards; }
.rt-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .38; z-index: 4; pointer-events: none;
}
.rt-scroll-hint span { font-size: 8px; letter-spacing: .26em; text-transform: uppercase; color: var(--foam); }
.rt-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: rt-scroll-pulse 2s ease-in-out infinite;
}
@keyframes rt-scroll-pulse {
  0%,100% { opacity: .38; transform: scaleY(1) translateY(0); }
  50%      { opacity: .85; transform: scaleY(1.18) translateY(4px); }
}

/* ── Chapters (day moments) ── */
.rt-chapter {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 85vh;
}
.rt-chapter--flip { grid-template-columns: 2fr 3fr; }
.rt-ch-photo {
  position: relative; overflow: hidden;
  background: var(--deep); min-height: 420px;
}
.rt-ch-photo-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 9s ease-out;
}
.rt-chapter:hover .rt-ch-photo-img { transform: scale(1.05); }
.rt-ch-photo-grad { position: absolute; inset: 0; }
.rt-ch-num {
  position: absolute;
  font-family: var(--f-display);
  font-size: clamp(100px, 16vw, 200px);
  line-height: .85;
  color: rgba(200,145,42,.085);
  letter-spacing: .02em;
  pointer-events: none; user-select: none;
}
.rt-ch-num--tl { top: 16px; left: 20px; }
.rt-ch-num--tr { top: 16px; right: 20px; text-align: right; }
.rt-ch-text {
  background: var(--deep);
  padding: clamp(40px,5vw,72px) clamp(28px,3.5vw,56px);
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid rgba(200,145,42,.07);
}
.rt-chapter--flip .rt-ch-text {
  border-left: none;
  border-right: 1px solid rgba(200,145,42,.07);
  order: -1;
}
.rt-ch-time {
  font-size: 9px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.rt-ch-time::before {
  content: ''; display: block;
  width: 18px; height: 1px; background: var(--gold);
}
.rt-ch-title {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.8vw, 50px);
  letter-spacing: .04em; line-height: .94;
  color: var(--foam); margin-bottom: 22px;
}
.rt-ch-lead {
  font-size: 13px; color: var(--dim);
  line-height: 1.9; margin-bottom: 28px;
  max-width: 36ch;
}
.rt-menu {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.rt-menu li {
  font-size: 11px; color: var(--dim);
  padding: 8px 0;
  border-bottom: 1px solid rgba(26,61,92,.32);
  display: flex; align-items: center; gap: 8px;
  transition: color .3s;
}
.rt-menu li:hover { color: var(--foam); }
.rt-incl-tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px;
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(200,145,42,.5);
}

/* ── Night — full-bleed chapter ── */
.rt-night {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden; background: #040208;
}
.rt-night-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 9s ease-out;
}
.rt-night:hover .rt-night-photo { transform: scale(1.04); }
.rt-night-ov {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(4,2,8,.94) 0%, rgba(4,2,8,.55) 50%, rgba(4,2,8,.88) 100%),
    linear-gradient(0deg, rgba(4,2,8,.8) 0%, transparent 45%);
}
.rt-night-fire {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 72% 88%, rgba(195,55,10,.3) 0%, transparent 52%);
  pointer-events: none;
}
.rt-night-num {
  position: absolute;
  bottom: -24px; right: 32px;
  font-family: var(--f-display);
  font-size: clamp(120px, 22vw, 280px);
  line-height: .82;
  color: rgba(195,55,10,.065);
  pointer-events: none; user-select: none;
}
.rt-night-content {
  position: relative; z-index: 2;
  padding: clamp(64px,9vh,110px) clamp(24px,7vw,120px);
  max-width: 600px;
}

/* ── Scrolling marquee strip ── */
.rt-strip {
  background: var(--gold);
  overflow: hidden; padding: 13px 0;
}
.rt-strip-track {
  display: flex; width: max-content;
  animation: rt-strip-roll 30s linear infinite;
}
.rt-strip-seg {
  font-family: var(--f-display);
  font-size: 12px; letter-spacing: .28em;
  color: var(--void);
  padding: 0 44px; white-space: nowrap;
}
.rt-strip-dot { color: rgba(5,8,13,.35); }
@keyframes rt-strip-roll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Hours ── */
.rt-hours {
  background: var(--void);
  padding: 80px clamp(24px,7vw,100px);
}
.rt-hours-hd { text-align: center; margin-bottom: 52px; }
.rt-hours-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1px; background: rgba(26,61,92,.18);
  max-width: 920px; margin: 0 auto;
}
.rt-hour-card {
  background: var(--void);
  padding: 30px 18px; text-align: center;
  transition: background .3s;
}
.rt-hour-card:hover { background: var(--deep); }
.rt-hour-icon { font-size: 22px; margin-bottom: 14px; }
.rt-hour-label {
  font-family: var(--f-display);
  font-size: 10px; letter-spacing: .14em;
  color: var(--gold); margin-bottom: 10px; line-height: 1.25;
}
.rt-hour-time {
  font-family: var(--f-display);
  font-size: 28px; color: var(--foam);
  letter-spacing: .04em; margin-bottom: 8px;
}
.rt-hour-note {
  font-size: 9px; color: rgba(106,143,168,.45);
  letter-spacing: .1em; text-transform: uppercase;
}
.rt-guest-note {
  max-width: 920px; margin: 28px auto 0;
  padding: 18px 24px;
  background: rgba(200,145,42,.04);
  border: 1px solid rgba(200,145,42,.11);
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; color: var(--dim); line-height: 1.7;
}

/* ── Quote ── */
.rt-quote {
  position: relative;
  min-height: 56vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--deep);
}
.rt-quote-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .14;
}
.rt-quote-ov {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--deep) 0%, transparent 28%, transparent 72%, var(--deep) 100%);
}
.rt-quote-word {
  position: absolute;
  font-family: var(--f-display);
  font-size: clamp(90px,17vw,230px);
  color: rgba(200,145,42,.035);
  pointer-events: none; user-select: none;
  letter-spacing: .04em; white-space: nowrap;
}
.rt-quote-inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: 56px clamp(24px,8vw,120px);
  max-width: 680px;
}
.rt-quote-mark {
  font-family: var(--f-serif);
  font-size: 54px; color: var(--gold);
  line-height: .6; margin-bottom: 14px;
}
.rt-quote-text {
  font-family: var(--f-serif);
  font-size: clamp(18px,2.2vw,26px);
  font-style: italic; color: var(--foam);
  line-height: 1.65; margin-bottom: 22px;
}
.rt-quote-cite {
  font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--dim);
}

/* ── CTA ── */
.rt-cta {
  background: var(--deep);
  padding: 80px clamp(24px,7vw,100px);
  border-top: 1px solid rgba(200,145,42,.08);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.rt-cta-label { margin-bottom: 16px; }
.rt-cta-title {
  font-family: var(--f-display);
  font-size: clamp(34px,4.5vw,60px);
  letter-spacing: .04em; color: var(--foam);
  line-height: .92; margin-bottom: 18px;
}
.rt-cta-body {
  font-size: 13px; color: var(--dim);
  line-height: 1.85; margin-bottom: 36px; max-width: 38ch;
}
.rt-cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.rt-cta-visual {
  position: relative;
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--ocean);
}
.rt-cta-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 9s ease-out;
}
.rt-cta-visual:hover .rt-cta-photo { transform: scale(1.05); }
.rt-cta-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,145,42,.1) 0%, transparent 55%);
  z-index: 1;
}
.rt-cta-tag {
  position: absolute; bottom: 0; left: 0;
  padding: 14px 18px;
  background: var(--void); z-index: 2;
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .rt-chapter, .rt-chapter--flip { grid-template-columns: 1fr; min-height: auto; }
  .rt-chapter--flip .rt-ch-text { order: 0; }
  .rt-ch-text { border-left: none !important; border-right: none !important; border-top: 1px solid rgba(200,145,42,.07); }
  .rt-ch-photo { min-height: 320px; }
  .rt-hours-grid { grid-template-columns: repeat(3,1fr); }
  .rt-cta { grid-template-columns: 1fr; gap: 40px; }
  .rt-cta-visual { aspect-ratio: 16/7; }
  .rt-night-content { max-width: 100%; }
}
@media (max-width: 600px) {
  .rt-menu { grid-template-columns: 1fr; }
  .rt-hours-grid { grid-template-columns: 1fr 1fr; }
  .rt-night-num { display: none; }
}

