/* ============================================
   NCW TURISMO — Premium
   Curadoria de Viagens · Hotéis · Experiências
   Vanessa Weber · Rio Grande do Sul
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary:        #215F78;
  --primary-light:  #2d718b;
  --primary-soft:   rgba(33,95,120,.08);
  --gold:           #EFE8D8;
  --gold-light:     #f8f3e8;
  --dark:           #173f50;
  --dark-deep:      #215F78;
  --dark-navy:      #215F78;
  --white:          #ffffff;
  --light:          #EFE8D8;
  --light-mid:      #e5dcc9;
  --muted:          #6b7280;
  --border:         rgba(17,17,39,.14);
  --border-dark:    rgba(255,255,255,.1);
  --serif:          'Marcellus', Georgia, serif;
  --sans:           'Inter', system-ui, sans-serif;
  --shadow:         0 2px 12px rgba(10,10,28,.07);
  --shadow-md:      0 6px 28px rgba(10,10,28,.12);
  --shadow-lg:      0 16px 48px rgba(10,10,28,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; background: #215F78; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ─── Typography ─────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #9a8459;
  display: block;
  margin-bottom: .9rem;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--dark);
}
h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
p { font-size: .93rem; line-height: 1.8; color: var(--muted); }

/* ─── Layout ─────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4rem); }
.section-pad { padding: clamp(5rem,8vw,8rem) 0; }
.section-intro {
  max-width: 600px;
  margin: 1rem 0 3rem;
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 100px;
  transition: background .3s, color .3s, transform .2s, box-shadow .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(17,17,39,.4);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: rgba(255,255,255,.92);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,.28);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1fb355;
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, #c8b48a 0%, #b09a6a 100%);
  color: #111127;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #d6c49c 0%, #c0aa7a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,180,138,.4);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(17,17,39,.4);
}
/* Em seções escuras o btn-dark vira dourado para contraste */
.manifesto-section .btn-dark,
.sobre-section .btn-dark {
  background: linear-gradient(135deg, #c8b48a 0%, #b09a6a 100%);
  color: #111127;
}
.manifesto-section .btn-dark:hover,
.sobre-section .btn-dark:hover {
  background: linear-gradient(135deg, #d6c49c 0%, #c0aa7a 100%);
  box-shadow: 0 6px 24px rgba(200,180,138,.4);
}

/* ─── LOADING SCREEN ─────────────────────── */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(145deg, #0a0a1c 0%, #111127 55%, #1a1a40 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity .5s;
}
.loading-logo-img { width: 150px; opacity: .92; }
.loading-bar-track {
  width: 160px; height: 1px;
  background: rgba(255,255,255,.18);
  position: relative; overflow: hidden;
}
.loading-bar-fill {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0%;
  background: var(--gold); transition: width .08s;
}
.loading-pct { font-size: .65rem; color: rgba(255,255,255,.45); letter-spacing: .14em; }

/* ─── REVEAL OVERLAY ─────────────────────── */
#reveal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: linear-gradient(145deg, #0a0a1c 0%, #111127 55%, #1a1a40 100%);
  clip-path: circle(150% at 50% 50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
#reveal-overlay img { width: 130px; opacity: 0; }

/* ─── HEADER ─────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: background .4s, padding .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .85rem 0;
  border-color: rgba(17,17,39,.1);
  box-shadow: 0 1px 24px rgba(10,10,28,.07);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.logo-light { height: 40px; width: auto; display: block; }
.logo-dark  { height: 40px; width: auto; display: none; }
#header.scrolled .logo-light { display: none; }
#header.scrolled .logo-dark  { display: block; }

nav.header-nav { display: flex; align-items: center; gap: 1.6rem; }
nav.header-nav a {
  font-size: .76rem; font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.82);
  transition: color .3s;
}
nav.header-nav a:hover { color: var(--white); }
#header.scrolled nav.header-nav a { color: var(--muted); }
#header.scrolled nav.header-nav a:hover { color: var(--primary); }
.header-cta {
  padding: .7rem 1.5rem; font-size: .72rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
}
.header-cta:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
#header.scrolled .header-cta {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
#header.scrolled .header-cta:hover { background: var(--primary-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.hamburger span { display: block; height: 1.5px; background: var(--white); transition: all .3s; transform-origin: center; }
#header.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile Nav ─────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--dark-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.6rem;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(1.8rem,5vw,2.6rem);
  font-weight: 400; color: rgba(255,255,255,.82); transition: color .3s;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .mobile-cta {
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  padding: .8rem 2rem; border-radius: 100px; margin-top: 1rem;
}

/* ─── HERO ───────────────────────────────── */
.hero-sequence { position: relative; height: 650vh; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: var(--dark-deep);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(10,10,28,.90) 0%, rgba(10,10,28,.55) 42%, rgba(10,10,28,.1) 66%, transparent 84%),
    linear-gradient(to top,   rgba(10,10,28,.72) 0%, rgba(10,10,28,.22) 46%, transparent 72%);
}
.hero-content {
  position: absolute;
  top: clamp(5.5rem, 16vh, 9rem);
  left: clamp(1.8rem, 5vw, 5rem);
  max-width: min(44vw, 540px);
  z-index: 10;
}
.hero-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(224,210,174,.9);
  display: block;
  margin-bottom: 1.1rem;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.8vw, 3.4rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white); margin-bottom: 1.1rem;
  text-shadow: 0 2px 28px rgba(0,0,0,.5), 0 1px 8px rgba(0,0,0,.35);
}
.hero-h1 em { font-style: italic; color: var(--gold-light); display: block; }
.hero-sub {
  font-size: .88rem; line-height: 1.75;
  color: rgba(255,255,255,.78); margin-bottom: 1.6rem;
  max-width: 400px;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.hero-actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.hero-actions .btn { padding: .78rem 1.6rem; font-size: .72rem; }
.hero-actions .btn-primary {
  background: var(--white); color: var(--dark);
}
.hero-actions .btn-primary:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 24px rgba(255,255,255,.25);
}
.hero-microcopy {
  margin-top: 1.2rem;
  font-size: .62rem; letter-spacing: .12em;
  color: rgba(255,255,255,.38); text-transform: uppercase;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.35); font-size: .56rem; letter-spacing: .2em;
  text-transform: uppercase; z-index: 10;
}
.scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,.18); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold-light);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:100%} }

/* ─── MARQUEE ────────────────────────────── */
.marquee-section {
  background: linear-gradient(135deg, #0a0a1c 0%, #111127 50%, #1a1a40 100%);
  padding: 1.1rem 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-outer { display: flex; overflow: hidden; }
.marquee-content {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding-right: 2.5rem; flex-shrink: 0;
  animation: marqueeScroll 52s linear infinite; white-space: nowrap;
}
.marquee-content.rev { animation-name: marqueeScrollRev; }
.marquee-content span { font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.marquee-content .dot { color: var(--gold-light); font-size: .4rem; opacity: .65; }
@keyframes marqueeScroll    { 0%{transform:translateX(0)}    100%{transform:translateX(-50%)} }
@keyframes marqueeScrollRev { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)}    }

/* ─── MANIFESTO ──────────────────────────── */
.manifesto-section {
  background: linear-gradient(160deg, #1a1a40 0%, #111127 60%, #0a0a1c 100%);
  text-align: center;
}
.manifesto-section .label { color: rgba(224,210,174,.85); }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 400; font-style: italic;
  line-height: 1.5; color: rgba(255,255,255,.95);
  margin: 1.2rem 0 1.6rem;
}
.manifesto-sub {
  font-size: .95rem; color: rgba(255,255,255,.6);
  max-width: 620px; margin: 0 auto 2.4rem;
}

/* ─── EXPERIÊNCIAS ───────────────────────── */
.experiencias-section { background: var(--white); }
.experiencias-section h2 { max-width: 600px; margin-top: .5rem; }
.experiencias-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.2rem;
}
.experiencia-card {
  background: var(--light);
  border: 1px solid rgba(17,17,39,.1);
  border-radius: 18px; padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.experiencia-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(17,17,39,.5));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.experiencia-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(200,180,138,.5); }
.experiencia-card:hover::before { transform: scaleX(1); }
.experiencia-card--wide { grid-column: span 2; }
.experiencia-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(17,17,39,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.experiencia-card h3 { font-size: .95rem; color: var(--dark); }
.experiencia-card p  { font-size: .84rem; color: var(--muted); }

/* ─── DESTINOS ───────────────────────────── */
.destinos-section {
  background: linear-gradient(160deg, #1a1a40 0%, #111127 60%, #0a0a1c 100%);
}
.destinos-section .label { color: rgba(224,210,174,.85); }
.destinos-section h2 { color: rgba(255,255,255,.95); max-width: 600px; margin-top: .5rem; }
.destinos-section .section-intro { color: rgba(255,255,255,.58); }
.destinos-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 1.4rem;
}
.destino-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.destino-card:hover { transform: translateY(-5px); box-shadow: 0 8px 36px rgba(0,0,0,.35); border-color: rgba(224,210,174,.3); }
.destino-img-wrap {
  position: relative; aspect-ratio: 16/11; overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.destino-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.8,.25,1);
}
.destino-card:hover .destino-img-wrap img { transform: scale(1.06); }
.destino-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(10,10,28,.55) 0%, transparent 55%);
}
.destino-body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: .6rem; flex: 1;
}
.destino-region {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(224,210,174,.85);
}
.destino-body h3 {
  font-family: var(--serif); font-size: 1.35rem;
  font-weight: 400; color: rgba(255,255,255,.95);
}
.destino-body > p { font-size: .84rem; color: rgba(255,255,255,.6); flex: 1; }

/* ── Reserva (booking) dentro do card ── */
.reserva-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%;
  margin-top: .8rem;
  padding: .8rem 1.2rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #c8b48a 0%, #ab935f 100%);
  color: #111127;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  transition: transform .2s, box-shadow .3s, background .3s;
}
.reserva-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200,180,138,.35);
}
.reserva-toggle svg { flex-shrink: 0; transition: transform .3s; }
.destino-card.reserva-open .reserva-toggle svg { transform: rotate(45deg); }

.reserva-panel {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .35s, margin .35s;
  margin-top: 0;
}
.destino-card.reserva-open .reserva-panel {
  max-height: 420px; opacity: 1; margin-top: 1.1rem;
}
.reserva-inner {
  border-top: 1px solid rgba(224,210,174,.2);
  padding-top: 1.1rem;
  display: flex; flex-direction: column; gap: .85rem;
}
.reserva-field { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.reserva-field-label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  display: flex; align-items: center; gap: .5rem;
}
.reserva-field-label svg { color: rgba(224,210,174,.8); flex-shrink: 0; }

.stepper {
  display: flex; align-items: center; gap: .1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px; padding: .2rem;
}
.stepper button {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(224,210,174,.9); font-size: 1rem; font-weight: 600;
  transition: background .2s, color .2s;
  line-height: 1;
}
.stepper button:hover { background: rgba(200,180,138,.2); color: #fff; }
.stepper button:disabled { opacity: .25; pointer-events: none; }
.stepper .stepper-value {
  min-width: 34px; text-align: center;
  font-size: .95rem; font-weight: 600; color: #fff;
  font-family: var(--serif);
}

.reserva-date {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #fff;
  font-family: var(--sans);
  font-size: .85rem;
  padding: .6rem .8rem;
  outline: none;
  width: 100%;
  transition: border-color .2s;
  color-scheme: dark;
}
.reserva-date:focus { border-color: rgba(224,210,174,.6); }
.reserva-field--date { flex-direction: column; align-items: stretch; gap: .5rem; }

.reserva-submit {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  width: 100%;
  padding: .95rem 1.2rem;
  border-radius: 100px;
  background: #25D366;
  color: #fff;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background .3s, transform .2s, box-shadow .3s;
  margin-top: .2rem;
}
.reserva-submit:hover {
  background: #1fb355;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,.35);
}
.reserva-note {
  font-size: .66rem; color: rgba(255,255,255,.35);
  text-align: center; letter-spacing: .04em;
}

.destinos-extra {
  margin-top: 3rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.destinos-extra p { color: rgba(255,255,255,.55); font-size: .88rem; max-width: 560px; }
.destinos-extra .btn-outline { border-color: rgba(224,210,174,.4); color: rgba(224,210,174,.9); }
.destinos-extra .btn-outline:hover { border-color: var(--gold-light); background: rgba(200,180,138,.12); }

/* ─── HOTÉIS ─────────────────────────────── */
.hoteis-section { background: var(--light); }
.hoteis-section h2 { max-width: 640px; margin-top: .5rem; }
.hotel-featured {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
  margin-top: 1rem;
}
.hotel-img-wrap {
  position: relative; border-radius: 20px;
  overflow: hidden; aspect-ratio: 4/3;
}
.hotel-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 20px; display: block;
  box-shadow: var(--shadow-md);
  transition: transform .7s cubic-bezier(.25,.8,.25,1);
}
.hotel-img-wrap:hover img { transform: scale(1.04); }
.hotel-location {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: #9a8459; display: block; margin-bottom: .6rem;
}
.hotel-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 400; color: var(--dark); margin-bottom: 1rem;
}
.hotel-content p + p { margin-top: .9rem; }
.hotel-detail { font-size: .84rem; }
.hotel-content .btn { margin-top: 1.6rem; }

/* ─── SOBRE ──────────────────────────────── */
.sobre-section {
  background: linear-gradient(160deg, #1a1a40 0%, #111127 60%, #0a0a1c 100%);
}
.sobre-section .label { color: rgba(224,210,174,.85); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 5rem; align-items: center;
}
.sobre-img-wrap {
  position: relative; border-radius: 20px;
  overflow: hidden; aspect-ratio: 3/4;
}
.sobre-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 12%;
  border-radius: 20px; display: block;
  box-shadow: var(--shadow-md);
}
.sobre-text h2 { color: rgba(255,255,255,.95); margin-bottom: 1.2rem; margin-top: .4rem; }
.sobre-text p { color: rgba(255,255,255,.62); }
.sobre-text p + p { margin-top: .9rem; }
.sobre-highlight {
  margin: 1.6rem 0; padding: 1.2rem 1.4rem;
  border: 1px solid rgba(224,210,174,.25);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(200,180,138,.08) 100%);
  position: relative; overflow: hidden;
}
.sobre-highlight strong {
  display: block; font-family: var(--serif); font-size: 1.15rem;
  font-weight: 400; color: var(--gold-light); margin-bottom: .3rem;
}
.sobre-highlight span { display: block; font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.sobre-text .btn { margin-top: .5rem; }
.sobre-text .btn-primary { background: var(--gold); color: var(--dark); }
.sobre-text .btn-primary:hover { background: var(--gold-light); box-shadow: 0 6px 24px rgba(200,180,138,.35); }

/* ─── LOCAL / SEO ────────────────────────── */
.local-section { background: var(--white); border-top: 1px solid var(--light-mid); }
.local-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: center;
}
.local-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: .5rem; margin-bottom: 1.2rem;
}
.local-address {
  display: flex; flex-direction: column; gap: .75rem;
  position: relative;
}
.local-address-item {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: 1rem 1.4rem;
  background: rgba(17,17,39,.04);
  border: 1px solid rgba(17,17,39,.12);
  border-radius: 12px;
  font-size: .88rem; color: var(--dark);
  font-weight: 500;
  transition: border-color .25s, background .25s;
  position: relative; overflow: hidden;
}
.local-address-item:hover { border-color: rgba(200,180,138,.5); background: rgba(200,180,138,.07); }
.local-address-item svg { flex-shrink: 0; margin-top: 2px; color: #9a8459; }
.local-address-item span { line-height: 1.6; }
.local-address-item a { transition: color .25s; }
.local-address-item a:hover { color: #9a8459; }

/* ─── CTA FINAL ──────────────────────────── */
.cta-final {
  background: linear-gradient(145deg, #0a0a1c 0%, #1a1a40 45%, #111127 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,180,138,.18), transparent 65%);
  pointer-events: none;
}
.cta-final .label { color: rgba(255,255,255,.55); }
.cta-final h2 { color: var(--white); max-width: 700px; margin: .5rem auto 1.2rem; }
.cta-final > .container > p { color: rgba(255,255,255,.78); max-width: 500px; margin: 0 auto 2.8rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-final .btn-outline { border-color: rgba(255,255,255,.4); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: linear-gradient(145deg, #05050f 0%, #0a0a1c 60%, #111127 100%);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
.footer-logo { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.65); max-width: 280px; line-height: 1.78; }
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem; background: #25D366; color: var(--white);
  padding: .65rem 1.25rem; border-radius: 100px; font-size: .76rem; font-weight: 600;
  transition: background .3s;
}
.footer-wa:hover { background: #1fb355; }
.footer-col h4 {
  font-size: .64rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
  margin-bottom: 1.1rem;
}
.footer-col a,
.footer-col address span {
  font-size: .82rem; color: rgba(255,255,255,.65);
  display: block; line-height: 2; font-style: normal; transition: color .25s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .7rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: .5rem;
}

/* ─── BOTÃO FLUTUANTE BOT ────────────────── */
#float-bot {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: transparent; border: none; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s, box-shadow .3s;
  pointer-events: none; outline: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
#float-bot.vis  { opacity: 1; transform: translateY(0); pointer-events: all; }
#float-bot.hide { opacity: 0 !important; transform: translateY(16px) !important; pointer-events: none !important; }
#float-bot:hover { transform: translateY(-3px) !important; }
.bot-avatar {
  width: 54px; height: 54px; min-width: 54px; min-height: 54px;
  border-radius: 50%; object-fit: cover; object-position: center 20%;
  display: block; pointer-events: none; position: relative; z-index: 2;
  border: 2px solid #fff; box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
#float-bot::before, #float-bot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: radar-pulse 2.4s ease-out infinite; pointer-events: none; z-index: 1;
}
#float-bot::after { animation-delay: 1.2s; }
@keyframes radar-pulse { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(2.2);opacity:0} }

/* ─── WEBCHAT WIDGET ─────────────────────── */
#kore-btn { display: none !important; }

/* ─── SPLASH CURSOR CANVAS ───────────────── */
#fluid {
  position: fixed; inset: 0; z-index: 9999;
  width: 100%; height: 100%;   /* 100% não inclui scrollbar, diferente de 100vw */
  display: block;
  pointer-events: none;
}

/* ─── MAGIC BENTO BORDER GLOW ───────────── */
.experiencia-card,
.destino-card,
.hotel-img-wrap,
.sobre-img-wrap,
.local-address-item,
.sobre-highlight,
.destino-img-wrap {
  --mouse-x: -999px;
  --mouse-y: -999px;
}
.experiencia-card,
.hotel-img-wrap,
.sobre-img-wrap,
.local-address-item,
.sobre-highlight { position: relative; }

/* Gold neon for dark-glass cards */
.destino-card::after,
.sobre-img-wrap::after,
.sobre-highlight::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: radial-gradient(
    336px circle at var(--mouse-x) var(--mouse-y),
    rgba(224, 200, 150, 1)  0%,
    rgba(200, 180, 138, .5) 42%,
    transparent             66%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 2;
}

/* Subtle navy-gold neon for light-bg cards */
.experiencia-card::after,
.hotel-img-wrap::after,
.local-address-item::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: radial-gradient(
    336px circle at var(--mouse-x) var(--mouse-y),
    rgba(170, 140, 80, .9)  0%,
    rgba(17, 17, 39, .45)   42%,
    transparent              66%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 2;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:1200px) {
  .experiencia-card--wide { grid-column: span 2; }
}

@media(max-width:1100px) {
  .hotel-featured { grid-template-columns: 1fr; gap: 3rem; }
  .local-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media(max-width:1024px) {
  .sobre-grid, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  nav.header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { max-width: min(56vw,480px); top: clamp(5rem,14vh,8rem); }
}

@media(max-width:768px) {
  #header { padding: .75rem 0; }
  #header.scrolled { padding: .65rem 0; }
  .header-inner { padding: 0 1.2rem; gap: .8rem; }
  .logo-light, .logo-dark { height: 32px; }
  .header-cta { padding: .6rem 1rem; font-size: .68rem; }
  .hamburger { flex-shrink: 0; }

  .hero-sequence { height: 320vh; }
  .hero-content { top: auto; bottom: clamp(4rem,8vh,7rem); left: 1.5rem; right: 1.5rem; max-width: 100%; }
  .hero-label { font-size: .55rem; }
  .hero-h1 { font-size: clamp(1.8rem,6vw,2.4rem); }
  .hero-sub { font-size: .84rem; }
  .hero-actions { gap: .6rem; flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { padding: .68rem 1.3rem; font-size: .68rem; }

  .experiencias-grid, .destinos-grid { grid-template-columns: 1fr; }
  .experiencia-card--wide { grid-column: span 1; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-img-wrap { aspect-ratio: 4/5; width: 100%; max-width: 320px; margin: 0 auto; }
  .hotel-featured { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .section-pad { padding: clamp(3.5rem,7vw,5rem) 0; }
  h2 { font-size: clamp(1.75rem,5.5vw,2.4rem); }
  .cta-actions { flex-direction: column; align-items: center; }
  #float-bot { bottom: 1rem; right: 1rem; width: 48px; height: 48px; }
  .bot-avatar { width: 48px; height: 48px; min-width: 48px; min-height: 48px; }
}

@media(max-width:540px) {
  .header-cta { display: none; }
  .hero-actions .btn { padding: .6rem 1rem; font-size: .64rem; }
  .experiencia-card { padding: 1.6rem 1.4rem; }
  .destino-body { padding: 1.3rem 1.3rem 1.5rem; }
}

@media(max-width:420px) {
  .hero-content { left: 1rem; right: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .experiencia-card { padding: 1.4rem 1.2rem; }
  h2 { font-size: clamp(1.6rem,5vw,2.2rem); }
  .container { padding: 0 1rem; }
}

@media(prefers-reduced-motion:reduce) {
  .marquee-content { animation: none; }
  .scroll-line::after { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ══════════════════════════════════════════════════════
   CONCIERGE NCW TURISMO — Chat widget
══════════════════════════════════════════════════════ */
#vip-chat {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: min(360px, calc(100vw - 2rem));
  max-height: 520px;
  background: #0a0a1c;
  border: 1px solid rgba(200,180,138,.35);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(200,180,138,.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s ease;
}
#vip-chat.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Header */
#vip-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem .9rem 1.1rem;
  background: linear-gradient(135deg, #111127 0%, #1a1a40 100%);
  border-bottom: 1px solid rgba(200,180,138,.25);
  flex-shrink: 0;
}
#vip-chat-identity { display: flex; align-items: center; gap: .7rem; }
#vip-chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid rgba(224,210,174,.45);
  flex-shrink: 0;
}
#vip-chat-name {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em;
}
#vip-chat-status {
  font-size: .68rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .1rem;
}
#vip-chat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  box-shadow: 0 0 6px #4ade80;
}
#vip-chat-close {
  background: rgba(255,255,255,.12);
  border: none;
  color: rgba(255,255,255,.8);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: .75rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
#vip-chat-close:hover { background: rgba(255,255,255,.25); color: #fff; }

/* Messages */
#vip-chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,180,138,.3) transparent;
}
#vip-chat-msgs::-webkit-scrollbar { width: 4px; }
#vip-chat-msgs::-webkit-scrollbar-thumb { background: rgba(200,180,138,.3); border-radius: 4px; }

.fcm-row {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  gap: .4rem;
}
.fcm-bot { align-self: flex-start; }
.fcm-user { align-self: flex-end; }

.fcm-bubble {
  padding: .65rem .85rem;
  border-radius: 14px;
  font-size: .82rem;
  line-height: 1.6;
  word-break: break-word;
}
.fcm-bot .fcm-bubble {
  background: #16162e;
  color: #e2e8f0;
  border-radius: 4px 14px 14px 14px;
  border: 1px solid rgba(255,255,255,.06);
}
.fcm-user .fcm-bubble {
  background: linear-gradient(135deg, #1a1a40, #111127);
  border: 1px solid rgba(200,180,138,.3);
  color: #fff;
  border-radius: 14px 4px 14px 14px;
}

/* Typing indicator */
.fcm-typing-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: .7rem .9rem !important;
}
.fcm-typing-bubble span {
  width: 7px; height: 7px;
  background: #64748b;
  border-radius: 50%;
  animation: fcm-bounce .9s infinite;
}
.fcm-typing-bubble span:nth-child(2) { animation-delay: .15s; }
.fcm-typing-bubble span:nth-child(3) { animation-delay: .3s; }
@keyframes fcm-bounce {
  0%,60%,100% { transform: translateY(0); }
  30%          { transform: translateY(-6px); }
}

/* CTA button inside chat */
.fcm-cta {
  background: rgba(200,180,138,.15);
  border: 1px solid rgba(200,180,138,.45);
  color: var(--gold-light);
  font-size: .74rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, color .2s;
  align-self: flex-start;
  letter-spacing: .01em;
}
.fcm-cta:hover { background: rgba(200,180,138,.35); color: #fff; }

/* Input area */
#vip-chat-form {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .9rem;
  border-top: 1px solid rgba(255,255,255,.07);
  background: #07071a;
  flex-shrink: 0;
}
#vip-chat-input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .55rem .8rem;
  font-size: .82rem;
  color: #e2e8f0;
  outline: none;
  font-family: var(--sans);
  transition: border-color .2s;
}
#vip-chat-input::placeholder { color: #475569; }
#vip-chat-input:focus { border-color: rgba(200,180,138,.6); }
#vip-chat-send {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gold);
  border: none;
  color: #111127;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
#vip-chat-send:hover { background: var(--gold-light); transform: scale(1.05); }
#vip-chat-send:active { transform: scale(.95); }

/* Mobile overlay backdrop */
#vip-chat-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 598;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#vip-chat-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

@media(max-width:600px) {
  #vip-chat {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 88vh;
    max-height: 88vh;
    border-radius: 20px 20px 0 0;
    border: none;
    border-top: 1px solid rgba(200,180,138,.3);
    box-shadow: 0 -8px 40px rgba(0,0,0,.6);
    transform: translateY(100%);
    opacity: 1;
    transition: transform .35s cubic-bezier(.32,1,.23,1);
    z-index: 599;
  }
  #vip-chat.open {
    transform: translateY(0);
    opacity: 1;
  }
  #vip-chat::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,.2);
    border-radius: 2px;
    margin: .65rem auto .1rem;
    flex-shrink: 0;
  }
  #vip-chat-header {
    padding: .65rem 1rem .75rem;
  }
  #vip-chat-avatar {
    width: 36px;
    height: 36px;
  }
  #vip-chat-name { font-size: .9rem; }
  #vip-chat-msgs {
    padding: .85rem 1rem;
    gap: .55rem;
  }
  .fcm-bubble { font-size: .84rem; padding: .6rem .8rem; }
  #vip-chat-form {
    padding: .65rem .9rem;
    padding-bottom: max(.65rem, env(safe-area-inset-bottom));
  }
  #vip-chat-input { font-size: 16px; padding: .6rem .75rem; }
  #vip-chat-send { width: 42px; height: 42px; flex-shrink: 0; }
  .fcm-row { max-width: 90%; }
  #vip-chat-backdrop { display: block; }
}

/* ═══ NCW TURISMO · AJUSTES SOLICITADOS ═══ */
#loading-screen,
#reveal-overlay,
footer { background: #EFE8D8; }

.loading-logo-img { width: 150px; max-width: min(42vw, 150px); height: auto; object-fit: contain; }
#reveal-overlay img { width: 130px; max-width: min(38vw, 130px); height: auto; object-fit: contain; }
.logo-light, .logo-dark { height: 40px; max-width: 180px; width: auto; object-fit: contain; }
.footer-logo { height: 48px; max-width: 200px; width: auto; object-fit: contain; }

#loading-screen .loading-bar-track { background: rgba(33,95,120,.2); }
#loading-screen .loading-bar-fill { background: #215F78; }
#loading-screen .loading-pct { color: rgba(33,95,120,.7); }

.manifesto-section,
.sobre-section,
.cta-final,
.marquee-section,
.destinos-section,
#vip-chat,
#vip-chat-header,
.fcm-user .fcm-bubble { background: #215F78; }

#header:not(.scrolled) { background: linear-gradient(90deg, rgba(239,232,216,.16), rgba(239,232,216,.04)); }
#header.scrolled { background: linear-gradient(110deg, #EFE8D8 0%, #f8f3e8 52%, #fff 100%); border-color: rgba(33,95,120,.16); }
#header.scrolled nav.header-nav a { color: #215F78; }
#header.scrolled .header-cta { background: #215F78; border-color: #215F78; }
.mobile-nav { background: linear-gradient(145deg, #EFE8D8 0%, #f8f3e8 55%, #fff 100%); }
.mobile-nav a { color: #215F78; }
.mobile-nav .mobile-cta { background: #215F78; color: #fff; }

.manifesto-section .btn-dark,
.sobre-section .btn-dark { background: linear-gradient(135deg, #EFE8D8, #fff); color: #215F78; }

footer { border-top-color: rgba(33,95,120,.16); }
.footer-tagline, .footer-col a, .footer-col address span { color: rgba(33,95,120,.78); }
.footer-col h4 { color: rgba(33,95,120,.58); }
.footer-col a:hover { color: #215F78; }
.footer-bottom { color: rgba(33,95,120,.62); border-top-color: rgba(33,95,120,.16); }

.reviews-section { background: #EFE8D8; border-top: 1px solid rgba(33,95,120,.12); }
.reviews-inner { max-width: 980px; }
.reviews-inner h2 { margin: .5rem 0 1rem; }
.reviews-card { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; margin-top: 2.5rem; padding: 1.7rem 1.8rem; background: linear-gradient(135deg,#fff,#f8f3e8); border: 1px solid rgba(33,95,120,.16); border-radius: 18px; box-shadow: 0 12px 36px rgba(33,95,120,.12); }
.google-mark { display:grid; place-items:center; width:52px; height:52px; border-radius:50%; background:#fff; color:#4285f4; font:700 1.8rem/1 var(--sans); box-shadow:0 4px 16px rgba(33,95,120,.12); }
.reviews-copy strong { display:block; color:#215F78; font-family:var(--serif); font-size:1.2rem; font-weight:400; }
.reviews-stars { color:#f4b400; letter-spacing:.12em; margin:.2rem 0; }
.reviews-copy span { color:var(--muted); font-size:.8rem; }

@media(max-width:768px) {
  .logo-light, .logo-dark { height: 32px; max-width: 145px; }
  .reviews-card { grid-template-columns:auto 1fr; padding:1.4rem; }
  .reviews-card .btn { grid-column:1/-1; justify-self:stretch; text-align:center; }
}
@media(max-width:420px) {
  .reviews-card { grid-template-columns:1fr; text-align:center; }
  .google-mark { margin:0 auto; }
}
/* ═══ DESTINOS · CARRUSEL ═══ */
.destinos-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.destinos-heading .section-intro { margin-bottom: 0; }
.destinos-controls { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.destinos-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239,232,216,.38);
  border-radius: 50%;
  color: #EFE8D8;
  font-size: 1.15rem;
  transition: background .25s, color .25s, opacity .25s, transform .25s;
}
.destinos-arrow:hover:not(:disabled) { background: #EFE8D8; color: #215F78; transform: translateY(-2px); }
.destinos-arrow:disabled { opacity: .3; cursor: default; }
.destinos-counter { min-width: 66px; text-align: center; color: rgba(255,255,255,.58); font-size: .72rem; letter-spacing: .08em; }
.destinos-counter strong { color: #EFE8D8; font-size: .9rem; }
.destinos-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
  border-radius: 18px;
}
.destinos-carousel::-webkit-scrollbar { display: none; }
.destinos-grid {
  display: flex;
  grid-template-columns: none;
  gap: 1.4rem;
  width: max-content;
}
.destino-slide {
  flex: 0 0 min(360px, calc((min(1200px, 100vw - 3rem) - 2.8rem) / 3));
  width: min(360px, calc((min(1200px, 100vw - 3rem) - 2.8rem) / 3));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
}
.destino-slide .destino-img-wrap { flex-shrink: 0; }
.destino-slide .destino-body { display: flex; flex: 1; flex-direction: column; }
.destino-slide .destino-body p { flex: 1; }
.destino-consulta { margin-top: auto; text-decoration: none; justify-content: center; }

@media(max-width:900px) {
  .destino-slide { flex-basis: calc((100vw - 3rem - 1.4rem) / 2); width: calc((100vw - 3rem - 1.4rem) / 2); }
}
@media(max-width:640px) {
  .destinos-heading { align-items: flex-start; flex-direction: column; gap: 1.4rem; }
  .destinos-controls { align-self: stretch; justify-content: space-between; }
  .destino-slide { flex-basis: calc(100vw - 3rem); width: calc(100vw - 3rem); }
}
@media(prefers-reduced-motion: reduce) {
  .destinos-carousel { scroll-behavior: auto; }
}
/* ═══ DEPOIMENTOS GOOGLE · COLUNAS CONTÍNUAS ═══ */
.reviews-inner { max-width: 1200px; }
.reviews-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  height: 560px;
  margin-top: 2.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
}
.review-column { height: 100%; overflow: hidden; }
.review-track { display: flex; flex-direction: column; will-change: transform; }
.review-set { display: flex; flex-direction: column; gap: 1rem; padding-bottom: 1rem; }
.review-column--up .review-track { animation: reviewsUp 30s linear infinite; }
.review-column--down .review-track { animation: reviewsDown 32s linear infinite; }
@keyframes reviewsUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes reviewsDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.review-item {
  min-height: 185px;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(145deg, #fff 0%, #f8f3e8 100%);
  border: 1px solid rgba(33,95,120,.15);
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(33,95,120,.1);
  display: flex;
  flex-direction: column;
}
.review-item-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; }
.google-logo {
  display: inline-block;
  font: 700 1.45rem/1 var(--sans);
  background: linear-gradient(90deg, #4285F4 0 28%, #EA4335 28% 50%, #FBBC05 50% 72%, #34A853 72% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.review-item .reviews-stars { margin: 0; font-size: .78rem; }
.review-item h3 { color: #215F78; font-family: var(--serif); font-size: 1.08rem; font-weight: 400; margin-bottom: .45rem; }
.review-item p { color: var(--muted); font-size: .79rem; line-height: 1.65; flex: 1; }
.review-item a { color: #215F78; font-size: .7rem; font-weight: 600; margin-top: .8rem; }
.reviews-action { display: flex; justify-content: center; margin-top: 2rem; }
.reviews-action .btn { display: inline-flex; align-items: center; gap: .65rem; }
.reviews-action .google-logo { font-size: 1rem; }

@media(max-width:768px) {
  .reviews-columns { grid-template-columns: 1fr; height: 520px; max-width: 420px; margin-left: auto; margin-right: auto; }
  .review-column:nth-child(2), .review-column:nth-child(3) { display: none; }
  .review-column--up .review-track { animation-duration: 26s; }
}
@media(prefers-reduced-motion: reduce) {
  .review-track { animation-play-state: paused !important; }
}
/* AJUSTE HERO · TEXTO MÁS BAJO */
.hero-content { top: clamp(8rem, 24vh, 14rem); }
@media(max-width:1024px) and (min-width:769px) {
  .hero-content { top: clamp(7.5rem, 22vh, 12rem); }
}
@media(max-width:768px) {
  .hero-content { top: auto; bottom: clamp(1.5rem, 4vh, 3rem); }
}
/* ═══ GALERIA CIRCULAR · WEBGL ═══ */
.gallery-section {
  position: relative;
  overflow: hidden;
  background: #215F78;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.gallery-heading { position: relative; z-index: 2; }
.gallery-section .label { color: rgba(239,232,216,.78); }
.gallery-section h2 { color: #fff; margin: .5rem 0 1rem; }
.gallery-section .section-intro { color: rgba(255,255,255,.68); margin-bottom: 0; }
.circular-gallery {
  position: relative;
  width: 100%;
  height: clamp(480px, 54vw, 650px);
  margin-top: 1rem;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  outline: none;
}
.circular-gallery:active { cursor: grabbing; }
.circular-gallery:focus-visible { box-shadow: inset 0 0 0 2px rgba(239,232,216,.65); }
.circular-gallery canvas { display: block; width: 100%; height: 100%; }
@media(max-width:768px) {
  .circular-gallery { height: 470px; margin-top: .5rem; }
}
@media(max-width:420px) {
  .circular-gallery { height: 410px; }
}
/* RESPALDO VISIBLE DE LA GALERÍA */
.circular-gallery-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 3.5rem 7vw 5rem;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.circular-gallery-fallback::-webkit-scrollbar { display: none; }
.circular-gallery-fallback-item {
  flex: 0 0 clamp(220px, 25vw, 330px);
  margin: 0;
  scroll-snap-align: center;
  transition: transform .35s ease;
}
.circular-gallery-fallback-item:nth-child(4n+1) { transform: translateY(34px) rotate(-2deg); }
.circular-gallery-fallback-item:nth-child(4n+2) { transform: translateY(-18px) rotate(-1deg); }
.circular-gallery-fallback-item:nth-child(4n+3) { transform: translateY(-18px) rotate(1deg); }
.circular-gallery-fallback-item:nth-child(4n) { transform: translateY(34px) rotate(2deg); }
.circular-gallery-fallback-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(239,232,216,.28);
  box-shadow: 0 18px 42px rgba(0,0,0,.25);
}
.circular-gallery-fallback-item figcaption {
  color: #EFE8D8;
  font: 600 .75rem/1.4 var(--sans);
  letter-spacing: .06em;
  text-align: center;
  margin-top: .75rem;
}
.circular-gallery canvas { position: absolute; inset: 0; z-index: 2; }
.circular-gallery.has-rendered-media .circular-gallery-fallback { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .35s; }
@media(max-width:768px) {
  .circular-gallery-fallback { padding-left: 12vw; padding-right: 12vw; }
  .circular-gallery-fallback-item { flex-basis: 72vw; }
}
/* CORRECCIÓN DEFINITIVA · GALERÍA SIEMPRE VISIBLE */
.circular-gallery .circular-gallery-fallback,
.circular-gallery.has-rendered-media .circular-gallery-fallback {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 4 !important;
}
.circular-gallery canvas {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
/* GALERÍA · MOVIMIENTO CONTINUO */
.circular-gallery-fallback { scroll-snap-type: none; scroll-behavior: auto; will-change: scroll-position; }
.circular-gallery-fallback-item[data-gallery-duplicate="true"]:nth-child(4n+3) { transform: translateY(34px) rotate(-2deg); }
.circular-gallery-fallback-item[data-gallery-duplicate="true"]:nth-child(4n) { transform: translateY(-18px) rotate(-1deg); }
.circular-gallery-fallback-item[data-gallery-duplicate="true"]:nth-child(4n+1) { transform: translateY(-18px) rotate(1deg); }
.circular-gallery-fallback-item[data-gallery-duplicate="true"]:nth-child(4n+2) { transform: translateY(34px) rotate(2deg); }
/* GALERÍA CIRCULAR 3D · REFERENCIA */
.circular-gallery {
  height: clamp(520px, 52vw, 640px);
  padding: 0 1rem;
}
.circular-gallery-fallback,
.circular-gallery.has-rendered-media .circular-gallery-fallback {
  inset: 0 1rem;
  align-items: center;
  gap: clamp(1.5rem, 3.2vw, 3.4rem);
  padding: 2.5rem calc(50% - clamp(105px, 10vw, 142.5px)) 4rem;
  background: #174f67;
  border: 1px solid rgba(239,232,216,.2);
  border-radius: 22px;
  perspective: 1200px;
  transform-style: preserve-3d;
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.circular-gallery-fallback.is-dragging { cursor: grabbing; }
.circular-gallery-fallback-item,
.circular-gallery-fallback-item:nth-child(n),
.circular-gallery-fallback-item[data-gallery-duplicate="true"]:nth-child(n) {
  flex: 0 0 clamp(210px, 20vw, 285px);
  width: clamp(210px, 20vw, 285px);
  transform: none;
  transform-origin: center center;
  transform-style: preserve-3d;
  transition: opacity .18s linear;
  will-change: transform, opacity;
}
.circular-gallery-fallback-item img {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  pointer-events: none;
  -webkit-user-drag: none;
}
.circular-gallery-fallback-item figcaption {
  margin-top: .9rem;
  font-size: clamp(.72rem, 1vw, .86rem);
  pointer-events: none;
}
@media(max-width:768px) {
  .circular-gallery { height: 500px; padding: 0 .5rem; }
  .circular-gallery-fallback,
  .circular-gallery.has-rendered-media .circular-gallery-fallback {
    inset: 0 .5rem;
    gap: 7vw;
    padding: 2rem 18vw 3.5rem;
    perspective: 900px;
  }
  .circular-gallery-fallback-item,
  .circular-gallery-fallback-item:nth-child(n) {
    flex-basis: 64vw;
    width: 64vw;
  }
}
/* GALERÍA · FONDO BEIGE CURVO */
.gallery-section {
  isolation: isolate;
  background: #EFE8D8;
  padding-top: clamp(7rem, 11vw, 10rem);
  padding-bottom: clamp(8rem, 12vw, 11rem);
}
.gallery-section::before,
.gallery-section::after {
  content: '';
  position: absolute;
  left: -10%;
  width: 120%;
  pointer-events: none;
  z-index: 0;
}
.gallery-section::before {
  top: -82px;
  height: 145px;
  background: #215F78;
  border-radius: 0 0 50% 50%;
}
.gallery-section::after {
  bottom: -92px;
  height: 165px;
  background: #f8f3e8;
  border-radius: 50% 50% 0 0;
}
.gallery-heading,
.circular-gallery { position: relative; z-index: 1; }
.gallery-section .label { color: rgba(33,95,120,.72); }
.gallery-section h2 { color: #215F78; }
.gallery-section .section-intro { color: rgba(33,95,120,.72); }
.circular-gallery-fallback,
.circular-gallery.has-rendered-media .circular-gallery-fallback {
  background: #e3d3b8;
  border-color: rgba(33,95,120,.18);
  box-shadow: 0 24px 60px rgba(92,67,39,.14);
}
.circular-gallery-fallback-item img {
  border-color: rgba(33,95,120,.16);
  box-shadow: 0 18px 42px rgba(92,67,39,.2);
}
.circular-gallery-fallback-item figcaption { color: #215F78; }
@media(max-width:768px) {
  .gallery-section { padding-top: 6.5rem; padding-bottom: 7.5rem; }
  .gallery-section::before { top: -58px; height: 105px; }
  .gallery-section::after { bottom: -62px; height: 115px; }
}
/* AJUSTES · SOBRE BLANCO Y GALERÍA AZUL */
.sobre-section { background: #ffffff; }
.sobre-section .label { color: rgba(33,95,120,.72); }
.sobre-text h2 { color: #173f50; }
.sobre-text p { color: rgba(23,63,80,.72); }
.sobre-highlight {
  border-color: rgba(33,95,120,.18);
  background: linear-gradient(135deg, #EFE8D8 0%, #f8f3e8 100%);
}
.sobre-highlight strong { color: #215F78; }
.sobre-highlight span { color: rgba(23,63,80,.66); }
.sobre-section .btn-dark,
.sobre-section .btn-dark:hover {
  background: #215F78;
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(33,95,120,.22);
}

.gallery-section { background: #215F78; }
.gallery-section::before { background: #ffffff; }
.gallery-section::after { background: #EFE8D8; }
.gallery-section .label { color: rgba(239,232,216,.78); }
.gallery-section h2 { color: #ffffff; }
.gallery-section .section-intro { color: rgba(255,255,255,.7); }
.circular-gallery-fallback,
.circular-gallery.has-rendered-media .circular-gallery-fallback {
  background: #174f67;
  border-color: rgba(239,232,216,.2);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.circular-gallery-fallback-item img {
  border-color: rgba(239,232,216,.22);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.circular-gallery-fallback-item figcaption { color: #EFE8D8; }
/* DEPOIMENTOS · FONDO BLANCO Y CARDS BEIGE */
.reviews-section { background: #ffffff; border-top-color: rgba(33,95,120,.1); }
.review-item {
  --mouse-x: -999px;
  --mouse-y: -999px;
  position: relative;
  overflow: hidden;
  background: #EFE8D8;
  border: 1px solid rgba(33,95,120,.14);
  box-shadow: 0 6px 22px rgba(33,95,120,.09);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 36px rgba(33,95,120,.2);
  border-color: rgba(33,95,120,.32);
}
.review-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: radial-gradient(336px circle at var(--mouse-x) var(--mouse-y), rgba(33,95,120,.9) 0%, rgba(200,180,138,.62) 42%, transparent 66%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.review-item h3,
.review-item a { position: relative; z-index: 1; }
/* RESUMO OFICIAL DAS AVALIAÇÕES */
.reviews-summary {
  width: fit-content;
  max-width: 100%;
  margin: 2rem auto 3rem;
  padding: 1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #173f50;
  background: #EFE8D8;
  border: 1px solid rgba(33,95,120,.16);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(33,95,120,.1);
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.reviews-summary:hover { transform: translateY(-4px); border-color: rgba(33,95,120,.35); box-shadow: 0 14px 38px rgba(33,95,120,.18); }
.reviews-summary-logo { font-size: 1.65rem; }
.reviews-summary-rating { display: flex; align-items: center; gap: .65rem; }
.reviews-summary-rating strong { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; color: #215F78; }
.reviews-summary .reviews-stars { color: #f5a623; letter-spacing: .12em; white-space: nowrap; }
.reviews-summary-count { display: flex; flex-direction: column; padding-left: 1rem; border-left: 1px solid rgba(33,95,120,.18); line-height: 1.2; }
.reviews-summary-count strong { font-size: 1.05rem; color: #215F78; }
.reviews-summary-count small { margin-top: .2rem; color: rgba(23,63,80,.68); }
@media(max-width:520px) {
  .reviews-summary { width: 100%; justify-content: center; gap: .7rem; padding: .9rem; }
  .reviews-summary-rating { flex-direction: column; gap: .2rem; }
  .reviews-summary-rating strong { font-size: 2rem; }
  .reviews-summary .reviews-stars { font-size: .78rem; }
  .reviews-summary-count { padding-left: .7rem; }
}
/* GALERIA · FUNDO AZUL ÚNICO, SEM FAIXA INFERIOR */
.gallery-section::after { display: none; }
.circular-gallery-fallback,
.circular-gallery.has-rendered-media .circular-gallery-fallback {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  border-radius: 0;
}
.gallery-section { padding-bottom: clamp(5rem, 8vw, 7rem); }
/* DEPOIMENTOS REAIS · AUTOR E METADADOS */
.review-meta { display:block; margin:-.35rem 0 .85rem; color:rgba(33,95,120,.62); font-size:.7rem; line-height:1.45; }
.review-item p { color:rgba(23,63,80,.78); }

/* FOOTER BRANCO E COMPACTO */
footer { background:#ffffff; border-top:1px solid rgba(33,95,120,.12); padding:2rem 0 1rem; }
.footer-grid { gap:2rem; }
.footer-logo { height:38px; margin-bottom:.55rem; }
.footer-tagline { line-height:1.5; }
.footer-wa { margin-top:.8rem; padding:.55rem 1rem; }
.footer-col h4 { margin-bottom:.55rem; }
.footer-col a,
.footer-col address span { line-height:1.65; }
.footer-bottom { margin-top:1.4rem; padding-top:.85rem; }
@media(max-width:768px) {
  footer { padding:1.6rem 0 .9rem; }
  .footer-grid { gap:1.3rem; }
  .footer-bottom { margin-top:1rem; }
}
/* GALERIA · TERMINAÇÃO INFERIOR SEMICIRCULAR */
.gallery-section::after {
  display: block;
  bottom: -1px;
  height: clamp(72px, 8vw, 125px);
  background: #ffffff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
@media(max-width:768px) {
  .gallery-section::after {
    bottom: -1px;
    height: 64px;
  }
}
/* GALERIA · FOTOS EM PROPORÇÃO 4:5 */
.circular-gallery-fallback-item img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
/* CRÉDITO DISCRETO */
.footer-credit {
  color: rgba(33,95,120,.52);
  font-size: .66rem;
  text-decoration: none;
  transition: color .25s;
}
.footer-credit:hover { color: #215F78; }
/* CHAT MÓVEL · AVATAR E PAINEL COMPACTO */
@media(max-width:600px) {
  body.vip-chat-open { overflow: hidden; }
  #vip-chat {
    left: .75rem;
    right: .75rem;
    bottom: max(.75rem, env(safe-area-inset-bottom));
    top: auto;
    width: auto;
    height: min(72dvh, 560px);
    max-height: calc(100dvh - 5rem);
    border-radius: 20px;
    border: 1px solid rgba(200,180,138,.3);
    box-shadow: 0 18px 50px rgba(0,0,0,.55);
    transform: translateY(calc(100% + 2rem));
  }
  #vip-chat-msgs { min-height: 0; }
}