/* =========================================================
   A SUBIDA — Sermão da Montanha · Fundação (Fase 1)
   Stack: Lenis (smooth scroll) + GSAP/ScrollTrigger
   ========================================================= */

/* ===== TOKENS ===== */
:root {
  --cream:     #FBF8F3;  /* base luminosa */
  --mist:      #ECE5D8;  /* névoa / seções claras */
  --ink:       #241C14;  /* texto (warm near-black) */
  --ink-soft:  #6E6253;  /* texto secundário */
  --gold:      #BE9A4E;  /* luz do cume / acento */
  --gold-deep: #9C7C36;
  --forest:    #22382F;  /* CTA / vale profundo */
  --forest-2:  #2c463c;
  --twilight:  #131B1B;  /* pré-amanhecer / seções escuras */

  --maxw: 1240px;
  --narrow: 720px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --fs-impact: clamp(1.85rem, 3.1vw, 3.2rem);
  --fs-h2: clamp(2rem, 4vw, 3.4rem);
  --fs-body: clamp(1.05rem, 1.2vw, 1.22rem);
}

/* ===== LENIS (smooth scroll) ===== */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: var(--fs-body); line-height: 1.7;
  color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--gold-deep); }

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 300; line-height: 1.08; letter-spacing: -.015em; }
h1 em, h2 em { color: var(--gold); font-weight: 400; }

/* ===== LAYOUT ===== */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
.wrap--narrow { max-width: var(--narrow); }
.section { padding: clamp(5rem, 11vw, 11rem) 0; position: relative; }

.eyebrow {
  font-family: 'Space Mono', monospace; font-size: .76rem; letter-spacing: .28em;
  text-transform: uppercase; color: #7d5f22; margin-bottom: 1.6rem; /* contraste AA sobre fundo claro */
}
/* eyebrows sobre seções escuras → ouro vivo + sombra p/ legibilidade */
.vista .eyebrow, .cause .eyebrow, .final .eyebrow, .vista__sub { color: #d8b860; text-shadow: 0 1px 12px rgba(8,12,12,.85); }
.lead { color: var(--ink-soft); max-width: 56ch; margin-top: 1.4rem; }
.section h2 { font-size: var(--fs-h2); max-width: 18ch; }

/* ===== CURSOR CUSTOMIZADO ===== */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot { position: fixed; width: 7px; height: 7px; border-radius: 50%; background: var(--cream); transform: translate(-50%,-50%); }
.cursor__ring { position: fixed; width: 38px; height: 38px; border: 1px solid rgba(251,248,243,.6); border-radius: 50%; transform: translate(-50%,-50%); transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease); }
.cursor.is-grow .cursor__ring { width: 66px; height: 66px; background: rgba(251,248,243,.12); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ===== ALTÍMETRO (progresso) ===== */
.altimeter { position: fixed; right: clamp(.75rem,2.5vw,1.8rem); top: 50%; transform: translateY(-50%); z-index: 40; display: flex; flex-direction: column; align-items: center; gap: .6rem; opacity: 0; transition: opacity .6s var(--ease); padding: .9rem .55rem; border-radius: 999px; background: rgba(12,17,17,.42); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(251,248,243,.12); }
.altimeter.is-on { opacity: 1; }
.altimeter__label { font-family: 'Space Mono', monospace; font-size: .56rem; letter-spacing: .22em; color: rgba(251,248,243,.72); writing-mode: vertical-rl; }
.altimeter__value { font-family: 'Space Mono', monospace; font-size: .74rem; font-weight: 700; color: var(--gold); }
.altimeter__track { width: 2px; height: 120px; background: rgba(251,248,243,.22); border-radius: 2px; overflow: hidden; }
.altimeter__fill { width: 100%; height: 0%; background: linear-gradient(var(--gold), var(--gold-deep)); }

/* ===== BOTÃO ===== */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; letter-spacing: .01em;
  color: var(--cream); background: var(--forest); border: none; border-radius: 999px;
  padding: 1.05rem 2.5rem; cursor: pointer;
  transition: transform .4s var(--ease), background .4s var(--ease);
  box-shadow: 0 14px 36px -16px rgba(34,56,47,.7);
}
.btn:hover { background: var(--forest-2); transform: translateY(-3px); }
.btn span { transition: transform .4s var(--ease); }
.btn:hover span { transform: translateY(3px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn--lg { padding: 1.2rem 3rem; font-size: 1.05rem; }
.btn--sm { padding: .65rem 1.5rem; font-size: .9rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--ghost { background: transparent; color: var(--forest); border: 1.5px solid rgba(34,56,47,.45); box-shadow: none; }
.btn--ghost:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* ===== HERO (cinematográfico) ===== */
.hero { position: relative; height: 100svh; overflow: hidden; color: var(--cream); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/web/hero-base.jpg') center 40%/cover no-repeat;
  transform-origin: 60% 45%; will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; will-change: opacity;
  background:
    linear-gradient(100deg, rgba(15,22,22,.82) 0%, rgba(15,22,22,.45) 45%, rgba(15,22,22,.05) 75%),
    linear-gradient(180deg, rgba(15,22,22,.4) 0%, transparent 30%, rgba(15,22,22,.55) 100%);
}
.hero__inner { position: relative; z-index: 2; height: 100%; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4rem); display: flex; flex-direction: column; justify-content: center; }
.hero__lead { max-width: 640px; }
.hero__lead > * { opacity: 0; } /* intro via GSAP */
.hero__eyebrow { font-family: 'Space Mono', monospace; font-size: .76rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(251,248,243,.8); margin-bottom: 2rem; }
.hero__impact { font-size: var(--fs-impact); line-height: 1.12; margin-bottom: 1.6rem; color: var(--cream); text-shadow: 0 2px 40px rgba(15,22,22,.45); }
.hero__support { font-size: clamp(1.05rem,1.4vw,1.3rem); color: rgba(251,248,243,.88); max-width: 46ch; margin-bottom: 2.4rem; }
.hero__cta { margin-top: .5rem; }
.hero__answer {
  position: absolute; left: clamp(1.5rem,5vw,4rem); top: 50%; transform: translateY(-50%);
  font-size: clamp(2rem,4.5vw,4rem); color: var(--gold); max-width: 16ch; opacity: 0;
  text-shadow: 0 2px 18px rgba(8,12,12,.9), 0 1px 60px rgba(8,12,12,.7);
}
.hero__cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__cue span { display: block; width: 1px; height: 54px; background: linear-gradient(rgba(251,248,243,.8), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100% { opacity:.3; transform: scaleY(.5); transform-origin: top; } 50% { opacity:1; transform: scaleY(1); } }

/* ===== SEÇÕES (placeholders Fase 4) ===== */
.call { background: var(--cream); }
.trail-intro { background: var(--mist); text-align: center; }
.trail-intro h2 { margin: 0 auto; }
.trail-intro .lead { margin-left: auto; margin-right: auto; }
.stub { background: var(--cream); border-top: 1px solid rgba(190,154,78,.25); }
.stub--dark { background: var(--twilight); color: var(--cream); }
.stub--dark .eyebrow { color: var(--gold); }
.stub h2 { font-size: var(--fs-h2); }

/* marca de placeholder (some na build final) */
[data-placeholder]::before {
  content: attr(data-placeholder); position: absolute; top: 1rem; left: 1rem; z-index: 5;
  font-family: 'Space Mono', monospace; font-size: .6rem; letter-spacing: .1em;
  color: rgba(251,248,243,.5); border: 1px dashed rgba(251,248,243,.3); padding: .3rem .6rem; border-radius: 4px;
}

/* ===== A TRILHA (experiência) ===== */
.trail { position: relative; background: var(--twilight); }
.trail__stage { height: 100svh; position: relative; overflow: hidden; color: var(--cream); }
.trail__bg { position: absolute; inset: 0; z-index: 0; }
.trail__layer { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); will-change: opacity; }
.trail__layer--base { opacity: 1; }
.trail__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(95deg, rgba(15,22,22,.82) 0%, rgba(15,22,22,.45) 42%, rgba(15,22,22,.05) 72%, transparent 100%), linear-gradient(180deg, rgba(15,22,22,.35), transparent 25%, rgba(15,22,22,.45)); }

/* trilha vertical que se preenche de baixo p/ cima */
.trail__line { position: absolute; left: clamp(2rem, 7vw, 6rem); top: 16%; bottom: 16%; width: 2px; background: rgba(251,248,243,.18); z-index: 2; border-radius: 2px; overflow: hidden; }
.trail__fill { position: absolute; inset: 0; background: linear-gradient(to top, var(--gold-deep), var(--gold)); transform-origin: bottom center; transform: scaleY(0); }

.trail__inner { position: relative; z-index: 3; height: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4rem); display: flex; flex-direction: column; justify-content: center; }
.trail__tag { font-family: 'Space Mono', monospace; font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); position: absolute; top: 8%; left: clamp(1.5rem,5vw,4rem); }

.waypoints { position: relative; margin-left: clamp(2.5rem, 9vw, 8rem); width: min(560px, 80%); height: 56vh; }
.waypoint { position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 100%; }
.waypoint__alt { font-family: 'Space Mono', monospace; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem; }
.waypoint__num { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(3.5rem, 8vw, 7rem); line-height: .9; color: rgba(251,248,243,.16); display: block; margin-bottom: .5rem; }
.waypoint h3 { font-size: clamp(1.8rem, 3.6vw, 3rem); margin-bottom: 1rem; color: var(--cream); }
.waypoint p { color: rgba(251,248,243,.85); max-width: 44ch; font-size: clamp(1rem,1.2vw,1.15rem); }
.waypoint em { color: var(--gold); }

.trail__cue { position: absolute; bottom: 2rem; right: clamp(1.5rem,5vw,4rem); z-index: 3; font-family: 'Space Mono', monospace; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(251,248,243,.55); }


/* ===== SEÇÕES DE VENDA (Fase 4) ===== */
.sec-head { max-width: 640px; margin: 0 auto clamp(2.5rem,5vw,4rem); text-align: center; }
.sec-head h2 { font-size: var(--fs-h2); margin: 0 auto .8rem; }
.sec-head .lead { margin: 1rem auto 0; }
.center { text-align: center; }
.center .lead, .center h2 { margin-left: auto; margin-right: auto; }

/* GUIAS */
.guides { background: var(--cream); }
.guide-feature { display: grid; grid-template-columns: 300px 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; max-width: 920px; margin: 0 auto; }
.guide-feature__photo { width: 300px; height: 370px; object-fit: cover; border-radius: 10px; box-shadow: 0 26px 60px -26px rgba(36,28,20,.45); }
.guide-feature__text h3 { font-size: clamp(1.7rem,2.8vw,2.3rem); margin: .4rem 0 1rem; }
.guide-feature__text .eyebrow { margin-bottom: .6rem; }
.guide-feature__text p { color: var(--ink-soft); }
.guide-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2rem; max-width: 760px; margin: 3rem auto 0; padding-top: 2.4rem; border-top: 1px solid rgba(190,154,78,.3); }
.guide-list li { color: var(--ink-soft); font-weight: 500; }

/* A VISTA DO ALTO */
.vista { position: relative; min-height: 100svh; display: flex; align-items: center; background: var(--bg) center 60%/cover no-repeat; color: var(--cream); isolation: isolate; padding: clamp(4rem,8vw,8rem) 0; }
.vista__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,17,17,.9) 0%, rgba(12,17,17,.62) 42%, rgba(12,17,17,.22) 72%, rgba(12,17,17,.05) 100%), linear-gradient(180deg, rgba(12,17,17,.45), transparent 40%, rgba(12,17,17,.35)); }
.vista__inner { max-width: var(--maxw); position: relative; z-index: 2; }
.vista h2 { font-size: var(--fs-h2); max-width: 16ch; color: var(--cream); text-shadow: 0 2px 24px rgba(8,12,12,.7); }
.vista__list li, .cause .lead, .cause h2 { text-shadow: 0 1px 16px rgba(8,12,12,.6); }
.vista__sub { font-family: 'Space Mono', monospace; font-size: .8rem; letter-spacing: .12em; color: var(--gold); margin: 1.6rem 0 1.4rem; text-transform: uppercase; }
.vista__list { list-style: none; display: grid; gap: 1rem; max-width: 620px; }
.vista__list li { position: relative; padding-left: 1.9rem; color: rgba(251,248,243,.9); }
.vista__list li::before { content: "▲"; position: absolute; left: 0; top: .15em; font-size: .7rem; color: var(--gold); }

/* VOZES (marquee automático) */
.voices { background: var(--mist); padding-bottom: clamp(4rem,8vw,7rem); overflow: hidden; }
.t-track { overflow: hidden; padding: .5rem 0 2rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.t-row { display: flex; gap: 1.5rem; width: max-content; padding: 0 .75rem; animation: marquee 70s linear infinite; will-change: transform; }
.t-track:hover .t-row { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.t-card { flex: 0 0 380px; background: var(--cream); border: 1px solid rgba(190,154,78,.3); border-radius: 12px; padding: 2.2rem; box-shadow: 0 16px 44px -24px rgba(36,28,20,.4); display: flex; flex-direction: column; white-space: normal; }
.stars { color: var(--gold); letter-spacing: .16em; font-size: .95rem; margin-bottom: 1rem; }
.t-card p { font-style: italic; color: var(--ink); margin-bottom: 1.4rem; }
.t-card footer { margin-top: auto; font-weight: 600; color: var(--forest); }
.t-card footer span { font-weight: 400; color: var(--ink-soft); }

/* BEAT cinematográfico (parallax + revelação sequencial, imagem limpa) */
.beat { position: relative; min-height: 58svh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--cream); overflow: hidden; }
.beat__bg { position: absolute; inset: -35% 0; z-index: 0; background: var(--bg) center 52%/cover no-repeat; will-change: transform; }
.beat__quote { position: relative; z-index: 2; font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(2.4rem,6vw,5.4rem); line-height: 1.12; padding: 0 1.5rem; display: grid; justify-items: center; align-items: center; }
.beat__part { grid-column: 1; grid-row: 1; opacity: 0; text-shadow: 0 2px 16px rgba(8,12,12,.95), 0 1px 3px rgba(8,12,12,.9); }
.beat__part em { color: #ecd28a; }

/* CAUSA (imagem) */
.cause { position: relative; min-height: 84svh; display: flex; align-items: center; background: var(--bg) center/cover no-repeat; color: var(--cream); isolation: isolate; overflow: hidden; padding: clamp(4rem,8vw,8rem) 0; }
.cause__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,17,17,.92) 0%, rgba(12,17,17,.7) 45%, rgba(12,17,17,.35) 80%, rgba(12,17,17,.2) 100%), linear-gradient(180deg, rgba(12,17,17,.45), transparent 35%, rgba(12,17,17,.4)); }
.cause__inner { position: relative; z-index: 2; }
.cause h2 { font-size: var(--fs-h2); max-width: 18ch; color: var(--cream); margin-bottom: 1.4rem; }
.cause .lead { color: rgba(251,248,243,.9); margin: 1rem 0; }
.cause strong { color: var(--cream); font-weight: 600; }
.cause__close { font-family: 'Fraunces', serif; font-style: italic; color: var(--gold); font-size: clamp(1.2rem,2vw,1.6rem); margin-top: 1.4rem; }

/* NÉVOA (overlay drifting) — sutil, não lava a imagem */
.mist { position: absolute; inset: -22% -6%; z-index: 1; background: url('../images/web/overlay.png') center/cover no-repeat; opacity: .14; mix-blend-mode: screen; pointer-events: none; will-change: transform; }

/* OFERTA (cume sutil ao fundo) */
.offer { background: linear-gradient(rgba(236,229,216,.93), rgba(236,229,216,.96)), url('../images/web/cume.jpg') center/cover no-repeat; }
.offer-card { background: var(--cream); border: 1px solid rgba(190,154,78,.35); border-radius: 18px; padding: clamp(1.8rem,3.5vw,3rem) clamp(1.5rem,4vw,3.5rem) clamp(2rem,4vw,3rem); max-width: 760px; margin: 0 auto; text-align: center; box-shadow: 0 30px 70px -30px rgba(36,28,20,.4); }
.offer-card__mark { width: 92px; height: 92px; border-radius: 50%; display: block; margin: 0 auto 1.4rem; border: 1px solid rgba(190,154,78,.45); box-shadow: 0 14px 34px -12px rgba(36,28,20,.45); }

/* mockup das telas (largura total do card) */
.offer-card__media { margin: 0 0 1.2rem; }
/* multiply funde o fundo branco do mockup com o creme do card;
   a máscara desvanece as bordas para a mesa não cortar em bloco reto */
.offer-card__media img {
  width: 100%; height: auto; display: block; mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to bottom, #000 74%, transparent 99%), linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, #000 74%, transparent 99%), linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-composite: intersect;
}

.offer-card__tag { font-family: 'Space Mono', monospace; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .9rem; }
.offer-card__feats strong { font-weight: 600; }

.offer-card__title { font-size: clamp(1.5rem,3vw,2.1rem); margin-bottom: 1rem; }
.offer-card__title em { color: var(--gold-deep); }
.offer-card__lead { color: var(--ink-soft); margin-bottom: 1.8rem; }
.offer-card__feats { list-style: none; text-align: left; max-width: 400px; margin: 0 auto 2rem; display: grid; gap: .8rem; }
.offer-card__feats li { position: relative; padding-left: 1.8rem; }
.offer-card__feats li::before { content: "▲"; position: absolute; left: 0; top: .2em; font-size: .7rem; color: var(--gold); }
.offer-card__price { margin-bottom: 2rem; }
.offer-card__from { display: block; color: var(--ink-soft); text-decoration: line-through; font-size: .95rem; }
.offer-card__value { display: block; font-family: 'Fraunces', serif; font-size: clamp(3rem,7vw,4.2rem); color: var(--forest); line-height: 1; margin: .15rem 0; }
.offer-card__note { display: block; color: var(--ink-soft); font-size: .9rem; }
.offer-card__secure { margin-top: 1.2rem; font-size: .85rem; color: var(--ink-soft); }

/* PLANOS (3 níveis) */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; max-width: 1060px; margin: 0 auto; }
.plan { position: relative; background: var(--cream); border: 1px solid rgba(190,154,78,.3); border-radius: 16px; padding: 2.4rem 1.8rem; display: flex; flex-direction: column; text-align: center; box-shadow: 0 18px 44px -28px rgba(36,28,20,.45); }
.plan--featured { border: 1.5px solid var(--gold); box-shadow: 0 34px 64px -28px rgba(36,28,20,.55); transform: translateY(-14px); background: #fffdf8; }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--forest); color: var(--cream); font-family: 'Space Mono', monospace; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; padding: .42rem 1.1rem; border-radius: 999px; white-space: nowrap; }
.plan__media { height: 160px; margin: -.4rem 0 1.4rem; display: flex; align-items: center; justify-content: center; }
.plan__media img { max-height: 160px; width: auto; object-fit: contain; filter: drop-shadow(0 16px 26px rgba(36,28,20,.28)); }
.plan__media--pending { border: 1.5px dashed rgba(190,154,78,.45); border-radius: 12px; color: var(--ink-soft); font-family: 'Space Mono', monospace; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; text-align: center; line-height: 1.6; }
.plan__tag { font-family: 'Space Mono', monospace; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem; }
.plan__name { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.45rem,2.2vw,1.95rem); line-height: 1.08; margin-bottom: 1rem; }
.plan__desc { color: var(--ink-soft); font-size: .97rem; margin-bottom: 1.4rem; }
.plan__feats { list-style: none; text-align: left; display: grid; gap: .55rem; margin: 0 auto 1.4rem; width: fit-content; }
.plan__feats li { position: relative; padding-left: 1.5rem; font-size: .95rem; }
.plan__feats li::before { content: "▲"; position: absolute; left: 0; top: .2em; font-size: .58rem; color: var(--gold); }
.plan__price { margin-top: auto; margin-bottom: 1.4rem; }
.plan__from { display: block; color: var(--ink-soft); text-decoration: line-through; font-size: .82rem; }
.plan__value { display: block; font-family: 'Fraunces', serif; font-size: clamp(2rem,3.4vw,2.7rem); color: var(--forest); line-height: 1; margin: .15rem 0; }
.plan--featured .plan__value { color: var(--gold-deep); }
.plan__note { display: block; color: var(--ink-soft); font-size: .82rem; }
.plans__foot { text-align: center; color: var(--ink-soft); font-size: .85rem; margin-top: 2.6rem; }

@media (max-width: 860px) {
  .plans { grid-template-columns: 1fr; max-width: 420px; gap: 2rem; }
  .plan--featured { transform: none; order: -1; }
}

/* GARANTIA */
.guarantee { background: var(--cream); }
.guarantee h2 { font-size: var(--fs-h2); max-width: 22ch; }
.seals { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(1.5rem,4vw,3.5rem); margin-top: 2.8rem; }
.seals li { display: flex; flex-direction: column; align-items: center; }
.seals b { font-family: 'Fraunces', serif; font-weight: 400; font-size: 1.8rem; color: var(--gold-deep); }
.seals span { font-size: .85rem; color: var(--ink-soft); }

/* FAQ */
.faq { background: var(--mist); }
.accordion { max-width: 720px; margin: 0 auto; }
.accordion details { border-bottom: 1px solid rgba(190,154,78,.3); }
.accordion summary { cursor: pointer; padding: 1.3rem 2.5rem 1.3rem 0; position: relative; font-weight: 600; list-style: none; transition: color .3s var(--ease); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%); font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--gold-deep); transition: transform .35s var(--ease); }
.accordion details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.accordion summary:hover { color: var(--gold-deep); }
.accordion p { padding: 0 2rem 1.4rem 0; color: var(--ink-soft); }

/* O TOPO (CTA final) */
.final { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--bg) center 70%/cover no-repeat; color: var(--cream); isolation: isolate; }
.final__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.final__scrim { position: absolute; inset: 0; z-index: 1; background: radial-gradient(125% 80% at 50% 42%, rgba(10,14,14,.5), rgba(10,14,14,.82)), linear-gradient(180deg, rgba(10,14,14,.62), rgba(10,14,14,.5) 38%, rgba(10,14,14,.85)); }
.final .mist { z-index: 2; }
.final__inner { position: relative; z-index: 3; }
.final h2 { font-size: clamp(2.4rem,5vw,4.5rem); margin-bottom: 1.4rem; color: var(--cream); text-shadow: 0 2px 28px rgba(8,12,12,.85); }
.final__text { color: var(--cream); max-width: 46ch; margin: 0 auto 2rem; text-shadow: 0 1px 16px rgba(8,12,12,.8); }
.final .btn { background: var(--gold-deep); }
.final .btn:hover { background: var(--gold); }
.final__micro { margin-top: 1.6rem; font-size: .82rem; color: rgba(251,248,243,.7); }

@media (max-width: 760px) {
  .guide-feature { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .guide-feature__photo { width: 220px; height: 270px; }
}

/* ===== FOOTER ===== */
.site-footer { background: var(--ink); color: var(--cream); text-align: center; padding: 3.5rem 1.5rem; font-size: .9rem; line-height: 2; }
.site-footer__brand { font-family: 'Fraunces', serif; font-size: 1.1rem; }
.site-footer p { opacity: .8; }
.site-footer__copy { opacity: .5; font-size: .8rem; }

/* ===== REVEAL (rise) ===== */
.rise { opacity: 0; transform: translateY(30px); }

/* ===== RESPONSIVO ===== */
@media (max-width: 760px) {
  .altimeter { display: none; }
  .hero__impact { font-size: clamp(2.4rem, 9vw, 3.4rem); }
}

/* ===== LOGO / MARCAS ===== */
.hero__mark { width: 72px; height: 72px; border-radius: 50%; margin-bottom: 1.6rem; border: 1px solid rgba(251,248,243,.18); box-shadow: 0 10px 30px -8px rgba(8,12,12,.6); }

.brand-mark { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 60; width: 56px; height: 56px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(251,248,243,.2); box-shadow: 0 8px 24px -6px rgba(8,12,12,.55); transition: transform .4s var(--ease); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-mark:hover { transform: scale(1.08); }

.final__mark { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1.6rem; border: 1px solid rgba(251,248,243,.22); box-shadow: 0 10px 30px -8px rgba(8,12,12,.6); }
.final__brand { color: var(--cream); }
.final__brand span { display: block; font-style: italic; color: #e6c878; font-size: .56em; font-weight: 400; margin-top: .5rem; text-shadow: 0 1px 20px rgba(8,12,12,.9); }
.final .final__text { margin-top: 1.4rem; }

/* ===== CTA FIXO (mobile) ===== */
.mobile-cta { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 45; display: none; text-align: center; padding: 1.05rem; border-radius: 999px; background: var(--gold-deep); color: var(--cream); font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; letter-spacing: .01em; box-shadow: 0 14px 34px -12px rgba(15,22,22,.6); opacity: 0; transform: translateY(130%); pointer-events: none; transition: transform .5s var(--ease), opacity .5s var(--ease); }
.mobile-cta.past-hero:not(.near-offer) { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ===== MOBILE DEDICADO ===== */
@media (max-width: 760px) {
  .mobile-cta { display: block; }
  .hero__answer { font-size: clamp(1.8rem, 8vw, 2.6rem); right: 1.2rem; }
  .hero__lead { max-width: 100%; }

  /* A TRILHA no mobile: mesma experiência fixada, layout adaptado */
  .trail__scrim { background: linear-gradient(180deg, rgba(12,17,17,.62), rgba(12,17,17,.5) 45%, rgba(12,17,17,.72)); }
  .trail__line { left: 1.1rem; top: 12%; bottom: 12%; }
  .trail__tag { left: 2.4rem; top: 6%; }
  .trail__cue { display: none; }
  .waypoints { margin-left: 2.4rem; width: calc(100% - 2.8rem); height: 62vh; }
  .waypoint p { max-width: 100%; }

  /* full-bleed: legibilidade no retrato */
  .vista, .cause { min-height: auto; padding: 5rem 0; }
  .beat { min-height: 52svh; }
  .vista__scrim { background: linear-gradient(180deg, rgba(15,22,22,.5), rgba(15,22,22,.84)); }
  .cause__scrim { background: linear-gradient(180deg, rgba(15,22,22,.55), rgba(15,22,22,.86)); }
  .final { min-height: 90svh; }
  .final__video { display: none; } /* mobile: poupa dados, usa a foto do cume */
  .brand-mark { bottom: 5.4rem; right: 1rem; width: 46px; height: 46px; } /* acima do CTA fixo */
  .beat__quote { white-space: normal; max-width: 18ch; }
  .t-card { flex-basis: 80vw; }
  .offer { background: linear-gradient(rgba(236,229,216,.95), rgba(236,229,216,.97)), url('../images/web/cume.jpg') center/cover; }
}

/* ===== MODO ESTÁTICO (.no-motion) — só se o GSAP falhar ao carregar =====
   Tudo visível, nada sobreposto. (Animações rodam mesmo com "Reduzir Movimento".) */
html.no-motion .rise { opacity: 1; transform: none; }
html.no-motion .hero__lead > * { opacity: 1; }
html.no-motion .hero__answer { display: none; }           /* redundante com o título — não sobrepõe */
html.no-motion .hero__cue { display: none; }

/* Beat: as duas partes em linhas separadas (não empilhadas no mesmo ponto) */
html.no-motion .beat__quote { display: flex; flex-direction: column; gap: .15em; }
html.no-motion .beat__part { opacity: 1; transform: none; }

/* Trilha: lista vertical com os 9 marcos visíveis */
html.no-motion .trail__stage { height: auto; padding: 4.5rem 0; }
html.no-motion .trail__cue { display: none; }
html.no-motion .trail__line { top: 4.5rem; bottom: 4.5rem; }
html.no-motion .trail__fill { transform: scaleY(1); }
html.no-motion .waypoints { position: relative; height: auto; }
html.no-motion .waypoint { position: relative; top: auto; transform: none; opacity: 1; visibility: visible; margin-bottom: 3.2rem; }
html.no-motion .waypoint:last-child { margin-bottom: 0; }
