/* ─── TOKENS ──────────────────────────────── */
:root {
  --ink: #271554;
  --purple: #524382;
  --lav: #DBD2FF;
  --peri: #DCE4FF;
  --lime: #DCFF7D;
  --white: #FFFFFF;

  --bg-white: #FFFFFF;
  --bg-lav: #DBD2FF;
  --bg-peri: #DCE4FF;
  --bg-lime: #DCFF7D;
  --bg-dark: #271554;
  --bg-mid: #EDE9FF;

  --lt1: #271554;
  --lt2: #352166;
  --lt3: rgba(39, 21, 84, 0.75);
  --lt4: rgba(39, 21, 84, 0.5);

  --dt1: #FFFFFF;
  --dt2: #DBD2FF;
  --dt3: rgba(220, 210, 255, 0.62);

  --border-l: rgba(39, 21, 84, 0.11);
  --border-d: rgba(255, 255, 255, 0.1);

  --max: 1560px;
  --px: clamp(24px, 4vw, 56px);
  --py: clamp(80px, 10vw, 140px);

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --ease-framer: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s var(--ease-framer), transform 0.8s var(--ease-framer);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1  { transition-delay: 0.1s; }
.delay-2  { transition-delay: 0.2s; }
.delay-3  { transition-delay: 0.3s; }
.delay-4  { transition-delay: 0.4s; }
.delay-5  { transition-delay: 0.5s; }
.delay-6  { transition-delay: 0.6s; }
.delay-7  { transition-delay: 0.7s; }
.delay-8  { transition-delay: 0.8s; }
.delay-9  { transition-delay: 0.9s; }
.delay-10 { transition-delay: 1.0s; }
.delay-15 { transition-delay: 1.5s; }

/* ─── BASE ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-white);
  color: var(--lt2);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.page-wrap { overflow-x: hidden; }

/* ─── LAYOUT ──────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ─── TYPE ──────────────────────────────────── */
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow.on-dark { color: var(--lime); }

.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: currentColor;
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 em { font-style: italic; font-weight: 300; color: var(--purple); }
h1 .hi { color: var(--ink); }

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h2 em { font-style: italic; font-weight: 300; color: var(--purple); }
h2.on-dark { color: var(--dt1); }
h2.on-dark em { color: var(--dt2); }

h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

h3.on-dark { color: var(--dt1); }

p { font-size: 15px; line-height: 1.8; color: var(--lt2); }
p.on-dark { color: var(--dt3); }
p strong { color: var(--ink); font-weight: 400; }

/* ─── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 100px;
  transition: all .4s var(--ease-framer);
}

.btn:hover { transform: translateY(-3px) scale(1.02); opacity: 0.9; }
.btn:active { transform: scale(0.95); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
  padding: 16px 32px;
}

.nav-links a.nav-cta {
  color: var(--lime);
  padding: 10px 20px;
  font-size: 10px;
}

.nav-links a.nav-cta:hover {
  background: var(--lime);
  color: var(--ink);
  opacity: 1;
  transform: none;
}

.btn-lime {
  background: var(--lime);
  color: var(--ink);
  padding: 16px 32px;
}

.btn-ghost-dark {
  border: 1px solid var(--border-l);
  color: var(--lt2);
  background: transparent;
  padding: 15px 28px;
}

.btn-ghost-dark:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(39, 21, 84, 0.03);
}

.btn-ghost-light {
  border: 1px solid var(--border-d);
  color: var(--dt2);
  background: transparent;
  padding: 15px 28px;
}

.btn-ghost-light:hover {
  border-color: var(--lav);
  color: var(--dt1);
  background: rgba(255, 255, 255, 0.05);
}

.btn-text-dark {
  color: var(--lt3);
  font-size: 13px;
  letter-spacing: .06em;
  background: none;
  padding: 0;
}

.btn-text-dark::after {
  content: ' →';
  transition: transform .3s var(--ease-framer);
  display: inline-block;
}

.btn-text-dark:hover { color: var(--ink); opacity: 1; transform: none; }
.btn-text-dark:hover::after { transform: translateX(4px); }

.hero-actions .btn { padding: 18px 40px; font-weight: 500; letter-spacing: 0.02em; }

/* ─── IMAGE PLACEHOLDERS ──────────────────── */
.ph {
  background: var(--bg-mid);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-framer), opacity 0.3s;
}

.ph img,
.ph video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph:hover { transform: scale(0.97); opacity: 0.95; }

.play-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  z-index: 20;
  transition: transform 0.3s var(--ease-framer), background 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.play-badge:hover { transform: scale(1.1); background: var(--white); }

/* ─── NAV ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: none;
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
  will-change: background, backdrop-filter;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(32px) saturate(1.8);
  -webkit-backdrop-filter: blur(32px) saturate(1.8);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo svg { width: 180px; height: auto; display: block; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 32px; }

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-framer);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-mobile-actions { display: none; align-items: center; gap: 12px; }
.ic-whatsapp { display: none; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
  transition: transform 0.3s var(--ease-framer);
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.4s var(--ease-framer), opacity 0.3s, background 0.3s;
  transform-origin: center;
}

.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── MOBILE OVERLAY (fundo escuro atrás do drawer) ─── */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.menu-open .nav-overlay { opacity: 1; visibility: visible; }

/* ─── MOBILE DRAWER (slide da direita, estilo Nike) ─── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: #DBD2FF;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-framer);
  visibility: hidden;
  overflow-y: auto;
}

.menu-open .nav-drawer { transform: translateX(0); visibility: visible; }

.drawer-header {
  display: flex;
  justify-content: flex-end;
  padding: 20px 24px;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.drawer-close:hover { opacity: 0.6; }

.drawer-inner {
  flex: 1;
  padding: 8px 32px 40px;
}

.drawer-links { list-style: none; display: flex; flex-direction: column; gap: 0; }

.drawer-links li {
  border-bottom: 1px solid rgba(39, 21, 84, 0.08);
}

.drawer-links a {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: 18px 0;
  transition: color 0.2s;
}

.drawer-links a:hover { color: var(--purple); }

.drawer-footer {
  padding: 24px 32px;
  border-top: 1px solid rgba(39, 21, 84, 0.08);
  font-size: 9px;
  color: var(--lt4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}

/* ─── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  background: var(--bg-white);
  padding-top: clamp(120px, 18vw, 240px);
  padding-bottom: clamp(64px, 10vw, 160px);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(220, 228, 255, 0.7) 0%, rgba(220, 228, 255, 0.2) 50%, rgba(220, 228, 255, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  clip-path: inset(0);
  pointer-events: none;
}

.hero-video-bg video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 80px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2.5s infinite;
  vertical-align: middle;
}

@keyframes pulse {
  0%, 100% { opacity: 1 }
  50% { opacity: .3 }
}

.hero-kicker span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple);
}

.kicker-ia {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.hero h1 {
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.4);
}

.hero-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--lt1);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.75;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
}

.hero-actions { display: flex; flex-direction: column; gap: 16px; align-items: center; }

/* hero image mosaic */
.hero-masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  align-items: start;
}

.hm-col { display: flex; flex-direction: column; gap: 16px; }

.hm-col:nth-child(1) { margin-top: 40px; }
.hm-col:nth-child(2) { margin-top: 80px; }
.hm-col:nth-child(3) { margin-top: 0px; }
.hm-col:nth-child(4) { margin-top: 50px; }
.hm-col:nth-child(5) { margin-top: 20px; }

.ar-tall { aspect-ratio: 4/5; }
.ar-long { aspect-ratio: 3/4; }
.ar-sq   { aspect-ratio: 1/1; }

.hm-col .ph {
  box-shadow: 0 4px 20px rgba(39, 21, 84, 0.08);
  width: 100%;
  background: none;
}

@media (max-width: 900px) {
  .hero { padding-top: clamp(120px, 18vw, 240px); }
  .hero-inner { gap: 60px; }
  .hero-masonry { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hm-col { gap: 12px; }
  .hm-col:nth-child(4), .hm-col:nth-child(5) { display: none; }

  /* video: remover parallax no mobile para evitar pulo ao rolar */
  .hero-video-bg { clip-path: none; }
  .hero-video-bg video { position: absolute; }

  .hero-kicker { flex-direction: column; gap: 2px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(30px, 8.5vw, 42px); }
  .hero-sub { font-size: 14px; line-height: 1.65; margin-bottom: 28px; }
  .hero-kicker { margin-bottom: 16px; flex-direction: column; gap: 2px; }
  .hero-actions .btn { padding: 14px 32px; }
  .hero { padding-bottom: clamp(40px, 8vw, 80px); }

  .hero-inner { gap: 40px; }
  .hero-masonry { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hm-col { gap: 8px; }
  .hm-col:nth-child(3) { display: none; }
  .hm-col:nth-child(1) { margin-top: 0; }
  .hm-col:nth-child(2) { margin-top: 30px; }
}

/* ─── TICKER ──────────────────────────────── */
.ticker {
  background: var(--bg-dark);
  padding-block: 14px;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0) }
  to   { transform: translateX(-50%) }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-right: 40px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(220, 210, 255, .55);
}

.ticker-item .dot { color: var(--lime); opacity: .6; }

/* ─── GALLERY ─────────────────────────────── */
.gallery-section {
  background: var(--bg-lav);
  padding-block: var(--py);
}

.gallery-header {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
  text-align: center;
  margin-bottom: 56px;
}

.gallery-header h2 { margin-bottom: 12px; }

.gallery-header p {
  color: var(--lt3);
  font-size: 14px;
  max-width: 420px;
  margin-inline: auto;
}

.gallery-grid {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-grid .ph {
  aspect-ratio: 3/4;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Ccircle cx='22' cy='22' r='22' fill='rgba(39%2C21%2C84%2C0.7)'/%3E%3Cpolygon points='18%2C13 18%2C31 34%2C22' fill='%23DCFF7D'/%3E%3C/svg%3E") 22 22, pointer;
  transition: transform 0.5s var(--ease-framer), opacity 0.5s var(--ease-framer);
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.gallery-grid .ph.is-playing {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Ccircle cx='22' cy='22' r='22' fill='rgba(39%2C21%2C84%2C0.7)'/%3E%3Crect x='14' y='13' width='6' height='18' fill='%23DCFF7D'/%3E%3Crect x='24' y='13' width='6' height='18' fill='%23DCFF7D'/%3E%3C/svg%3E") 22 22, pointer;
}

.gallery-grid .ph video { pointer-events: none; }

.gallery-footer {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-footer p { font-size: 13px; color: var(--lt3); }

/* ─── SPLIT SECTION ──────────────────────── */
.split-section {
  background: var(--bg-peri);
  padding-block: var(--py);
}

.split-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.spl-col { display: flex; flex-direction: column; gap: 12px; }

.spl-col:nth-child(1) { margin-top: 20px; }
.spl-col:nth-child(2) { margin-top: 50px; }
.spl-col:nth-child(3) { margin-top: 0; }

.spl-tall { aspect-ratio: 2/3; }
.spl-sq   { aspect-ratio: 4/5; }

.split-grid .ph { background: none; }

@media (max-width: 900px) {
  .split-inner { grid-template-columns: 1fr; gap: 60px; }
  .split-grid { padding-inline: 20px; }
}

.split-text .eyebrow { margin-bottom: 20px; }
.split-text h2 { margin-bottom: 24px; }
.split-text p  { margin-bottom: 32px; }

/* ─── PACKAGES ────────────────────────────── */
.pkg-section {
  background: var(--bg-white);
  padding-block: var(--py);
}

.pkg-header {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.pkg-header h2 { flex: 1; }
.pkg-header p  { max-width: 320px; text-align: right; font-size: 13px; color: var(--lt3); }

.pkg-cards {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pkg-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(39, 21, 84, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s var(--ease-framer), box-shadow 0.4s var(--ease-framer), border-color 0.4s;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(39, 21, 84, 0.08);
  border-color: rgba(39, 21, 84, 0.15);
}

.pkg-card.featured {
  background: var(--bg-dark);
  border-color: transparent;
}

/* card background palette */
.pkg-card--peri   { background: #DCE4FF; border-color: transparent; }
.pkg-card--lav    { background: #DBD2FF; border-color: transparent; }
.pkg-card--purple { background: #524382; } /* overrides featured's --bg-dark */

.pkg-pill {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 12px;
  align-self: flex-start;
}

.pkg-pill.light { color: var(--purple); background: var(--bg-mid); border: 1px solid rgba(39, 21, 84, .12); }
.pkg-pill.dark  { color: var(--lime); background: rgba(220, 255, 125, .1); border: 1px solid rgba(220, 255, 125, .2); }

.pkg-title {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
}

.pkg-title em { font-style: italic; font-weight: 300; }

.pkg-card:not(.featured) .pkg-title    { color: var(--ink); }
.pkg-card:not(.featured) .pkg-title em { color: var(--purple); }
.pkg-card.featured .pkg-title          { color: var(--dt1); }
.pkg-card.featured .pkg-title em       { color: var(--lav); }

.pkg-tagline { font-size: 14px; color: var(--lt3); line-height: 1.7; margin-top: 10px; }
.pkg-card.featured .pkg-tagline { color: var(--dt3); }

.pkg-divider { height: 1px; background: var(--border-l); }
.pkg-card.featured .pkg-divider { background: var(--border-d); }

.pkg-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lt4);
  margin-bottom: 12px;
}

.pkg-card.featured .pkg-label { color: rgba(220, 210, 255, .4); }

.pkg-list { list-style: none; }

.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-block: 11px;
  border-bottom: 1px solid rgba(39, 21, 84, .06);
  font-size: 14px;
  color: var(--lt2);
  line-height: 1.4;
}

.pkg-card.featured .pkg-list li { border-color: rgba(255, 255, 255, .06); color: var(--dt2); }
.pkg-list li:last-child { border-bottom: none; }

.ic-arrow { color: var(--purple); flex-shrink: 0; margin-top: 1px; }
.pkg-card.featured .ic-arrow { color: var(--lime); }
.ic-arrow--plus { color: var(--lav); }

.qty--dim { color: rgba(220, 210, 255, .35); }

.qty {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--purple);
  margin-left: auto;
  flex-shrink: 0;
  padding-left: 10px;
}

.pkg-card.featured .qty { color: var(--lime); }

.pkg-vol-box {
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: var(--bg-mid);
  border: 1px solid rgba(39, 21, 84, .1);
}

.pkg-vol-num {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.pkg-vol-lbl { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--lt3); letter-spacing: .1em; }

.pkg-cta-row { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.pkg-cta-row .btn { align-self: flex-start; }

.pkg-commit {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lt4);
}

.pkg-card.featured .pkg-commit { color: rgba(220, 210, 255, .3); }

.pkg-format {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lt3);
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(39, 21, 84, .12);
  border-radius: 100px;
  align-self: flex-start;
}
.pkg-card.featured .pkg-format { color: rgba(220, 210, 255, .4); border-color: rgba(220, 210, 255, .15); }

.pkg-bonus {
  background: rgba(205, 255, 74, .08);
  border: 1px solid rgba(205, 255, 74, .25);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--lt2);
}
.pkg-bonus strong { color: var(--purple); font-weight: 600; }

/* ─── ON DEMAND ──────────────────────────── */
.od-section {
  background: var(--bg-dark);
  padding-block: var(--py);
}

.od-wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--px); }

.od-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}

.od-top h2 { flex: 1; color: var(--dt1); }
.od-top h2 em { color: var(--lav); font-style: italic; font-weight: 300; }
.od-top p { max-width: 280px; text-align: right; font-size: 14px; color: var(--dt3); }

.od-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 20px;
}

.od-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 48px;
  transition: background 0.4s, transform 0.4s var(--ease-framer);
}

.od-row:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px) scale(1.02);
}

.od-cta { margin-top: 48px; }

.od-row-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 700;
  color: var(--dt1);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.od-row-name em { font-style: italic; font-weight: 300; color: var(--lav); }

.od-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: 14px;
  align-content: flex-start;
}

.od-row-tags span {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(220, 210, 255, .5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.od-row-tags span::before { content: '+'; color: var(--lime); opacity: .65; }

/* ─── PROCESS ────────────────────────────── */
.proc-section {
  background: var(--bg-white);
  padding-block: var(--py);
}

.proc-wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--px); }

.proc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}

.proc-top h2 { flex: 1; }
.proc-top p { margin-top: 16px; max-width: 480px; font-size: 14px; }

.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.proc-step {
  padding: 32px;
  background: var(--bg-mid);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease-framer);
}

.proc-step:hover { transform: translateY(-6px); }

.proc-n {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(39, 21, 84, .05);
  line-height: 1;
  margin-bottom: 16px;
  user-select: none;
}

.proc-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(39, 21, 84, .15);
}

.proc-step h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.proc-step p { font-size: 13px; color: var(--lt3); line-height: 1.75; }

.timeline-strip {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-l);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border-l);
}

.tl-cell { background: var(--bg-white); padding: 18px 20px; }
.tl-cell.active { background: var(--ink); }

.tl-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lt4);
  margin-bottom: 4px;
}

.tl-cell.active .tl-label { color: var(--lime); opacity: .7; }
.tl-value { font-size: 13px; color: var(--lt2); }
.tl-cell.active .tl-value { color: var(--dt1); }

/* ─── FAQ ────────────────────────────────── */
.faq-section {
  background: var(--bg-lav);
  padding-block: var(--py);
}

.faq-wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  align-items: start;
}

@media (max-width: 1100px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 56px; }
  .faq-top  { position: static; }
}

.faq-top { position: sticky; top: 140px; }
.faq-top h2 { margin-bottom: 24px; }
.faq-top p { margin-bottom: 32px; font-size: 14px; opacity: 0.7; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-list details {
  background: var(--bg-peri);
  border: none;
  border-radius: var(--radius-lg);
  transition: background-color .4s var(--ease-framer), transform .3s ease;
  overflow: hidden;
}

.faq-list details:hover:not([open]) { background: #D3DBFF; transform: translateY(-2px); }
.faq-list details[open] { background: var(--purple); }

details summary {
  list-style: none;
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 24px;
}

details summary::-webkit-details-marker { display: none; }

.faq-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(39, 21, 84, 0.4);
  flex-shrink: 0;
  width: 28px;
  transition: color .4s;
}

details[open] .faq-num { color: var(--lime); }

.faq-q-text {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  flex: 1;
  transition: color .4s;
}

details[open] .faq-q-text { color: var(--dt1); }

.faq-arr {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(39, 21, 84, 0.1);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform .4s var(--ease-framer), border-color .4s, color .4s, background-color .4s;
}

details[open] .faq-arr {
  transform: rotate(45deg);
  border-color: transparent;
  color: var(--ink);
  background: var(--lime);
}

.faq-body {
  padding: 0 32px 32px 84px;
  font-size: 15px;
  color: var(--lt2);
  line-height: 1.8;
  max-width: 680px;
  transition: color .4s;
}

details[open] .faq-body { color: var(--dt2); }

/* ─── CTA ────────────────────────────────── */
.cta-section {
  background: var(--bg-dark);
  padding-block: var(--py);
  position: relative;
  overflow: hidden;
}

.cta-bg-blob {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 67, 130, .4) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-inner h2.on-dark { margin-bottom: 20px; max-width: 640px; }
.cta-inner p.on-dark  { max-width: 440px; font-size: 16px; margin-bottom: 48px; }

.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-block: 28px;
}

.footer-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

footer .logo { color: var(--dt1); }

footer p {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(220, 210, 255, .3);
}

.footer-links { list-style: none; display: flex; gap: 28px; }

.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(220, 210, 255, .35);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--lime); }

/* ─── WHO FOR ────────────────────────────── */
.who-section {
  background: var(--bg-peri);
  padding-block: var(--py);
}

.who-wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--px); }

.who-header { text-align: center; margin-bottom: 56px; }
.who-header h2 { margin-top: 12px; }
.who-header .eyebrow { justify-content: center; }

.who-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.who-card {
  background: var(--bg-white);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s;
}

.who-card:hover { transform: translateY(-4px); }

.who-card-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-l);
}

.who-list { list-style: none; }

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-block: 12px;
  border-bottom: 1px solid rgba(39, 21, 84, .05);
  font-size: 14px;
  color: var(--lt2);
  line-height: 1.5;
}

.who-list li:last-child { border-bottom: none; }

.who-ic {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.who-ic.yes { background: var(--lime); color: var(--ink); }
.who-ic.no  { background: rgba(212, 90, 58, .15); color: #c04a2c; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  /* Bloqueia overscroll que causa show/hide da barra do navegador */
  body { overscroll-behavior-y: contain; }

  /* Nav mobile: fundo peri, sem backdrop-filter */
  .nav {
    background: rgba(220, 228, 255, 0.85);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: background .3s ease, box-shadow .3s ease;
    will-change: auto;
  }
  .nav.scrolled {
    background: rgba(220, 228, 255, 0.92) !important;
    box-shadow: 0 1px 3px rgba(39, 21, 84, 0.06);
  }

  /* No mobile, desativar transição de fill na logo */
  .nav .logo svg path { transition: none !important; }

  /* Quando sobre seção dark: nav fica dark, HERIO muda para peri, Brand Office mantém */
  .nav.on-dark {
    background: rgba(39, 21, 84, 0.85) !important;
  }
  .nav.scrolled.on-dark {
    background: rgba(39, 21, 84, 0.92) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .nav.on-dark .nav-hamburger span { background: var(--lime) !important; }
  .nav.on-dark .mobile-cta { background: transparent !important; color: var(--lime) !important; }

  /* HERIO: H(13) E(14) R(15) I(16) O-outline(2) O-dot(12) → peri no fundo dark */
  .nav.on-dark .logo svg path:nth-child(2),
  .nav.on-dark .logo svg path:nth-child(12),
  .nav.on-dark .logo svg path:nth-child(13),
  .nav.on-dark .logo svg path:nth-child(14),
  .nav.on-dark .logo svg path:nth-child(15),
  .nav.on-dark .logo svg path:nth-child(16) { fill: var(--peri) !important; }

  /* Brand Office (paths 3-11) → manter ink (sobre o círculo lime, não mudam) */
  .nav.on-dark .logo svg path:nth-child(3),
  .nav.on-dark .logo svg path:nth-child(4),
  .nav.on-dark .logo svg path:nth-child(5),
  .nav.on-dark .logo svg path:nth-child(6),
  .nav.on-dark .logo svg path:nth-child(7),
  .nav.on-dark .logo svg path:nth-child(8),
  .nav.on-dark .logo svg path:nth-child(9),
  .nav.on-dark .logo svg path:nth-child(10),
  .nav.on-dark .logo svg path:nth-child(11) { fill: var(--ink) !important; }
  .nav-links { display: none; }
  .nav-mobile-actions { display: flex; gap: 16px; }
  .nav-inner { padding-block: 12px; }
  .logo svg { width: 120px; }

  /* Hamburger: esconder quando drawer aberto (drawer tem X) */
  .menu-open .nav-hamburger { opacity: 0; pointer-events: none; }

  .mobile-cta {
    padding: 10px 18px;
    font-size: 9px;
    letter-spacing: 0.05em;
  }

  /* ícone whatsapp no mobile */
  .ic-whatsapp { display: block !important; flex-shrink: 0; }
  .mobile-cta .cta-label { display: none !important; }
  .mobile-cta { padding: 10px !important; border-radius: 50% !important; }

  body.menu-open { overflow: hidden; }

  .gallery-grid { grid-template-columns: 1fr; }
  .split-inner  { grid-template-columns: 1fr; }
  .pkg-header   { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pkg-header p { text-align: left; max-width: none; }
  .pkg-cards    { grid-template-columns: 1fr; }
  .pkg-card     { padding: 28px; }
  .pkg-format   { white-space: nowrap; }
  .pkg-cta-row .btn { white-space: nowrap; }
  .pkg-commit   { white-space: nowrap; }
  .who-cards    { grid-template-columns: 1fr; }
  .od-rows      { grid-template-columns: 1fr; }
  .od-top p     { text-align: left; }

  .proc-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .timeline-strip { grid-template-columns: 1fr 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .faq-top { position: static; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .od-row-name { font-size: clamp(28px, 9vw, 44px); }
  .proc-steps  { grid-template-columns: 1fr; }
}

/* ─── ANIMATE ────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px) }
  to   { opacity: 1; transform: translateY(0) }
}

.hero-kicker   { animation: fadeUp .6s ease both; }
.hero h1       { animation: fadeUp .6s .1s ease both; }
.hero-sub      { animation: fadeUp .6s .2s ease both; }
.hero-actions  { animation: fadeUp .6s .3s ease both; }

/* ─── DARK SECTIONS HEADER LOGIC ──────────── */
.nav.on-dark .nav-links a { color: var(--lime) !important; }

.nav.on-dark .nav-links a.nav-cta {
  transition: background .2s, color .2s, transform .15s !important;
  background: var(--lime) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
}

.nav.on-dark .nav-links a.nav-cta:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px);
}

.nav .logo svg path { transition: fill 0.35s ease; }

/* Desktop only: HERIO letters → peri on dark sections */
@media (min-width: 901px) {
  .nav.on-dark .logo svg path:nth-child(2),
  .nav.on-dark .logo svg path:nth-child(12),
  .nav.on-dark .logo svg path:nth-child(13),
  .nav.on-dark .logo svg path:nth-child(14),
  .nav.on-dark .logo svg path:nth-child(15),
  .nav.on-dark .logo svg path:nth-child(16) { fill: var(--peri) !important; }
}

footer .logo svg path:nth-child(1) { fill: var(--lime) !important; }

footer .logo svg path:nth-child(2),
footer .logo svg path:nth-child(12),
footer .logo svg path:nth-child(13),
footer .logo svg path:nth-child(14),
footer .logo svg path:nth-child(15),
footer .logo svg path:nth-child(16) { fill: var(--peri) !important; }

footer .logo svg path:nth-child(3),
footer .logo svg path:nth-child(4),
footer .logo svg path:nth-child(5),
footer .logo svg path:nth-child(6),
footer .logo svg path:nth-child(7),
footer .logo svg path:nth-child(8),
footer .logo svg path:nth-child(9),
footer .logo svg path:nth-child(10),
footer .logo svg path:nth-child(11) { fill: var(--ink) !important; }
