/* =========================================================
   ELIT MEMBERS — Landing Page
   Paleta oficial extraída da marca
   ---------------------------------------------------------
   TIPOGRAFIA: Gotham self-hosted, seguindo as LPs da marca.
   ========================================================= */
@font-face {
  font-family: 'Gotham'; font-weight: 300; font-style: normal;
  src: url('assets/fonts/GothamLight.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Gotham'; font-weight: 400; font-style: normal;
  src: url('assets/fonts/GothamBook.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Gotham'; font-weight: 500; font-style: normal;
  src: url('assets/fonts/GothamMedium.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Gotham'; font-weight: 700; font-style: normal;
  src: url('assets/fonts/GothamBold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Gotham'; font-weight: 800 900; font-style: normal;
  src: url('assets/fonts/Gotham-Black.woff2') format('woff2');
  font-display: swap;
}
:root {
  --deep: #0E4047;
  --deep-2: #0A2F35;
  --deep-3: #06232a;
  --cyan: #0CC0DF;
  --cyan-soft: #75ddea;
  --teal: #347C89;
  --mist: #9AB3B9;
  --cream: #FDEFEF;
  --paper: #f5eeee;
  --ink: #0b1f22;
  --white: #ffffff;

  --font-body: 'Gotham', 'Montserrat', system-ui, sans-serif;
  --font-display: 'Gotham', 'Montserrat', system-ui, sans-serif;
  --font-serif: 'Gotham', 'Montserrat', system-ui, sans-serif;

  --maxw: 1160px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 700; font-size: .92rem;
  letter-spacing: 0; padding: 15px 28px; border-radius: 100px;
  cursor: pointer; border: 1.5px solid transparent; transition: all .3s var(--ease);
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-cyan { background: var(--cyan); color: var(--deep-3); box-shadow: 0 14px 34px -18px rgba(12,192,223,.8); }
.btn-cyan:hover { background: var(--cyan-soft); transform: translateY(-2px); box-shadow: 0 18px 42px -18px rgba(12,192,223,.8); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-soft); }
.btn-sm { padding: 11px 22px; font-size: .88rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1;
  letter-spacing: 0; text-transform: uppercase;
}
.display-sub {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(1.8rem, 3.8vw, 2.85rem); line-height: 1.08; letter-spacing: 0;
}
.huge { font-weight: 900; font-size: clamp(3.4rem, 13vw, 8.5rem); line-height: 1.02; padding-top: .06em; letter-spacing: 0; }
.accent { color: var(--cyan); }
.accent-line { color: var(--cyan); }
.nowrap { white-space: nowrap; }
.eyebrow, .kicker {
  display: inline-block; font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 18px;
}
.kicker.light, .eyebrow { color: var(--cyan); }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 60px; }
.section-head.center { text-align: center; }
.section-intro { font-size: 1.1rem; color: #38565b; margin-top: 20px; }
.section-intro.on-dark { color: rgba(255,255,255,.78); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), backdrop-filter .35s, box-shadow .35s;
}
.site-header.scrolled {
  background: rgba(5,22,26,.76); backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 1px 0 rgba(117,221,234,.12);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-logo { height: 36px; width: auto; transition: opacity .35s var(--ease); }
.partner-logo { height: 24px; width: auto; max-width: 108px; opacity: .82; filter: brightness(0) invert(1); transition: height .35s var(--ease), opacity .35s var(--ease); }
.brand-divider { width: 1px; height: 28px; background: rgba(255,255,255,.28); flex: 0 0 auto; }
.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a {
  color: rgba(255,255,255,.78); font-size: .84rem; font-weight: 500; letter-spacing: .02em;
  position: relative; padding: 6px 0;
  text-transform: none;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--cyan); transition: width .3s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 0 24px;
  background: rgba(6,35,42,.98); backdrop-filter: blur(14px);
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.mobile-menu.open { max-height: 420px; padding: 12px 24px 26px; }
.mobile-menu a { color: rgba(255,255,255,.9); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 500; }
.mobile-menu .btn { margin-top: 16px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  /* 22/07 (Gabs): min-height menor + padding-bottom reduzido — tira o ~250px de espaço morto
     entre os CTAs e a faixa marquee, mantendo respiro proporcional ao resto da LP */
  min-height: 84vh; display: flex; align-items: center; position: relative;
  background:
    linear-gradient(90deg, rgba(6,35,42,.94) 0%, rgba(6,35,42,.82) 42%, rgba(6,35,42,.22) 100%),
    radial-gradient(760px 520px at 78% 42%, rgba(12,192,223,.12), transparent 68%),
    linear-gradient(120deg, #06232a 0%, #0a3238 48%, #0e4047 100%);
  color: #fff; overflow: hidden; padding: 128px 0 56px;
}
@media (max-width: 640px){ .hero { min-height: auto; padding: 116px 0 52px; } }
.hero::before {
  content: "";
  position: absolute;
  inset: -7%;
  z-index: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(12,192,223,.22), transparent 0 19%, rgba(12,192,223,.07) 20% 31%, transparent 32%),
    linear-gradient(125deg, #061d23 0%, #0a3037 54%, #0e4a53 100%);
  opacity: 1;
  transform: scale(1.04);
  animation: ambient-pan 24s ease-in-out infinite alternate;
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6,35,42,.96) 0%, rgba(6,35,42,.86) 42%, rgba(6,35,42,.32) 76%, rgba(6,35,42,.18) 100%);
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  mix-blend-mode: soft-light;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.08) 0 1px, transparent 1.6px),
    radial-gradient(circle at 72% 64%, rgba(0,0,0,.2) 0 1px, transparent 1.7px),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.055) 0 1px, transparent 1px 4px);
  background-size: 18px 18px, 22px 22px, 9px 9px;
}
.hero-brand-element {
  position: absolute;
  right: clamp(-160px, -7vw, -70px);
  top: 50%;
  width: clamp(280px, 35vw, 560px);
  opacity: .18;
  transform: translateY(-42%) rotate(-7deg);
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.18));
  animation: brand-element-float 12s ease-in-out infinite;
}

.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 380px); align-items: center; gap: clamp(36px, 6vw, 86px); }
.hero-copy { max-width: 720px; }
.hero-title { font-family: var(--font-body); font-weight: 700; font-size: clamp(2.8rem, 5.7vw, 5.15rem); line-height: .98; letter-spacing: 0; margin-bottom: 26px; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.32rem); color: rgba(255,255,255,.84); max-width: 660px; font-weight: 300; }
.hero-lead em { font-style: normal; color: var(--cyan-soft); font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero-signature {
  position: relative;
  min-height: 480px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 40px;
  color: rgba(255,255,255,.88);
}
.signature-year,
.signature-mark,
.signature-line,
.signature-copy { position: relative; z-index: 1; }
/* 22/07 (Mari): no lugar de "2026", o icone do logo Elit em relevo (ref: pagina U Members) */
.signature-mark {
  width: clamp(116px, 15vw, 184px);
  height: auto;
  margin: 0 auto;
  filter:
    drop-shadow(0 20px 34px rgba(0,0,0,.55))
    drop-shadow(0 5px 9px rgba(0,0,0,.40))
    drop-shadow(0 -1.5px 0 rgba(255,255,255,.28))
    drop-shadow(1.5px 0 0 rgba(255,255,255,.12));
}
.signature-year {
  font-size: clamp(4.2rem, 11vw, 8rem);
  font-weight: 900;
  line-height: .9;
  color: rgba(255,255,255,.9);
}
.signature-line {
  width: 150px;
  height: 2px;
  background: var(--cyan);
  margin: 24px 0 18px;
  transform-origin: left;
  animation: line-breathe 4s ease-in-out infinite alternate;
}
.signature-copy {
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.35); border-radius: 20px; z-index: 2; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--cyan); border-radius: 4px; transform: translateX(-50%); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%,14px); } 100% { opacity: 0; } }
@keyframes ambient-pan { from { transform: scale(1.04) translate3d(-1%, -1%, 0); } to { transform: scale(1.1) translate3d(2%, 1.5%, 0); } }
@keyframes brand-element-float {
  0%, 100% { transform: translate3d(0, -42%, 0) rotate(-7deg) scale(1); }
  45% { transform: translate3d(-18px, -46%, 0) rotate(-3deg) scale(1.025); }
  72% { transform: translate3d(8px, -44%, 0) rotate(-9deg) scale(.995); }
}
@keyframes line-breathe { from { transform: scaleX(.72); opacity: .72; } to { transform: scaleX(1); opacity: 1; } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { overflow: hidden; border: 0; background: linear-gradient(90deg, #1cb6c2, var(--cyan), #26c7d1); }
.marquee-track { display: flex; width: max-content; animation: marquee-loop 38s linear infinite; }
.marquee-group { display: flex; align-items: center; justify-content: space-around; flex: none; gap: 30px; min-width: 100vw; padding: 11px 24px; }
.marquee-group span { color: var(--deep-3); font-size: .68rem; font-weight: 500; letter-spacing: .34em; text-transform: uppercase; white-space: nowrap; }
.marquee-group .dot { color: rgba(6,35,42,.46); font-size: .58rem; }
@keyframes marquee-loop { to { transform: translateX(-50%); } }

/* =========================================================
   PROGRAMA
   ========================================================= */
.programa { overflow: hidden; background: linear-gradient(180deg, var(--paper) 0%, #fff 100%); }
.programa-layout { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: clamp(54px,8vw,108px); align-items: start; }
.programa .section-head { position: sticky; top: 130px; max-width: 520px; margin: 0; }
.programa .section-intro { max-width: 520px; }
.pillars { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 0; border-top: 1px solid rgba(52,124,137,.22); }
.pillar {
  position: relative;
  min-height: 0;
  padding: 34px 6px;
  border-bottom: 1px solid rgba(52,124,137,.22);
  transition: padding-left .35s var(--ease), background .35s var(--ease);
}
.pillar:hover { padding-left: 18px; background: linear-gradient(90deg, rgba(12,192,223,.07), transparent); }
.pillar-num { display: block; font-weight: 800; font-size: .72rem; color: var(--cyan); line-height: 1; letter-spacing: .16em; }
.pillar h3 { font-size: 1.32rem; font-weight: 600; margin: 12px 0 8px; color: var(--deep); }
.pillar p { max-width: 560px; color: #4a666b; font-size: .96rem; }

/* =========================================================
   BENEFÍCIOS (dark)
   ========================================================= */
.beneficios {
  background:
    radial-gradient(70% 70% at 90% 8%, rgba(12,192,223,.16), transparent 62%),
    linear-gradient(180deg, var(--deep) 0%, var(--deep-2) 100%);
  color: #fff;
  overflow: hidden;
}
.beneficios::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  mix-blend-mode: soft-light;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.08) 0 1px, transparent 1.6px),
    radial-gradient(circle at 72% 64%, rgba(0,0,0,.2) 0 1px, transparent 1.7px),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.055) 0 1px, transparent 1px 4px);
  background-size: 18px 18px, 22px 22px, 9px 9px;
}
.beneficios .container,
.site-footer .container {
  position: relative;
  z-index: 1;
}
.beneficios .display { color: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 60px; }
.benefit-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 32px 28px; transition: all .35s var(--ease);
  backdrop-filter: blur(4px);
}
.benefit-card:hover { background: rgba(12,192,223,.1); border-color: rgba(12,192,223,.4); transform: translateY(-6px); }
.benefit-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(12,192,223,.13); color: var(--cyan); margin-bottom: 20px;
  transition: color .28s var(--ease), background .28s var(--ease), transform .34s var(--ease);
}
.benefit-ico svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}
.benefit-card:hover .benefit-ico { color: #fff; background: rgba(12,192,223,.18); transform: translateY(-2px) scale(1.04); }
.benefit-ico .motion-pulse { animation: benefitIconPulse 3.2s ease-in-out infinite; transform-origin: center; }
.benefit-ico .motion-drift { animation: benefitIconDrift 3.6s ease-in-out infinite; }
.benefit-ico .motion-rise { animation: benefitIconRise 3.1s ease-in-out infinite; transform-origin: center; }
.benefit-ico .motion-draw { animation: benefitIconDraw 3.8s ease-in-out infinite; stroke-dasharray: 24; stroke-dashoffset: 0; }
.benefit-ico .motion-orbit { animation: benefitIconOrbit 6s ease-in-out infinite; transform-origin: center; }
.benefit-ico .motion-plane { animation: benefitIconPlane 4s ease-in-out infinite; transform-origin: center; }
.benefit-ico .motion-globe { animation: benefitIconGlobe 4.8s ease-in-out infinite; transform-origin: center; }
.benefit-ico .node-a { animation-delay: 0s; }
.benefit-ico .node-b { animation-delay: .45s; }
.benefit-ico .node-c { animation-delay: .9s; }
.benefit-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.benefit-card p { color: rgba(255,255,255,.72); font-size: .96rem; }
.cta-row { margin-top: 10px; }
@keyframes benefitIconPulse {
  0%, 100% { opacity: .58; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes benefitIconDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(2px); }
}
@keyframes benefitIconRise {
  0%, 100% { transform: translateY(0) scale(.98); opacity: .7; }
  50% { transform: translateY(-2px) scale(1.06); opacity: 1; }
}
@keyframes benefitIconDraw {
  0%, 100% { stroke-dashoffset: 0; opacity: .72; }
  50% { stroke-dashoffset: 12; opacity: 1; }
}
@keyframes benefitIconOrbit {
  0%, 100% { transform: rotate(-4deg) scale(1); opacity: .72; }
  50% { transform: rotate(5deg) scale(1.05); opacity: 1; }
}
@keyframes benefitIconPlane {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .72; }
  50% { transform: translate3d(1px, -1px, 0); opacity: 1; }
}
@keyframes benefitIconGlobe {
  0%, 100% { opacity: .62; }
  50% { opacity: 1; }
}

/* =========================================================
   COMUNIDADE
   ========================================================= */
.community { padding: 24px 0 68px; background: var(--deep-3); color: #fff; }
.community-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .44fr) minmax(0, .56fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(117,221,234,.2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(12,192,223,.08), rgba(255,255,255,.025));
  isolation: isolate;
}
.community-copy { position: relative; z-index: 2; display: flex; min-width: 0; min-height: 390px; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(36px,5vw,58px); background: var(--deep-3); text-align: left; }
.community-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -150px;
  bottom: 0;
  width: 152px;
  background: linear-gradient(90deg, var(--deep-3) 0%, rgba(6,35,42,.82) 28%, rgba(6,35,42,.34) 68%, transparent 100%);
  pointer-events: none;
}
.community-copy h2 { max-width: 430px; font-size: clamp(1.9rem,3.2vw,2.8rem); font-weight: 300; line-height: 1.06; letter-spacing: -.03em; }
.community-copy p { max-width: 430px; margin-top: 20px; color: rgba(255,255,255,.68); font-size: .94rem; line-height: 1.72; font-weight: 300; }
.community-link { display: inline-flex; align-items: center; gap: 10px; width: max-content; margin-top: 30px; color: var(--cyan-soft); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.community-link span { transition: transform .3s var(--ease); }
.community-link:hover span { transform: translateX(5px); }
.community-image { position: relative; z-index: 0; min-width: 0; min-height: 390px; overflow: hidden; }
.community-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,35,42,.18), transparent 24%); pointer-events: none; }
.community-image img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; object-position: center 44%; filter: saturate(.9) contrast(1.03); transition: transform .8s var(--ease); }
.community-panel:hover .community-image img { transform: scale(1.025); }

/* =========================================================
   GALERIA DE EXPERIÊNCIAS
   ========================================================= */
.destinos {
  background:
    radial-gradient(680px 420px at 100% 0%, rgba(12,192,223,.1), transparent 68%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  padding-bottom: clamp(36px, 4vw, 52px);
  overflow: hidden;
}
.gallery-container { max-width: 1320px; }
.destination-browser { display: grid; grid-template-columns: 270px minmax(0, 1fr); max-width: 1120px; margin: 0 auto; gap: clamp(30px, 5vw, 64px); align-items: start; }
.destination-list { display: grid; position: sticky; top: 100px; }
.destination-option {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(52,124,137,.18);
  background: transparent;
  color: var(--deep);
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: color .25s, padding-left .3s var(--ease);
}
.destination-option:first-child { border-top: 1px solid rgba(52,124,137,.18); }
.destination-option > span { color: var(--cyan); font-size: .66rem; font-weight: 700; letter-spacing: .12em; }
.destination-option strong { font-size: 1rem; line-height: 1.15; }
.destination-option:hover,
.destination-option.is-active { padding-left: 9px; color: var(--cyan); }
.destination-option:focus-visible { outline: 3px solid rgba(12,192,223,.38); outline-offset: 2px; }
.destination-panels { min-width: 0; }
.destination-panel { display: none; grid-template-columns: repeat(4, minmax(0, 1fr)); align-content: start; align-items: start; gap: 10px; }
.destination-panel.is-active { display: grid; animation: panel-in .42s var(--ease) both; }
.destination-panel[hidden] { display: none; }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  grid-column: span 2;
  min-width: 0;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
  cursor: zoom-in;
  color: #fff;
  text-align: left;
}
.gallery-item.portrait { grid-column: span 1; width: 100%; }
#panel-monaco .gallery-item:first-child { grid-column: 1 / span 2; grid-row: 1; }
#panel-monaco .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
#panel-monaco .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
.gallery-item::after {
  content: none;
}
.gallery-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}
.gallery-item:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.gallery-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: clamp(22px, 5vw, 56px);
  border: 0;
  background: rgba(4,20,24,.96);
  color: #fff;
  overflow: hidden;
}
.gallery-lightbox[open] { display: grid; grid-template-columns: 64px minmax(0, 1fr) 64px; align-items: center; gap: 18px; }
.gallery-lightbox::backdrop { background: rgba(4,20,24,.82); backdrop-filter: blur(10px); }
.gallery-lightbox figure { display: flex; min-width: 0; height: 100%; flex-direction: column; align-items: center; justify-content: center; }
.gallery-lightbox figure img { max-width: 100%; max-height: calc(100vh - 145px); border-radius: var(--radius); object-fit: contain; box-shadow: 0 28px 90px -36px rgba(0,0,0,.9); }
.gallery-lightbox figcaption { display: flex; width: min(100%, 900px); align-items: baseline; justify-content: space-between; gap: 20px; padding-top: 16px; }
.gallery-lightbox figcaption strong { color: var(--cyan-soft); font-size: .95rem; }
.gallery-lightbox figcaption span { color: rgba(255,255,255,.62); font-size: .78rem; letter-spacing: .08em; }
.lightbox-close,
.lightbox-nav { border: 0; color: #fff; cursor: pointer; transition: color .25s, background .25s, transform .25s; }
.lightbox-close { position: absolute; z-index: 3; top: 20px; right: 24px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.08); font-size: 2rem; line-height: 1; }
.lightbox-nav { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); font-size: 2.4rem; line-height: 1; }
.lightbox-nav:hover,
.lightbox-close:hover { background: var(--cyan); color: var(--deep-3); transform: scale(1.05); }
body.lightbox-open { overflow: hidden; }

/* Destinos — composição inspirada na LP10, com identidade Elit */
.destino-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
  max-width: 820px;
  margin-inline: auto;
}
.destino-card { position: relative; overflow: visible; height: 100%; background: transparent; }
.destino-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--deep-3);
  box-shadow: 0 30px 64px -42px rgba(14,64,71,.68);
}
.destino-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(6,35,42,.26));
  pointer-events: none;
}
.destino-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  transition: transform .8s var(--ease);
}
.d-monaco img { object-position: center 36%; }
.d-georgia img { object-position: center 46%; }
.destino-card:hover .destino-photo img { transform: scale(1.045); }
.destino-ticket {
  position: relative;
  z-index: 2;
  width: calc(100% - 32px);
  margin: -34px auto 0;
  padding: 20px 24px 24px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--deep-3);
  background:
    radial-gradient(100% 160% at 100% 0%, rgba(255,255,255,.96), transparent 58%),
    linear-gradient(135deg, #e8fcff 0%, #b5edf3 52%, #82d6e1 100%);
  box-shadow: 0 24px 48px -26px rgba(14,64,71,.64);
  -webkit-mask-image:
    radial-gradient(circle 18px at 0 67%, transparent 17px, #000 18px),
    radial-gradient(circle 18px at 100% 67%, transparent 17px, #000 18px);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(circle 18px at 0 67%, transparent 17px, #000 18px),
    radial-gradient(circle 18px at 100% 67%, transparent 17px, #000 18px);
  mask-composite: intersect;
  transform-origin: center top;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.destino-card:hover .destino-ticket { transform: translateY(-3px); }
.destino-ticket-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 8px; }
.destino-ticket-label { color: #245d66; font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.destino-ticket-code { flex-shrink: 0; color: #174c54; font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.destino-ticket h3 { margin: 0; color: #071c20; font-size: 1.7rem; font-weight: 600; letter-spacing: -.025em; }
.destino-route {
  display: grid;
  grid-template-columns: auto minmax(46px, 1fr) auto;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding: 15px 10px 0;
  border-top: 1px dashed rgba(6,21,24,.22);
}
.destino-route > div { display: flex; min-width: 0; flex-direction: column; }
.destino-route > div:last-child { text-align: right; }
.destino-route span { color: #245d66; font-size: .54rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.destino-route strong { overflow: hidden; margin-top: 2px; color: #071c20; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.destino-route i { display: flex; align-items: center; gap: 6px; color: #245d66; font-size: .64rem; font-style: normal; }
.destino-route i::before,
.destino-route i::after { content: ""; height: 1px; flex: 1; background: rgba(6,21,24,.24); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  overflow: hidden;
  background:
    radial-gradient(620px 480px at 8% 24%, rgba(12,192,223,.12), transparent 68%),
    linear-gradient(145deg, var(--deep), var(--deep-3));
  color: #fff;
}
.faq-layout { display: grid; grid-template-columns: minmax(260px,.75fr) minmax(0,1.25fr); gap: clamp(48px,8vw,110px); align-items: start; }
.faq-head { position: sticky; top: 120px; }
.faq-head h2 { margin-top: 6px; color: #fff; }
.faq-head p { max-width: 430px; margin-top: 20px; color: rgba(255,255,255,.68); font-weight: 300; }
.faq-flight { position: relative; width: min(100%, 420px); height: 230px; margin-top: 38px; }
.faq-flight::before,
.faq-flight::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 23%;
  top: 58%;
  width: 62%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117,221,234,.22));
  transform: rotate(-7deg) scaleX(.72);
  transform-origin: right center;
  animation: faq-air-trail 2.8s ease-in-out infinite;
}
.faq-flight::after { top: 65%; width: 48%; opacity: .5; animation-delay: .35s; }
.faq-plane {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0,0,0,.32));
  transform: translate3d(10px,-6px,0) rotate(3deg);
  animation: faq-plane-flight 5.4s cubic-bezier(.45,.05,.28,1) infinite alternate;
}
@keyframes faq-plane-flight {
  from { transform: translate3d(18px,-12px,0) rotate(4deg) scale(.985); }
  to { transform: translate3d(-22px,12px,0) rotate(-3deg) scale(1.012); }
}
@keyframes faq-air-trail {
  0%,100% { opacity: 0; transform: rotate(-7deg) translateX(18px) scaleX(.65); }
  45%,70% { opacity: .18; transform: rotate(-7deg) translateX(0) scaleX(1); }
}
.faq-list { border-top: 1px solid rgba(117,221,234,.22); }
.faq-item { border-bottom: 1px solid rgba(117,221,234,.16); }
.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0,1fr) 34px;
  align-items: center;
  gap: 20px;
  min-height: 92px;
  padding: 24px 0;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color .28s var(--ease), padding-left .28s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { position: relative; width: 32px; height: 32px; border: 1px solid rgba(117,221,234,.34); border-radius: 50%; transition: transform .32s var(--ease), background .3s; }
.faq-item summary > span::before,
.faq-item summary > span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1px; background: var(--cyan-soft); transform: translate(-50%,-50%); }
.faq-item summary > span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] summary { color: var(--cyan-soft); padding-bottom: 12px; }
.faq-item[open] summary > span { transform: rotate(45deg); background: rgba(12,192,223,.08); }
.faq-answer { overflow: hidden; }
.faq-answer p { max-width: 680px; padding: 0 58px 26px 0; color: rgba(255,255,255,.66); font-size: .94rem; line-height: 1.75; }

/* =========================================================
   FORMULÁRIO
   ========================================================= */
.formulario {
  background:
    radial-gradient(520px 420px at 10% 18%, rgba(12,192,223,.12), transparent 70%),
    linear-gradient(160deg, var(--paper), #fff);
  padding-top: clamp(44px, 5vw, 64px);
  overflow: hidden;
}
.form-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.form-copy {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 44px;
  padding-right: 36px;
}
.form-copy h2 { color: var(--deep); margin-bottom: 18px; }
.form-copy p { color: #4a666b; font-size: 1.05rem; line-height: 1.75; }
.form-perks { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.form-perks li { position: relative; padding-left: 30px; color: #38565b; }
.form-perks li::before { content: '✦'; position: absolute; left: 0; color: var(--cyan); }

.lead-form { background: rgba(255,255,255,.9); border-radius: var(--radius); padding: 40px; box-shadow: 0 32px 70px -34px rgba(14,64,71,.42); border: 1px solid rgba(52,124,137,.14); backdrop-filter: blur(8px); }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .8rem; font-weight: 600; color: var(--deep); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .98rem; padding: 13px 15px;
  border: 1.5px solid #d9e4e6; border-radius: var(--radius); background: #f8fbfb; color: var(--ink);
  transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(12,192,223,.12); background: #fff;
}
.field select option { color: var(--ink); background: #fff; }
.field textarea { resize: vertical; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .84rem; color: #4a666b; margin: 6px 0 22px; cursor: pointer; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--cyan); flex-shrink: 0; }
.form-msg { margin-top: 16px; font-size: .92rem; text-align: center; font-weight: 500; min-height: 1.2em; }
.form-msg.ok { color: #1a8a5a; }
.form-msg.err { color: #c0392b; }
.field.invalid input, .field.invalid select { border-color: #e07a6d; }
/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { position: relative; overflow: hidden; background: var(--deep-3); color: rgba(255,255,255,.7); padding-top: 64px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-lockup { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.footer-logo { height: 46px; }
.footer-partner-logo { height: 26px; width: auto; opacity: .76; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 320px; font-size: .92rem; font-weight: 300; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .94rem; transition: color .25s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; margin-top: 20px; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.5); }

.mobile-sticky-cta { display: none; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
/* conteúdo visível por padrão; só esconde quando o JS assume (classe .js) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.js .reveal.in { opacity: 1; transform: none; }
/* durações variadas conforme o peso do elemento (texto rápido, cards/imagens mais encorpados) */
.js .section-head.reveal, .js .eyebrow.reveal, .js .kicker.reveal, .js h1.reveal, .js h2.reveal { transition-duration: .58s; }
.js .benefit-card.reveal, .js .pillar.reveal, .js .destino-card.reveal, .js figure.reveal, .js .hero-signature.reveal, .js .form-wrap.reveal { transition-duration: .95s; }

/* =========================================================
   MICROINTERAÇÕES
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  .brand-lockup,
  .footer-lockup,
  .form-perks li,
  .lead-form {
    transition: transform .34s var(--ease), filter .34s var(--ease), border-color .34s var(--ease), background .34s var(--ease), box-shadow .34s var(--ease), opacity .34s var(--ease);
  }

  .brand-lockup:hover,
  .footer-lockup:hover {
    transform: translateY(-2px);
  }

  .brand-lockup:hover .partner-logo,
  .footer-lockup:hover .footer-partner-logo {
    opacity: 1;
  }

  .btn:hover {
    letter-spacing: .015em;
  }

  .marquee:hover .marquee-track { animation-play-state: paused; }

  .benefit-card:hover .benefit-ico {
    color: var(--cyan);
  }

  .benefit-card:hover h3 {
    transform: translateX(2px);
  }

  .benefit-card h3 {
    transition: color .28s var(--ease), transform .28s var(--ease);
  }

  .gallery-item:hover img {
    transform: scale(1.045);
    filter: saturate(1.06);
  }

  .form-perks li:hover {
    transform: translateX(5px);
    color: var(--deep);
  }

  .form-perks li:hover::before {
    transform: rotate(45deg) scale(1.08);
  }

  .form-perks li::before {
    transition: color .28s var(--ease), transform .28s var(--ease);
  }

  .lead-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 48px 92px -52px rgba(14,64,71,.68);
  }

  .field input:hover,
  .field select:hover,
  .field textarea:hover {
    border-color: #bdd1d5;
    background: #fff;
  }

  .footer-links a:hover {
    transform: translateX(4px);
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 940px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .brand-lockup { gap: 12px; }
  .partner-logo { height: 20px; max-width: 116px; }
  .brand-divider { height: 22px; }
  .hero { padding-top: 120px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-signature { min-height: 260px; padding: 20px 0; }
  .programa-layout { grid-template-columns: 1fr; gap: 48px; }
  .programa .section-head { position: static; max-width: 680px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .destination-browser { grid-template-columns: 220px minmax(0, 1fr); gap: 28px; }
  .destination-panel { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .community-panel { grid-template-columns: minmax(0, .48fr) minmax(0, .52fr); }
  .community-panel, .community-copy { min-height: 350px; }
  .community-image, .community-image img { min-height: 350px; }
  .faq-layout { grid-template-columns: 1fr; gap: 44px; }
  .faq-head { position: static; }
  .faq-flight { width: min(76vw, 420px); margin: 30px 0 0; }
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-copy { min-height: 0; padding-top: 0; padding-right: 0; }
}
@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .brand-logo { height: 32px; }
  .partner-logo { height: 17px; max-width: 96px; }
  .brand-divider { height: 18px; }
  .section { padding: 70px 0; }
  .destinos { padding-bottom: 36px; }
  .formulario { padding-top: 48px; }
  .hero { min-height: auto; padding: 116px 0 86px; }
  .hero-bg::before { opacity: .18; }
  .hero-title { font-size: clamp(2.35rem, 12.5vw, 3.45rem); }
  .hero-lead { padding-left: 0; border-left: 0; font-size: 1rem; }
  .hero-signature { min-height: 220px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .destination-browser { display: block; }
  .destination-list { position: static; display: flex; gap: 6px; margin-bottom: 24px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: thin; }
  .destination-option { display: flex; min-width: max-content; flex: 0 0 auto; gap: 7px; padding: 10px 13px; border: 1px solid rgba(52,124,137,.18); border-radius: 999px; }
  .destination-option:first-child { border-top: 1px solid rgba(52,124,137,.18); }
  .destination-option:hover,
  .destination-option.is-active { padding-left: 13px; border-color: var(--deep); background: var(--deep); color: #fff; }
  .destination-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .destino-grid { grid-template-columns: 1fr; gap: 46px; }
  .destino-ticket { width: calc(100% - 20px); margin-top: -28px; padding: 18px 18px 20px; }
  .destino-ticket h3 { font-size: 1.45rem; }
  .destino-route { padding-inline: 6px; }
  .community { padding: 24px 0 54px; }
  .community-panel { grid-template-columns: 1fr; min-height: 0; border-radius: 16px; }
  .community-copy { grid-row: 2; min-height: 0; padding: 32px 24px 34px; }
  .community-copy::after { display: none; }
  .community-image { grid-row: 1; min-height: 260px; }
  .community-image img { min-height: 260px; }
  .community-image::after { background: linear-gradient(180deg, transparent 62%, rgba(6,35,42,.28) 82%, var(--deep-3) 100%); }
  .faq { padding-block: 66px 82px; }
  .faq-flight { width: min(86vw, 330px); height: 180px; margin: 24px auto 0; }
  .faq-item summary { min-height: 76px; padding: 19px 0; font-size: .9rem; }
  .faq-answer p { padding: 0 44px 22px 0; font-size: .86rem; }
  #panel-monaco .gallery-item:first-child { grid-column: 1 / -1; grid-row: auto; }
  #panel-monaco .gallery-item:nth-child(2),
  #panel-monaco .gallery-item:nth-child(3) { grid-column: auto; grid-row: auto; }
  .gallery-lightbox { padding: 68px 16px 22px; }
  .gallery-lightbox[open] { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(0, 1fr) 52px; gap: 12px; }
  .gallery-lightbox figure { grid-column: 1 / -1; grid-row: 1; }
  .gallery-lightbox figure img { max-height: calc(100vh - 190px); }
  .gallery-lightbox figcaption { align-items: center; flex-direction: column; gap: 3px; text-align: center; }
  .lightbox-prev { grid-column: 1; grid-row: 2; justify-self: end; }
  .lightbox-next { grid-column: 2; grid-row: 2; justify-self: start; }
  .lightbox-nav { width: 48px; height: 48px; }
  .field-row { grid-template-columns: 1fr; }
  .form-copy { min-height: 0; padding-right: 0; padding-top: 0; padding-bottom: 0; }
  .lead-form { padding: 28px 22px; }
  .hero-actions .btn { width: 100%; }
  .btn { white-space: normal; text-align: center; }
  .footer-lockup { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-lockup .brand-divider { display: none; }
  .footer-bottom .container { flex-direction: column; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--cyan);
    color: var(--deep-3);
    box-shadow: 0 16px 44px -16px rgba(6,35,42,.9);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity .3s ease, transform .4s var(--ease);
  }
  .mobile-sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
}
@media (max-width: 380px) {
  .hero-title { font-size: 2.05rem; }
  .display-sub { font-size: 1.44rem; }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* 22/07 (Mari item 6b): slideshow de fotos nos cards de destino ("mais imagens passando") */
.destino-slideshow{position:relative;overflow:hidden}
.destino-slideshow .ds-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 1.2s var(--ease);will-change:opacity}
.destino-slideshow .ds-slide.is-active{opacity:1}
.destino-slideshow:not(.js-on) .ds-slide:first-child{opacity:1}
.destino-dots{position:absolute;bottom:14px;left:0;right:0;display:flex;gap:7px;justify-content:center;z-index:3}
.destino-dots .destino-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.5);box-shadow:0 1px 3px rgba(0,0,0,.4);transition:background .3s,transform .3s}
.destino-dots .destino-dot.is-active{background:#fff;transform:scale(1.25)}
