:root {
  --black:    #0A0A0A;
  --s1:       #111111;
  --s2:       #181818;
  --s3:       #222222;
  --white:    #F0EDE6;
  --w80:      rgba(240,237,230,0.80);
  --w60:      rgba(240,237,230,0.55);
  --w30:      rgba(240,237,230,0.28);
  --w40:      rgba(240,237,230,0.45);
  --w10:      rgba(240,237,230,0.10);
  --w05:      rgba(240,237,230,0.05);
  --orange:   #F4711A;
  --orange-h: #FF8C35;
  --o20:      rgba(244,113,26,0.18);
  --o08:      rgba(244,113,26,0.06);
  --f-d: 'Bebas Neue', sans-serif;
  --f-t: 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-d: cubic-bezier(0.32, 0.72, 0, 1);
  --r-s: 6px; --r-m: 12px; --r-l: 16px; --r-img: 20px; --r-pill: 9999px;
  --sp-y: clamp(64px, 7vw, 96px);     /* padding vertical uniforme entre secciones */
  --sp-x: clamp(24px, 5vw, 80px);     /* padding horizontal uniforme */
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-t);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; width: 100%; }
button { font-family: var(--f-t); cursor: pointer; border: none; }
a { text-decoration: none; color: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1200px;
  z-index: 100; display: flex; align-items: center; gap: 32px;
  background: rgba(10,10,10,0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--w10); border-radius: var(--r-pill); padding: 12px 28px;
  transition: background 300ms var(--ease), border-color 300ms var(--ease); white-space: nowrap;
}
.nav-links { margin-left: auto; }
.nav.scrolled { background: rgba(10,10,10,0.92); border-color: var(--o20); }
.nav.on-light { background: rgba(240,237,230,0.88); border-color: rgba(10,10,10,0.08); }
.nav.on-light .nav-logo, .nav.on-light .nav-links a { color: var(--black); }
.nav.on-light .nav-links a:hover { color: var(--orange); }
.nav.on-light .hl { background: var(--black); }

.nav-logo { font-family: var(--f-d); font-size: 24px; letter-spacing: 0.03em; color: var(--white); transition: color 300ms var(--ease); }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 500; color: var(--w60); letter-spacing: 0.02em; transition: color 200ms var(--ease); }
@media (hover: hover) and (pointer: fine) { .nav-links a:hover { color: var(--white); } }

.nav-cta {
  background: var(--white); color: var(--black); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 9px 18px;
  border-radius: var(--r-pill); transition: background 200ms var(--ease), transform 100ms var(--ease);
}
@media (hover: hover) and (pointer: fine) { .nav-cta:hover { background: rgba(240,237,230,0.85); } }
.nav-cta:active { transform: scale(0.97); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 6px; }
.hl { display: block; width: 20px; height: 1.5px; background: var(--white); border-radius: 2px; transition: transform 300ms var(--ease), opacity 200ms, background 300ms var(--ease); }
.nav-hamburger.open .hl:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open .hl:nth-child(2) { opacity: 0; }
.nav-hamburger.open .hl:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mm { position: fixed; inset: 0; background: rgba(10,10,10,0.97); backdrop-filter: blur(24px); z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity 350ms var(--ease); }
.mm.open { opacity: 1; pointer-events: all; }
.mm a { font-family: var(--f-d); font-size: 44px; letter-spacing: 0.04em; color: var(--white); opacity: 0; transform: translateY(16px); transition: color 200ms var(--ease), opacity 350ms var(--ease), transform 350ms var(--ease); }
.mm.open a { opacity: 1; transform: translateY(0); }
.mm.open a:nth-child(1) { transition-delay: 50ms; }
.mm.open a:nth-child(2) { transition-delay: 100ms; }
.mm.open a:nth-child(3) { transition-delay: 150ms; }
.mm.open a:nth-child(4) { transition-delay: 200ms; }
.mm.open a:nth-child(5) { transition-delay: 250ms; }
@media (hover: hover) and (pointer: fine) { .mm a:hover { color: var(--orange); } }

/* ═══ SHARED ═══ */
.btn-p { display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--black); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; padding: 14px 24px 14px 28px; border-radius: var(--r-pill); transition: background 200ms var(--ease), transform 100ms var(--ease); }
@media (hover: hover) and (pointer: fine) { .btn-p:hover { background: rgba(240,237,230,0.85); } .btn-p:hover .bi { transform: translateX(3px); } }
.btn-p:active { transform: scale(0.97); }
.bi { width: 28px; height: 28px; background: rgba(10,10,10,0.10); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; transition: transform 200ms var(--ease); }

.btn-o { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-size: 13px; font-weight: 500; padding: 13px 24px; border-radius: var(--r-pill); border: 1px solid var(--w30); transition: border-color 200ms var(--ease), background 200ms var(--ease); }
@media (hover: hover) and (pointer: fine) { .btn-o:hover { border-color: var(--orange); background: var(--o08); } }

.btn-dark { display: inline-flex; align-items: center; gap: 10px; background: var(--black); color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; padding: 14px 24px 14px 28px; border-radius: var(--r-pill); transition: background 200ms var(--ease), transform 100ms var(--ease); }
@media (hover: hover) and (pointer: fine) { .btn-dark:hover { background: #1a1a1a; } }
.btn-dark:active { transform: scale(0.97); }

/* Reveal */
.rv { opacity: 1; transform: translateY(0); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.rv.h { opacity: 0; transform: translateY(28px); }
.rv-clip { overflow: hidden; }
.rv-inner { transform: translateY(0); transition: transform 800ms var(--ease); }
.rv-inner.h { transform: translateY(105%); }

/* Placeholder */
.ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.ph-r { width: 56px; height: 56px; border: 1px solid var(--w10); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ph-r svg { width: 20px; height: 20px; stroke: var(--w30); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ph-l { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--w40); }

.cam-svg { display: inline-block; }

/* ═══ S1 — HERO ═══ */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--black);
  padding: 96px clamp(16px, 3vw, 28px) clamp(16px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.hero-card {
  position: relative;
  flex: 1;
  border-radius: var(--r-img);
  overflow: hidden;
  min-height: 0;
}

.hero-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 15%;
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.4) 35%,
    rgba(10,10,10,0.1) 60%,
    transparent 100%
  );
}

.hero-c {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(24px, 5vw, 64px);
  z-index: 2;
}

.hero-headline {
  font-family: var(--f-t);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  text-wrap: balance;
  max-width: 640px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(40px);
  animation: su 700ms 200ms var(--ease) forwards;
}

.hero-acts {
  opacity: 0;
  transform: translateY(16px);
  animation: fu 500ms 600ms var(--ease) forwards;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--black);
  font-family: var(--f-t);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: background 200ms var(--ease), transform 100ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .btn-hero:hover { background: rgba(240,237,230,0.85); }
}
.btn-hero:active { transform: scale(0.97); }

/* ═══ S2 — QUIÉN SOY ═══ */
.qs { background: var(--black); padding: clamp(100px, 11vh, 130px) 0 64px; overflow: hidden; display: flex; flex-direction: column; scroll-snap-align: start; }
.qs-hdr { padding: 0 var(--sp-x); margin-bottom: 8px; }
.qs-t { font-family: var(--f-d); font-size: clamp(42px, 5.5vw, 68px); letter-spacing: 0.02em; color: var(--white); line-height: 0.95; margin-bottom: 14px; text-wrap: balance; }
.qs-sub { font-size: 15px; font-weight: 300; color: var(--w60); line-height: 1.7; max-width: none; }

/* Desktop: horizontal scroll */
.qs-track-w { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 12px var(--sp-x) 24px; cursor: grab; }
.qs-track-w::-webkit-scrollbar { display: none; }
.qs-track-w.grabbing { cursor: grabbing; }
.qs-track { display: flex; gap: 16px; width: max-content; }

.qs-c { width: clamp(260px, 22vw, 320px); flex-shrink: 0; cursor: pointer; }

.qs-c-visual {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: var(--r-l);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--w10);
}

@media (hover: hover) and (pointer: fine) {
  .qs-c-visual { transition: border-color 300ms var(--ease), transform 350ms var(--ease); }
  .qs-c:hover .qs-c-visual { border-color: var(--o20); transform: translateY(-4px); }
  .qs-c:hover .qs-stripe { transform: scaleX(1); }
}

.qs-c-bg { position: absolute; inset: 0; }
.qs-c-bg img { width: 100%; height: 100%; object-fit: cover; }

.qs-stripe { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--orange); transform-origin: left; transform: scaleX(0.25); transition: transform 400ms var(--ease); z-index: 2; }

.qs-c-ct {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 55%, transparent 100%);
  z-index: 1;
}

.qs-role { font-family: var(--f-d); font-size: clamp(32px, 3vw, 42px); letter-spacing: 0.03em; color: var(--white); display: block; line-height: 0.95; }

.qs-card-sub {
  padding: 18px 6px 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--w80);
  line-height: 1.6;
}

.qs-sub-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.qs-sub-text {
  flex: 1;
  padding-right: 12px;
}

.qs-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.qs-arr-btn {
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--w10);
  border-radius: 50%;
  color: var(--w60);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 200ms var(--ease), color 200ms var(--ease), background 200ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .qs-arr-btn:hover { border-color: var(--w30); color: var(--white); background: var(--w05); }
}

.qs-arr-btn:active { transform: scale(0.95); }

/* Mobile/Tablet: vertical stacked cards with parallax stagger */
.qs-vertical { display: none; padding: 0 24px; }

.qs-v-card {
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.qs-v-card.visible { opacity: 1; transform: translateY(0); }

.qs-v-visual {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: var(--r-l);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--w10);
}

.qs-v-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.qs-v-visual .qs-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  z-index: 2;
}

.qs-v-ct {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 55%, transparent 100%);
  z-index: 1;
}

.qs-v-role { font-family: var(--f-d); font-size: clamp(28px, 7vw, 36px); letter-spacing: 0.03em; color: var(--white); line-height: 0.95; }

.qs-v-sub {
  padding: 12px 4px 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--w80);
  line-height: 1.6;
}

/* ═══ S3 — QUÉ ES FELIZ ═══ */
.qe {
  position: relative;
  min-height: 260vh;
  background: var(--black);
  scroll-snap-align: start;
}

/* Sticky frame: ocupa exactamente el viewport mientras el usuario scrollea */
.qe-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.qe-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Fase 1: overlay invisible → Fase 2: se oscurece con el texto */
.qe-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.30) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.30) 70%,
    rgba(10,10,10,0.60) 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 900ms var(--ease);
}
.qe-ov.show { opacity: 1; }

/* Fase 1: texto invisible → Fase 2: emerge con el overlay */
.qe-ct {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  width: 90%;
  padding: 0 clamp(16px, 3vw, 40px);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  pointer-events: none;
}
.qe-ct.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Controles de video */
.qe-controls {
  position: absolute;
  bottom: clamp(24px, 5vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
}

.qe-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(240,237,230,0.12);
  border: 1px solid rgba(240,237,230,0.22);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--white);
  flex-shrink: 0;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), transform 130ms var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .qe-btn:hover { background: rgba(240,237,230,0.24); border-color: rgba(240,237,230,0.40); }
}
.qe-btn:active { transform: scale(0.93); }

/* Por defecto se ve play; cuando el video corre se muestra pause */
.qe-btn-pause { display: none; }
.qe-controls.playing .qe-btn-play  { display: none; }
.qe-controls.playing .qe-btn-pause { display: flex; }

/* Audio activation prompt */
.qe-audio-prompt {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms var(--ease);
}
.qe-audio-prompt.show {
  opacity: 1;
  pointer-events: auto;
}
.qe-audio-prompt.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease);
}

.qe-audio-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  animation: qeAudioPulse 2s ease-in-out infinite;
}

.qe-audio-icon {
  width: 64px;
  height: 64px;
  padding: 16px;
  background: rgba(240,237,230,0.14);
  border: 1px solid rgba(240,237,230,0.30);
  border-radius: 50%;
  transition: background 200ms var(--ease), transform 200ms var(--ease), border-color 200ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .qe-audio-btn:hover .qe-audio-icon {
    background: rgba(244,113,26,0.22);
    border-color: var(--orange);
    transform: scale(1.08);
  }
}

.qe-audio-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--w80);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

@keyframes qeAudioPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.qe-title {
  font-family: var(--f-t);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 8px 40px rgba(0,0,0,0.3);
  margin-bottom: 32px;
  text-wrap: balance;
}

.qe-accent { color: var(--orange); }

/* ═══ S4 — SERVICIOS ═══ */
.srv {
  position: relative;
  background: var(--white);
  min-height: 220vh;   /* fase-hero + layout */
  scroll-snap-align: start;
}

/* ── Fase 1: título hero centrado, sticky ── */
.srv-hero {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  transition: opacity 400ms var(--ease);
}
.srv-hero.hidden {
  opacity: 0;
  pointer-events: none;
}
.srv-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.srv-hero-label {
  font-family: var(--f-d);
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: 0.04em;
  color: var(--orange);
  text-align: center;
}
.srv-hero-t {
  font-family: var(--f-d);
  font-size: clamp(72px, 12vw, 160px);
  letter-spacing: 0.01em;
  line-height: 0.90;
  color: var(--black);
  text-align: center;
  will-change: transform, opacity;
  transition: transform 500ms var(--ease), opacity 400ms var(--ease);
}

/* ── Fase 2+3: layout final, sticky por encima ── */
.srv-inner {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 4vw, 64px);
  align-items: center;
  padding: clamp(100px, 11vh, 130px) var(--sp-x) clamp(48px, 6vh, 80px) var(--sp-x);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms var(--ease);
  z-index: 1;
  margin-top: -100dvh;
}
.srv-inner.visible {
  opacity: 1;
  pointer-events: auto;
}

/* imagen: entra desde la izquierda */
.srv-left {
  opacity: 0;
  transform: translateX(-48px) scale(0.95);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.srv-left.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* contenido derecha */
.srv-right { display: flex; flex-direction: column; }
.srv-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease);
}
.srv-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* tipografías */
.srv-t { font-family: var(--f-d); font-size: clamp(56px, 7vw, 88px); letter-spacing: 0.01em; line-height: 0.92; color: var(--black); margin-bottom: 20px; }
.srv-lb { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.srv-sub { font-size: 16px; font-weight: 300; color: rgba(10,10,10,0.50); line-height: 1.75; margin-bottom: 28px; max-width: 420px; }

/* lista narrativa */
.srv-list { border-top: 1px solid rgba(10,10,10,0.08); margin-bottom: 36px; }
.srv-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.srv-n { font-family: var(--f-d); font-size: clamp(28px, 3vw, 38px); letter-spacing: 0.02em; color: var(--black); line-height: 1; }

/* imagen */
.srv-img-w {
  border-radius: var(--r-img);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: calc(100dvh - clamp(160px, 18vh, 220px));
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, #e0ddd4 0%, #c8c4b8 100%);
}
.srv-img-w img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }

/* ═══ S5 — TESTIMONIOS ═══ */

/* ═══ S6 — PILARES ═══ */
/* ═══ S6 — PILARES ═══ */
.pil {
  position: relative;
  background: var(--white);
  min-height: 500vh;
  scroll-snap-align: start;
}

/* ── Fase 1: hero centrado ── */
.pil-hero {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  transition: opacity 400ms var(--ease);
}
.pil-hero.hidden { opacity: 0; pointer-events: none; }
.pil-hero-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pil-hero-t {
  font-family: var(--f-d);
  font-size: clamp(72px, 12vw, 160px);
  letter-spacing: 0.01em;
  line-height: 0.90;
  color: var(--black);
  text-align: center;
  will-change: transform, opacity;
  transition: transform 500ms var(--ease), opacity 400ms var(--ease);
}
.pil-hero-label {
  font-family: var(--f-d);
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: 0.04em;
  color: var(--orange);
  text-align: center;
}

/* ── Fase 2: layout sticky ── */
.pil-inner {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 4vw, 64px);
  align-items: center;
  grid-template-columns: 1fr 1.2fr;
  padding: clamp(100px, 11vh, 130px) var(--sp-x) clamp(48px, 6vh, 80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms var(--ease);
  z-index: 1;
  margin-top: -100dvh;
}
.pil-inner.visible { opacity: 1; pointer-events: auto; }

.pil-left { display: flex; flex-direction: column; justify-content: center; padding-left: clamp(16px, 3vw, 48px); }
.pil-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(10,10,10,0.50); margin-bottom: clamp(28px, 3.5vw, 48px); }
.pil-headlines { display: flex; flex-direction: column; gap: 0; }

.pil-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}
.pil-reveal.visible { opacity: 1; transform: translateY(0); }

.pil-hl { cursor: pointer; padding: 4px 0; }
.pil-hl-text {
  font-family: var(--f-d);
  font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: rgba(10,10,10,0.18);
  transition: color 400ms var(--ease), transform 400ms var(--ease);
  display: block;
}
.pil-hl.active .pil-hl-text { color: var(--black); transform: translateX(8px); }
@media (hover: hover) and (pointer: fine) {
  .pil-hl:not(.active):hover .pil-hl-text { color: rgba(10,10,10,0.45); }
}

.pil-right { position: relative; opacity: 0; transform: scale(0.95) translateY(20px); transition: opacity 500ms var(--ease) 150ms, transform 500ms var(--ease) 150ms; }
.pil-right.visible { opacity: 1; transform: scale(1) translateY(0); }
.pil-img-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: calc(100dvh - clamp(160px, 18vh, 220px));
  border-radius: var(--r-img);
  overflow: hidden;
  background: #e8e5de;
}
.pil-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
.pil-img.active { opacity: 1; }

/* ═══ S7 — FINAL ═══ */
.final { position: relative; min-height: 100dvh; display: flex; align-items: center; justify-content: center; overflow: hidden; scroll-snap-align: start; }
.final-bg { position: absolute; inset: -10%; will-change: transform; }
.final-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center -45%; filter: brightness(0.6) blur(1px); }
.final-ov {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.50) 0%,
    rgba(10,10,10,0.15) 35%,
    rgba(10,10,10,0.15) 65%,
    rgba(10,10,10,0.65) 100%
  );
}
.final-ct {
  position: relative; z-index: 2; text-align: center;
  max-width: 760px; width: 90%;
  padding: clamp(80px, 10vh, 120px) clamp(16px, 3vw, 40px) clamp(48px, 6vh, 80px);
  display: flex; flex-direction: column; align-items: center; gap: -6px;
}
.final-ct .rv,
.final-ct .rv-inner {
  opacity: 1;
  transform: translateY(0);
}
.final-ct .rv.h,
.final-ct .rv-inner.h {
  opacity: 1;
  transform: translateY(0);
}
.final-t { font-family: var(--f-t); font-size: clamp(32px, 4.5vw, 56px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--white); margin-bottom: 0; text-wrap: balance; }
.final-sub { font-size: clamp(15px, 1.4vw, 18px); font-weight: 300; color: rgba(240,237,230,0.90); line-height: 1.75; text-shadow: 0 2px 16px rgba(0,0,0,0.6); }

/* ═══ AGENDA — Progressive Form ═══ */


/* Steps indicator */

/* Step containers */

@keyframes stepIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Session selector */
@media (hover: hover) and (pointer: fine) { .ss-pill:hover { border-color: var(--o20); } }

/* Calendar */
@media (hover: hover) and (pointer: fine) { .cal-navb:hover { background: var(--w10); color: var(--white); } }
@media (hover: hover) and (pointer: fine) { .cal-d.avail:hover { background: var(--w10); } }

/* Form fields */

/* Step navigation buttons */
@media (hover: hover) and (pointer: fine) { .step-back:hover { color: var(--white); } }
@media (hover: hover) and (pointer: fine) { .step-next:hover { background: var(--orange-h); } }
.step-next:active { transform: scale(0.97); }

/* Confirm step */
.confirm-row:last-child { border-bottom: none; }

/* ═══ FOOTER ═══ */
.footer { background: var(--s1); border-top: 1px solid var(--w10); padding: 40px var(--sp-x); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.foot-logo { font-family: var(--f-d); font-size: 24px; letter-spacing: 0.03em; color: var(--white); }
.foot-links { display: flex; gap: 20px; list-style: none; }
.foot-links a { font-size: 12px; font-weight: 500; color: var(--w60); transition: color 200ms var(--ease); }
@media (hover: hover) and (pointer: fine) { .foot-links a:hover { color: var(--white); } }
.foot-legal { font-size: 11px; color: var(--w40); }

/* ═══ KEYFRAMES ═══ */
@keyframes fu { to { opacity: 1; transform: translateY(0); } }
@keyframes su { to { opacity: 1; transform: translateY(0); } }


/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .srv-inner { gap: 40px; }
  .pil-layout { gap: 40px; }
  }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav { gap: 0; justify-content: space-between; padding: 10px 16px; width: calc(100% - 32px); }

  .qs-arrows { display: none; }
  .qs-sub-row { flex-direction: column; }

  .hero { padding: 70px 12px 12px; }
  .hero-headline { font-size: clamp(28px, 7vw, 40px); }
  .hero-img-w { order: -1; }
  .hero-img { aspect-ratio: 16/9; }

  /* Switch carousel to vertical stacked */
  .qs-track-w, .qs-hint { display: none; }
  .qs-vertical { display: block; }

  .srv-inner { grid-template-columns: 1fr; gap: 36px; }
  .srv-img-w { aspect-ratio: 16/9; }

  .pil-layout { grid-template-columns: 1fr; gap: 36px; }
  .pil-right { order: -1; }
  .pil-img-stack { aspect-ratio: 16/9; }

    
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-f { font-size: 64px; }
  .hero-desc { font-size: 15px; }
  .srv-n { font-size: 22px; }
        
}

@media (prefers-reduced-motion: reduce) {
  .rv, .rv-inner { transition: none !important; }
  .hero-headline, .hero-acts { animation: none !important; opacity: 1; transform: none; }
  .qs-stripe, .srv-item::before { transition: none !important; animation: none !important; }
  .qs-v-card { opacity: 1; transform: none; transition: none !important; }
  .qe-ct, .qe-ov { transition: none !important; opacity: 1 !important; transform: none !important; }
  .qe-audio-btn { animation: none !important; }
  .qe-audio-prompt { transition: none !important; }
}

/* ═══ START EXPERIENCE ═══ */
.start-page {
  min-height: 100dvh;
  background: linear-gradient(180deg, #0b0b0b 0%, #0b0b0b 60%, #0a0a0a 100%);
  color: var(--white);
  padding: clamp(80px, 6vw, 100px) clamp(18px, 5vw, 80px) 48px;
}
.start-shell {
  display: grid;
  grid-template-columns: minmax(360px, 44%) minmax(420px, 56%);
  gap: clamp(40px, 6vw, 80px);
  min-height: calc(100dvh - 160px);
  align-items: center;
}
.start-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.start-progress {
  display: grid;
  gap: 18px;
}
.start-progress-track {
  height: 4px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
}
.start-progress-fill {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, rgba(244,113,26,1), rgba(244,113,26,0.65));
  transition: width 320ms var(--ease);
}
.start-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.start-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--w60); }
.start-step-counter { font-size: 13px; font-weight: 500; letter-spacing: 0.14em; color: var(--w60); }
.start-card-shell {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.start-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}
.start-step.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.start-step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  border-radius: 36px;
  padding: clamp(36px, 3vw, 48px);
  width: 100%;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.24);
}
.start-step-title {
  font-family: var(--f-t);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 520px;
}
.start-step-copy {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--w80);
  max-width: 520px;
}
.start-step-list { display: grid; gap: 16px; margin-top: 12px; }
.start-step-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.8;
}
.start-step-list-item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(244,113,26,0.14);
  color: var(--orange);
  font-weight: 700;
  margin-top: 4px;
}
.start-step-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.start-step-subtle {
  font-size: 13px;
  color: var(--w60);
  line-height: 1.8;
}
.start-step-cta { margin-top: 12px; }
.start-step-cta .btn-p {
  width: min(100%, 320px);
}
.start-image-panel {
  display: grid;
  align-items: center;
}
.start-image-wrap {
  position: relative;
  width: 100%;
  min-height: 740px;
  border-radius: 40px;
  overflow: hidden;
  background: #090909;
  box-shadow: 0 40px 140px rgba(0,0,0,0.22);
}
.start-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.start-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.08) 0%, rgba(10,10,10,0.45) 55%, rgba(10,10,10,0.8) 100%);
  pointer-events: none;
}
.start-button-link { width: fit-content; }

@media (max-width: 1024px) {
  .start-shell { grid-template-columns: 1fr; }
  .start-image-panel { order: -1; }
  .start-card-shell { min-height: 520px; }
  .start-image-wrap { min-height: 420px; }
}

@media (max-width: 768px) {
  .start-page { padding: 60px 18px 48px; }
  .start-card-shell { min-height: 420px; }
  .start-step-title { font-size: clamp(32px, 8vw, 44px); }
  .start-step-card { padding: 28px; }
  .start-progress-meta { flex-direction: column; align-items: flex-start; }
  .start-image-wrap { min-height: 320px; }
}

@media (max-width: 540px) {
  .start-page { padding: 40px 16px 32px; }
  .start-shell { gap: 24px; }
  .start-step-copy, .start-step-list-item { font-size: 15px; }
  .start-progress-track { height: 3px; }
}
