/* =========================================================
   Mentor.I.A — Workshop de IA para Executivos · ibusiness
   ID visual: ibzconsultoria.com.br (navy / paper · Manrope · azul detalhe)
========================================================= */

:root {
  /* navy (dark sections) */
  --bg:        #0b1f3a;
  --bg-2:      #0a1a31;
  --bg-3:      #102441;
  --surface:   #102441;
  --surface-2: #16294a;
  --line:        rgba(250, 250, 247, 0.09);
  --line-strong: rgba(250, 250, 247, 0.18);

  /* foreground on navy */
  --fg:   #fafaf7;
  --fg-2: #c2c9d6;
  --fg-3: #8b99ad;
  --fg-4: #5a6b82;

  /* light sections */
  --bone:    #f2f1eb;
  --bone-2:  #e6e9ef;
  --paper:   #fafaf7;
  --ink:     #0b1f3a;
  --ink-2:   #1b3358;
  --ink-mute:rgba(11, 31, 58, 0.72);
  --line-ink:rgba(11, 31, 58, 0.10);

  /* accent azul */
  --blue:      #5C86CF;
  --blue-soft: #9DBDEC;
  --blue-ink:  #2c5293;
  --blue-deep: #243d6a;
  --glow:      rgba(92, 134, 207, 0.30);

  /* feedback */
  --ok:   #2BB3A3;
  --warm: #C99A3C;
  --red:  #D45A6B;

  --radius:    18px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --ease:      cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

/* === RESET === */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100vw; overflow-x: clip; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--blue); color: #0b1f3a; }

/* === CONTAINER / SECTION === */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .container { padding: 0 22px; } }
section { position: relative; }
.section-pad { padding: clamp(72px, 10vh, 130px) 0; }

/* base section colors */
.sec--dark  { background: var(--bg); color: var(--fg); }
.sec--dark2 { background: var(--bg-2); color: var(--fg); }
.sec--light { background: var(--bone-2); color: var(--ink); }
.sec--light .sec-heading { color: var(--ink); }
.sec--light .sec-lede { color: var(--ink-mute); }
.sec--light .eyebrow { color: var(--blue-ink); }
.sec--light .eyebrow::before { background: linear-gradient(90deg, var(--blue-ink), transparent); }

/* === SCROLL PROGRESS === */
#scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue-deep), var(--blue)); transform-origin: left; transform: scaleX(0); z-index: 10000; pointer-events: none; }

/* === EYEBROW === */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: linear-gradient(90deg, var(--blue), transparent); }
.eyebrow--center { justify-content: center; }

/* === HEADINGS === */
.sec-heading { font-size: clamp(1.9rem, 4.4vw, 3.1rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: var(--fg); }
.sec-lede { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: var(--fg-2); line-height: 1.5; }
.sec-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head .sec-lede { margin-top: 18px; }
.accent { color: var(--blue); }
.sec--light .accent { color: var(--blue-ink); }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 11px 40px;
  background: rgba(11, 31, 58, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 28px; width: auto; }
.nav__logo .nav__product { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; color: var(--fg); padding-left: 12px; border-left: 1px solid var(--line-strong); }
.nav__logo .nav__product .accent { color: var(--blue); }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--fg-2); position: relative; transition: color .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--blue); transition: width .35s var(--ease-out); }
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 100px; background: var(--blue); color: #fff; font-weight: 600; font-size: 14px; transition: transform .4s var(--ease-out), box-shadow .4s; }
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px var(--glow); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--fg); border-radius: 2px; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: 100px;
  font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em;
  transition: transform .4s var(--ease-out), background .3s, box-shadow .4s, color .3s, border-color .3s;
  will-change: transform;
}
.btn svg { transition: transform .4s var(--ease-out); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 26px -10px var(--glow); }
.btn--primary:hover { background: #6f97da; transform: translateY(-2px); box-shadow: 0 14px 36px -12px var(--glow); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.sec--light .btn--ghost { color: var(--ink); border-color: var(--line-ink); }
.sec--light .btn--ghost:hover { border-color: var(--blue-ink); color: var(--blue-ink); }
.btn--lg { padding: 18px 36px; font-size: 16.5px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* === FAB === */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 18px 13px 15px; border-radius: 100px;
  background: #25D366; color: #08331b; font-weight: 700; font-size: 14.5px;
  box-shadow: 0 12px 34px -10px rgba(37,211,102,.5);
  transform: translateY(120px); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s, box-shadow .3s;
}
.fab.is-visible { transform: none; opacity: 1; }
.fab:hover { box-shadow: 0 16px 40px -10px rgba(37,211,102,.6); }
.fab svg { width: 22px; height: 22px; }
@media (max-width: 560px) { .fab__txt { display: none; } .fab { padding: 14px; } }

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.reveal-stagger.visible > * { opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .07s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .14s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .21s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .28s; }

/* ============================================================
   HERO (navy)
============================================================ */
.hero { position: relative; min-height: 92svh; display: flex; flex-direction: column; justify-content: center; padding: 140px 0 80px; overflow: hidden; text-align: center; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: -1px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 38%, #000 28%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 38%, #000 28%, transparent 78%);
}
.hero__glow { position: absolute; top: -8%; left: 50%; transform: translateX(-50%); width: 1000px; height: 620px; background: radial-gradient(ellipse at center, var(--glow), transparent 66%); filter: blur(10px); opacity: .6; }
.hero .container { position: relative; z-index: 2; }
.hero__wordmark { font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 26px; }
.hero__eyebrow { justify-content: center; margin-bottom: 22px; }
.hero__headline { font-size: clamp(2.2rem, 6.2vw, 4.4rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.0; color: var(--fg); margin: 0 auto 26px; max-width: 16ch; }
.hero__headline .highlight { color: var(--blue); }
.hero__sub { font-size: clamp(1.04rem, 1.7vw, 1.28rem); color: var(--fg-2); max-width: 56ch; margin: 0 auto 40px; line-height: 1.6; }
.hero__sub strong { color: var(--fg); font-weight: 700; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* === BRAND STRIP / MARQUEE === */
.brand-strip { background: var(--blue); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.brand-strip-inner { display: inline-flex; will-change: transform; animation: marquee 28s linear infinite; color: #08203f; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .95rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .brand-strip-inner { animation: none; } }

/* === PAIN === */
.pain-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 820px; margin: 0 auto; }
.pain-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; background: var(--paper); border: 1px solid var(--line-ink); border-radius: var(--radius); transition: transform .4s var(--ease-out), box-shadow .4s, border-color .3s; }
.pain-item:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -28px rgba(11,31,58,.28); border-color: rgba(11,31,58,.16); }
.pain-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; background: rgba(44,82,147,.10); color: var(--blue-ink); }
.pain-icon svg { width: 22px; height: 22px; }
.pain-text { font-size: 16px; color: var(--ink-2); line-height: 1.55; }
.pain-text strong { color: var(--ink); font-weight: 700; }

/* === RESULTS === */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 920px; margin: 0 auto; }
.result-card { text-align: center; padding: 38px 24px; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.result-card::after { content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 3px; background: var(--blue); }
.result-number { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: var(--blue-soft); letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; }
.result-label { font-size: 13.5px; color: var(--fg-3); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; line-height: 1.4; }

/* === WORKSHOP === */
.workshop-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 920px; margin: 0 auto; }
.workshop-day { background: var(--paper); border: 1px solid var(--line-ink); border-radius: var(--radius-lg); padding: 30px 28px; position: relative; overflow: hidden; transition: transform .4s var(--ease-out), box-shadow .4s; }
.workshop-day:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -30px rgba(11,31,58,.26); }
.workshop-day::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue); opacity: 0; transition: opacity .3s; }
.workshop-day:hover::before { opacity: 1; }
.workshop-day-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; border-radius: 100px; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; background: rgba(44,82,147,.10); color: var(--blue-ink); }
.workshop-day-title { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 14px; letter-spacing: -0.02em; }
.workshop-day-topics { display: flex; flex-direction: column; }
.workshop-day-topics li { padding: 9px 0; color: var(--ink-2); font-size: 15px; display: flex; align-items: flex-start; gap: 11px; border-bottom: 1px solid var(--line-ink); line-height: 1.45; }
.workshop-day-topics li:last-child { border-bottom: none; }
.workshop-day-topics li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-ink); flex-shrink: 0; margin-top: 8px; }

/* === GENERIC CARD (para quem / como funciona) === */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; max-width: 920px; margin: 0 auto; }
.icard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 24px; text-align: center; transition: transform .4s var(--ease-out), border-color .3s; }
.icard:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.icard__ic { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 14px; display: grid; place-items: center; background: rgba(92,134,207,.12); color: var(--blue-soft); }
.icard__ic svg { width: 26px; height: 26px; }
.icard h3 { font-size: 18px; color: var(--fg); margin-bottom: 8px; font-weight: 700; letter-spacing: -0.01em; }
.icard p { color: var(--fg-3); font-size: 14.5px; line-height: 1.55; }

/* numbered step ring (como funciona) */
.step__num { width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-size: 20px; font-weight: 800; color: var(--blue-soft); background: rgba(92,134,207,.12); border: 1px solid var(--line-strong); }

/* === ABOUT / FUNDADOR === */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center; max-width: 980px; margin: 0 auto; }
.about-photo { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.about-role { color: var(--blue); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.about-name { font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--fg); margin-bottom: 18px; font-weight: 800; letter-spacing: -0.02em; }
.about-body p { color: var(--fg-2); font-size: 16px; line-height: 1.65; margin-bottom: 16px; max-width: 54ch; }
.about-body p strong { color: var(--fg); }
.about-body p .accent { color: var(--blue); }
.about-stats { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.about-stat { flex: 1; min-width: 120px; padding: 18px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.about-stat-num { font-size: 26px; font-weight: 800; color: var(--blue-soft); letter-spacing: -0.02em; }
.about-stat-label { font-size: 12px; color: var(--fg-3); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* === DIFERENCIAL (vs) === */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 840px; margin: 0 auto; }
.vs-card { background: var(--paper); border: 1px solid var(--line-ink); border-radius: var(--radius-lg); padding: 30px 26px; }
.vs-card--win { background: var(--surface); border: 1.5px solid var(--blue-deep); color: var(--fg); }
.vs-head { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; font-weight: 800; display: inline-flex; align-items: center; gap: 8px; }
.vs-card .vs-head { color: var(--ink-mute); }
.vs-card--win .vs-head { color: var(--blue-soft); }
.vs-list li { padding: 9px 0; font-size: 15px; line-height: 1.45; display: flex; gap: 10px; align-items: flex-start; }
.vs-card .vs-list li { color: var(--ink-mute); }
.vs-card .vs-list li::before { content: "✕"; color: var(--red); flex-shrink: 0; font-weight: 700; }
.vs-card--win .vs-list li { color: var(--fg); }
.vs-card--win .vs-list li::before { content: "✓"; color: var(--ok); flex-shrink: 0; font-weight: 700; }
.vs-card--win .vs-list li strong { color: #fff; }

/* === BONUS === */
.bonus-wrapper { position: relative; max-width: 920px; margin: 0 auto; overflow: visible; }
.bonus-card { background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--radius-lg); padding: 42px 34px; max-width: 720px; position: relative; overflow: hidden; box-shadow: 0 40px 110px -60px #000; }
.bonus-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(92,134,207,.10) 0%, transparent 60%); pointer-events: none; }
.pill-tag { display: inline-block; padding: 6px 16px; border-radius: 100px; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; background: rgba(92,134,207,.14); color: var(--blue-soft); position: relative; z-index: 1; }
.bonus-card h3 { font-size: 24px; color: var(--fg); margin: 16px 0 8px; font-weight: 800; letter-spacing: -0.02em; position: relative; z-index: 1; }
.bonus-card > p { color: var(--fg-2); font-size: 16px; line-height: 1.65; position: relative; z-index: 1; }
.bonus-card > p strong { color: var(--fg); }
.bonus-features { display: flex; flex-direction: column; margin-top: 22px; position: relative; z-index: 1; }
.bonus-features li { padding: 9px 0; color: var(--fg-2); font-size: 15px; display: flex; align-items: flex-start; gap: 11px; line-height: 1.5; }
.bonus-features li::before { content: "✓"; color: var(--ok); font-weight: 700; flex-shrink: 0; }
.bonus-value { font-size: 13.5px; font-weight: 700; color: var(--blue-soft); letter-spacing: .08em; text-transform: uppercase; margin-top: 22px; position: relative; z-index: 1; }
.bonus-image-float { position: absolute; right: -70px; top: 50%; transform: translateY(-50%); width: 460px; z-index: 0; pointer-events: none; }
.bonus-float-img { width: 100%; border-radius: 14px; opacity: .55; mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.15) 20%, rgba(0,0,0,.6) 55%, rgba(0,0,0,.75) 82%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 20%, #000 80%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.15) 20%, rgba(0,0,0,.6) 55%, rgba(0,0,0,.75) 82%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 20%, #000 80%, transparent 100%); mask-composite: intersect; -webkit-mask-composite: source-in; }
.bonus-wa-icon { position: absolute; top: -16px; right: 40px; z-index: 3; filter: drop-shadow(0 4px 24px rgba(37,211,102,.4)); }

/* === FAQ === */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { color: var(--fg); font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 22px 0; width: 100%; text-align: left; font-size: 17px; }
.faq-icon { color: var(--blue); font-size: 1.6rem; line-height: 1; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { color: var(--fg-2); overflow: hidden; max-height: 0; transition: max-height .35s var(--ease), padding .35s; font-size: 16px; line-height: 1.65; }
.faq-item.open .faq-answer { max-height: 420px; padding-bottom: 22px; }

/* === CTA FINAL === */
.cta { text-align: center; overflow: hidden; }
.cta__wrap { position: relative; max-width: 820px; margin: 0 auto; }
.cta__glow { position: absolute; inset: -40% -20% auto; height: 520px; background: radial-gradient(ellipse at center, var(--glow), transparent 62%); pointer-events: none; opacity: .7; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; position: relative; color: var(--fg); }
.cta h2 .accent { color: var(--blue); }
.cta p { margin: 22px auto 0; max-width: 52ch; color: var(--fg-2); font-size: 1.1rem; line-height: 1.6; position: relative; }
.cta__ctas { margin-top: 36px; position: relative; }
.cta__note { margin-top: 20px; font-size: 13px; color: var(--fg-4); position: relative; }
.cta__note a { color: var(--fg-2); font-weight: 600; }
.cta__note a:hover { color: var(--blue); }

/* === FOOTER === */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 50px 0 30px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { height: 28px; }
.footer__brand span { font-size: 13.5px; color: var(--fg-3); }
.footer__brand b { color: var(--fg-2); font-weight: 700; }
.footer__copy { font-size: 12.5px; color: var(--fg-4); }

/* === FLOATING CTA (mobile bottom bar) === */
.floating-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; padding: 10px 16px; background: rgba(10,26,49,.96); border-top: 1px solid var(--line); transform: translateY(100%); transition: transform .35s var(--ease); }
.floating-cta.is-visible { transform: translateY(0); }
.floating-cta .btn { width: 100%; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (min-width: 768px) {
  .floating-cta { display: none; }
  .workshop-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-photo { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 860px) {
  .nav { padding: 14px 22px; }
  .nav.is-scrolled { padding: 11px 22px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: none; }
}
@media (max-width: 720px) {
  .results-grid { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .bonus-image-float { position: relative; right: auto; top: auto; transform: none; width: 100%; margin-bottom: 22px; }
  .bonus-float-img { opacity: .5; mask-image: linear-gradient(to bottom, rgba(0,0,0,.85) 0%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.85) 0%, transparent 100%); }
  .bonus-wa-icon { top: 8px; right: 16px; }
  .bonus-card { max-width: 100%; padding: 32px 24px; }
}
@media (max-width: 560px) {
  section p, section li, .faq-question, .faq-answer, .pain-text, .hero__sub { font-size: 16px; }
  .btn { width: 100%; max-width: 360px; }
  .btn-row, .hero__ctas, .cta__ctas { width: 100%; }
  main { padding-bottom: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}
