/* ============================================================
   LipoHP — Immersive v3. ONE cohesive idea: a cinematic film runs
   behind the entire page; every section is a translucent navy
   "glass" panel so the video flows through. Brand rules intact:
   Minerva H1 / Montserrat H2+body, blue ONLY on CTA, gold detail,
   sharp corners + hairlines.
   ============================================================ */

.v3 * { margin: 0; padding: 0; box-sizing: border-box; }
.v3 {
  margin: 0;
  background: #05080f;
  color: var(--pb-ink-on-dark);
  font-family: var(--pb-font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.v3 img { max-width: 100%; display: block; }
.v3 ::selection { background: rgba(46,110,240,.3); color: #fff; }

/* ---------- Fixed film background ---------- */
.v3-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; background: #05080f; }
.v3-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v3-bg__poster { position: absolute; inset: 0; background: url(../../assets/images/register/hero-poster.jpg) center/cover no-repeat; }
.v3-bg__grade { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,8,15,.8), rgba(5,8,15,.66) 40%, rgba(5,8,15,.82) 100%); }
.v3-bg__vig { position: absolute; inset: 0; background: var(--pb-vignette); }
.v3-bg__grain { position: absolute; inset: 0; opacity: .06; mix-blend-mode: overlay; background-image: var(--pb-grain); }

.v3-main { position: relative; z-index: 2; }

/* ---------- Nav ---------- */
.v3-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1rem,2.4vw,1.5rem) clamp(1.1rem,4vw,2.6rem); transition: background-color .4s var(--pb-ease); }
.v3-nav.is-stuck { background: rgba(5,8,15,.74); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(244,240,232,.08); padding-top: .8rem; padding-bottom: .8rem; }
.v3-brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--pb-ink-on-dark); }
.v3-brand svg { width: 34px; height: 34px; stroke: var(--pb-ink-on-dark); fill: none; flex: 0 0 auto; }
.v3-brand .k { display: block; font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; color: var(--pb-ink-on-dark-dim); }
.v3-brand .w { display: block; font-family: var(--pb-font-minerva); font-size: 1.05rem; letter-spacing: .07em; text-transform: uppercase; line-height: 1; margin-top: .12rem; }
.v3-nav__links { display: flex; align-items: center; gap: clamp(1.1rem,2.6vw,2rem); }
.v3-nav__links a:not(.v3-cta) { color: var(--pb-ink-on-dark-dim); text-decoration: none; text-transform: uppercase; font-size: .8rem; letter-spacing: .1em; position: relative; padding-block: .5rem; margin-block: -.5rem; }
.v3-nav__links a:not(.v3-cta)::after { content: ""; position: absolute; left: 0; bottom: calc(.5rem - 3px); width: 0; height: 1px; background: currentColor; transition: width .3s var(--pb-ease); }
.v3-nav__links a:not(.v3-cta):hover::after { width: 100%; }

/* ---------- Buttons ---------- */
.v3-cta, .v3-btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--pb-font-sans); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; border-radius: 999px; border: 1px solid transparent; transition: transform .22s var(--pb-ease), background .22s var(--pb-ease), box-shadow .22s var(--pb-ease), border-color .22s var(--pb-ease); }
.v3-cta { font-size: .8rem; padding: .85rem 1.3rem; min-height: 44px; color: #fff; background: var(--pb-blue); box-shadow: var(--pb-glow-blue); }
.v3-cta:hover { background: var(--pb-blue-hover); transform: translateY(-1px); box-shadow: var(--pb-glow-blue-lg); }
/* One-blue-per-screen: the in-nav CTA stays a cream hairline ghost while at the top
   of the page (the hero owns the single blue CTA above the fold), then becomes the
   blue pill once the nav is stuck/scrolled. */
.v3-nav:not(.is-stuck) .v3-cta { background: transparent; color: var(--pb-ink-on-dark); border-color: rgba(244,242,236,.4); box-shadow: none; }
.v3-nav:not(.is-stuck) .v3-cta:hover { background: rgba(244,242,236,.1); border-color: var(--pb-ink-on-dark); box-shadow: none; }
.v3-nav.is-stuck .v3-cta { background: var(--pb-blue); color: #fff; border-color: transparent; box-shadow: var(--pb-glow-blue); }
.v3-nav.is-stuck .v3-cta:hover { background: var(--pb-blue-hover); box-shadow: var(--pb-glow-blue-lg); }
.v3-btn { font-size: .9rem; padding: 1rem 2.1rem; }
.v3-btn--primary { background: var(--pb-blue); color: #fff; box-shadow: var(--pb-glow-blue); }
.v3-btn--primary:hover { background: var(--pb-blue-hover); transform: translateY(-2px); box-shadow: var(--pb-glow-blue-lg); }
.v3-btn--lg { padding: 1.15rem 2.8rem; font-size: .94rem; }
.v3-btn--ghost { background: rgba(244,242,236,.04); color: var(--pb-ink-on-dark); border-color: rgba(244,242,236,.4); }
.v3-btn--ghost:hover { background: rgba(244,242,236,.1); border-color: var(--pb-ink-on-dark); transform: translateY(-2px); }
.v3-btn:active, .v3-cta:active { transform: scale(.98); }
/* Consistent, on-brand focus rings (replace the low-contrast browser default on dark) */
.v3-btn:focus-visible, .v3-cta:focus-visible { outline: 2px solid var(--pb-ink-on-dark); outline-offset: 4px; }
.v3-btn--primary:focus-visible { outline-color: #fff; }
.v3-nav__links a:not(.v3-cta):focus-visible, .v3-brand:focus-visible, .v3-footer a:focus-visible, .v3-footer__totop:focus-visible { outline: 2px solid var(--pb-gold); outline-offset: 3px; }
/* Secondary / gold-detail interactive elements — explicit on-brand focus ring */
.v3-evi__cta:focus-visible, .v3-loc__btn:focus-visible, .v3-hotelc__link:focus-visible,
.v3-modal__close:focus-visible, .v3-offer__upgrade:focus-visible, .v3-final__sec:focus-visible { outline: 2px solid var(--pb-gold); outline-offset: 3px; }

/* ---------- Side rail ---------- */
.v3-rail { position: fixed; right: clamp(.9rem,2vw,1.5rem); top: 50%; transform: translateY(-50%); z-index: 150; display: flex; flex-direction: column; gap: 11px; }
.v3-rail span { width: 3px; height: 14px; border-radius: 2px; background: rgba(244,240,232,.32); transition: height .3s var(--pb-ease), background .3s var(--pb-ease); }
.v3-rail span.is-on { height: 30px; background: var(--pb-ink-on-dark); }

/* ---------- Shared bits ---------- */
.v3-eyebrow { font-family: var(--pb-font-h2); font-size: clamp(.66rem,1.5vw,.78rem); font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--pb-gold); }
.v3-wrap { max-width: 1180px; margin: 0 auto; }

/* ---------- Section as glass panel ---------- */
.v3-sec { position: relative; z-index: 2; padding: clamp(4.5rem,11vh,8rem) clamp(1.2rem,5vw,3rem); }
/* translucent navy glass so the film flows through */
.v3-glass { background: rgba(7,11,20,.66); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px); border-top: 1px solid rgba(244,240,232,.07); border-bottom: 1px solid rgba(244,240,232,.07); }
/* denser, more opaque for reading-heavy blocks */
.v3-solid { background: rgba(6,9,16,.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
/* fully transparent — lets the film show (hero, breaks) */
.v3-clear { background: transparent; }
/* darker scrim for clear sections with body text over the film */
#manifesto, #casos, #bonus { background: rgba(6,9,16,.82); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

.v3-head { max-width: 860px; margin: 0 auto clamp(2.4rem,5vh,3.6rem); text-align: center; }
.v3-head.left { text-align: left; margin-left: 0; }
.v3-head h2 { font-family: var(--pb-font-h2); font-weight: 600; font-size: clamp(1.8rem,4vw,3rem); text-transform: uppercase; letter-spacing: .01em; line-height: 1.12; margin-top: 1rem; color: var(--pb-ink-on-dark); text-wrap: balance; }
.v3-head p { margin: 1.3rem auto 0; max-width: 64ch; font-size: clamp(1rem,1.5vw,1.18rem); font-weight: 300; line-height: 1.7; color: var(--pb-ink-on-dark-dim); text-wrap: pretty; }
.v3-head.left p { margin-left: 0; }

/* ============================================================
   HERO
   ============================================================ */
.v3-hero { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: clamp(6rem,13vh,9rem) clamp(1.2rem,5vw,3rem) clamp(2rem,5vh,3rem); }
/* Local readability scrim: keeps light hero copy legible over bright video frames */
.v3-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(130% 90% at 28% 42%, rgba(5,8,15,.62), rgba(5,8,15,0) 62%); }
.v3-hero__inner { max-width: 1180px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
/* premium golden shimmer text — brand only (LIPOHP) */
.v3-gold-text { background: linear-gradient(100deg, #c4a05c 0%, #f4dfa6 24%, #e8c879 50%, #f4dfa6 76%, #c4a05c 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: goldShimmer 6s linear infinite; }
@keyframes goldShimmer { to { background-position: 200% center; } }
@media (prefers-reduced-motion: reduce) { .v3-gold-text { animation: none; } }
/* "HP" accent: bold real-gold + shimmering edge glow */
.v3-hp { font-weight: 700; background: linear-gradient(100deg, #9f7322 0%, #f7e7b0 20%, #fff6d4 38%, #e3bd5f 50%, #fff6d4 62%, #f7e7b0 80%, #9f7322 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: goldShimmer 4s linear infinite, hpEdge 3s ease-in-out infinite; }
@keyframes hpEdge { 0%, 100% { filter: drop-shadow(0 0 2px rgba(244,223,166,.45)); } 50% { filter: drop-shadow(0 0 9px rgba(244,223,166,.9)) drop-shadow(0 0 18px rgba(196,160,92,.55)); } }
@media (prefers-reduced-motion: reduce) { .v3-hp { animation: none; } }
.v3-hero__title { font-family: var(--pb-font-h1); font-weight: 300; text-transform: uppercase; font-size: clamp(2.8rem,9vw,7.4rem); line-height: .96; letter-spacing: .01em; margin: clamp(1rem,2.6vh,1.6rem) 0 0; text-shadow: 0 4px 50px rgba(0,0,0,.5); }
.v3-hero__title .line { display: block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.14em; white-space: nowrap; }
.v3-hero__title .line > span { display: block; will-change: transform; }
.v3-hero__em { font-family: var(--pb-font-display); font-style: italic; font-weight: 400; text-transform: none; color: var(--pb-gold-soft); }
.v3-hero__sub { max-width: 680px; margin: clamp(1.4rem,3vh,2rem) 0 0; font-size: clamp(1rem,1.5vw,1.22rem); font-weight: 400; line-height: 1.64; color: #f0ece3; text-shadow: 0 2px 24px rgba(0,0,0,.62); }
.v3-hero__sub strong { color: #fff; font-weight: 600; }
.v3-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: clamp(1.6rem,3.4vh,2.4rem); }
.v3-hero__scroll { position: absolute; left: 50%; bottom: clamp(1rem,3vh,1.8rem); transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--pb-ink-on-dark-dim); }
.v3-hero__scroll span { font-family: var(--pb-font-h2); font-size: .62rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; }
.v3-hero__scroll i { width: 1px; height: 34px; background: linear-gradient(180deg, var(--pb-gold), transparent); }

/* ---------- Hero ticker ---------- */
.v3-ticker { position: relative; z-index: 2; border-top: 1px solid rgba(244,240,232,.1); border-bottom: 1px solid rgba(244,240,232,.1); background: rgba(5,8,15,.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); mask-image: linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); }
.v3-ticker__track { display: inline-flex; white-space: nowrap; gap: 0; animation: v3scroll 34s linear infinite; padding: .85rem 0; }
.v3-ticker__track span { font-family: var(--pb-font-minerva); font-size: clamp(.95rem,1.7vw,1.25rem); letter-spacing: .06em; color: var(--pb-ink-on-dark-dim); padding: 0 1.4rem; }
.v3-ticker__track b { color: var(--pb-gold); font-weight: 400; }
@keyframes v3scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .v3-ticker__track { animation: none; } }

/* ============================================================
   EVIDENCE — 962
   ============================================================ */
.v3-evi { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: clamp(2.5rem,5vw,4.5rem); align-items: center; max-width: 1180px; margin: 0 auto; }
.v3-evi__kicker { font-family: var(--pb-font-h2); font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--pb-gold); margin-bottom: 1rem; }
.v3-evi__numwrap { display: flex; align-items: baseline; gap: .9rem; flex-wrap: wrap; }
.v3-evi__numlabel { font-family: var(--pb-font-h2); font-size: clamp(1rem,1.5vw,1.25rem); font-weight: 400; letter-spacing: .02em; color: var(--pb-ink-on-dark-dim); }
.v3-evi__lead { font-family: var(--pb-font-display); font-style: italic; font-weight: 400; font-size: clamp(1.3rem,2.1vw,1.75rem); line-height: 1.38; color: var(--pb-ink-on-dark); margin: 1.4rem 0 0; text-wrap: balance; }
.v3-evi__meta { font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pb-gold); line-height: 1.6; margin-top: 1.6rem; word-break: break-word; }
.v3-evi__cta { align-self: start; display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem; padding: .85rem 1.5rem; border: 1px solid rgba(196,160,92,.5); font-family: var(--pb-font-h2); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pb-gold); text-decoration: none; transition: background .25s var(--pb-ease), border-color .25s var(--pb-ease); }
/* don't touch background on hover: the `background` shorthand resets background-clip to
   border-box, un-clipping the gradient and hiding the text. Base gradient/clip persist;
   give feedback via filter + border only. */
.v3-evi__cta:hover { border-color: var(--pb-gold); filter: brightness(1.15); }
.v3-evi__micro { margin-top: 1rem; font-family: var(--pb-font-sans); font-size: .78rem; font-weight: 400; letter-spacing: .04em; color: var(--pb-mute-2); }
/* PRS publication card */
.v3-prs { position: relative; border: 1px solid rgba(196,160,92,.32); border-radius: 0; overflow: hidden; background: #0c111c; box-shadow: 0 24px 60px -24px rgba(0,0,0,.7), 0 0 0 1px rgba(244,240,232,.04); }
.v3-prs__img { display: block; width: 100%; height: auto; aspect-ratio: 1830/939; }
.v3-prs::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 70px rgba(8,11,18,.5); border-radius: 0; }
.v3-prs__badge { position: absolute; bottom: .85rem; right: .85rem; z-index: 2; display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .8rem; background: rgba(8,11,18,.78); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(196,160,92,.5); border-radius: 999px; font-family: var(--pb-font-h2); font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-gold); }
.v3-prs__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem 1.3rem 1.1rem; background: linear-gradient(0deg, rgba(8,11,18,.92), rgba(8,11,18,0)); font-family: var(--pb-font-sans); font-size: .76rem; font-weight: 400; letter-spacing: .02em; color: var(--pb-ink-on-dark-dim); }
.v3-prs__cap b { color: var(--pb-ink-on-dark); font-weight: 600; }
.v3-evi__num { font-family: var(--pb-font-minerva); font-weight: 400; font-size: clamp(6rem,20vw,16rem); line-height: .82; color: var(--pb-ink-on-dark); letter-spacing: -.01em; font-variant-numeric: tabular-nums; text-shadow: 0 4px 60px rgba(0,0,0,.5); }
.v3-evi__cap { font-family: var(--pb-font-h2); font-size: clamp(1rem,1.6vw,1.3rem); font-weight: 400; line-height: 1.5; color: var(--pb-ink-on-dark-dim); margin-top: 1rem; max-width: 28ch; }
.v3-evi__copy { font-size: clamp(1rem,1.3vw,1.08rem); font-weight: 300; line-height: 1.72; color: var(--pb-ink-on-dark-dim); margin: 1.3rem 0 0; max-width: 50ch; }
.v3-evi__copy em { font-family: var(--pb-font-display); font-style: italic; color: var(--pb-ink-on-dark); }
.v3-evi__side { display: flex; flex-direction: column; gap: 1.3rem; }
.v3-evi__doi { font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-gold); line-height: 1.6; word-break: break-word; }
.v3-evi__side p { font-size: 1.04rem; font-weight: 300; line-height: 1.7; color: var(--pb-ink-on-dark-dim); }
.v3-evi__side em { font-family: var(--pb-font-display); font-style: italic; color: var(--pb-ink-on-dark); }
.v3-evi__doilink { align-self: start; font-family: var(--pb-font-sans); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--pb-gold); text-decoration: none; }
.v3-evi__doilink:hover { text-decoration: underline; }

/* 3 pillars */
.v3-pillars { max-width: 1180px; margin: clamp(3rem,6vh,4.5rem) auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(244,240,232,.1); border: 1px solid rgba(244,240,232,.1); }
.v3-pillar { background: rgba(7,11,20,.7); padding: clamp(1.7rem,3vw,2.5rem); }
.v3-pillar .n { font-family: var(--pb-font-minerva); font-size: 2.2rem; color: var(--pb-ink-on-dark); line-height: 1; }
.v3-pillar h3 { font-family: var(--pb-font-h2); font-size: 1.12rem; font-weight: 600; color: var(--pb-ink-on-dark); margin: .8rem 0 0; }
.v3-pillar p { font-size: .98rem; font-weight: 300; line-height: 1.6; color: var(--pb-ink-on-dark-dim); margin: .6rem 0 0; }

/* paradigma pillars — glass icons + interactive */
#paradigma .v3-pillars { gap: 1px; }
#paradigma .v3-pillar { display: flex; flex-direction: column; transition: transform .28s var(--pb-ease), background .28s var(--pb-ease), box-shadow .28s var(--pb-ease); cursor: default; }
#paradigma .v3-pillar:hover, #paradigma .v3-pillar:focus-visible { transform: translateY(-5px); background: rgba(244,240,232,.04); box-shadow: 0 24px 54px -28px rgba(0,0,0,.85); outline: none; z-index: 2; }
#paradigma .v3-pillar .n { order: 2; margin-top: 1.1rem; }
.v3-pglass { order: 1; position: relative; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 0; background: transparent; border: 1px solid rgba(196,160,92,.32); transition: border-color .28s var(--pb-ease); }
#paradigma .v3-pillar:hover .v3-pglass, #paradigma .v3-pillar:focus-visible .v3-pglass { border-color: rgba(196,160,92,.55); }
.v3-pglass svg { width: 28px; height: 28px; fill: none; stroke: var(--pb-gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 1; }
#paradigma .v3-pillar h3 { order: 3; }
#paradigma .v3-pillar p { order: 4; }

/* science pillars — interactive */
#science .v3-pillar { position: relative; overflow: hidden; isolation: isolate; transition: transform .3s var(--pb-ease), background .3s var(--pb-ease), box-shadow .3s var(--pb-ease); cursor: default; }
#science .v3-pillar::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(244,240,232,.12); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--pb-ease); }
#science .v3-pillar:hover, #science .v3-pillar:focus-visible { transform: translateY(-5px); background: rgba(244,240,232,.04); box-shadow: 0 24px 54px -28px rgba(0,0,0,.85); outline: none; z-index: 2; }
#science .v3-pillar:hover::before, #science .v3-pillar:focus-visible::before { transform: scaleX(1); }
#science .v3-pillar .n { transition: transform .3s var(--pb-ease), color .3s var(--pb-ease); }
#science .v3-pillar:hover .n, #science .v3-pillar:focus-visible .n { transform: scale(1.08); }

/* ============================================================
   MANIFESTO — kinetic
   ============================================================ */
.v3-mani { max-width: 1080px; margin: 0 auto; }
.v3-mani__lead { font-family: var(--pb-font-h2); font-size: .78rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--pb-gold); margin-bottom: clamp(1.6rem,4vh,2.4rem); }
.v3-mani__text { font-family: var(--pb-font-display); font-weight: 400; font-size: clamp(1.7rem,4.2vw,3.3rem); line-height: 1.3; color: var(--pb-ink-on-dark); text-wrap: pretty; }
.v3-mani__text .w { display: inline-block; }
.v3-mani__text .w.dim { opacity: .18; transition: opacity .25s var(--pb-ease); }
.v3-mani__quote { position: relative; max-width: 760px; margin: clamp(2.6rem,5vh,3.6rem) 0 0; padding-left: 1.6rem; font-family: var(--pb-font-display); font-style: italic; font-size: clamp(1.3rem,2.2vw,1.9rem); line-height: 1.4; color: var(--pb-ink-on-dark); }
.v3-mani__quote::before { content: "\2014"; position: absolute; left: 0; top: 0; font-style: normal; color: var(--pb-gold); }
.v3-mani__quote cite { display: block; margin-top: 1rem; font-style: normal; font-family: var(--pb-font-h2); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--pb-gold); }

/* ============================================================
   COMPARISON
   ============================================================ */
.v3-cmp { max-width: 1180px; margin: 0 auto; border: 1px solid rgba(244,240,232,.12); overflow: hidden; }
.v3-cmp__h, .v3-cmp__r { display: grid; grid-template-columns: 1.1fr 1fr 1fr; }
.v3-cmp__h { background: rgba(244,240,232,.06); border-bottom: 1px solid rgba(244,240,232,.12); }
.v3-cmp__h span { padding: 1.1rem 1.3rem; font-family: var(--pb-font-h2); font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pb-ink-on-dark-dim); }
.v3-cmp__h span.hp { display: flex; align-items: center; gap: .55rem; color: var(--pb-gold); font-weight: 700; background: rgba(196,160,92,.1); border-left: 1px solid rgba(196,160,92,.35); }
.v3-cmp__h span.hp em { font-style: normal; font-family: var(--pb-font-sans); font-size: .56rem; font-weight: 700; letter-spacing: .1em; padding: .18rem .5rem; border: 1px solid rgba(196,160,92,.55); border-radius: 999px; color: var(--pb-gold); }
.v3-cmp__h span.hd { border-left: 1px solid rgba(196,160,92,.35); color: #a7a39a; }
.v3-cmp__r { border-bottom: 1px solid rgba(244,240,232,.08); }
.v3-cmp__r:last-child { border-bottom: 0; }
.v3-cmp__r span { padding: 1.15rem 1.3rem; font-size: .95rem; line-height: 1.5; }
.v3-cmp__r .p { font-weight: 600; color: var(--pb-ink-on-dark); display: flex; align-items: center; gap: .9rem; }
.v3-cmp__r { transition: background .26s var(--pb-ease); }
.v3-cmp__r:hover { background: rgba(196,160,92,.05); }
.v3-cmp__pic { flex: 0 0 auto; position: relative; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 0; background: transparent; border: 1px solid rgba(196,160,92,.32); transition: transform .3s var(--pb-ease), border-color .3s var(--pb-ease); }
.v3-cmp__r:hover .v3-cmp__pic { transform: translateY(-2px); border-color: var(--pb-gold); }
.v3-cmp__pic svg { width: 22px; height: 22px; min-width: 22px; flex: 0 0 22px; display: block; fill: none; stroke: #f0d693; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 1; transition: stroke .3s var(--pb-ease), transform .3s var(--pb-ease); }
.v3-cmp__r:hover .v3-cmp__pic svg { stroke: #f6e3ad; transform: scale(1.05); }
.v3-cmp__r .a { display: flex; align-items: flex-start; gap: .6rem; font-weight: 400; color: #efe9dd; background: rgba(196,160,92,.06); border-left: 1px solid rgba(196,160,92,.32); }
.v3-cmp__r .b { display: flex; align-items: flex-start; gap: .6rem; font-weight: 300; color: var(--pb-ink-on-dark-dim); border-left: 1px solid rgba(196,160,92,.32); }
.cmp-ic { flex: 0 0 auto; width: 19px; height: 19px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-size: .7rem; font-weight: 700; font-style: normal; margin-top: .08rem; }
.cmp-ic--yes { background: var(--pb-gold); color: #0b0e14; }
.cmp-ic--no { border: 1px solid rgba(244,240,232,.22); color: #a7a39a; }
.v3-cmp__verdict { max-width: 1180px; margin: 1.4rem auto 0; display: flex; align-items: center; gap: .7rem; font-family: var(--pb-font-h2); font-size: .85rem; font-weight: 500; letter-spacing: .02em; line-height: 1.45; color: var(--pb-ink-on-dark-dim); }
.v3-cmp__verdict b { color: var(--pb-gold); font-weight: 700; }
.v3-cmp__diff { max-width: 860px; margin: clamp(2.6rem,6vh,4rem) auto 0; text-align: center; }
.v3-cmp__diff-lbl { font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--pb-gold); margin-bottom: 1.2rem; }
.v3-cmp__diff-lead { font-family: "Minerva Modern", var(--pb-font-display); font-size: clamp(1.4rem,2.6vw,2.05rem); font-weight: 400; line-height: 1.4; color: var(--pb-ink-on-dark); margin: 0 0 clamp(1.8rem,4vh,2.6rem); text-wrap: balance; }
.v3-cmp__shift { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; max-width: 620px; margin-inline: auto; }
.v3-cmp__shift li { display: grid; grid-template-columns: 1fr 1fr; align-items: baseline; gap: clamp(1rem,3vw,2rem); padding-bottom: 1.1rem; border-bottom: 1px solid rgba(244,240,232,.1); }
.v3-cmp__shift li:last-child { border-bottom: 0; padding-bottom: 0; }
.v3-cmp__shift .less { text-align: right; font-family: var(--pb-font-h2); font-size: clamp(.92rem,1.3vw,1.05rem); font-weight: 300; line-height: 1.4; color: var(--pb-mute-2); }
.v3-cmp__shift .more { text-align: left; font-family: var(--pb-font-h2); font-size: clamp(.98rem,1.4vw,1.12rem); font-weight: 600; line-height: 1.4; color: var(--pb-gold); }
@media (max-width: 560px) {
  .v3-cmp__shift li { grid-template-columns: 1fr; gap: .3rem; text-align: center; }
  .v3-cmp__shift .less, .v3-cmp__shift .more { text-align: center; }
}
.v3-cmp__swipe { display: none; align-items: center; justify-content: center; gap: .5rem; margin: .85rem auto 0; font-family: var(--pb-font-h2); font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-gold); }
.v3-cmp__swipe span { display: inline-block; animation: v3-cmp-nudge 1.4s var(--pb-ease) infinite; }
@keyframes v3-cmp-nudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
@media (prefers-reduced-motion: reduce) { .v3-cmp__swipe span { animation: none; } }

/* ============================================================
   AGENDA — horizontal pin (3 day summaries)
   ============================================================ */
.v3-days { position: relative; z-index: 2; overflow: hidden; }
.v3-days__track { display: flex; width: max-content; will-change: transform; }
.v3-days__panel { width: 100vw; min-height: 100svh; flex: 0 0 100vw; display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem,8vh,6rem) clamp(1.4rem,7vw,8rem); border-right: 1px solid rgba(244,240,232,.07); background: rgba(6,9,16,.55); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.v3-days__intro { background: rgba(6,9,16,.78); }
.v3-days__intro h2 { font-family: var(--pb-font-h1); font-weight: 300; text-transform: uppercase; font-size: clamp(2.4rem,7vw,5.6rem); line-height: .98; color: var(--pb-ink-on-dark); margin: 1.2rem 0; }
.v3-days__intro p { font-size: clamp(1rem,1.6vw,1.25rem); font-weight: 300; color: var(--pb-ink-on-dark-dim); max-width: 40ch; }
.v3-days__intro h2 .w { display: inline-block; transition: opacity .25s var(--pb-ease); }
.v3-day__n { font-family: var(--pb-font-minerva); font-size: clamp(1.3rem,4vw,2.4rem); color: var(--pb-ink-on-dark); letter-spacing: .04em; }
.v3-day h3 { font-family: var(--pb-font-h2); font-weight: 600; font-size: clamp(1.8rem,5.5vw,4rem); text-transform: uppercase; line-height: 1.04; margin: clamp(1rem,3vh,1.8rem) 0; max-width: 16ch; color: var(--pb-ink-on-dark); }
.v3-day ul { list-style: none; max-width: 46ch; }
.v3-day li { position: relative; padding: .55rem 0 .55rem 1.5rem; border-top: 1px solid rgba(244,240,232,.1); font-size: clamp(.98rem,1.5vw,1.18rem); font-weight: 300; color: var(--pb-ink-on-dark-dim); }
.v3-day li::before { content: "—"; position: absolute; left: 0; color: var(--pb-gold); }

/* agenda pin progress indicator + skip affordance (shown only while pinned) */
.v3-days__hud { position: fixed; left: 50%; bottom: clamp(1rem,3vh,1.8rem); transform: translateX(-50%); z-index: 120; display: flex; align-items: center; gap: 1rem; padding: .55rem .9rem; background: rgba(5,8,15,.72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(196,160,92,.32); opacity: 0; visibility: hidden; transition: opacity .35s var(--pb-ease); }
.v3-days__hud.is-on { opacity: 1; visibility: visible; }
.v3-days__count { font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--pb-gold); }
.v3-days__count b { color: var(--pb-ink-on-dark); font-weight: 600; }
.v3-days__skip { font-family: var(--pb-font-h2); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-ink-on-dark-dim); background: transparent; border: 0; border-left: 1px solid rgba(244,240,232,.18); padding: .1rem 0 .1rem .9rem; cursor: pointer; transition: color .25s var(--pb-ease); }
.v3-days__skip:hover, .v3-days__skip:focus-visible { color: var(--pb-gold); outline: none; }
@media (prefers-reduced-motion: reduce) {
  .v3-days__hud { display: none; }
  /* No pin under reduced motion: stack the day panels vertically instead of a wide overflow row. */
  .v3-days__track { flex-direction: column; width: 100%; }
  .v3-days__panel { width: 100%; flex: none; min-height: auto; border-right: 0; border-bottom: 1px solid rgba(244,240,232,.07); padding-top: clamp(3.4rem,9vh,5rem); padding-bottom: clamp(3.4rem,9vh,5rem); }
}

/* ============================================================
   INVESTMENT
   ============================================================ */
.v3-price { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 1px; background: rgba(244,240,232,.12); border: 1px solid rgba(244,240,232,.12); }
.v3-price > div { padding: clamp(1.8rem,3.2vw,3rem); background: rgba(7,11,20,.82); }
.v3-price__tag { font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--pb-gold); }
.v3-price h3 { font-family: var(--pb-font-display); font-weight: 400; font-size: clamp(1.6rem,2.6vw,2.2rem); color: var(--pb-ink-on-dark); margin: .8rem 0; }
.v3-price__old { font-size: 1.1rem; color: var(--pb-mute-2); text-decoration: line-through; }
.v3-price__now { font-family: var(--pb-font-minerva); font-size: clamp(2.6rem,5vw,4rem); font-weight: 400; line-height: .95; color: var(--pb-ink-on-dark); margin: .3rem 0; }
.v3-price__sub { font-size: .95rem; font-weight: 300; color: var(--pb-ink-on-dark-dim); }
.v3-price ul { list-style: none; display: grid; gap: .55rem; margin: 1.6rem 0; }
.v3-price li { position: relative; padding-left: 1.4rem; font-size: .95rem; font-weight: 300; line-height: 1.45; color: #d8d4ca; }
.v3-price li::before { content: "—"; position: absolute; left: 0; color: var(--pb-gold); }
.v3-price__vip { background: rgba(17,17,15,.9) !important; }
.v3-price__vip .v3-price__tag { color: var(--pb-gold); }

/* ============================================================
   LOGISTICS / FAQ / community
   ============================================================ */
.v3-cols { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: clamp(1.5rem,3vw,2.4rem); }
.v3-col { border-top: 1px solid rgba(244,240,232,.14); padding-top: 1.3rem; }
.v3-col h3 { font-family: var(--pb-font-h2); font-size: 1.08rem; font-weight: 600; color: var(--pb-ink-on-dark); }
.v3-col p { font-size: 1rem; font-weight: 300; line-height: 1.65; color: var(--pb-ink-on-dark-dim); margin-top: .6rem; }
.v3-col ul { list-style: none; margin-top: .6rem; }
.v3-col li { position: relative; padding: .35rem 0 .35rem 1.2rem; font-size: 1rem; font-weight: 300; color: var(--pb-ink-on-dark-dim); }
.v3-col li::before { content: "—"; position: absolute; left: 0; color: var(--pb-gold); }
.v3-col ul.v3-hotels { display: grid; gap: 1.1rem; }
.v3-col ul.v3-hotels li { padding: 0 0 0 1.2rem; font-size: 1rem; line-height: 1.5; }
.v3-col ul.v3-hotels li::before { content: ""; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--pb-gold); }
.v3-col ul.v3-hotels b { display: block; font-family: var(--pb-font-h2); font-weight: 600; color: var(--pb-ink-on-dark); }
.v3-col ul.v3-hotels span { display: block; font-size: .92rem; color: var(--pb-ink-on-dark-dim); margin-top: .18rem; }
.v3-col ul.v3-hotels i { display: block; font-style: normal; font-size: .86rem; color: var(--pb-mute-2); margin-top: .18rem; }
.v3-col .v3-route { font-family: var(--pb-font-h2); font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--pb-gold); margin-top: 1rem; padding-top: .9rem; border-top: 1px solid rgba(244,240,232,.1); }

/* ---- logistics: reformulated ---- */
.v3-logi { max-width: 1180px; margin: 0 auto; }
.v3-logi__flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.6rem,1.5vw,1.1rem); margin-bottom: clamp(2.4rem,5vh,3.4rem); }
.v3-logi__step { position: relative; padding: 1.5rem 1.3rem; background: rgba(255,255,255,.035); border: 1px solid rgba(244,240,232,.12); border-radius: 0; transition: transform .28s var(--pb-ease), border-color .28s var(--pb-ease), background .28s var(--pb-ease), box-shadow .28s var(--pb-ease); cursor: default; }
.v3-logi__step:hover, .v3-logi__step:focus-visible { transform: translateY(-5px); border-color: rgba(196,160,92,.5); background: rgba(244,240,232,.04); box-shadow: 0 22px 50px -26px rgba(0,0,0,.8); outline: none; }
.v3-logi__glass { position: relative; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 0; background: transparent; border: 1px solid rgba(196,160,92,.32); margin-bottom: 1rem; transition: border-color .28s var(--pb-ease); }
.v3-logi__step:hover .v3-logi__glass, .v3-logi__step:focus-visible .v3-logi__glass { border-color: rgba(196,160,92,.55); }
.v3-logi__glass svg { width: 26px; height: 26px; fill: none; stroke: var(--pb-gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 1; }
.v3-logi__step .ic { font-family: var(--pb-font-h2); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-gold); }
.v3-logi__step b { display: block; font-family: var(--pb-font-h2); font-size: clamp(.96rem,1.3vw,1.08rem); font-weight: 600; color: #fff; margin-top: .5rem; }
.v3-logi__step i { display: block; font-style: normal; font-size: .82rem; font-weight: 300; line-height: 1.45; color: var(--pb-ink-on-dark-dim); margin-top: .3rem; }
.v3-logi__step:not(:last-child)::after { content: "→"; position: absolute; right: -.85rem; top: 50%; transform: translateY(-50%); z-index: 2; font-size: 1rem; color: var(--pb-gold); }
.v3-logi__note { font-size: clamp(.94rem,1.2vw,1.02rem); font-weight: 300; line-height: 1.65; color: var(--pb-ink-on-dark-dim); max-width: 70ch; margin-bottom: clamp(2.4rem,5vh,3.2rem); }
.v3-logi__sub { font-family: var(--pb-font-h2); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--pb-gold); margin: 0 0 1.3rem; }
/* hotel cards */
.v3-hotelgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem,2.4vw,1.7rem); }
.v3-hotelc { position: relative; display: flex; flex-direction: column; background: linear-gradient(180deg, rgba(196,160,92,.07), rgba(255,255,255,.02)); border: 1px solid rgba(196,160,92,.22); border-radius: 0; padding: clamp(1.5rem,2.2vw,1.9rem); padding-top: clamp(1.7rem,2.4vw,2.1rem); overflow: hidden; transition: border-color .25s var(--pb-ease), transform .25s var(--pb-ease), box-shadow .25s var(--pb-ease); }
.v3-hotelc:hover { border-color: rgba(196,160,92,.55); transform: translateY(-4px); box-shadow: 0 26px 56px -28px rgba(0,0,0,.8); }
.v3-hotelc__top { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.v3-hotelc__stars { color: var(--pb-gold); font-size: .82rem; letter-spacing: .12em; }
.v3-hotelc__tag { font-family: var(--pb-font-sans); font-size: .66rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--pb-gold); padding: .3rem .6rem; border: 1px solid rgba(196,160,92,.4); border-radius: 999px; white-space: nowrap; }
.v3-hotelc h3 { font-family: var(--pb-font-h2); font-size: clamp(1.08rem,1.5vw,1.24rem); font-weight: 600; color: #fff; margin: 1rem 0 0; }
.v3-hotelc__addr { font-size: .9rem; font-weight: 300; line-height: 1.5; color: var(--pb-ink-on-dark-dim); margin: .45rem 0 0; }
.v3-hotelc__link { display: inline-flex; align-items: center; gap: .45rem; margin-top: auto; padding-top: 1.3rem; font-family: var(--pb-font-h2); font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: #fff; text-decoration: none; }
.v3-hotelc__link svg { width: 14px; height: 14px; stroke: var(--pb-gold); }
.v3-hotelc__link span { border-bottom: 1px solid rgba(196,160,92,.5); padding-bottom: .15rem; transition: color .2s var(--pb-ease); }
.v3-hotelc__link:hover span { color: var(--pb-gold); }
/* location + map */
.v3-loc { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(1.6rem,3vw,2.6rem); align-items: stretch; margin-top: clamp(2.6rem,5.5vh,3.6rem); padding-top: clamp(2.4rem,5vh,3.2rem); border-top: 1px solid rgba(244,240,232,.14); }
.v3-loc__info { display: flex; flex-direction: column; justify-content: center; }
.v3-loc__info h3 { font-family: var(--pb-font-h2); font-size: clamp(1.2rem,1.8vw,1.5rem); font-weight: 600; color: #fff; margin: .7rem 0 0; }
.v3-loc__info p { font-size: 1rem; font-weight: 300; line-height: 1.6; color: var(--pb-ink-on-dark-dim); margin: .7rem 0 0; }
.v3-loc__btn { align-self: start; display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.5rem; padding: .85rem 1.4rem; background: linear-gradient(180deg, #ecce82, #c4a05c); border-radius: 0; font-family: var(--pb-font-h2); font-size: .8rem; font-weight: 700; letter-spacing: .04em; color: #0b0e14; text-decoration: none; box-shadow: 0 12px 34px -14px rgba(196,160,92,.6); transition: transform .2s var(--pb-ease); }
.v3-loc__btn:hover { transform: translateY(-2px); }
.v3-loc__btn svg { width: 15px; height: 15px; stroke: #0b0e14; }
.v3-loc__map { position: relative; min-height: 300px; border-radius: 0; overflow: hidden; border: 1px solid rgba(196,160,92,.32); box-shadow: 0 24px 60px -28px rgba(0,0,0,.8); background: repeating-linear-gradient(45deg, rgba(244,240,232,.03) 0 12px, rgba(244,240,232,.015) 12px 24px), #0c111c; }
.v3-loc__map::before { content: "Hospital São Rafael · Belo Horizonte"; position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; font-family: var(--pb-font-h2); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pb-mute-2); }
.v3-loc__map iframe { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }
@media (max-width: 880px) {
  .v3-logi__flow { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .v3-logi__step:nth-child(2)::after { display: none; }
  .v3-hotelgrid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .v3-loc { grid-template-columns: 1fr; }
  .v3-loc__map { min-height: 280px; }
}

.v3-faq { max-width: 860px; margin: 0 auto; border-top: 1px solid rgba(244,240,232,.14); }
.v3-faq details { border-bottom: 1px solid rgba(244,240,232,.14); }
.v3-faq details { border-bottom: 1px solid rgba(244,240,232,.14); position: relative; transition: background .3s var(--pb-ease); }
.v3-faq details[open] { background: rgba(244,240,232,.03); }
.v3-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 1.4rem; align-items: center; padding: 1.4rem .4rem; font-family: var(--pb-font-h2); font-weight: 600; transition: color .25s var(--pb-ease), transform .3s var(--pb-ease); }
.v3-faq summary { font-size: clamp(1rem,1.6vw,1.16rem); color: var(--pb-ink-on-dark); }
.v3-faq summary:hover { color: var(--pb-gold); transform: translateX(.5rem); }
.v3-faq summary:focus-visible { outline: 2px solid var(--pb-gold); outline-offset: 2px; }
.v3-faq summary::-webkit-details-marker { display: none; }
.v3-faq summary::after { content: "+"; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(196,160,92,.4); font-family: var(--pb-font-h2); font-size: 1.25rem; color: var(--pb-gold); flex: 0 0 auto; transition: transform .35s var(--pb-ease), background .35s var(--pb-ease), color .35s var(--pb-ease), border-color .35s var(--pb-ease); }
.v3-faq summary:hover::after { background: rgba(196,160,92,.14); }
.v3-faq details[open] summary::after { transform: rotate(135deg); background: var(--pb-gold); color: #0b0e14; border-color: var(--pb-gold); }
.v3-faq details p { margin: 0 0 1.4rem; max-width: 68ch; font-size: 1.02rem; font-weight: 300; line-height: 1.7; color: var(--pb-ink-on-dark-dim); overflow: hidden; }

/* ============================================================
   CLOSE
   ============================================================ */
.v3-close { position: relative; z-index: 2; min-height: 88svh; display: flex; align-items: center; text-align: center; background: rgba(4,7,13,.55); }
.v3-close__inner { max-width: 900px; margin: 0 auto; padding: clamp(5rem,10vh,8rem) clamp(1.4rem,5vw,3rem); }
.v3-close h2 { font-family: var(--pb-font-h1); font-weight: 300; text-transform: uppercase; font-size: clamp(2.4rem,8vw,6.4rem); line-height: .98; color: var(--pb-ink-on-dark); margin: 1.2rem 0 0; text-shadow: 0 4px 50px rgba(0,0,0,.55); text-wrap: balance; }
.v3-close p { max-width: 620px; margin: 1.6rem auto 0; font-size: clamp(1.02rem,1.6vw,1.22rem); font-weight: 300; line-height: 1.68; color: var(--pb-ink-on-dark-dim); }
.v3-close .v3-btn { margin-top: 2.4rem; }
.v3-close__seats { display: flex; flex-direction: column; align-items: center; gap: .75rem; margin-top: 2.4rem; }
.v3-close__dots { display: flex; gap: .38rem; }
.v3-close__dots i { width: 22px; height: 5px; border-radius: 3px; background: rgba(244,240,232,.16); }
.v3-close__dots i.on { background: var(--pb-gold); box-shadow: 0 0 10px -2px rgba(196,160,92,.55); }
.v3-close__seats span { font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-ink-on-dark-dim); }
.v3-close__seats span b { color: var(--pb-gold); font-weight: 700; }
.v3-close__reassure { font-size: .82rem !important; color: var(--pb-mute-2) !important; margin-top: 1.1rem !important; letter-spacing: .02em; }

/* ---------- Sponsors + footer ---------- */
.v3-apoio { display: flex; align-items: center; justify-content: center; gap: clamp(3rem,9vw,7rem); flex-wrap: wrap; }
.v3-apoio img { height: clamp(38px,5.5vw,58px); width: auto; object-fit: contain; opacity: .82; filter: saturate(.8) brightness(1.3); }
.v3-apoio img.dr360 { height: clamp(48px,6.5vw,72px); }
/* partners band */
.v3-partners { max-width: 1080px; margin: 0 auto; }
.v3-partners__head { text-align: center; margin-bottom: clamp(1.8rem,3.5vh,2.6rem); }
.v3-partners__head p { max-width: 56ch; margin: 1rem auto 0; font-size: clamp(.98rem,1.3vw,1.08rem); font-weight: 300; line-height: 1.65; color: var(--pb-ink-on-dark-dim); }
.v3-partners__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem,2.5vw,1.8rem); }
.v3-partner { display: flex; flex-direction: column; align-items: center; text-align: center; background: #f4f1ea; border: 1px solid rgba(196,160,92,.4); border-radius: 0; padding: clamp(1.8rem,3vw,2.4rem) clamp(1.4rem,2.5vw,2rem); box-shadow: 0 22px 54px -28px rgba(0,0,0,.7); transition: transform .25s var(--pb-ease), box-shadow .25s var(--pb-ease); }
.v3-partner:hover { transform: translateY(-3px); box-shadow: 0 30px 64px -28px rgba(0,0,0,.78); }
.v3-partner__logo { display: flex; align-items: center; justify-content: center; height: 92px; margin-bottom: 1.4rem; }
.v3-partner__logo img { width: auto; object-fit: contain; }
.v3-partner__logo img.rslim { height: 46px; }
.v3-partner__logo img.dr360 { height: 92px; }
.v3-partner__logo img.vf { height: 92px; mix-blend-mode: multiply; }
.v3-partner h3 { font-family: var(--pb-font-h2); font-size: clamp(1.05rem,1.5vw,1.22rem); font-weight: 700; color: #14223a; margin: 0; }
.v3-partner p { font-size: clamp(.9rem,1.2vw,.98rem); font-weight: 400; line-height: 1.55; color: #4a5468; margin: .55rem 0 0; }
.v3-partners__note { text-align: center; margin: clamp(1.8rem,3.5vh,2.4rem) auto 0; font-size: .82rem; font-weight: 300; color: var(--pb-mute-2); }
@media (max-width: 860px) { .v3-partners__grid { grid-template-columns: 1fr; } }
.v3-footer { position: relative; z-index: 2; background: rgba(3,5,9,.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); padding: clamp(3.5rem,7vh,5rem) clamp(1.2rem,5vw,3rem); }
.v3-footer__grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: clamp(2rem,5vw,5rem); }
.v3-footer h3 { font-family: var(--pb-font-minerva); color: var(--pb-gold); font-size: 1rem; font-weight: 400; margin-bottom: 1rem; padding-bottom: .7rem; border-bottom: 1px solid rgba(196,160,92,.22); }
.v3-footer p, .v3-footer a { font-size: .92rem; font-weight: 300; line-height: 1.75; color: #a9a7a2; text-decoration: none; }
.v3-footer a { transition: color .2s var(--pb-ease); }
.v3-footer a:hover { color: var(--pb-gold); }
.v3-footer__top { max-width: 1180px; margin: 0 auto clamp(2rem,4vh,3rem); padding-bottom: clamp(1.6rem,3vh,2.2rem); border-bottom: 1px solid rgba(244,240,232,.1); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; }
.v3-footer__top b { font-family: var(--pb-font-minerva); font-size: clamp(1.3rem,2vw,1.7rem); font-weight: 400; color: var(--pb-ink-on-dark); }
.v3-footer__totop { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--pb-font-h2); font-size: .74rem !important; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pb-gold) !important; }
.v3-footer__totop svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.v3-footer__base { max-width: 1180px; margin: 2.4rem auto 0; border-top: 1px solid rgba(244,240,232,.1); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; }
.v3-footer__base span { font-size: .86rem; color: #8d8a85; }

/* ---------- reveal ---------- */
/* Reveal-on-scroll: hide only when JS is active (degrades to visible without JS).
   .gsap-timeout (set after 900ms if GSAP hasn't loaded) force-reveals so the
   page never stays blank when the CDN is slow on mobile. */
.js [data-rv] { opacity: 0; transform: translateY(28px); }
.js.gsap-timeout [data-rv] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js [data-rv] { opacity: 1; transform: none; } }
.v3-hero__title .line > span[data-hero] {}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .v3-evi, .v3-pillars, .v3-price, .v3-footer__grid { grid-template-columns: 1fr; }
  .v3-nav__links a:not(.v3-cta) { display: none; }
  .v3-days__track { flex-direction: column; width: 100%; }
  .v3-days__panel { width: 100%; flex: none; min-height: auto; padding-top: clamp(3.4rem,9vh,5rem); padding-bottom: clamp(3.4rem,9vh,5rem); border-right: 0; border-bottom: 1px solid rgba(244,240,232,.07); }
  .v3-evi { gap: 2.4rem; }
  .v3-evi__num { font-size: clamp(5.5rem,30vw,11rem); }
  .v3-evi__txt { order: 2; }
  .v3-prs { order: 3; }
}
@media (max-width: 680px) {
  .v3-rail { display: none; }
  .v3-hero__sub { max-width: 100%; }
  .v3-cmp__pic { width: 34px; height: 34px; }
  .v3-cmp__pic svg { width: 18px; height: 18px; min-width: 18px; flex: 0 0 18px; }
}

/* Comparison → restack each row vertically so neither value column is clipped
   (no horizontal swipe). The data-l labels on each value become sub-headings. */
@media (max-width: 880px) {
  .v3-cmp__h { display: none; }
  .v3-cmp__r { grid-template-columns: 1fr; }
  .v3-cmp__r .p { padding: 1rem 1.1rem .85rem; border-bottom: 1px solid rgba(244,240,232,.08); }
  .v3-cmp__r .a, .v3-cmp__r .b { display: block; padding: .9rem 1.1rem 1rem; border-left: 0; }
  .v3-cmp__r .a { background: rgba(196,160,92,.08); }
  .v3-cmp__r .a::before, .v3-cmp__r .b::before {
    content: attr(data-l); display: block; margin-bottom: .45rem;
    font-family: var(--pb-font-h2); font-size: .64rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--pb-gold);
  }
  .v3-cmp__r .b::before { color: #a7a39a; }
  .v3-cmp__r .cmp-ic { display: none; }
  .v3-cmp__swipe { display: none !important; }
}
@media (max-width: 480px) {
  .v3-sec { padding-left: 1.15rem; padding-right: 1.15rem; }
  .v3-nav { padding-left: 1.1rem; padding-right: 1.1rem; }
  .v3-brand svg { width: 30px; height: 30px; }
  .v3-cta { font-size: .72rem; padding: .66rem 1rem; letter-spacing: .06em; }
  .v3-hero { padding-left: clamp(.4rem,1.8vw,3rem); padding-right: clamp(.4rem,1.8vw,3rem); }
  .v3-hero__title { font-size: clamp(2.1rem,8.8vw,3.2rem); letter-spacing: 0; }
  .v3-hero__actions { display: grid; grid-template-columns: 1fr; gap: .7rem; }
  .v3-hero__actions .v3-btn { width: 100%; }
  .v3-mani__quote { padding-left: 1.1rem; }
  .v3-price > div { padding: 1.5rem 1.3rem; }
  .v3-footer__base { flex-direction: column; gap: .6rem; }
  .v3-apoio { gap: 2.4rem; }
}

/* ============================================================
   PEERS / TESTIMONIALS
   ============================================================ */
/* Perfil da turma / WhoFor (#perfil) */
.v3-whofor { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem,3vw,2rem); }
.v3-whofor__col { padding: clamp(1.4rem,2.5vw,2rem); background: rgba(7,11,20,.7); border: 1px solid rgba(244,240,232,.12); }
.v3-whofor__col--yes { border-color: rgba(196,160,92,.35); }
.v3-whofor__lbl { display: block; font-family: var(--pb-font-h2); font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.v3-whofor__col--yes .v3-whofor__lbl { color: var(--pb-gold); }
.v3-whofor__col--no .v3-whofor__lbl { color: var(--pb-ink-on-dark-dim); }
.v3-whofor__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.v3-whofor__col li { display: flex; align-items: flex-start; gap: .8rem; font-size: clamp(.92rem,1.2vw,1.02rem); font-weight: 300; line-height: 1.45; color: #d8d4ca; }
.v3-whofor__ic { flex: 0 0 auto; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(196,160,92,.32); }
.v3-whofor__ic svg { width: 16px; height: 16px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.v3-whofor__ic--yes svg { stroke: var(--pb-gold); }
.v3-whofor__ic--no svg { stroke: #9a968d; }
@media (max-width: 720px) { .v3-whofor { grid-template-columns: 1fr; } }

/* Trajetória profissional (#trajetoria) */
.v3-traj { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,4.5vw,3.6rem); align-items: start; max-width: 1180px; margin: 0 auto; }
.v3-traj__lead { font-size: clamp(1rem,1.4vw,1.14rem); font-weight: 300; line-height: 1.75; color: var(--pb-ink-on-dark-dim); margin: 0; }
.v3-traj__lead strong { color: var(--pb-ink-on-dark); font-weight: 500; }
.v3-traj__marks { list-style: none; margin: clamp(1.6rem,3vh,2.2rem) 0 0; padding: 0; display: grid; gap: .95rem; }
.v3-traj__marks li { position: relative; padding-left: 1.8rem; font-size: clamp(.92rem,1.2vw,1rem); font-weight: 300; line-height: 1.55; color: var(--pb-ink-on-dark-dim); }
.v3-traj__marks li strong { color: var(--pb-ink-on-dark); font-weight: 500; }
.v3-traj__marks li::before { content: ""; position: absolute; left: 0; top: .34em; width: 9px; height: 9px; transform: rotate(45deg); background-image: var(--pb-gold-grad); }
.v3-traj__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.7rem,1.4vw,1rem); }
.v3-traj__shot { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(196,160,92,.4); box-shadow: 0 22px 54px -28px rgba(0,0,0,.7); }
.v3-traj__shot--main { grid-column: 1 / -1; }
.v3-traj__shot img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.v3-traj__shot--main img { aspect-ratio: 16 / 10; }
.v3-traj__shot figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem .9rem .7rem; background: linear-gradient(to top, rgba(4,6,10,.88), rgba(4,6,10,0)); font-family: var(--pb-font-h2); font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-ink-on-dark); }
.v3-traj__shot figcaption span { display: block; margin-top: .22rem; font-size: .6rem; font-weight: 400; letter-spacing: .1em; color: var(--pb-gold); }
@media (max-width: 900px) { .v3-traj { grid-template-columns: 1fr; } }
.v3-testi-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(1.2rem,2vw,1.6rem); }
.v3-testi { position: relative; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: clamp(1.7rem,3vw,2.4rem); display: flex; flex-direction: column; gap: 1.4rem; margin: 0; overflow: hidden; isolation: isolate; transition: transform .35s var(--pb-ease), border-color .35s var(--pb-ease), background .35s var(--pb-ease), box-shadow .35s var(--pb-ease); }
.v3-testi::after { content: "\201C"; position: absolute; top: -.35em; right: .25em; font-family: var(--pb-font-display); font-style: italic; font-size: 7rem; line-height: 1; color: rgba(196,160,92,.1); z-index: -1; transition: color .35s var(--pb-ease), transform .35s var(--pb-ease); pointer-events: none; }
.v3-testi:hover { transform: translateY(-6px); border-color: rgba(196,160,92,.45); background: rgba(255,255,255,.04); box-shadow: 0 30px 64px -30px rgba(0,0,0,.85); }
.v3-testi:hover::after { color: rgba(196,160,92,.22); transform: translateY(-4px) scale(1.05); }
.v3-testi blockquote { margin: 0; flex: 1; font-family: var(--pb-font-display); font-style: italic; font-size: clamp(1.05rem,1.5vw,1.28rem); line-height: 1.55; color: #d8d4ca; }
.v3-testi figcaption { display: flex; align-items: center; gap: .9rem; border-top: 1px solid rgba(244,240,232,.1); padding-top: 1.2rem; }
.v3-testi figcaption img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; background: #1a2233; box-shadow: 0 0 0 1px rgba(244,240,232,.16); transition: box-shadow .35s var(--pb-ease), transform .35s var(--pb-ease); }
.v3-testi:hover figcaption img { box-shadow: 0 0 0 2px var(--pb-gold); transform: scale(1.04); }
.v3-testi b { display: block; font-family: var(--pb-font-h2); font-weight: 600; font-size: .98rem; color: var(--pb-ink-on-dark); }
.v3-testi i { display: block; font-style: normal; font-size: .8rem; letter-spacing: .04em; color: var(--pb-gold); margin-top: .18rem; }

.v3-endorse { max-width: 1180px; margin: clamp(2rem,4vh,2.8rem) auto 0; display: flex; align-items: center; gap: 1.4rem 2rem; flex-wrap: wrap; padding-top: 1.4rem; border-top: 1px solid rgba(244,240,232,.1); }
.v3-endorse__lbl { font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--pb-mute-2); }
.v3-endorse__chip { display: flex; align-items: center; gap: .8rem; }
.v3-endorse__chip img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; background: #1a2233; }
.v3-endorse__chip b { display: block; font-family: var(--pb-font-h2); font-weight: 600; font-size: .92rem; color: var(--pb-ink-on-dark); }
.v3-endorse__chip i { display: block; font-style: normal; font-size: .76rem; color: var(--pb-gold); margin-top: .15rem; }

@media (max-width: 640px) { .v3-testi-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .v3-testi { transition: none; } .v3-testi:hover { transform: none; } .v3-testi:hover::after { transform: none; } }

/* ---- manifesto: recusa block ---- */
.v3-recusa { max-width: 1080px; margin: clamp(2.6rem,5vh,3.6rem) 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.v3-recusa__col p { font-size: clamp(1.02rem,1.6vw,1.22rem); font-weight: 300; line-height: 1.66; color: var(--pb-ink-on-dark-dim); }
.v3-recusa__col p + p { margin-top: 1.2rem; }
.v3-recusa__col strong { color: var(--pb-ink-on-dark); font-weight: 600; }
.v3-recusa__lbl { font-family: var(--pb-font-h2); font-size: .74rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--pb-gold); margin-bottom: 1rem; }
.v3-recusa__list { list-style: none; }
.v3-recusa__list li { position: relative; padding: .85rem 0 .85rem 1.6rem; border-top: 1px solid rgba(244,240,232,.12); font-size: clamp(1rem,1.5vw,1.18rem); font-weight: 300; color: var(--pb-ink-on-dark); }
.v3-recusa__list li::before { content: "\2014"; position: absolute; left: 0; color: var(--pb-gold); }
@media (max-width: 760px) { .v3-recusa { grid-template-columns: 1fr; gap: 2rem; } }

/* ---- agenda: detailed day panel ---- */
.v3-day--detail { justify-content: center; }
.v3-day--detail h3 { font-size: clamp(1.5rem,3.4vw,2.4rem); margin: clamp(.5rem,1.4vh,.8rem) 0 .25rem; }
.v3-day__quote { font-family: var(--pb-font-display); font-style: italic; font-size: clamp(1rem,1.5vw,1.24rem); line-height: 1.38; color: var(--pb-gold-soft); margin: 0 0 1rem; max-width: 46ch; }
.v3-day__items { list-style: none; max-width: 56ch; }
.v3-day__items li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: .5rem 0; border-top: 1px solid rgba(244,240,232,.12); }
.v3-day__items li::before { content: none; }
.v3-day__items .k { font-family: var(--pb-font-minerva); font-size: 1.02rem; color: var(--pb-gold); line-height: 1.3; white-space: nowrap; }
.v3-day__items b { display: block; font-family: var(--pb-font-h2); font-weight: 600; font-size: clamp(.96rem,1.3vw,1.08rem); color: var(--pb-ink-on-dark); line-height: 1.3; }
.v3-day__items i { display: block; font-style: normal; font-size: clamp(.88rem,1.2vw,.98rem); font-weight: 300; line-height: 1.45; color: var(--pb-ink-on-dark-dim); margin-top: .1rem; }

/* ---- convidados especiais ---- */
.v3-guests { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,2.4vw,1.8rem); align-items: stretch; }
.v3-guest { display: flex; flex-direction: column; background: rgba(7,11,20,.8); border: 1px solid rgba(244,240,232,.12); border-radius: 14px; overflow: hidden; transition: transform .32s var(--pb-ease), border-color .32s var(--pb-ease), box-shadow .32s var(--pb-ease); }
.v3-guest:hover { transform: translateY(-6px); border-color: rgba(196,160,92,.45); box-shadow: 0 32px 66px -30px rgba(0,0,0,.85); }
.v3-guest__ph { position: relative; aspect-ratio: 1; overflow: hidden; background: #1a2233; }
.v3-guest__ph img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s var(--pb-ease); }
.v3-guest:hover .v3-guest__ph img { transform: scale(1.06); }
.v3-guest__hours { position: absolute; left: 0; bottom: 0; display: inline-flex; align-items: center; gap: .4rem; background: rgba(5,8,15,.82); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-top: 1px solid rgba(194,162,116,.4); border-right: 1px solid rgba(194,162,116,.4); padding: .5rem .85rem; font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pb-gold); }
.v3-guest__hours b { font-family: var(--pb-font-minerva); font-weight: 400; font-size: 1.05rem; color: #f4f2ec; }
.v3-guest__body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.3rem,2.2vw,1.7rem); }
.v3-guest h3 { font-family: var(--pb-font-h2); font-size: clamp(1.1rem,1.6vw,1.35rem); font-weight: 600; color: var(--pb-ink-on-dark); }
.v3-guest__role { font-family: var(--pb-font-display); font-style: italic; font-size: .98rem; color: var(--pb-gold); margin: .2rem 0 .9rem; }
.v3-guest__topic { font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-ink-on-dark-dim); padding-bottom: .9rem; margin-bottom: .9rem; border-bottom: 1px solid rgba(244,240,232,.12); }
.v3-guest ul { list-style: none; display: grid; gap: .4rem; }
.v3-guest li { position: relative; padding-left: 1.1rem; font-size: .9rem; font-weight: 300; line-height: 1.5; color: var(--pb-ink-on-dark-dim); }
.v3-guest li::before { content: "\2014"; position: absolute; left: 0; color: var(--pb-gold); }
@media (max-width: 860px) { .v3-guests { grid-template-columns: 1fr; max-width: 460px; } .v3-guest { flex-direction: row; } .v3-guest__ph { width: 40%; flex: 0 0 40%; aspect-ratio: auto; } }
@media (max-width: 520px) { .v3-guest { flex-direction: column; } .v3-guest__ph { width: 100%; flex: none; aspect-ratio: 4/3; } }
@media (prefers-reduced-motion: reduce) { .v3-guest { transition: none; } .v3-guest:hover { transform: none; } .v3-guest:hover .v3-guest__ph img { transform: none; } }

/* ---- bonus roadmap (horizontal map) ---- */
.v3-roadmap { max-width: 1180px; margin: 0 auto; position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,2.4vw,2rem); }
.v3-roadmap::before { content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, rgba(196,160,92,.15), var(--pb-gold) 50%, rgba(196,160,92,.15)); z-index: 0; }
.v3-rmstep { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 .6rem; }
.v3-rmstep__node { position: relative; width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; border-radius: 0; background: #060910; border: 1px solid rgba(196,160,92,.32); box-shadow: 0 0 0 6px rgba(6,9,16,.85); overflow: hidden; transition: transform .3s var(--pb-ease), border-color .3s var(--pb-ease); }
.v3-rmstep__node svg { width: 28px; height: 28px; fill: none; stroke: var(--pb-gold); stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 1; }
.v3-rmstep__num { margin-top: 1rem; font-family: var(--pb-font-minerva); font-size: 1.1rem; color: var(--pb-gold); letter-spacing: .06em; }
.v3-rmstep h3 { font-family: var(--pb-font-h2); font-size: clamp(1.05rem,1.4vw,1.2rem); font-weight: 600; color: var(--pb-ink-on-dark); margin: .5rem 0 0; }
.v3-rmstep p { font-size: clamp(.9rem,1.2vw,.98rem); font-weight: 300; line-height: 1.58; color: var(--pb-ink-on-dark-dim); margin: .7rem 0 0; max-width: 34ch; }
.v3-rmstep:hover .v3-rmstep__node { transform: translateY(-5px); border-color: rgba(196,160,92,.55); box-shadow: 0 16px 36px -12px rgba(0,0,0,.8), 0 0 0 6px rgba(6,9,16,.85); }
@media (max-width: 760px) {
  .v3-roadmap { grid-template-columns: 1fr; gap: 2rem; max-width: 420px; }
  .v3-roadmap::before { left: 28px; right: auto; top: 8%; bottom: 8%; width: 2px; height: auto; background: linear-gradient(180deg, rgba(196,160,92,.15), var(--pb-gold) 50%, rgba(196,160,92,.15)); }
  .v3-rmstep { flex-direction: row; align-items: flex-start; text-align: left; gap: 1.1rem; }
  .v3-rmstep__node { flex: 0 0 auto; }
  .v3-rmstep__num { margin-top: 0; }
  .v3-rmstep__txt { flex: 1; }
}
@media (prefers-reduced-motion: reduce) { .v3-rmstep__node { transition: none; } }

/* ---- bonus closing tagline ---- */
.v3-bonus__tag { max-width: 780px; margin: clamp(2.4rem,5vh,3.4rem) auto 0; text-align: center; font-family: var(--pb-font-display); font-style: italic; font-size: clamp(1.2rem,2vw,1.7rem); line-height: 1.42; color: var(--pb-ink-on-dark); text-wrap: balance; }

/* ---- carta-convite (por que participar) ---- */
.v3-letter { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.v3-letter__photo { position: sticky; top: 96px; margin: 0; }
.v3-letter__frame { overflow: hidden; border-radius: 14px; border: 1px solid rgba(244,240,232,.16); box-shadow: 0 30px 70px -34px rgba(0,0,0,.82); transition: box-shadow .42s var(--pb-ease), border-color .42s var(--pb-ease); }
.v3-letter__frame img { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; transition: transform .6s var(--pb-ease); }
.v3-letter__photo:hover .v3-letter__frame { border-color: rgba(196,160,92,.5); box-shadow: 0 30px 72px -30px rgba(0,0,0,.85), 0 0 42px -16px rgba(196,160,92,.32); }
.v3-letter__photo:hover .v3-letter__frame img { transform: scale(1.04); }
.v3-letter__photo figcaption { margin-top: 1.1rem; padding-left: 1rem; border-left: 1px solid rgba(196,160,92,.32); font-family: var(--pb-font-h2); font-weight: 600; font-size: .98rem; color: var(--pb-ink-on-dark); }
.v3-letter__photo figcaption span { display: block; font-weight: 300; font-size: .82rem; letter-spacing: .04em; color: var(--pb-gold); margin-top: .25rem; }
.v3-letter__body { padding-top: .3rem; }
.v3-letter__intro { font-size: clamp(1.05rem,1.6vw,1.26rem); font-weight: 300; line-height: 1.7; color: var(--pb-ink-on-dark-dim); margin-top: 1.1rem; }
.v3-letter .hl { color: #f1ece1; font-weight: 500; }
.v3-letter .hl-gold { color: var(--pb-gold); font-weight: 500; font-style: normal; }
.v3-letter__text > p:nth-of-type(2)::first-letter { float: left; font-family: var(--pb-font-display); font-style: italic; font-size: 3.4em; line-height: .74; margin: .04em .14em 0 0; color: var(--pb-gold); }
.v3-letter__pull { position: relative; margin: clamp(2.2rem,4.5vh,3.4rem) 0; padding-left: 1.8rem; font-family: var(--pb-font-display); font-style: italic; font-weight: 400; font-size: clamp(1.5rem,2.6vw,2.2rem); line-height: 1.34; color: var(--pb-ink-on-dark); text-wrap: pretty; }
.v3-letter__pull::before { content: "\2014"; position: absolute; left: 0; top: 0; font-style: normal; color: var(--pb-gold); }
.v3-letter__text p { font-size: clamp(1rem,1.35vw,1.1rem); font-weight: 300; line-height: 1.8; color: var(--pb-ink-on-dark-dim); margin: 0 0 1.3rem; }
.v3-letter__text .lead { color: var(--pb-mute-2); margin-bottom: .4rem; }
.v3-letter__sign { font-family: var(--pb-font-display); font-style: italic; font-size: clamp(1.4rem,2vw,1.7rem); color: var(--pb-ink-on-dark); margin-top: .2rem; }
@media (max-width: 900px) {
  .v3-letter { grid-template-columns: 1fr; gap: 2.2rem; }
  .v3-letter__photo { position: static; }
  .v3-letter__photo img { aspect-ratio: 3/4; max-height: 70vh; }
}

/* ---- jornada: premium horizontal timeline ---- */
.v3-journey { max-width: 1180px; margin: 0 auto; }
#metodo .v3-head { margin-bottom: clamp(3.4rem,7vh,5rem); }
#metodo .v3-head p { margin-top: clamp(1.6rem,3.5vh,2.2rem); }
.v3-journey__flow { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(.55rem,1.4vw,1.05rem); margin: 0 auto clamp(2.8rem,5.5vh,4rem); }
.v3-journey__flow span { font-family: var(--pb-font-h2); font-size: clamp(.74rem,1.3vw,.92rem); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--pb-ink-on-dark); }
.v3-journey__flow i { font-style: normal; color: var(--pb-gold); font-size: .85em; opacity: .85; }
.v3-journey__track { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1.4rem,3vw,2.8rem); }
.v3-journey__track::before { content: ""; position: absolute; top: 28px; left: 28px; right: 28px; height: 2px; background: linear-gradient(90deg, var(--pb-gold), rgba(244,240,232,.18) 14%, rgba(244,240,232,.18) 86%, var(--pb-gold)); z-index: 0; }
.v3-journey__step { position: relative; z-index: 1; padding-top: 0; transition: transform .3s var(--pb-ease); }
.v3-journey__glass { position: relative; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 0; background: transparent; border: 1px solid rgba(196,160,92,.32); overflow: hidden; margin-bottom: 1rem; transition: transform .3s var(--pb-ease), border-color .3s var(--pb-ease); }
.v3-journey__glass svg { width: 27px; height: 27px; fill: none; stroke: var(--pb-gold); stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 1; }
.v3-journey__step:hover .v3-journey__glass, .v3-journey__step:focus-visible .v3-journey__glass { transform: translateY(-5px); border-color: rgba(196,160,92,.55); }
.v3-journey__step:focus-visible { outline: none; }
#paradigma .v3-pillar:focus-visible, #science .v3-pillar:focus-visible, .v3-logi__step:focus-visible, .v3-journey__step:focus-visible { outline: 2px solid var(--pb-gold); outline-offset: -2px; }
.v3-journey__num { font-family: var(--pb-font-minerva); font-weight: 400; font-size: clamp(2rem,3.2vw,2.7rem); line-height: 1; color: rgba(244,240,232,.34); letter-spacing: -.01em; }
.v3-journey__verb { display: block; margin-top: .7rem; font-family: var(--pb-font-h2); font-size: clamp(.66rem,1.2vw,.76rem); font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--pb-gold); }
.v3-journey__step h3 { margin: .55rem 0 0; font-family: var(--pb-font-h2); font-weight: 600; font-size: clamp(1.1rem,1.7vw,1.32rem); line-height: 1.22; color: var(--pb-ink-on-dark); }
.v3-journey__step p { margin: .8rem 0 0; font-size: clamp(.92rem,1.25vw,1.02rem); font-weight: 300; line-height: 1.62; color: var(--pb-ink-on-dark-dim); }
.v3-journey__tag { display: inline-block; margin-top: 1.3rem; padding: .42rem .85rem; border: 1px solid rgba(244,240,232,.16); border-radius: 999px; font-family: var(--pb-font-sans); font-size: .72rem; letter-spacing: .06em; color: var(--pb-ink-on-dark); }
.v3-journey__thesis { max-width: 880px; margin: clamp(3rem,6vh,4.5rem) auto 0; padding-top: clamp(2.2rem,4vh,3rem); border-top: 1px solid rgba(244,240,232,.12); text-align: center; font-family: var(--pb-font-display); font-style: italic; font-weight: 400; font-size: clamp(1.4rem,2.6vw,2.1rem); line-height: 1.36; color: var(--pb-ink-on-dark); text-wrap: balance; }
@media (max-width: 900px) {
  .v3-journey__track { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.8rem; }
  .v3-journey__track::before { display: none; }
}
@media (max-width: 560px) { .v3-journey__track { grid-template-columns: 1fr; } }

/* ============================================================
   CASOS COMENTADOS — annotated case study
   ============================================================ */
.v3-cases { max-width: 1180px; margin: 0 auto; }
.v3-case__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; padding-bottom: 1.2rem; margin-bottom: clamp(1.8rem,3.5vh,2.6rem); border-bottom: 1px solid rgba(244,240,232,.14); }
.v3-case__count { font-family: var(--pb-font-h2); font-size: .82rem; font-weight: 300; letter-spacing: .16em; text-transform: uppercase; color: var(--pb-ink-on-dark-dim); }
.v3-case__count b { font-family: var(--pb-font-minerva); font-weight: 400; font-size: 1.18rem; letter-spacing: .04em; color: var(--pb-gold); margin-right: .5rem; }
.v3-case__region-tag { margin-left: auto; font-family: var(--pb-font-display); font-style: italic; font-size: clamp(1.05rem,1.7vw,1.35rem); color: var(--pb-ink-on-dark); }

.v3-case { display: grid; grid-template-columns: minmax(0,360px) minmax(0,1fr); gap: clamp(2rem,4.5vw,4rem); align-items: stretch; }
.v3-case__figure { position: sticky; top: 96px; align-self: start; margin: 0; }
.v3-case__figure:has(.v3-carousel) { max-width: 360px; width: 100%; }
.v3-case__ph { position: relative; aspect-ratio: 4/5; border: 1px solid rgba(244,240,232,.18); background:
  repeating-linear-gradient(135deg, rgba(244,240,232,.035) 0 2px, transparent 2px 11px),
  linear-gradient(160deg, #131a28 0%, #0c111c 60%, #090d16 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden; }
.v3-case__ph::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(244,240,232,.1); pointer-events: none; }
.v3-case__ph-hint { display: flex; flex-direction: column; align-items: center; gap: .55rem; font-family: var(--pb-font-h2); font-size: .82rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(244,240,232,.5); text-align: center; }
.v3-case__ph-hint i { font-family: var(--pb-font-sans); font-style: normal; font-size: .72rem; font-weight: 400; letter-spacing: .04em; text-transform: none; color: rgba(244,240,232,.32); }
.v3-case__marker { position: absolute; transform: translate(-50%,-50%); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--pb-gold); background: rgba(6,9,16,.78); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); font-family: var(--pb-font-minerva); font-size: .92rem; color: var(--pb-gold); box-shadow: 0 0 0 5px rgba(6,9,16,.45), 0 0 18px rgba(196,160,92,.3); }
.v3-case__figure figcaption { margin-top: 1rem; padding-left: 1rem; border-left: 1px solid rgba(196,160,92,.32); font-size: .86rem; font-weight: 300; line-height: 1.5; color: var(--pb-ink-on-dark-dim); }

.v3-case__analysis { display: flex; flex-direction: column; }
.v3-case__block { padding: clamp(1.1rem,2vw,1.45rem) 0; border-bottom: 1px solid rgba(244,240,232,.1); }
.v3-case__block:first-child { padding-top: 0; }
.v3-case__label { display: block; font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--pb-gold); margin-bottom: .55rem; }
.v3-case__block p { font-size: clamp(.98rem,1.3vw,1.08rem); font-weight: 300; line-height: 1.66; color: var(--pb-ink-on-dark-dim); margin: 0; }
/* procedure card anchors to the foot of the column so short analyses
   (cases 02–06) read as an intentional editorial spread, not top-clustered
   text with a void; a guaranteed minimum gap keeps it from hugging the text */
.v3-case__proc { display: flex; flex-direction: column; gap: .35rem; margin-top: auto; padding: clamp(1.1rem,2vw,1.4rem); background: rgba(244,240,232,.05); border: 1px solid rgba(244,240,232,.14); }
.v3-case__analysis > .v3-case__block:last-of-type { border-bottom: 0; }
.v3-case__proc-lbl { font-family: var(--pb-font-h2); font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--pb-ink-on-dark-dim); }
.v3-case__proc-val { font-family: var(--pb-font-h2); font-size: clamp(1.05rem,1.5vw,1.22rem); font-weight: 600; color: var(--pb-ink-on-dark); }

.v3-points { margin-top: clamp(3rem,6vh,4.5rem); padding-top: clamp(2.4rem,4.5vh,3.2rem); border-top: 1px solid rgba(244,240,232,.14); }
.v3-points__head { margin-bottom: clamp(1.8rem,3.5vh,2.4rem); }
.v3-points__head h3 { margin: .7rem 0 0; font-family: var(--pb-font-h2); font-weight: 600; font-size: clamp(1.3rem,2.4vw,1.9rem); text-transform: uppercase; line-height: 1.12; color: var(--pb-ink-on-dark); }
.v3-points__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(244,240,232,.12); border: 1px solid rgba(244,240,232,.12); }
.v3-point { padding: clamp(1.3rem,2vw,1.7rem); background: rgba(6,9,16,.82); }
.v3-point__n { font-family: var(--pb-font-minerva); font-weight: 400; font-size: clamp(1.8rem,2.8vw,2.4rem); line-height: 1; color: var(--pb-gold); }
.v3-point h4 { margin: .8rem 0 0; font-family: var(--pb-font-h2); font-weight: 600; font-size: clamp(1rem,1.4vw,1.14rem); line-height: 1.22; color: var(--pb-ink-on-dark); }
.v3-point p { margin: .7rem 0 0; font-size: clamp(.9rem,1.2vw,.98rem); font-weight: 300; line-height: 1.58; color: var(--pb-ink-on-dark-dim); }

.v3-case__note { max-width: 90ch; margin: clamp(2.4rem,4.5vh,3.2rem) 0 0; font-size: .88rem; font-weight: 300; line-height: 1.65; color: #a7a39a; }
.v3-case__note b { font-weight: 600; color: var(--pb-ink-on-dark-dim); }

@media (max-width: 880px) {
  .v3-case { grid-template-columns: 1fr; gap: clamp(1.8rem,4vw,2.4rem); align-items: start; }
  .v3-case__figure { position: static; align-self: stretch; }
  .v3-case__figure:has(.v3-carousel) { max-width: 380px; margin-inline: auto; }
  .v3-case__proc { margin-top: clamp(1.3rem,2.5vh,1.8rem); }
  .v3-case__ph { aspect-ratio: 4/3; max-height: 62vh; }
  .v3-points__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .v3-case__region-tag { margin-left: 0; }
  .v3-points__grid { grid-template-columns: 1fr; }
}

/* before/after pair */
.v3-ba { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.v3-ba__item { position: relative; }
.v3-ba__item img { display: block; width: 100%; aspect-ratio: 401/639; object-fit: cover; object-position: center top; border: 1px solid rgba(244,240,232,.16); background: #0c111c; }
.v3-ba__chip { position: absolute; top: .6rem; left: .6rem; padding: .34rem .62rem; font-family: var(--pb-font-h2); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; background: rgba(6,9,16,.78); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); border: 1px solid rgba(244,240,232,.2); color: var(--pb-ink-on-dark-dim); }
.v3-ba__chip--after { color: var(--pb-gold); border-color: rgba(196,160,92,.5); }

/* more results gallery */
.v3-cases__more { margin-top: clamp(3rem,6vh,4.5rem); padding-top: clamp(2.4rem,4.5vh,3.2rem); border-top: 1px solid rgba(244,240,232,.14); }
.v3-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem,2.6vw,2.2rem); margin-top: clamp(1.8rem,3.5vh,2.4rem); }
.v3-gcard__cap { display: flex; align-items: baseline; gap: .65rem; margin-top: .9rem; padding-top: .8rem; border-top: 1px solid rgba(244,240,232,.12); }
.v3-gcard__n { font-family: var(--pb-font-minerva); font-size: 1.1rem; color: var(--pb-gold); letter-spacing: .04em; }
.v3-gcard__lbl { font-family: var(--pb-font-h2); font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-ink-on-dark-dim); }
/* interactive before/after compare slider */
.v3-cmpr__viewer { position: relative; aspect-ratio: 401/639; border-radius: 12px; overflow: hidden; border: 1px solid rgba(196,160,92,.3); box-shadow: 0 26px 60px -30px rgba(0,0,0,.82); cursor: ew-resize; touch-action: none; -webkit-user-select: none; user-select: none; background: #0c111c; }
.v3-cmpr__viewer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; pointer-events: none; -webkit-user-drag: none; }
.v3-cmpr__top { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos,50%)) 0 0); will-change: clip-path; }
.v3-cmpr__chip { position: absolute; top: .7rem; z-index: 3; padding: .32rem .7rem; font-family: var(--pb-font-h2); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: rgba(8,11,18,.78); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); border: 1px solid rgba(244,240,232,.2); border-radius: 999px; pointer-events: none; }
.v3-cmpr__chip--before { left: .7rem; color: var(--pb-ink-on-dark-dim); }
.v3-cmpr__chip--after { right: .7rem; color: var(--pb-gold); border-color: rgba(196,160,92,.5); }
.v3-cmpr__divider { position: absolute; top: 0; bottom: 0; left: var(--pos,50%); width: 2px; margin-left: -1px; z-index: 2; background: linear-gradient(180deg, rgba(196,160,92,.4), var(--pb-gold), rgba(196,160,92,.4)); pointer-events: none; }
.v3-cmpr__handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; background: rgba(8,11,18,.82); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); border: 1px solid var(--pb-gold); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 22px -4px rgba(196,160,92,.6), inset 0 1px 1px rgba(255,255,255,.2); transition: transform .2s var(--pb-ease); }
.v3-cmpr__viewer:hover .v3-cmpr__handle { transform: translate(-50%,-50%) scale(1.08); }
.v3-cmpr__handle svg { width: 20px; height: 20px; fill: none; stroke: var(--pb-gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.v3-cmpr__viewer:focus-visible { outline: 2px solid var(--pb-gold); outline-offset: 3px; }
@media (max-width: 880px) { .v3-gallery { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* ---- Cases: tabs + per-case carousel ---- */
.v3-ctabs { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: clamp(1.8rem,3.5vh,2.6rem); }
.v3-ctab { cursor: pointer; min-height: 44px; display: inline-flex; align-items: center; padding: .5rem 1.15rem; font-family: var(--pb-font-h2); font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pb-ink-on-dark-dim); background: rgba(244,240,232,.05); border: 1px solid rgba(244,240,232,.14); border-radius: 999px; transition: color .26s var(--pb-ease), background .26s var(--pb-ease), border-color .26s var(--pb-ease), transform .12s var(--pb-ease); }
.v3-ctab:hover { color: var(--pb-ink-on-dark); border-color: rgba(196,160,92,.4); }
.v3-ctab.is-active { color: #0b0f17; background: var(--pb-gold-grad); border-color: #e8c879; box-shadow: 0 4px 16px -6px rgba(196,160,92,.6); }
.v3-ctab:focus-visible { outline: 2px solid var(--pb-gold); outline-offset: 2px; }
.v3-ctab:active { transform: scale(.97); }
.v3-cpanel[hidden] { display: none; }
.v3-cpanel { animation: v3CaseFade .4s var(--pb-ease) both; }
@keyframes v3CaseFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .v3-cpanel { animation: none; } }

.v3-carousel { position: relative; }
.v3-carousel__viewport { position: relative; aspect-ratio: 401/639; overflow: hidden; border: 1px solid rgba(244,240,232,.16); background: #0c111c; }
.v3-carousel__track { display: flex; height: 100%; will-change: transform; transition: transform .5s var(--pb-ease); }
@media (prefers-reduced-motion: reduce) { .v3-carousel__track { transition: none; } }
.v3-carousel__slide { position: relative; flex: 0 0 100%; min-width: 0; height: 100%; }
.v3-carousel__slide img, .v3-carousel__slide video { display: block; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: center top; }
.v3-carousel--wide .v3-carousel__viewport { aspect-ratio: 4 / 3; }
.v3-carousel--wide .v3-carousel__slide img, .v3-carousel--wide .v3-carousel__slide video { object-position: center; }
.v3-carousel--tall .v3-carousel__viewport { aspect-ratio: 3 / 4; }
.v3-carousel--tall .v3-carousel__slide img { object-position: center; }
.v3-carousel--contain .v3-carousel__slide img, .v3-carousel--contain .v3-carousel__slide video { object-fit: contain; }
.v3-carousel .v3-ba__chip { z-index: 2; }
.v3-carousel__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(8,11,18,.78); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); border: 1px solid rgba(196,160,92,.5); color: var(--pb-gold); cursor: pointer; transition: background .24s var(--pb-ease), transform .24s var(--pb-ease), opacity .24s var(--pb-ease); }
.v3-carousel__nav:hover { background: var(--pb-gold); color: #0b0f17; }
.v3-carousel__nav:focus-visible { outline: 2px solid var(--pb-gold); outline-offset: 2px; }
.v3-carousel__nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.v3-carousel__nav--prev { left: .7rem; }
.v3-carousel__nav--next { right: .7rem; }
.v3-carousel__nav[disabled] { opacity: .35; pointer-events: none; }
.v3-carousel__dots { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .1rem; margin-top: .9rem; }
.v3-carousel__dot { cursor: pointer; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; background: none; border: 0; padding: 0; }
.v3-carousel__dot span { display: block; width: 7px; height: 7px; border-radius: 50%; background: rgba(244,240,232,.25); transition: background .26s var(--pb-ease), width .26s var(--pb-ease), border-radius .26s var(--pb-ease); }
.v3-carousel__dot:hover span { background: rgba(244,240,232,.45); }
.v3-carousel__dot.is-active span { width: 20px; border-radius: 999px; background: var(--pb-gold); }
.v3-carousel__dot:focus-visible { outline: 2px solid var(--pb-gold); outline-offset: 2px; }
/* mobile: ≥44px-tall touch targets; dots flex to fill the row without wrapping */
@media (max-width: 880px) {
  .v3-carousel__dots { flex-wrap: nowrap; gap: 0; margin-top: .55rem; }
  .v3-carousel__dot { flex: 1 1 auto; min-width: 34px; max-width: 48px; min-height: 44px; }
}

/* ============================================================
   INVESTMENT — single dynamic offer card
   ============================================================ */
.v3-offer { max-width: 1080px; margin: 0 auto; background: rgba(7,11,20,.86); border: 1px solid rgba(244,240,232,.14); }
.v3-offer__main { padding: clamp(1.8rem,3.6vw,3.2rem); }
.v3-offer__tag { font-family: var(--pb-font-h2); font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--pb-gold); }
.v3-offer__title { font-family: var(--pb-font-display); font-style: italic; font-weight: 400; font-size: clamp(1.5rem,2.6vw,2.1rem); color: var(--pb-ink-on-dark); margin: .5rem 0 0; }
.v3-offer__desc { max-width: 62ch; font-size: clamp(.98rem,1.3vw,1.08rem); font-weight: 300; line-height: 1.7; color: var(--pb-ink-on-dark-dim); margin: 1rem 0 0; }
.v3-offer__body { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(1.6rem,3vw,2.6rem); margin-top: clamp(1.8rem,3.5vh,2.6rem); align-items: start; }

.v3-offer__pricecard { padding: clamp(1.4rem,2.4vw,1.9rem); background: rgba(7,11,20,.86); border: 1px solid rgba(196,160,92,.32); }
.v3-offer__regular { font-size: .9rem; font-weight: 300; color: var(--pb-ink-on-dark-dim); letter-spacing: .02em; }
.v3-offer__regular s { color: var(--pb-mute-2); margin-left: .3rem; }
.v3-offer__now { display: flex; align-items: baseline; gap: .4rem; font-family: var(--pb-font-minerva); font-weight: 400; line-height: .95; color: var(--pb-ink-on-dark); margin: .4rem 0 .35rem; transition: opacity .22s var(--pb-ease); }
.v3-offer__now.swap { opacity: 0; }
.v3-offer__cur { font-size: clamp(1.3rem,2vw,1.7rem); color: var(--pb-gold); }
.v3-offer__val { font-size: clamp(2.8rem,5.5vw,4.2rem); letter-spacing: -.01em; }
.v3-offer__sub { font-size: .92rem; font-weight: 300; color: var(--pb-ink-on-dark-dim); }
.v3-offer__special { margin-top: .9rem; font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-gold); }
.v3-offer__special s { color: var(--pb-mute-2); -webkit-text-fill-color: var(--pb-mute-2); font-weight: 400; }
.v3-offer__special--accent { margin-top: .45rem; }
.v3-case__edu-note { margin: 1.1rem 0 0; font-size: .74rem; color: #a7a39a; font-style: italic; line-height: 1.55; }
.v3-offer-cmp { max-width: 1080px; margin: clamp(2.4rem,5vh,3.4rem) auto 0; }
.v3-offer-cmp__head { text-align: center; margin-bottom: clamp(1.6rem,3vw,2.2rem); }
.v3-offer-cmp__head h3 { font-family: var(--pb-font-display); font-weight: 400; font-size: clamp(1.4rem,2.6vw,1.9rem); color: var(--pb-ink-on-dark); margin: .5rem 0 0; }
.v3-offer-cmp__head h3 em { color: var(--pb-gold); font-style: italic; }
.v3-offer-cmp__scroll { overflow-x: auto; border: 1px solid rgba(244,240,232,.12); }
.v3-offer-cmp__table { width: 100%; min-width: 560px; border-collapse: collapse; background: rgba(244,240,232,.04); font-size: .88rem; }
.v3-offer-cmp__table th, .v3-offer-cmp__table td { padding: .85rem 1.2rem; border-bottom: 1px solid rgba(244,240,232,.1); color: var(--pb-ink-on-dark-dim); text-align: left; vertical-align: top; }
.v3-offer-cmp__table th { font-family: var(--pb-font-h2); font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pb-mute-2); background: rgba(244,240,232,.06); }
.v3-offer-cmp__table th.is-vip { color: var(--pb-gold); background: rgba(196,160,92,.12); border-bottom-color: var(--pb-gold); }
.v3-offer-cmp__table td:nth-child(2), .v3-offer-cmp__table td:nth-child(3) { text-align: center; font-size: .82rem; }
.v3-offer-cmp__table td:nth-child(3) { background: rgba(196,160,92,.06); color: var(--pb-gold); }
.v3-offer-cmp__table small { display: block; margin-top: .25rem; font-family: var(--pb-font-h2); font-size: .7rem; font-weight: 400; letter-spacing: .04em; text-transform: none; color: inherit; opacity: .85; }
.v3-offer-cmp__note { margin: 1rem 0 0; font-size: .76rem; line-height: 1.55; color: var(--pb-mute-2); }
.v3-offer__bonus { margin-top: 1.4rem; padding: 1rem 1.1rem; background: rgba(196,160,92,.08); border: 1px solid rgba(196,160,92,.3); display: flex; flex-direction: column; gap: .35rem; }
.v3-offer__bonus-lbl { font-family: var(--pb-font-h2); font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--pb-gold); }
.v3-offer__bonus b { font-family: var(--pb-font-h2); font-weight: 600; font-size: clamp(.96rem,1.3vw,1.08rem); color: var(--pb-ink-on-dark); line-height: 1.3; }
.v3-offer__vipbadge { margin-top: .85rem; display: inline-block; padding: .4rem .8rem; border: 1px solid rgba(196,160,92,.5); border-radius: 999px; font-family: var(--pb-font-h2); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pb-gold); }
.v3-offer__vipbadge[hidden] { display: none; }
.v3-offer__cta { display: block; text-align: center; margin-top: 1.3rem; width: 100%; }
.v3-offer__reassure { margin: .75rem 0 0; text-align: center; font-size: .78rem; font-weight: 300; line-height: 1.5; letter-spacing: .02em; color: var(--pb-mute-2); }
.v3-offer__seats { margin-top: .9rem; text-align: center; font-family: var(--pb-font-h2); font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-ink-on-dark-dim); }

.v3-offer__upgrade { display: flex; align-items: center; gap: 1rem; width: 100%; margin-top: 1rem; padding: 1rem 1.2rem; background: rgba(244,240,232,.04); border: 1px solid rgba(244,240,232,.16); cursor: pointer; text-align: left; font: inherit; transition: border-color .25s var(--pb-ease), background .25s var(--pb-ease); }
.v3-offer__upgrade:hover { border-color: rgba(196,160,92,.45); }
.v3-offer__upgrade.is-on { border-color: var(--pb-gold); background: rgba(196,160,92,.08); }
.v3-offer__upgrade-txt { flex: 1; display: flex; flex-direction: column; gap: .22rem; }
.v3-offer__upgrade-txt b { font-family: var(--pb-font-h2); font-size: .98rem; font-weight: 600; color: var(--pb-ink-on-dark); }
.v3-offer__upgrade-txt i { font-style: normal; font-size: .8rem; font-weight: 300; color: var(--pb-ink-on-dark-dim); }
.v3-offer__switch { flex: 0 0 auto; width: 46px; height: 26px; border-radius: 999px; background: rgba(244,240,232,.18); position: relative; transition: background .25s var(--pb-ease); }
.v3-offer__switch span { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #f4f0e8; transition: transform .25s var(--pb-ease); }
.v3-offer__upgrade.is-on .v3-offer__switch { background: var(--pb-gold-grad); box-shadow: inset 0 0 0 1px rgba(255,246,212,.35), 0 0 12px -3px rgba(196,160,92,.6); }
.v3-offer__upgrade.is-on .v3-offer__switch span { transform: translateX(20px); }

.v3-offer__vip { max-height: 0; overflow: hidden; opacity: 0; transition: opacity .35s var(--pb-ease); }
.v3-offer__vip.is-open { max-height: 760px; opacity: 1; }
.v3-offer__vip-inner { transform: translateY(-8px); transition: transform .45s var(--pb-ease); }
.v3-offer__vip.is-open .v3-offer__vip-inner { transform: translateY(0); }
.v3-offer__vip-lbl { display: block; font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--pb-gold); padding-top: 1.3rem; }
.v3-offer__vip-desc { font-size: .9rem; font-weight: 300; line-height: 1.62; color: var(--pb-ink-on-dark-dim); margin: .9rem 0 0; }
.v3-offer__vip-list { list-style: none; display: grid; gap: .5rem; margin: 1rem 0 0; }
.v3-offer__vip-list li { position: relative; padding-left: 1.3rem; font-size: .9rem; font-weight: 300; line-height: 1.5; color: #d8d4ca; }
.v3-offer__vip-list li::before { content: "\2014"; position: absolute; left: 0; color: var(--pb-gold); }
.v3-offer__vip-note { font-size: .78rem; font-weight: 300; line-height: 1.55; color: var(--pb-mute-2); margin: 1rem 0 0; padding-top: .9rem; border-top: 1px solid rgba(244,240,232,.1); }

.v3-offer__inc-lbl { display: block; font-family: var(--pb-font-h2); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--pb-ink-on-dark-dim); margin-bottom: 1.1rem; padding-bottom: .9rem; border-bottom: 1px solid rgba(244,240,232,.12); }
.v3-offer__includes ul { list-style: none; display: grid; gap: .72rem; }
.v3-offer__includes li { position: relative; padding-left: 1.5rem; font-size: clamp(.92rem,1.2vw,1rem); font-weight: 300; line-height: 1.5; color: #d8d4ca; }
.v3-offer__includes li::before { content: "\2713"; position: absolute; left: 0; top: 0; font-size: .85rem; color: var(--pb-gold); }

@media (max-width: 820px) { .v3-offer__body { grid-template-columns: 1fr; } }

/* ---- VIP ACTIVATED — ultra-premium state ---- */
.v3-offer { position: relative; overflow: hidden; transition: background .6s var(--pb-ease), border-color .5s var(--pb-ease), box-shadow .6s var(--pb-ease); }
.v3-offer::before { content: ""; position: absolute; top: 0; left: -65%; width: 55%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,226,160,.16) 44%, rgba(255,255,255,.32) 50%, rgba(255,226,160,.16) 56%, transparent); transform: skewX(-18deg); pointer-events: none; opacity: 0; z-index: 6; }
.v3-offer.vip-flash::before { animation: vipSweep 1.05s var(--pb-ease) forwards; }
@keyframes vipSweep { 0% { left: -65%; opacity: 0; } 14% { opacity: 1; } 100% { left: 135%; opacity: 0; } }
.v3-offer.vip-active { background: radial-gradient(125% 150% at 50% -12%, rgba(34,68,124,.55), rgba(7,11,20,.96) 68%), linear-gradient(165deg, #0d2143 0%, #0a1326 62%); border-color: var(--pb-gold); box-shadow: 0 0 0 1px rgba(196,160,92,.55), 0 34px 90px -34px rgba(16,46,92,.85), 0 0 64px -12px rgba(196,160,92,.3); }
.v3-offer.vip-active .v3-offer__tag { color: #e8c879; }
.v3-offer.vip-active .v3-offer__pricecard { background: rgba(8,14,28,.9); border-color: var(--pb-gold); }
/* VIP-active keeps the primary CTA electric blue (One Voice Rule); VIP is signalled by the card chrome only. */
.v3-offer.vip-active .v3-offer__seats { color: var(--pb-gold); display: flex; align-items: center; justify-content: center; gap: .55rem; }
.v3-offer.vip-active .v3-offer__seats::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pb-gold); animation: vipDot 1.4s ease-out infinite; }
@keyframes vipDot { 0% { box-shadow: 0 0 0 0 rgba(196,160,92,.65); } 100% { box-shadow: 0 0 0 9px rgba(196,160,92,0); } }
.v3-offer.vip-active .v3-offer__vipbadge { background: rgba(196,160,92,.16); border-color: var(--pb-gold); color: #ecce82; box-shadow: 0 0 20px -6px rgba(196,160,92,.5); }
.v3-offer.vip-active .v3-offer__upgrade.is-on { border-color: var(--pb-gold); background: rgba(196,160,92,.15); box-shadow: 0 0 26px -8px rgba(196,160,92,.5); }
@media (prefers-reduced-motion: reduce) { .v3-offer::before, .v3-offer.vip-flash::before, .v3-offer.vip-active .v3-offer__seats::before { animation: none; } }
@media (prefers-reduced-motion: reduce) { .v3-offer__vip, .v3-offer__now { transition: none; } }

/* ============================================================
   FINAL APPLICATION CTA + IMAGES (post-FAQ)
   ============================================================ */
.v3-final { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr); grid-template-areas: "copy media" "actions media"; column-gap: clamp(2.4rem,5vw,4.5rem); row-gap: clamp(1.8rem,3.5vh,2.4rem); align-items: start; max-width: 1180px; margin: 0 auto; }
.v3-final__copy { grid-area: copy; display: flex; flex-direction: column; }
.v3-final__media { grid-area: media; align-self: center; perspective: 1200px; }
.v3-final__actions { grid-area: actions; align-self: start; }
.v3-final__kicker { font-family: var(--pb-font-h2); font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--pb-gold); }
.v3-final__title { font-family: var(--pb-font-display); font-weight: 400; font-size: clamp(1.7rem,3vw,2.55rem); line-height: 1.16; color: var(--pb-ink-on-dark); margin: 1rem 0 0; text-wrap: balance; }
.v3-final__title b { font-style: italic; font-weight: 400; color: var(--pb-gold); }
.v3-final__text { font-size: clamp(.98rem,1.25vw,1.06rem); font-weight: 300; line-height: 1.7; color: var(--pb-ink-on-dark-dim); margin: 1.3rem 0 0; max-width: 52ch; }
.v3-final__text + .v3-final__text { margin-top: .9rem; }
.v3-final__list { list-style: none; display: grid; gap: .72rem; margin: 1.6rem 0 0; }
.v3-final__list li { position: relative; padding-left: 1.6rem; font-size: clamp(.94rem,1.2vw,1.02rem); font-weight: 400; line-height: 1.45; color: #d8d4ca; }
.v3-final__list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--pb-gold); }
.v3-final__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.v3-final__actions .v3-btn--primary { box-shadow: 0 14px 40px -14px rgba(196,160,92,.55); }
.v3-final__sec { font-family: var(--pb-font-h2); font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--pb-ink-on-dark-dim); text-decoration: none; border-bottom: 1px solid rgba(244,240,232,.25); padding-bottom: .2rem; transition: color .25s var(--pb-ease), border-color .25s var(--pb-ease); }
.v3-final__sec:hover { color: var(--pb-gold); border-color: var(--pb-gold); }
/* image composition */
.v3-final__media3d { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: clamp(.7rem,1.2vw,1rem); transform-style: preserve-3d; will-change: transform; }
.v3-final__shot { position: relative; overflow: hidden; border-radius: 12px; border: 1px solid rgba(244,240,232,.12); box-shadow: 0 26px 64px -28px rgba(0,0,0,.8); will-change: transform; }
.v3-final__shot--main { box-shadow: 0 30px 70px -28px rgba(0,0,0,.85), 0 0 0 1px rgba(196,160,92,.12); }
.v3-final__shot img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.96) contrast(1.02); }
.v3-final__shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,11,18,.05) 0%, rgba(8,11,18,.12) 55%, rgba(8,11,18,.5) 100%); pointer-events: none; }
.v3-final__shot--main { grid-column: 1 / -1; aspect-ratio: 16/9; }
.v3-final__shot--sub { aspect-ratio: 4/3; }
.v3-final__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.1rem 1.2rem .95rem; font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pb-ink-on-dark); }
.v3-final__cap span { display: block; font-family: var(--pb-font-sans); font-size: .68rem; font-weight: 400; letter-spacing: .04em; text-transform: none; color: var(--pb-ink-on-dark-dim); margin-top: .2rem; }
@media (max-width: 860px) {
  .v3-final { grid-template-columns: 1fr; grid-template-areas: "copy" "media" "actions"; }
}
.v3-mani { max-width: 860px; }
.v3-mani__head { font-size: clamp(2rem,5vw,3.7rem); line-height: 1.12; margin: 0 0 clamp(1.8rem,4vh,2.6rem); text-wrap: balance; }
.v3-mani__body p { font-size: clamp(1.05rem,1.5vw,1.22rem); font-weight: 300; line-height: 1.74; color: var(--pb-ink-on-dark-dim); margin: 0 0 1.6rem; }
.v3-mani__body p:last-child { margin-bottom: 0; }
.v3-mani__accent { font-family: var(--pb-font-display) !important; font-style: italic; font-weight: 400; font-size: clamp(1.25rem,2vw,1.6rem) !important; line-height: 1.4 !important; color: var(--pb-ink-on-dark) !important; }
.v3-mani__beats { list-style: none; margin: clamp(2rem,4vh,2.8rem) 0 !important; padding: 0; }
.v3-mani__beats li { font-family: "Minerva Modern", var(--pb-font-display) !important; font-weight: 400; font-size: clamp(1.4rem,2.6vw,2.05rem); letter-spacing: .01em; line-height: 1.5; color: var(--pb-ink-on-dark); display: flex; align-items: baseline; gap: .55em; }
.v3-mani__beats li + li { margin-top: .35em; }
.v3-mani__beats li::before { content: "—"; color: var(--pb-gold); font-weight: 400; flex: none; }
.v3-mani__recusa { margin: clamp(2.4rem,5vh,3.4rem) 0 0; padding: clamp(1.5rem,3vw,2rem); background: rgba(7,11,20,.55); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px); border: 1px solid rgba(244,240,232,.14); }
.v3-mani__card-lbl { font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--pb-gold); margin-bottom: 1.1rem; }
.v3-recusa-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.v3-recusa-item { display: flex; align-items: center; gap: .9rem; padding: .95rem 1.15rem; background: rgba(255,255,255,.025); border: 1px solid rgba(244,240,232,.12); border-radius: 11px; font-size: clamp(.92rem,1.2vw,1.02rem); font-weight: 300; line-height: 1.35; color: #d8d4ca; transition: transform .26s var(--pb-ease), border-color .26s var(--pb-ease), background .26s var(--pb-ease), box-shadow .26s var(--pb-ease); }
.v3-recusa-item:hover { transform: translateY(-3px); border-color: rgba(196,160,92,.5); background: rgba(196,160,92,.06); box-shadow: 0 18px 40px -22px rgba(0,0,0,.8); }
.v3-recusa-item--wide { grid-column: 1 / -1; }
.v3-recusa-ic { flex: 0 0 auto; position: relative; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 0; background: transparent; border: 1px solid rgba(196,160,92,.32); transition: border-color .26s var(--pb-ease); }
.v3-recusa-item:hover .v3-recusa-ic { border-color: rgba(196,160,92,.55); }
.v3-recusa-ic svg { width: 18px; height: 18px; fill: none; stroke: var(--pb-gold); stroke-width: 1.8; stroke-linecap: round; position: relative; z-index: 1; }
@media (max-width: 560px) { .v3-recusa-grid { grid-template-columns: 1fr; } }
.v3-mani__final { max-width: 760px; margin: clamp(2.8rem,5.5vh,4rem) auto 0; padding: clamp(1.6rem,3vh,2.2rem) 0 0; border-top: 1px solid rgba(244,240,232,.14); font-family: var(--pb-font-display); font-style: italic; font-weight: 400; font-size: clamp(1.3rem,2.2vw,1.85rem); line-height: 1.42; color: var(--pb-ink-on-dark); text-align: center; text-wrap: balance; }
.v3-mani__final cite { display: block; margin-top: 1.2rem; font-style: normal; font-family: var(--pb-font-h2); font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--pb-gold); }
@media (max-width: 820px) { .v3-mani__head { max-width: none; } }

/* ============================================================
   MOBILE OPTIMIZATION PASS
   ============================================================ */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 84px; }
.v3 { overflow-x: hidden; }
.v3 img, .v3 svg, .v3 video, .v3 iframe { max-width: 100%; }

/* nav right cluster + dual CTA + hamburger */
.v3-nav__right { display: flex; align-items: center; gap: clamp(1.1rem,2.6vw,2rem); }
.v3-cta--bar { display: none; }
.v3-navtoggle { display: none; }

@media (max-width: 900px) {
  /* dropdown menu — no inscreva-se CTA in the mobile nav (removed per request) */
  .v3-cta--inmenu { display: none; }
  .v3-cta--bar { display: none; }
  .v3-navtoggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 11px; flex: 0 0 auto;
    background: rgba(244,240,232,.05); border: 1px solid rgba(244,240,232,.2);
    border-radius: 10px; cursor: pointer; -webkit-appearance: none; appearance: none;
  }
  .v3-navtoggle span { display: block; height: 2px; width: 100%; background: var(--pb-ink-on-dark); border-radius: 2px; transition: transform .3s var(--pb-ease), opacity .25s var(--pb-ease); }
  .v3-nav.is-open .v3-navtoggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .v3-nav.is-open .v3-navtoggle span:nth-child(2) { opacity: 0; }
  .v3-nav.is-open .v3-navtoggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .v3-nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(5,8,15,.96); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-top: 1px solid rgba(244,240,232,.08); border-bottom: 1px solid rgba(244,240,232,.12);
    padding: .3rem clamp(1.1rem,4vw,2.6rem) 1.1rem;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: opacity .3s var(--pb-ease), transform .3s var(--pb-ease);
  }
  .v3-nav.is-open .v3-nav__links { max-height: 80vh; opacity: 1; pointer-events: auto; }
  .v3-nav__links a:not(.v3-cta) {
    display: block !important; padding: 1.05rem .2rem; font-size: .92rem; letter-spacing: .12em;
    color: var(--pb-ink-on-dark); border-bottom: 1px solid rgba(244,240,232,.08);
  }
  .v3-nav__links a:not(.v3-cta)::after { display: none; }

  /* neutralize hardcoded inline px dimensions so nothing overflows */
  .v3-days__intro h2 {
    width: auto !important; height: auto !important;
    font-size: clamp(2.3rem,8.5vw,4rem) !important; letter-spacing: .02em !important; line-height: 1.02 !important;
  }
  .v3-days__intro p { max-width: none !important; }
  .v3-day--detail h3 { width: auto !important; font-size: clamp(1.7rem,7vw,2.4rem) !important; margin: .7rem 0 .35rem !important; }
  .v3-final__title { font-size: clamp(1.85rem,6.8vw,2.4rem) !important; letter-spacing: .01em !important; line-height: 1.14 !important; }
  .v3-final__text { font-size: clamp(1rem,4vw,1.12rem) !important; }
}

/* tighter bar on small phones */
@media (max-width: 560px) {
  .v3-navtoggle { width: 42px; height: 42px; padding: 10px; }
  .v3-brand .w { font-size: .95rem; }
  .v3-brand .k { font-size: .52rem; }
}

/* keep heavy hover-driven motion off touch devices */
@media (hover: none) {
  .v3-testi:hover, .v3-guest:hover, .v3-hotelc:hover, .v3-recusa-item:hover,
  .v3-logi__step:hover, .v3-rmstep:hover, #paradigma .v3-pillar:hover,
  #science .v3-pillar:hover, .v3-partner:hover { transform: none; }
}

/* ------------------------------------------------------------
   Neutralize hardcoded inline px sizes (from direct edits) so
   text stays fluid and never overflows on phones.
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  /* long words / URLs never push horizontal scroll */
  .v3-main, .v3-footer { overflow-wrap: break-word; }

  /* CLOSE / admission */
  .v3-close h2, .v3-close h2.js-close {
    font-size: clamp(1.9rem, 7.6vw, 2.6rem) !important;
    letter-spacing: .01em !important; line-height: 1.1 !important;
  }
  .v3-close .v3-eyebrow, .v3-close .v3-eyebrow.js-close {
    font-size: .74rem !important; letter-spacing: .14em !important;
  }
  .v3-close p, .v3-close p.js-close {
    font-size: clamp(1rem, 4vw, 1.12rem) !important;
  }

  /* Partners head */
  .v3-partners__head .v3-eyebrow { font-size: .8rem !important; letter-spacing: .14em !important; }
  .v3-partners__head p { font-size: clamp(1rem, 4.2vw, 1.18rem) !important; }
}

/* ------------------------------------------------------------
   Conteúdo Programático — mobile usa a pilha vertical nativa
   (definida acima em max-width:900). O pin horizontal é só
   desktop: no touch ele segura o scroll a cada slide ("freio"
   no dedo), então o engine não cria pin nem .is-hscroll lá.
   ------------------------------------------------------------ */

/* ============================================================
   Pré-formulário (CTA → WhatsApp)
   ============================================================ */
.v3-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: clamp(1rem,4vw,2rem); }
.v3-modal.is-open { display: flex; }
.v3-modal__backdrop { position: absolute; inset: 0; background: rgba(3,5,9,.78); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.v3-modal__card { position: relative; z-index: 1; width: 100%; max-width: 460px; max-height: 92svh; overflow-y: auto; background: linear-gradient(170deg, #0c1018, #070a12); border: 1px solid rgba(196,160,92,.28); border-radius: 18px; padding: clamp(1.8rem,4vw,2.6rem); box-shadow: 0 40px 120px -30px rgba(0,0,0,.85), inset 0 1px 0 rgba(244,240,232,.05); animation: v3modalIn .42s cubic-bezier(.16,1,.3,1); }
@keyframes v3modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .v3-modal__card { animation: none; } }
.v3-modal__close { position: absolute; top: .7rem; right: .9rem; width: 40px; height: 40px; border: 0; background: transparent; color: var(--pb-ink-on-dark-dim); font-size: 2rem; line-height: 1; cursor: pointer; border-radius: 8px; transition: color .2s var(--pb-ease), background .2s var(--pb-ease); }
.v3-modal__close:hover { color: var(--pb-ink-on-dark); background: rgba(244,240,232,.06); }
.v3-modal .v3-eyebrow { display: block; font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin-bottom: .7rem; }
.v3-modal__title { font-family: var(--pb-font-h1); font-weight: 300; font-size: clamp(1.6rem,4.5vw,2.1rem); line-height: 1.1; color: var(--pb-ink-on-dark); margin: 0 0 .6rem; }
.v3-modal__sub { font-size: .95rem; font-weight: 300; line-height: 1.55; color: var(--pb-ink-on-dark-dim); margin: 0 0 1.5rem; }
.v3-modal__form { display: flex; flex-direction: column; gap: 1rem; }
.v3-modal__form label { display: flex; flex-direction: column; gap: .4rem; font-family: var(--pb-font-h2); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pb-gold-soft); }
.v3-modal__form input { font-family: var(--pb-font-sans); font-size: 1rem; font-weight: 400; color: var(--pb-ink-on-dark); background: rgba(244,240,232,.04); border: 1px solid rgba(244,240,232,.16); border-radius: 10px; padding: .85rem 1rem; transition: border-color .2s var(--pb-ease), background .2s var(--pb-ease); }
.v3-modal__form input::placeholder { color: rgba(244,240,232,.32); text-transform: none; letter-spacing: 0; font-weight: 300; }
.v3-modal__form input:focus { outline: none; border-color: var(--pb-gold); background: rgba(196,160,92,.07); }
.v3-modal__submit { margin-top: .5rem; width: 100%; font-size: .92rem; padding: 1rem; }
.v3-modal__note { text-align: center; font-size: .76rem; font-weight: 300; color: var(--pb-mute-2); margin: .2rem 0 0; }

/* ============================================================
   Sticky mobile CTA — appears after the hero scrolls out of view.
   Mobile only (<=720px). Degrades to visible without JS.
   ============================================================ */
.v3-stickycta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; display: none; padding: .7rem clamp(1rem,4vw,1.4rem); padding-bottom: calc(.7rem + env(safe-area-inset-bottom)); background: rgba(5,8,15,.88); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid rgba(244,240,232,.1); transform: translateY(0); transition: transform .4s var(--pb-ease); }
.v3-stickycta .v3-btn { width: 100%; }
@media (max-width: 720px) { .v3-stickycta { display: block; } }
/* JS active: start hidden below the fold, slide up when .is-on is toggled on scroll. */
.js .v3-stickycta { transform: translateY(110%); }
.js .v3-stickycta.is-on { transform: translateY(0); }
/* Na seção de investimento (oferta) a barra recolhe: o CTA já está inline ali,
   e assim o botão flutuante do concierge volta a aparecer (deixa de ser coberto).
   Fica depois de .is-on para vencer por ordem quando ambas as classes estão ativas. */
.js .v3-stickycta.is-hidden { transform: translateY(110%); }
/* No-JS or GSAP timeout: render in place so the CTA never hides. */
.js.gsap-timeout .v3-stickycta { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .v3-stickycta { transition: none; } }

/* ============================================================
   GLOBAL GOLD GRADIENT — static premium gold on gold accents
   Shared gradient (no animation) on clean gold TEXT + solid gold FILLS.
   Excluded by design (would break layout or be invisible):
   pills/badges that own a background (need an inner <span>),
   line SVG/<i> icons (stroke, no glyph), and hover/active borders.
   ============================================================ */
.v3 { --pb-gold-grad: linear-gradient(100deg, #c4a05c 0%, #f4dfa6 24%, #e8c879 50%, #f4dfa6 76%, #c4a05c 100%); }

/* ============================================================
   AÇÃO / CTA — azul refinado (escopo .v3)
   Sapphire mais profundo e menos saturado que o token global
   (#2e6ef0, azul-neon), com brilho contido em vez de halo — pra
   casar com o clima premium dourado-sobre-escuro. Override local:
   não mexe no design system compartilhado (tokens/colors.css).
   ============================================================ */
.v3 {
  --pb-blue:          #3a5fc0;
  --pb-blue-alt:      #3a5fc0;
  --pb-blue-hover:    #4d76dd;
  --pb-glow-blue:     0 10px 30px -12px rgba(26, 48, 110, .6);
  --pb-glow-blue-lg:  0 16px 44px -14px rgba(26, 48, 110, .66);
}

/* gold TEXT → gradient clipped to glyphs */
.v3-eyebrow, .v3-ticker__track b, .v3-evi__kicker, .v3-evi__meta, .v3-evi__cta,
.v3-mani__lead, .v3-mani__quote cite, .v3-cmp__diff-lbl, .v3-cmp__swipe,
.v3-days__count, .v3-logi__sub, .v3-hotelc__stars, .v3-hotelc__tag,
.v3-footer h3, .v3-guest__role, .v3-journey__verb,
.v3-case__count b, .v3-case__label, .v3-offer__tag, .v3-offer__cur,
.v3-offer__special, .v3-offer__bonus-lbl,
.v3-offer__vip-lbl, .v3-final__kicker, .v3-final__title b,
.v3-mani__card-lbl, .v3-mani__final cite,
.v3-cmp__h span.hp em, .v3-cmp__shift .more, .v3-logi__step .ic,
.v3-close__seats span b, .v3-testi i, .v3-day__items .k,
.v3-letter__photo figcaption span, .v3-journey__flow i,
.v3-days__count b, .v3-days__count span, .v3-cmp__swipe span {
  background: var(--pb-gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* solid gold FILLS → gradient surface (dark content on top stays legible) */
.cmp-ic--yes, .v3-col ul.v3-hotels li::before, .v3-close__dots i.on,
.v3-final__list li::before, .v3-carousel__dot.is-active span {
  background-image: var(--pb-gold-grad);
}

/* gold PILLS (own background) → gradient text; their fill/border moves to ::before.
   All 4 are pure-text (no svg children), so clipping to text is safe.
   .v3-guest__hours has a <b> child that must carry the gradient too, else it vanishes. */
.v3-prs__badge, .v3-guest__hours, .v3-guest__hours b,
.v3-ba__chip--after, .v3-cmp__h span.hp {
  background: var(--pb-gold-grad) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent; color: transparent !important;
}
.v3-prs__badge, .v3-guest__hours, .v3-ba__chip--after, .v3-cmp__h span.hp {
  position: relative; isolation: isolate; border-color: transparent !important;
}
.v3-prs__badge::before, .v3-guest__hours::before,
.v3-ba__chip--after::before, .v3-cmp__h span.hp::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit; pointer-events: none;
}
.v3-prs__badge::before { background: rgba(8,11,18,.78); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(196,160,92,.5); border-radius: 999px; }
.v3-guest__hours::before { background: rgba(5,8,15,.82); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-top: 1px solid rgba(194,162,116,.4); border-right: 1px solid rgba(194,162,116,.4); }
.v3-ba__chip--after::before { background: rgba(6,9,16,.78); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); border: 1px solid rgba(196,160,92,.5); }
.v3-cmp__h span.hp::before { background: rgba(196,160,92,.1); border-left: 1px solid rgba(196,160,92,.35); }

/* gold SVG line-icons → gradient stroke via shared <linearGradient id=pbGoldGrad> (in HTML) */
.v3-footer__totop svg, .v3-carousel__nav svg { stroke: url(#pbGoldGrad); }
.v3-carousel__nav:hover svg { stroke: #0b0f17; } /* keep contrast on gold hover fill */
.v3-footer__totop {
  background: var(--pb-gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent !important;
}

/* keep full shimmer travel on brand .v3-gold-text even when combined with .v3-eyebrow (whose shorthand background resets background-size) */
.v3-gold-text { background-size: 200% auto; }

/* ============================================================
   OFFER CARD — gold gradient borders via mask ring (bg-safe, works
   regardless of vip-active background swaps). External (.v3-offer)
   shimmers; internal (.v3-offer__pricecard) is static gold.
   ============================================================ */
.v3-offer { border-color: transparent !important; }
.v3-offer__pricecard { position: relative; border-color: transparent !important; }
.v3-offer::after, .v3-offer__pricecard::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--pb-gold-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.v3-offer::after { padding: 2px; background-size: 200% auto; z-index: 5; animation: goldShimmer 6s linear infinite; }
.v3-offer__pricecard::after { padding: 1.5px; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .v3-offer::after { animation: none; } }

/* OFFER CTA — herda o azul refinado de .v3-btn--primary (consistência
   com os demais CTAs). Reforça o peso/letra-espaçada pra manter destaque
   como CTA principal da oferta. */
.v3-offer__cta, .v3-offer__cta.v3-btn--primary {
  font-weight: 700; letter-spacing: .06em;
}

/* ============================================================
   CONCIERGE FLUTUANTE — chat direto com o Danilo Mata (WhatsApp)
   ============================================================ */
.v3-concierge { position: fixed; left: clamp(.9rem,2.5vw,1.6rem); bottom: clamp(.9rem,2.5vw,1.6rem); z-index: 300; display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; }
.v3-concierge__fab { display: inline-flex; align-items: center; gap: .55rem; padding: .7rem .95rem .7rem .75rem; border: 1px solid rgba(255,246,212,.5); border-radius: 999px; cursor: pointer;
  background: linear-gradient(100deg, #b8893f 0%, #f4dfa6 28%, #fff6d4 50%, #f4dfa6 72%, #b8893f 100%); background-size: 200% auto; background-position: left center;
  color: #2a1d05; box-shadow: 0 14px 40px -12px rgba(196,160,92,.75), 0 0 0 1px rgba(196,160,92,.4), inset 0 1px 0 rgba(255,255,255,.55);
  transition: transform .25s var(--pb-ease), background-position .5s var(--pb-ease), box-shadow .25s var(--pb-ease); }
.v3-concierge__fab:hover { transform: translateY(-2px); background-position: right center; box-shadow: 0 20px 54px -12px rgba(196,160,92,.9), 0 0 0 1px rgba(244,223,166,.6), inset 0 1px 0 rgba(255,255,255,.65); }
.v3-concierge__fab:focus-visible { outline: 2px solid var(--pb-gold); outline-offset: 4px; }
.v3-concierge__fabicon { flex: 0 0 auto; }
.v3-concierge__fablabel { font-family: var(--pb-font-h2); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding-right: .2rem; }
.v3-concierge.is-open .v3-concierge__fablabel { display: none; }
.v3-concierge.is-open .v3-concierge__fab { padding: .75rem; }

.v3-concierge__panel { width: min(320px, calc(100vw - 2rem)); background: linear-gradient(170deg, #0c1018, #070a12); border: 1px solid rgba(196,160,92,.3); border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 120px -30px rgba(0,0,0,.85), inset 0 1px 0 rgba(244,240,232,.05); animation: v3conciergeIn .34s cubic-bezier(.16,1,.3,1); }
@keyframes v3conciergeIn { from { opacity: 0; transform: translateY(12px) scale(.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .v3-concierge__panel { animation: none; } }
.v3-concierge__head { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.1rem; border-bottom: 1px solid rgba(244,240,232,.08); }
.v3-concierge__avatar { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; font-family: var(--pb-font-h2); font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: #2a1d05; background: var(--pb-gold-grad); }
.v3-concierge__ident { display: flex; flex-direction: column; gap: .18rem; line-height: 1.2; }
.v3-concierge__ident b { font-family: var(--pb-font-h2); font-size: .96rem; font-weight: 600; color: var(--pb-ink-on-dark); }
.v3-concierge__role { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--pb-font-sans); font-size: .72rem; font-weight: 400; color: var(--pb-ink-on-dark-dim); }
.v3-concierge__dot { width: 7px; height: 7px; border-radius: 50%; background: #35d07f; box-shadow: 0 0 0 3px rgba(53,208,127,.2); }
.v3-concierge__close { margin-left: auto; width: 32px; height: 32px; border: 0; background: transparent; color: var(--pb-ink-on-dark-dim); font-size: 1.5rem; line-height: 1; cursor: pointer; border-radius: 8px; transition: color .2s var(--pb-ease), background .2s var(--pb-ease); }
.v3-concierge__close:hover { color: var(--pb-ink-on-dark); background: rgba(244,240,232,.06); }
.v3-concierge__close:focus-visible { outline: 2px solid var(--pb-gold); outline-offset: 2px; }
.v3-concierge__body { padding: 1.1rem 1.1rem .4rem; }
.v3-concierge__bubble { margin: 0; padding: .85rem 1rem; background: rgba(244,240,232,.05); border: 1px solid rgba(244,240,232,.08); border-radius: 4px 14px 14px 14px; font-family: var(--pb-font-sans); font-size: .9rem; font-weight: 300; line-height: 1.55; color: var(--pb-ink-on-dark); }
.v3-concierge__start { margin: 1rem 1.1rem .4rem; width: calc(100% - 2.2rem); display: inline-flex; align-items: center; justify-content: center; gap: .5rem; }
.v3-concierge__note { margin: .2rem 1.1rem 1.1rem; text-align: center; font-family: var(--pb-font-sans); font-size: .74rem; font-weight: 300; color: var(--pb-mute-2); }

@media (max-width: 480px) {
  .v3-concierge { right: clamp(.9rem,2.5vw,1.6rem); }
  .v3-concierge__panel { width: calc(100vw - 1.8rem); }
}

/* ===== ESCANEABILIDADE — realce de leitura dinâmica =====
   O corpo de texto usa peso 300 (light). O navegador aplica font-weight:bolder
   ao <strong>, que sobre 300 resolve para apenas 400 (contraste fraco). Fixamos
   um bold refinado (600) nos blocos de prosa para destacar palavras-chave.
   Apenas font-weight: NÃO toca em `background` — preserva o gradiente dourado
   (.v3-gold-text continua com seu clip/fill intactos). */
.v3-mani__body strong,
.v3-evi__lead strong, .v3-evi__copy strong,
.v3-head p strong,
.v3-pillar p strong,
.v3-case__block p strong,
.v3-letter__intro strong, .v3-letter__text p strong,
.v3-offer__desc strong, .v3-offer__vip-desc strong,
.v3-rmstep__txt p strong, .v3-bonus__tag strong,
.v3-faq details p strong,
.v3-final__text strong,
.v3-logi__note strong,
.v3-partners__head p strong,
.v3-close p strong {
  font-weight: 600;
}

/* ===== IMPECCABLE QUALITY PASS =====
   Reserve display treatments for genuinely short labels, keep supporting copy
   readable, and replace decorative glow with quieter, directional depth. */
.v3-btn--primary,
.v3-final__actions .v3-btn--primary,
.v3-concierge__start {
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, .8);
  text-transform: none;
  letter-spacing: .02em;
}

.v3-eyebrow,
.v3-mani__lead,
.v3-evi__meta,
.v3-cmp__swipe,
.v3-guest__topic,
.v3-offer__special,
.v3-offer__vipbadge,
.v3-offer__inc-lbl,
.v3-logi__sub,
.v3-close__seats span,
.v3-traj__shot figcaption,
.v3-final__cap {
  text-transform: none;
  letter-spacing: .045em;
}

.v3-ticker__track span,
.v3-journey__tag {
  letter-spacing: .02em;
}

.v3-cmp {
  padding-inline: clamp(.75rem, 2vw, 1.25rem);
}

.v3-offer-cmp__scroll {
  padding: .35rem;
}

.v3-offer__regular s,
.v3-offer__special s {
  color: #f4f0e8;
  -webkit-text-fill-color: #f4f0e8;
  text-decoration-color: #d6b873;
}

.v3-offer-cmp__table th.is-vip small {
  color: #f4dfa6;
  opacity: 1;
}

.v3-offer-cmp__note {
  max-width: 78ch;
}

.v3-final__cap span,
.v3-concierge__role,
.v3-concierge__note {
  font-size: max(.8125rem, 13px);
}

.v3-prs,
.v3-traj__shot,
.v3-partner,
.v3-loc__map,
.v3-modal__card,
.v3-concierge__panel,
.v3-concierge__fab {
  box-shadow: 0 18px 34px -24px rgba(0, 0, 0, .72);
}

@media (max-width: 900px) {
  .v3-nav__links { transform: translateY(-.5rem); }
  .v3-nav.is-open .v3-nav__links { transform: translateY(0); }
}
