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

:root {
  --bg-deep: #020203;
  --bg-base: #050506;
  --bg-elevated: #0A0A0C;
  --surface: rgba(255,255,255,0.03);
  --surface-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --fg: #EDEDEF;
  --fg-muted: #8A8F98;
  --fg-dim: #5A5F68;
  --accent: #FF8A00;
  --accent-soft: #FFB800;
  --accent-glow: rgba(255,138,0,0.2);
  --accent-ring: rgba(255,138,0,0.35);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ═══════ AMBIENT ═══════ */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  will-change: transform;
}

.blob--1 { width: 500px; height: 500px; background: var(--accent); top: -100px; left: -100px; animation: float1 22s ease-in-out infinite; }
.blob--2 { width: 420px; height: 420px; background: #FFB800; top: 50%; right: -80px; opacity: 0.1; animation: float2 28s ease-in-out infinite; }
.blob--3 { width: 380px; height: 380px; background: var(--accent); bottom: -100px; left: 40%; opacity: 0.08; animation: float3 32s ease-in-out infinite; }

@keyframes float1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(60px, 80px) scale(1.15); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-80px, -50px) scale(0.9); } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(100px, -60px) scale(1.1); } }

/* ═══════ LAYOUT ═══════ */
main { position: relative; z-index: 1; flex: 1; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

.dobra {
  padding: 80px 0 120px;
  position: relative;
  animation: fadeIn 0.5s var(--ease);
}

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

/* ═══════ BRAND BAR ═══════ */
.brand-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(2,2,3,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.brand-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; text-decoration: none; color: var(--fg); }
.brand img { width: 32px; height: 32px; object-fit: contain; filter: drop-shadow(0 0 8px var(--accent-glow)); }
.brand-bar__meta { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.02em; }

/* ═══════ STEPPER ═══════ */
.stepper {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(2,2,3,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.stepper__scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.stepper__scroll::-webkit-scrollbar { display: none; }

.stepper__list {
  display: flex;
  align-items: stretch;
  list-style: none;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  min-width: max-content;
}

.stepper__item { flex-shrink: 0; }

.stepper__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: none;
  border: none;
  color: var(--fg-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.stepper__btn:hover { color: var(--fg); }

.stepper__btn.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.stepper__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--fg-muted);
  transition: all 0.3s var(--ease);
}

.stepper__btn:hover .stepper__num { border-color: var(--border-strong); color: var(--fg); }

.stepper__btn.is-active .stepper__num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-deep);
  box-shadow: 0 0 16px var(--accent-glow);
}

.stepper__progress {
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.stepper__progress-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--accent-soft));
  transition: width 0.4s var(--ease);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ═══════ PAGE HEADER ═══════ */
.page-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.page-head__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--fg-dim);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(255,138,0,0.08), rgba(255,138,0,0.02));
  border: 1px solid var(--accent-ring);
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.h1 { font-size: clamp(44px, 7vw, 84px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.95; }
.h2 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; margin-top: 20px; }
.h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }

.lead { font-size: clamp(16px, 1.6vw, 18px); color: var(--fg-muted); line-height: 1.65; margin-top: 18px; }

.text-gold {
  background: linear-gradient(135deg, #FF8A00 0%, #FFB800 50%, #FF8A00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ═══════ PAGE FOOTER NAV (Prev/Next) ═══════ */
.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1120px;
  margin: 60px auto 0;
  padding: 40px 28px 0;
  border-top: 1px solid var(--border);
}

.pn-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  letter-spacing: -0.01em;
}

.pn-btn:hover {
  border-color: var(--accent-ring);
  background: var(--surface-hover);
  transform: translateY(-2px);
}

.pn-btn svg { width: 18px; height: 18px; }

.pn-btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--bg-deep);
  border-color: var(--accent);
  box-shadow: 0 0 28px var(--accent-glow);
  font-weight: 700;
}

.pn-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--accent-glow);
}

.pn-btn--ghost {
  color: var(--fg-muted);
}

.pn-btn__label-mini {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 2px;
}

.pn-btn--primary .pn-btn__label-mini {
  color: rgba(0,0,0,0.5);
}

.pn-btn__text { display: flex; flex-direction: column; }

/* ═══════ FOOTER ═══════ */
.footer {
  padding: 32px 28px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: auto;
}

/* ═══════ STATS ═══════ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.stats__cell {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.stats__cell:last-child { border-right: none; }
.stats__cell:hover { background: var(--surface-hover); }
.stats__num { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stats__num span { color: var(--accent); }
.stats__label { font-size: 10px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 8px; font-weight: 500; }

/* ═══════ ABOUT ═══════ */
.about {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  margin-top: 72px;
  align-items: center;
}

.about__photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/5; }
.about__photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.7)); z-index: 1; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transform: scale(1.12); transform-origin: center 28%; }
.about__handle { position: absolute; bottom: 14px; left: 14px; z-index: 2; font-size: 12px; color: var(--fg); font-weight: 500; }

.about__eyebrow { margin-bottom: 16px; }
.about__name { font-size: clamp(28px, 3.6vw, 38px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.about__role { font-size: 14px; color: var(--accent); font-weight: 500; margin-top: 6px; }
.about__bio { font-size: 15px; color: var(--fg-muted); line-height: 1.75; margin-top: 16px; }

.about__creds { list-style: none; margin-top: 22px; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 8px; }
.about__creds li { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--fg-muted); padding: 8px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: all 0.3s var(--ease); }
.about__creds li:hover { background: var(--surface-hover); border-color: var(--accent-ring); color: var(--fg); }
.about__creds svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }

.clients-row { margin-top: 72px; text-align: center; }
.clients-row__label { font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 36px; }
.clients-row__img { width: 100%; max-width: 880px; margin: 0 auto; border-radius: var(--radius); opacity: 0.85; }

/* ═══════ TENSÃO (ESCOLHA) ═══════ */
.tensao { position: relative; padding: 32px 0 72px; margin-bottom: 40px; isolation: isolate; }
.tensao__glow { position: absolute; inset: -40px -10% auto; height: 70%; z-index: -1; background: radial-gradient(ellipse 55% 60% at 50% 40%, rgba(255,138,0,0.10), transparent 75%); filter: blur(30px); pointer-events: none; }

.tensao__head { text-align: center; margin-bottom: 48px; }
.tensao__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 18px; }
.tensao__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px rgba(255,138,0,0.9); animation: tensaoPulse 2.4s ease-in-out infinite; }
@keyframes tensaoPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
.tensao__headline { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.08; color: var(--fg); }

/* HOJE node */
.tensao__node--today {
  max-width: 520px; margin: 0 auto; text-align: center;
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.tensao__node-label { font-size: 11px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 10px; transition: color 0.4s var(--ease); }
.tensao__node-title { font-size: clamp(15px, 1.6vw, 17px); color: rgba(255,255,255,0.72); font-weight: 500; line-height: 1.4; margin-bottom: 14px; transition: color 0.4s var(--ease); }
.tensao__node-tags { display: inline-flex; gap: 8px; font-size: 12px; color: var(--fg-dim); font-weight: 500; letter-spacing: 0.04em; transition: color 0.4s var(--ease); }
.tensao__tag-sep { color: rgba(255,138,0,0.5); }

.tensao__node--today:hover {
  background: linear-gradient(180deg, rgba(255,138,0,0.06), rgba(255,138,0,0.015));
  border-color: rgba(255,138,0,0.4);
  box-shadow: 0 18px 50px -18px rgba(255,138,0,0.3), 0 0 0 1px rgba(255,138,0,0.12) inset;
}
.tensao__node--today:hover .tensao__node-label { color: var(--accent); }
.tensao__node--today:hover .tensao__node-title { color: #fff; }
.tensao__node--today:hover .tensao__node-tags { color: rgba(255,255,255,0.85); }

/* Vertical connector */
.tensao__line--down { width: 2px; height: 68px; margin: 0 auto; display: block; }
.tensao__line--down svg { width: 100%; height: 100%; display: block; }

/* Pivot */
.tensao__pivot { position: relative; display: flex; justify-content: center; margin-bottom: 8px; }
.tensao__pivot-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 260px; height: 72px; border-radius: 999px; border: 1px solid rgba(255,138,0,0.25); animation: tensaoRing 3s ease-in-out infinite; pointer-events: none; }
@keyframes tensaoRing { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; } 50% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.25; } }
.tensao__pivot-core {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px;
  background: linear-gradient(180deg, rgba(255,138,0,0.18), rgba(255,138,0,0.08));
  border: 1px solid rgba(255,138,0,0.45);
  border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  color: #FFD9A8;
  box-shadow: 0 0 40px rgba(255,138,0,0.3), 0 0 0 1px rgba(255,138,0,0.1) inset;
  position: relative; z-index: 2;
}
.tensao__pivot-core svg { width: 18px; height: 18px; color: var(--accent); }

/* Fork lines */
.tensao__fork { width: 100%; max-width: 900px; margin: 8px auto 0; height: 70px; pointer-events: none; }
.tensao__fork svg { width: 100%; height: 100%; display: block; }

/* Paths */
.tensao__paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: -6px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.tensao__path { position: relative; padding: 32px 28px; border-radius: 18px; overflow: hidden; isolation: isolate; }

/* Good path */
.tensao__path--good {
  background: linear-gradient(180deg, rgba(255,138,0,0.09), rgba(255,138,0,0.025));
  border: 1.5px solid rgba(255,138,0,0.45);
  box-shadow: 0 20px 60px -20px rgba(255,138,0,0.45), 0 0 0 1px rgba(255,138,0,0.12) inset;
}
.tensao__path-glow { position: absolute; inset: -20% -20% auto; height: 60%; z-index: -1; background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255,138,0,0.25), transparent 70%); filter: blur(24px); pointer-events: none; }
.tensao__path--good .tensao__path-tag { color: var(--accent); }
.tensao__path--good .tensao__path-title { color: #fff; background: linear-gradient(180deg, #FFFFFF, #FFC27A); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tensao__path--good .tensao__path-list li { color: rgba(255,255,255,0.92); }
.tensao__path--good .tensao__path-list svg { color: var(--accent); filter: drop-shadow(0 0 8px rgba(255,138,0,0.6)); }

/* Bad path */
.tensao__path--bad {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
  border: 1px dashed rgba(170,170,180,0.35);
  transition: all 0.4s var(--ease);
}
.tensao__path--bad .tensao__path-tag { color: rgba(230,130,130,0.92); transition: color 0.4s var(--ease); }
.tensao__path--bad .tensao__path-title { color: rgba(255,255,255,0.82); transition: color 0.4s var(--ease); }
.tensao__path--bad .tensao__path-list li { color: rgba(255,255,255,0.72); text-decoration: line-through; text-decoration-color: rgba(230,100,100,0.45); text-decoration-thickness: 1.5px; transition: color 0.4s var(--ease); }
.tensao__path--bad .tensao__path-list svg { color: rgba(230,110,110,0.85); transition: color 0.4s var(--ease); }

.tensao__path--bad:hover {
  background: linear-gradient(180deg, rgba(230,80,80,0.08), rgba(230,80,80,0.02));
  border-color: rgba(230,100,100,0.6);
  box-shadow: 0 20px 60px -20px rgba(230,70,70,0.35), 0 0 0 1px rgba(230,100,100,0.15) inset;
}
.tensao__path--bad:hover .tensao__path-tag { color: rgba(255,140,140,1); }
.tensao__path--bad:hover .tensao__path-title { color: #fff; }
.tensao__path--bad:hover .tensao__path-list li { color: rgba(255,255,255,0.95); }
.tensao__path--bad:hover .tensao__path-list svg { color: rgba(255,120,120,1); filter: drop-shadow(0 0 8px rgba(230,80,80,0.55)); }

/* Path common */
.tensao__path-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.tensao__path-tag { font-size: 11px; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; }
.tensao__path-sub { font-size: 12px; color: var(--fg-dim); font-style: italic; }
.tensao__path-title { font-size: clamp(22px, 2.4vw, 28px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 22px; }
.tensao__path-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tensao__path-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; line-height: 1.35; }
.tensao__path-list li strong { font-weight: 800; letter-spacing: -0.01em; }
.tensao__path-list svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Closing */
.tensao__closing { margin-top: 48px; display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--fg-muted); text-transform: uppercase; }
.tensao__closing strong { color: var(--accent); font-weight: 800; }
.tensao__closing-line { flex: 0 0 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14)); }
.tensao__closing svg { width: 14px; height: 14px; color: var(--accent); animation: tensaoArrow 2s ease-in-out infinite; }
@keyframes tensaoArrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

@media (max-width: 720px) {
  .tensao__paths { grid-template-columns: 1fr; gap: 16px; }
  .tensao__fork { display: none; }
  .tensao__line--down { height: 40px; }
  .tensao__path { padding: 26px 22px; }
  .tensao__pivot-ring { width: 220px; height: 58px; }
  .tensao__pivot-core { padding: 12px 20px; font-size: 13px; }
}

/* ═══════ PILAR 1 — RICH ═══════ */
.pilar--rich { padding: 48px; }
.pilar__body { min-width: 0; }

/* BASE Hero */
.p1-base {
  position: relative;
  margin-top: 32px;
  padding: 48px 36px 40px;
  text-align: center;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,138,0,0.09), rgba(255,138,0,0.02) 70%), linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,138,0,0.22);
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}
.p1-base__glow {
  position: absolute; inset: -30% -10% auto; height: 80%; z-index: -1;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(255,138,0,0.22), transparent 75%);
  filter: blur(30px); pointer-events: none;
}
.p1-base__inner { position: relative; max-width: 560px; margin: 0 auto; }
.p1-base__icon {
  position: relative;
  width: 76px; height: 76px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255,138,0,0.22), rgba(255,138,0,0.08));
  border: 1px solid rgba(255,138,0,0.45);
  border-radius: 22px;
  box-shadow: 0 0 40px rgba(255,138,0,0.3), 0 0 0 1px rgba(255,138,0,0.15) inset;
  color: var(--accent);
}
.p1-base__icon svg { width: 40px; height: 40px; position: relative; z-index: 2; }
.p1-base__pulse {
  position: absolute; inset: -6px; border-radius: 26px;
  border: 1px solid rgba(255,138,0,0.35);
  animation: p1Pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes p1Pulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.15); opacity: 0.1; } }

.p1-base__tag { font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.p1-base__title { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; color: var(--fg); margin-bottom: 10px; }
.p1-base__desc { font-size: 15px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 26px; }
.p1-base__desc strong { color: var(--fg); font-weight: 600; }

/* CTAs */
.p1-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700; letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.p1-cta--primary {
  padding: 15px 26px;
  font-size: 15px;
  background: linear-gradient(180deg, #FF9E2A, #FF7A00);
  color: #1a0d00;
  box-shadow: 0 12px 32px -10px rgba(255,138,0,0.55), 0 0 0 1px rgba(255,255,255,0.12) inset;
}
.p1-cta--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(255,138,0,0.7), 0 0 0 1px rgba(255,255,255,0.16) inset; }
.p1-cta--primary svg:first-child { width: 16px; height: 16px; }
.p1-cta--primary svg:last-child { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.p1-cta--primary:hover svg:last-child { transform: translateX(4px); }

.p1-cta--secondary {
  margin-top: 20px;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--accent);
  background: rgba(255,138,0,0.06);
  border: 1px solid rgba(255,138,0,0.25);
}
.p1-cta--secondary svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.p1-cta--secondary:hover { background: rgba(255,138,0,0.12); border-color: rgba(255,138,0,0.5); color: #FFB257; }
.p1-cta--secondary:hover svg { transform: translateX(4px); }

/* Divider */
.p1-divider { margin: 40px 0 24px; display: flex; align-items: center; gap: 14px; justify-content: center; }
.p1-divider__line { flex: 1 1 auto; max-width: 180px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); }
.p1-divider__text { font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--fg-dim); white-space: nowrap; }

/* 2-col grid */
.p1-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.p1-col {
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s var(--ease);
}
.p1-col:hover { border-color: rgba(255,138,0,0.3); }

.p1-col__head { margin-bottom: 22px; }
.p1-col__kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.p1-col__title { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; color: var(--fg); margin-bottom: 6px; }
.p1-col__sub { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* Robôs grid */
.p1-robos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; flex: 1; }
.p1-robo {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 12px;
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: all 0.3s var(--ease);
}
.p1-robo svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.p1-robo span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p1-robo:hover { background: rgba(255,138,0,0.08); border-color: rgba(255,138,0,0.3); transform: translateY(-1px); }

.p1-robo--more {
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(135deg, rgba(255,138,0,0.1), rgba(255,138,0,0.03));
  border: 1px dashed rgba(255,138,0,0.4);
}
.p1-robo--more span:first-child { font-size: 16px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.p1-robo__more-label { font-size: 10px !important; font-weight: 600 !important; color: var(--fg-dim) !important; letter-spacing: 0.12em; text-transform: uppercase; }

/* Ferramentas */
.p1-tools { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.p1-tool {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}
.p1-tool__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255,138,0,0.18), rgba(255,138,0,0.06));
  border: 1px solid rgba(255,138,0,0.3);
  border-radius: 10px;
  color: var(--accent);
}
.p1-tool__icon svg { width: 20px; height: 20px; }
.p1-tool__content { min-width: 0; }
.p1-tool__title { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; color: var(--fg); margin-bottom: 3px; }
.p1-tool__desc { font-size: 13px; color: var(--fg-muted); line-height: 1.45; }
.p1-tool:hover { background: rgba(255,138,0,0.04); border-color: rgba(255,138,0,0.25); transform: translateY(-1px); }
.p1-tool:hover .p1-tool__icon { background: linear-gradient(180deg, rgba(255,138,0,0.3), rgba(255,138,0,0.12)); box-shadow: 0 0 20px rgba(255,138,0,0.3); }

/* Bottom banner */
.p1-banner {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 28px;
  background: linear-gradient(90deg, rgba(255,138,0,0.08), rgba(255,138,0,0.02));
  border: 1px solid rgba(255,138,0,0.22);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s var(--ease);
}
.p1-banner:hover { border-color: rgba(255,138,0,0.5); background: linear-gradient(90deg, rgba(255,138,0,0.14), rgba(255,138,0,0.04)); transform: translateY(-1px); box-shadow: 0 14px 36px -14px rgba(255,138,0,0.45); }
.p1-banner__left { min-width: 0; }
.p1-banner__kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.p1-banner__title { font-size: clamp(16px, 1.8vw, 19px); font-weight: 700; letter-spacing: -0.015em; color: var(--fg); line-height: 1.3; }
.p1-banner__cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: rgba(255,138,0,0.14);
  border: 1px solid rgba(255,138,0,0.4);
  border-radius: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: -0.005em;
  color: #FFB257;
  transition: all 0.3s var(--ease);
}
.p1-banner__cta svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.p1-banner:hover .p1-banner__cta { background: rgba(255,138,0,0.22); color: #FFD9A8; }
.p1-banner:hover .p1-banner__cta svg { transform: translateX(4px); }

@media (max-width: 960px) {
  .p1-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .pilar--rich { padding: 32px 24px; }
  .p1-base { padding: 36px 22px 30px; }
  .p1-base__icon { width: 64px; height: 64px; border-radius: 18px; }
  .p1-base__icon svg { width: 32px; height: 32px; }
  .p1-cta--primary { padding: 13px 22px; font-size: 14px; }
  .p1-col { padding: 22px 20px; }
  .p1-banner { flex-direction: column; align-items: flex-start; padding: 20px 22px; }
  .p1-banner__cta { width: 100%; justify-content: center; }
  .p1-divider__line { max-width: 60px; }
  .p1-divider__text { font-size: 10px; letter-spacing: 0.22em; }
}
@media (max-width: 480px) {
  .p1-robos { grid-template-columns: 1fr; }
}

/* ═══════ PILAR 2 — POSICIONAMENTO ═══════ */
.pilar--p2 .pilar__title { margin-bottom: 6px; }

.p2-block {
  margin-top: 28px;
  padding: 32px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.006));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.p2-block:hover { border-color: rgba(255,138,0,0.3); box-shadow: 0 18px 50px -18px rgba(255,138,0,0.28); }

.p2-block__head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.p2-block__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255,138,0,0.2), rgba(255,138,0,0.06));
  border: 1px solid rgba(255,138,0,0.35);
  border-radius: 14px;
  color: var(--accent);
  transition: all 0.3s var(--ease);
}
.p2-block:hover .p2-block__icon { box-shadow: 0 0 24px rgba(255,138,0,0.4); border-color: rgba(255,138,0,0.6); }
.p2-block__icon svg { width: 24px; height: 24px; }
.p2-block__kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.p2-block__title { font-size: clamp(19px, 2.2vw, 23px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; color: var(--fg); }
.p2-block__desc { font-size: 15px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 24px; }

/* Instagram steps */
.p2-steps { display: grid; grid-template-columns: 1fr 1fr 1.35fr; gap: 12px; margin-top: 4px; }
.p2-step {
  position: relative;
  padding: 22px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: all 0.35s var(--ease);
  overflow: hidden;
}
.p2-step:hover { background: rgba(255,138,0,0.05); border-color: rgba(255,138,0,0.3); transform: translateY(-2px); box-shadow: 0 12px 32px -12px rgba(255,138,0,0.35); }
.p2-step__num { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; color: var(--fg-dim); margin-bottom: 10px; }
.p2-step__content { }
.p2-step__title { font-size: 16px; font-weight: 800; letter-spacing: -0.015em; color: var(--fg); margin-bottom: 5px; line-height: 1.2; }
.p2-step__desc { font-size: 13px; color: var(--fg-muted); line-height: 1.45; }

.p2-step--hi {
  background: linear-gradient(135deg, rgba(255,138,0,0.14), rgba(255,138,0,0.04));
  border: 1px solid rgba(255,138,0,0.45);
  box-shadow: 0 16px 40px -16px rgba(255,138,0,0.4), 0 0 0 1px rgba(255,138,0,0.1) inset;
}
.p2-step--hi:hover { border-color: rgba(255,138,0,0.7); background: linear-gradient(135deg, rgba(255,138,0,0.22), rgba(255,138,0,0.06)); box-shadow: 0 22px 50px -14px rgba(255,138,0,0.55); }
.p2-step--hi .p2-step__num { color: rgba(255,138,0,0.9); }
.p2-step--hi .p2-step__kicker { font-size: 9px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.p2-step--hi .p2-step__title { font-size: 20px; color: #fff; background: linear-gradient(180deg, #FFFFFF, #FFC27A); -webkit-background-clip: text; background-clip: text; color: transparent; }
.p2-step--hi .p2-step__desc { color: rgba(255,255,255,0.75); }
.p2-step__badge {
  position: absolute; top: 14px; right: 14px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 14px; font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255,138,0,0.7);
}

/* ═══════ CALCULADORA ═══════ */
.p2-block--linkedin { padding: 32px 30px 28px; }

.p2-calc {
  position: relative;
  margin-top: 20px;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(10,10,14,0.6), rgba(5,5,8,0.4));
  border: 1px solid rgba(255,138,0,0.22);
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}
.p2-calc__glow {
  position: absolute; inset: -20% -10% auto;
  height: 60%;
  background: radial-gradient(ellipse 50% 70% at 50% 0%, rgba(255,138,0,0.18), transparent 75%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

.p2-calc__head { text-align: center; margin-bottom: 28px; }
.p2-calc__kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.p2-calc__kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: tensaoPulse 2s ease-in-out infinite; }
.p2-calc__title { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; color: var(--fg); margin-bottom: 8px; }
.p2-calc__sub { font-size: 13px; color: var(--fg-muted); }

.p2-calc__body { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }

/* Sliders */
.p2-calc__sliders { display: flex; flex-direction: column; gap: 20px; }
.p2-slider { display: flex; flex-direction: column; gap: 8px; }
.p2-slider__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.p2-slider__head label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--fg); text-transform: uppercase; }
.p2-slider__note { font-weight: 400; color: var(--fg-dim); text-transform: none; letter-spacing: 0; }
.p2-slider__val {
  font-size: 17px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  min-width: 42px; text-align: right;
  text-shadow: 0 0 18px rgba(255,138,0,0.5);
}
.p2-slider__axis { display: flex; justify-content: space-between; font-size: 10px; color: var(--fg-dim); font-weight: 500; letter-spacing: 0.08em; }

/* Custom range input */
.p2-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--fill, 0%), rgba(255,255,255,0.08) var(--fill, 0%), rgba(255,255,255,0.08) 100%);
  border-radius: 999px;
  outline: none;
  cursor: grab;
  transition: height 0.2s var(--ease);
}
.p2-range:active { cursor: grabbing; }
.p2-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  background: linear-gradient(180deg, #FFB257, #FF8A00);
  border: 2px solid #FFD9A8;
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 0 0 4px rgba(255,138,0,0.15), 0 0 20px rgba(255,138,0,0.6), 0 2px 6px rgba(0,0,0,0.4);
  transition: all 0.2s var(--ease);
}
.p2-range::-moz-range-thumb {
  width: 22px; height: 22px;
  background: linear-gradient(180deg, #FFB257, #FF8A00);
  border: 2px solid #FFD9A8;
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 0 0 4px rgba(255,138,0,0.15), 0 0 20px rgba(255,138,0,0.6), 0 2px 6px rgba(0,0,0,0.4);
}
.p2-range:hover::-webkit-slider-thumb { box-shadow: 0 0 0 6px rgba(255,138,0,0.22), 0 0 28px rgba(255,138,0,0.8), 0 2px 8px rgba(0,0,0,0.5); transform: scale(1.08); }
.p2-range:hover::-moz-range-thumb { box-shadow: 0 0 0 6px rgba(255,138,0,0.22), 0 0 28px rgba(255,138,0,0.8), 0 2px 8px rgba(0,0,0,0.5); transform: scale(1.08); }
.p2-range:active::-webkit-slider-thumb { cursor: grabbing; transform: scale(1.12); }

/* Button group (close rate) */
.p2-btns { display: grid; grid-template-columns: repeat(auto-fit, minmax(44px, 1fr)); gap: 6px; }
.p2-btns button {
  padding: 10px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--fg-muted);
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.p2-btns button:hover { background: rgba(255,138,0,0.08); border-color: rgba(255,138,0,0.3); color: var(--fg); box-shadow: 0 0 18px rgba(255,138,0,0.22); }
.p2-btns button.is-active {
  background: linear-gradient(180deg, rgba(255,138,0,0.22), rgba(255,138,0,0.08));
  border-color: rgba(255,138,0,0.55);
  color: #FFD9A8;
  box-shadow: 0 0 20px rgba(255,138,0,0.4), 0 0 0 1px rgba(255,138,0,0.15) inset;
}

/* Result (breakdown + totais) */
.p2-calc__result {
  display: flex; flex-direction: column;
  padding: 24px 22px;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(255,138,0,0.12), rgba(255,138,0,0.02) 70%);
  border: 1px solid rgba(255,138,0,0.28);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  gap: 20px;
}

.p2-calc__bd { display: flex; flex-direction: column; gap: 2px; }
.p2-calc__bd-title { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 10px; }
.p2-calc__bd-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.07);
}
.p2-calc__bd-row:last-child { border-bottom: none; }
.p2-calc__bd-label { font-size: 13px; color: var(--fg-muted); font-weight: 500; }
.p2-calc__bd-val {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.p2-calc__bd-row--hi {
  margin-top: 4px;
  padding: 12px 14px;
  background: linear-gradient(90deg, rgba(255,138,0,0.1), rgba(255,138,0,0.02));
  border: 1px solid rgba(255,138,0,0.3);
  border-radius: 10px;
}
.p2-calc__bd-row--hi .p2-calc__bd-label { color: var(--accent); font-weight: 700; letter-spacing: 0.04em; font-size: 12px; text-transform: uppercase; }
.p2-calc__bd-row--hi .p2-calc__bd-val {
  font-size: 28px;
  background: linear-gradient(180deg, #FFFFFF, #FFB257);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 20px rgba(255,138,0,0.4);
}

.p2-calc__totals { display: flex; flex-direction: column; gap: 10px; padding-top: 12px; border-top: 1px solid rgba(255,138,0,0.18); }
.p2-calc__total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.p2-calc__total-label { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-dim); }
.p2-calc__total-value {
  font-size: 22px; font-weight: 800; letter-spacing: -0.025em; line-height: 1;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.p2-calc__total--big .p2-calc__total-label { color: var(--accent); }
.p2-calc__total--big .p2-calc__total-value {
  font-size: clamp(30px, 4.2vw, 42px);
  font-weight: 900;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #FFFFFF, #FFB257);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 40px rgba(255,138,0,0.35);
}

/* Hints below close rate buttons */
.p2-btns__hint { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 4px; }
.p2-btns__hint span { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); text-align: center; }

.p2-calc__foot { text-align: center; font-size: 11px; color: var(--fg-dim); margin-top: 18px; font-style: italic; }

/* Google */
.p2-google { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.p2-google li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  font-size: 14px; font-weight: 500; color: var(--fg);
  transition: all 0.3s var(--ease);
}
.p2-google li:hover { background: rgba(255,138,0,0.05); border-color: rgba(255,138,0,0.3); transform: translateX(3px); box-shadow: 0 10px 28px -12px rgba(255,138,0,0.3); }
.p2-google li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

@media (max-width: 960px) {
  .p2-steps { grid-template-columns: 1fr; }
  .p2-calc__body { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  .p2-block { padding: 26px 22px; }
  .p2-calc { padding: 26px 20px; }
  .p2-block__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .p2-btns { grid-template-columns: repeat(auto-fit, minmax(40px, 1fr)); }
}

/* ═══════ PILAR 3 — FECHAMENTO ═══════ */
.p3-authority {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  row-gap: 8px;
  align-items: center;
  padding: 26px 28px;
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(255,138,0,0.12), rgba(255,138,0,0.03));
  border: 1px solid rgba(255,138,0,0.3);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.4s var(--ease);
}
.p3-authority:hover { border-color: rgba(255,138,0,0.6); box-shadow: 0 20px 50px -18px rgba(255,138,0,0.45); transform: translateY(-1px); }
.p3-authority__glow {
  position: absolute; inset: -30% -10% auto; height: 80%;
  z-index: -1;
  background: radial-gradient(ellipse 50% 60% at 80% 0%, rgba(255,138,0,0.18), transparent 75%);
  filter: blur(24px); pointer-events: none;
}
.p3-authority__badge {
  grid-row: 1 / 2;
  grid-column: 1;
  flex-shrink: 0;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255,138,0,0.3), rgba(255,138,0,0.1));
  border: 1.5px solid rgba(255,138,0,0.55);
  border-radius: 16px;
  color: var(--accent);
  box-shadow: 0 0 24px rgba(255,138,0,0.35), 0 0 0 1px rgba(255,138,0,0.18) inset;
}
.p3-authority__badge svg { width: 32px; height: 32px; }
.p3-authority__content { grid-column: 2; grid-row: 1; min-width: 0; }
.p3-authority__kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 3px; }
.p3-authority__name { font-size: clamp(22px, 2.6vw, 28px); font-weight: 900; letter-spacing: -0.03em; color: var(--fg); line-height: 1; margin-bottom: 10px; }
.p3-authority__stat { display: inline-flex; align-items: baseline; gap: 8px; padding: 6px 12px; background: rgba(255,138,0,0.1); border: 1px solid rgba(255,138,0,0.3); border-radius: 999px; }
.p3-authority__stat-num {
  font-size: 18px; font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(180deg, #FFFFFF, #FFB257);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.p3-authority__stat-label { font-size: 11px; font-weight: 600; color: #FFD9A8; letter-spacing: 0.04em; text-transform: uppercase; }
.p3-authority__desc {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 14px; color: var(--fg-muted); line-height: 1.5;
  padding-top: 10px;
  border-top: 1px solid rgba(255,138,0,0.15);
}

/* Grid 2x2 */
.p3-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
.p3-item {
  position: relative;
  padding: 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: all 0.35s var(--ease);
  overflow: hidden;
}
.p3-item:hover {
  border-color: rgba(255,138,0,0.45);
  background: linear-gradient(180deg, rgba(255,138,0,0.06), rgba(255,138,0,0.015));
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -14px rgba(255,138,0,0.38), 0 0 0 1px rgba(255,138,0,0.08) inset;
}
.p3-item__num {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  color: var(--fg-dim);
  transition: color 0.3s var(--ease);
}
.p3-item:hover .p3-item__num { color: var(--accent); }
.p3-item__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: linear-gradient(180deg, rgba(255,138,0,0.2), rgba(255,138,0,0.06));
  border: 1px solid rgba(255,138,0,0.4);
  border-radius: 11px;
  color: var(--accent);
  margin-bottom: 14px;
  transition: all 0.3s var(--ease);
}
.p3-item:hover .p3-item__icon { box-shadow: 0 0 22px rgba(255,138,0,0.45); border-color: rgba(255,138,0,0.7); }
.p3-item__icon svg { width: 20px; height: 20px; }
.p3-item__title { font-size: 16px; font-weight: 800; letter-spacing: -0.015em; color: var(--fg); line-height: 1.2; margin-bottom: 6px; }
.p3-item__desc { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

@media (max-width: 720px) {
  .p3-authority { grid-template-columns: 1fr; text-align: center; }
  .p3-authority__badge { margin: 0 auto; }
  .p3-authority__content { grid-column: 1; grid-row: 2; }
  .p3-authority__desc { grid-row: 3; }
  .p3-authority__stat { margin: 0 auto; }
  .p3-grid { grid-template-columns: 1fr; }
}

/* ═══════ BRIDGE (MÁQUINA PRONTA) ═══════ */
.bridge { position: relative; margin-top: 32px; padding: 40px 36px; text-align: center; border-radius: 20px; background: linear-gradient(180deg, rgba(255,138,0,0.06), rgba(255,138,0,0.01)); border: 1px solid rgba(255,138,0,0.22); overflow: hidden; isolation: isolate; transition: all 0.4s var(--ease); }
.bridge:hover { border-color: rgba(255,138,0,0.4); box-shadow: 0 18px 50px -18px rgba(255,138,0,0.3); }
.bridge__glow { position: absolute; inset: -30% -10% auto; height: 80%; z-index: -1; background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,138,0,0.14), transparent 75%); filter: blur(28px); pointer-events: none; }
.bridge__head { margin-bottom: 28px; }
.bridge__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.bridge__eyebrow svg { width: 14px; height: 14px; }
.bridge__title { font-size: clamp(20px, 2.6vw, 28px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; color: var(--fg); max-width: 720px; margin: 0 auto; }

.bridge__recap { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.bridge__chip {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  text-align: left;
  transition: all 0.35s var(--ease);
  min-width: 200px;
}
.bridge__chip:hover { border-color: rgba(255,138,0,0.5); background: linear-gradient(180deg, rgba(255,138,0,0.08), rgba(255,138,0,0.02)); transform: translateY(-2px); box-shadow: 0 14px 32px -14px rgba(255,138,0,0.45); }
.bridge__chip-num {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,138,0,0.14);
  border: 1px solid rgba(255,138,0,0.4);
  border-radius: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: -0.01em;
  color: var(--accent);
}
.bridge__chip-title { font-size: 14px; font-weight: 700; color: var(--fg); letter-spacing: -0.01em; line-height: 1.2; }
.bridge__chip-sub { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.bridge__plus {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 18px; font-weight: 900;
  opacity: 0.6;
}

@media (max-width: 1100px) {
  .bridge__recap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 560px; margin: 0 auto; }
  .bridge__plus { display: none; }
  .bridge__chip { width: 100%; min-width: 0; }
}
@media (max-width: 560px) {
  .bridge__recap { grid-template-columns: 1fr; }
}

/* ═══════ PARADOX (FOLLOW-UP STATS) ═══════ */
.paradox { margin-top: 24px; padding: 48px 36px; background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(230,60,60,0.08), transparent 75%), linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005)); border: 1px solid rgba(230,100,100,0.22); border-radius: 20px; position: relative; overflow: hidden; isolation: isolate; }

.paradox__head { text-align: center; margin-bottom: 36px; }
.paradox__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(230,130,130,0.9); margin-bottom: 12px; }
.paradox__title { font-size: clamp(24px, 3.4vw, 36px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.1; color: var(--fg); margin-bottom: 14px; }
.paradox__sub { font-size: 15px; color: var(--fg-muted); line-height: 1.55; max-width: 620px; margin: 0 auto; }
.paradox__sub strong { color: var(--fg); font-weight: 700; }

/* Reveal wrapper */
.paradox__reveal { text-align: center; }
.paradox__reveal-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 8px 18px;
  background: rgba(255,138,0,0.08);
  border: 1px solid rgba(255,138,0,0.3);
  border-radius: 999px;
}

/* Hero stat 80% */
.paradox__hero {
  text-align: center;
  padding: 36px 24px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,138,0,0.18), rgba(255,138,0,0.02) 75%);
  border: 1px solid rgba(255,138,0,0.4);
  border-radius: 18px;
  box-shadow: 0 0 60px rgba(255,138,0,0.2), 0 0 0 1px rgba(255,138,0,0.1) inset;
  transition: all 0.4s var(--ease);
}
.paradox__hero:hover { border-color: rgba(255,138,0,0.65); box-shadow: 0 0 80px rgba(255,138,0,0.35), 0 0 0 1px rgba(255,138,0,0.15) inset; }
.paradox__hero-num {
  font-size: clamp(72px, 11vw, 128px); font-weight: 900; letter-spacing: -0.055em; line-height: 0.95;
  background: linear-gradient(180deg, #FFFFFF, #FFB257);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 60px rgba(255,138,0,0.4);
  font-variant-numeric: tabular-nums;
}
.paradox__hero-num span { font-size: 0.5em; vertical-align: top; }
.paradox__hero-label { font-size: clamp(16px, 1.9vw, 20px); color: var(--fg); font-weight: 500; margin-top: 8px; line-height: 1.35; max-width: 560px; margin-left: auto; margin-right: auto; }
.paradox__hero-label strong { font-weight: 800; color: var(--accent); }

/* Mini stats row */
.paradox__row { margin-bottom: 28px; }
.paradox__row-label { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--fg-muted); text-align: center; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; }
.paradox__mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.paradox__mini-card {
  padding: 20px 14px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all 0.35s var(--ease);
}
.paradox__mini-card:hover { border-color: rgba(255,138,0,0.4); transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(255,138,0,0.35); }
.paradox__mini-num {
  font-size: clamp(28px, 3.8vw, 40px); font-weight: 900; letter-spacing: -0.03em; line-height: 1;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.paradox__mini-num span { font-size: 0.55em; vertical-align: top; }
.paradox__mini-label { font-size: 12px; color: var(--fg-muted); line-height: 1.45; font-weight: 500; }
.paradox__mini-label strong { color: var(--fg); font-weight: 800; }

.paradox__mini-card--bad { background: linear-gradient(180deg, rgba(230,80,80,0.1), rgba(230,80,80,0.02)); border-color: rgba(230,100,100,0.35); }
.paradox__mini-card--bad:hover { border-color: rgba(230,100,100,0.65); box-shadow: 0 12px 28px -12px rgba(230,80,80,0.4); }
.paradox__mini-card--bad .paradox__mini-num { background: linear-gradient(180deg, #FFFFFF, #FF8080); -webkit-background-clip: text; background-clip: text; color: transparent; }

.paradox__mini-card--good { background: linear-gradient(180deg, rgba(255,138,0,0.12), rgba(255,138,0,0.03)); border-color: rgba(255,138,0,0.4); }
.paradox__mini-card--good:hover { border-color: rgba(255,138,0,0.7); box-shadow: 0 12px 28px -12px rgba(255,138,0,0.5); }
.paradox__mini-card--good .paradox__mini-num { background: linear-gradient(180deg, #FFFFFF, #FFB257); -webkit-background-clip: text; background-clip: text; color: transparent; }

.paradox__row-source { font-size: 10px; font-style: italic; text-align: center; color: var(--fg-dim); margin-top: 14px; letter-spacing: 0.04em; }

.paradox__insight {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(90deg, rgba(255,138,0,0.1), rgba(255,138,0,0.02));
  border: 1px solid rgba(255,138,0,0.3);
  border-radius: 14px;
  font-size: 14px; color: var(--fg); line-height: 1.5;
  max-width: 780px; margin: 40px auto 0;
}
.paradox__insight svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.paradox__insight strong { font-weight: 800; color: #FFD9A8; }

@media (max-width: 720px) {
  .paradox__mini { grid-template-columns: repeat(2, 1fr); }
  .paradox { padding: 36px 24px; }
}

/* ═══════ PILAR 4 — CICLO ═══════ */
.p4-cycle { position: relative; margin-top: 28px; padding: 36px 24px; background: linear-gradient(180deg, rgba(255,138,0,0.06), rgba(255,138,0,0.01)); border: 1px solid rgba(255,138,0,0.25); border-radius: 18px; text-align: center; overflow: hidden; isolation: isolate; transition: all 0.4s var(--ease); }
.p4-cycle:hover { border-color: rgba(255,138,0,0.5); box-shadow: 0 20px 50px -20px rgba(255,138,0,0.4); }
.p4-cycle__glow { position: absolute; inset: -20% -10% auto; height: 70%; background: radial-gradient(ellipse 55% 70% at 50% 40%, rgba(255,138,0,0.2), transparent 75%); filter: blur(28px); z-index: -1; pointer-events: none; }
.p4-cycle__title { font-size: clamp(16px, 2vw, 20px); font-weight: 700; letter-spacing: -0.015em; color: var(--fg); margin-bottom: 28px; }
.p4-cycle__caption { font-size: 14px; color: var(--fg-muted); line-height: 1.5; margin-top: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.p4-cycle__caption strong { color: var(--fg); font-weight: 700; }

.p4-cycle__diagram { position: relative; width: 100%; max-width: 420px; aspect-ratio: 420 / 260; margin: 0 auto; }
.p4-cycle__diagram svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.p4-node {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: linear-gradient(180deg, rgba(20,20,26,0.95), rgba(10,10,14,0.9));
  border: 1px solid rgba(255,138,0,0.4);
  border-radius: 12px;
  color: var(--accent);
  transition: all 0.35s var(--ease);
  z-index: 2;
}
.p4-node:hover { border-color: rgba(255,138,0,0.9); box-shadow: 0 0 24px rgba(255,138,0,0.6); transform: scale(1.12); }
.p4-node svg { width: 22px; height: 22px; }
.p4-node__brand { width: 24px; height: 24px; object-fit: contain; display: block; }
.p4-node::after {
  content: attr(data-label);
  position: absolute;
  bottom: -22px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--fg-muted);
  white-space: nowrap;
  opacity: 0.8;
}

.p4-node--center {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 148px; height: 78px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #FFFFFF, #F5F5F7);
  border: 1.5px solid rgba(255,138,0,0.7);
  box-shadow: 0 0 40px rgba(255,138,0,0.5), 0 0 0 1px rgba(255,138,0,0.2) inset, 0 8px 24px rgba(0,0,0,0.4);
  flex-direction: column; gap: 4px;
}
.p4-node__logo {
  width: 100%; height: auto; max-height: 36px;
  object-fit: contain; display: block;
}
.p4-node__tag {
  font-size: 9px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(20,20,30,0.5);
}
.p4-node--center:hover { transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 0 56px rgba(255,138,0,0.65), 0 0 0 1px rgba(255,138,0,0.3) inset, 0 10px 32px rgba(0,0,0,0.5); }
.p4-node--center::after { display: none; }

/* Posições dos 6 nodes orbitais */
.p4-node--tl { top: 6%; left: 14%; }
.p4-node--top { top: 0%; left: 50%; transform: translateX(-50%); }
.p4-node--tr { top: 6%; right: 14%; }
.p4-node--bl { bottom: 16%; left: 14%; }
.p4-node--br { bottom: 16%; right: 14%; }
.p4-node--bottom { bottom: 6%; left: 50%; transform: translateX(-50%); }
.p4-node--top:hover { transform: translateX(-50%) scale(1.1); }
.p4-node--bottom:hover { transform: translateX(-50%) scale(1.1); }

/* Ajuste bridge para 4 chips */
.bridge__chip--hi {
  background: linear-gradient(180deg, rgba(255,138,0,0.14), rgba(255,138,0,0.04));
  border-color: rgba(255,138,0,0.5);
  box-shadow: 0 0 24px rgba(255,138,0,0.3), 0 0 0 1px rgba(255,138,0,0.1) inset;
}
.bridge__chip--hi .bridge__chip-num { background: rgba(255,138,0,0.3); border-color: rgba(255,138,0,0.7); color: #FFD9A8; }
.bridge__chip--hi .bridge__chip-title { color: #fff; }

@media (max-width: 720px) {
  .p4-cycle__diagram { max-width: 320px; }
  .p4-node { width: 40px; height: 40px; }
  .p4-node svg { width: 18px; height: 18px; }
  .p4-node--center { width: 120px; height: 62px; padding: 10px 14px; }
  .p4-node__logo { max-height: 26px; }
  .p4-node__tag { font-size: 8px; letter-spacing: 0.2em; }
  .p4-node::after { font-size: 9px; }
}

/* ═══════ GATE (SEPARADOR ESCALA) ═══════ */
.gate { display: flex; align-items: center; gap: 14px; margin: 40px 0 24px; }
.gate__line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,138,0,0.35), rgba(255,138,0,0.35), transparent); }
.gate__badge {
  padding: 22px 30px;
  background: linear-gradient(180deg, rgba(255,138,0,0.14), rgba(255,138,0,0.04));
  border: 1.5px solid rgba(255,138,0,0.5);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 40px rgba(255,138,0,0.25), 0 0 0 1px rgba(255,138,0,0.1) inset;
  transition: all 0.4s var(--ease);
}
.gate__badge:hover { border-color: rgba(255,138,0,0.8); box-shadow: 0 0 60px rgba(255,138,0,0.4), 0 0 0 1px rgba(255,138,0,0.18) inset; transform: translateY(-2px); }
.gate__badge-kicker { font-size: 10px; font-weight: 800; letter-spacing: 0.36em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.gate__badge-title { font-size: clamp(20px, 2.4vw, 26px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; color: var(--fg); margin-bottom: 8px; }
.gate__badge-sub { font-size: 12px; color: var(--fg-muted); line-height: 1.5; max-width: 420px; margin: 0 auto; }
.gate__badge-sub strong { color: var(--fg); font-weight: 700; }

@media (max-width: 720px) {
  .gate { flex-direction: column; }
  .gate__line { width: 60%; height: 1px; }
  .gate__badge { padding: 18px 24px; }
}

/* ═══════ CLIENTS (PREMIUM) ═══════ */
.clients { position: relative; margin-top: 96px; padding: 56px 0 48px; text-align: center; isolation: isolate; }
.clients__glow { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(255,138,0,0.08), transparent 70%); filter: blur(20px); pointer-events: none; }
.clients__head { margin-bottom: 40px; }
.clients__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-dim); }
.clients__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px rgba(255,138,0,0.8); }
.clients__title { margin-top: 14px; font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; letter-spacing: -0.02em; color: var(--fg); line-height: 1.2; }

.clients__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; max-width: 1060px; margin: 0 auto; }
.clients__card {
  display: flex; align-items: center; justify-content: center;
  padding: 20px 10px;
  min-height: 64px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.35s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.clients__card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,138,0,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.clients__card:hover {
  color: #fff;
  border-color: rgba(255,138,0,0.45);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px rgba(255,138,0,0.35), 0 0 0 1px rgba(255,138,0,0.15) inset;
}
.clients__card:hover::before { opacity: 1; }

.clients__foot { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-dim); }
.clients__foot-line { flex: 0 0 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); }

@media (max-width: 960px) {
  .clients__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .clients { margin-top: 64px; padding: 40px 0 32px; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .clients__card { font-size: 13px; padding: 16px 8px; min-height: 56px; }
  .clients__foot-line { flex: 0 0 30px; }
}

/* ═══════ PILARES / TRILHA ═══════ */
.trilha { display: flex; flex-direction: column; gap: 20px; }

.pilar {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  padding: 40px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-base));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.pilar:hover { border-color: var(--accent-ring); transform: translateY(-2px); }

.pilar--escala {
  background: linear-gradient(135deg, rgba(255,138,0,0.08), rgba(255,138,0,0.02));
  border-color: var(--accent-ring);
}

.pilar--escala::after {
  content: 'Nivel avancado';
  position: absolute;
  top: 24px; right: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg-deep);
  padding: 5px 10px;
  background: var(--accent);
  border-radius: 100px;
}

.pilar__num-wrap { display: flex; align-items: flex-start; justify-content: center; }

.pilar__num {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--bg-deep);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3);
  letter-spacing: -0.02em;
}

.pilar__tag { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.pilar__title { font-size: clamp(22px, 2.8vw, 28px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.pilar__desc { font-size: 15px; color: var(--fg-muted); line-height: 1.7; margin-top: 14px; max-width: 680px; }
.pilar__list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px; margin-top: 24px; }
.pilar__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg); line-height: 1.5; }
.pilar__list li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.pilar__list-stack { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.pilar__list-note {
  align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-dim);
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}
.pilar__list-note--hi {
  color: #FFD9A8;
  background: rgba(255,138,0,0.1);
  border-color: rgba(255,138,0,0.3);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
}

/* ═══════ JORNADA VISUAL (S-TRAIL) ═══════ */
.jornada {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-base));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px 64px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.jornada::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-ring), transparent);
}

.jornada__intro {
  text-align: center;
  margin-bottom: 44px;
}

.jornada__intro-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.jornada__intro-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.jornada__intro-title span {
  background: linear-gradient(135deg, #FF8A00, #FFB800);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fase 1 - Organico (3 estacoes) */
.jornada__fase-1 {
  position: relative;
  padding: 40px 24px 24px;
  border: 1px dashed var(--accent-ring);
  border-radius: var(--radius);
  background: rgba(255,138,0,0.02);
}

.jornada__fase-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--accent-ring);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.jornada__fase-label svg { width: 12px; height: 12px; }

.jornada__trilho {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 40px;
  height: 340px;
}

.jornada__svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.jornada__svg path {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 0;
  animation: draw 1.8s var(--ease) 0.3s both;
}

.jornada__svg path.path--solid { stroke: url(#gradS); filter: drop-shadow(0 0 8px rgba(255,138,0,0.5)); }

.jornada__svg circle.step-marker {
  fill: var(--bg-elevated);
  stroke: var(--accent-ring);
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
  opacity: 0;
  animation: fadeMarker 0.4s var(--ease) 1.6s forwards;
}

@keyframes draw { from { stroke-dashoffset: 1200; } to { stroke-dashoffset: 0; } }
@keyframes fadeMarker { to { opacity: 0.5; } }

.jornada__stations {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.jornada__station {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.jornada__station--s1,
.jornada__station--s2,
.jornada__station--s3 {
  position: absolute;
  transform: translateX(-50%);
  animation: popIn 0.5s var(--ease) both;
}

.jornada__station--s1 { left: 12%; top: 180px; animation-delay: 0.6s; }
.jornada__station--s2 { left: 50%; top: 100px; animation-delay: 0.9s; }
.jornada__station--s3 { left: 88%; top: 20px; animation-delay: 1.2s; }

@keyframes popIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.jornada__step-num {
  position: absolute;
  top: -18px;
  right: -10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

.jornada__dot {
  width: 72px; height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--bg-deep);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--accent-glow), inset 0 2px 0 rgba(255,255,255,0.3);
  letter-spacing: -0.02em;
  position: relative;
  transition: all 0.3s var(--ease);
}

.jornada__dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 26px;
  border: 1px solid var(--accent-ring);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.jornada__station:hover .jornada__dot::after { opacity: 1; }
.jornada__station:hover .jornada__dot { transform: scale(1.05); }

.jornada__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.jornada__sub {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.45;
  max-width: 160px;
}

/* Bridge entre fases */
.jornada__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 28px 0;
  position: relative;
}

.jornada__bridge-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent-ring));
  position: relative;
}

.jornada__bridge-line::before,
.jornada__bridge-line::after {
  content: '';
  position: absolute;
  left: -3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-ring);
}

.jornada__bridge-line::before { top: 0; }
.jornada__bridge-line::after { bottom: 0; background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }

.jornada__bridge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
}

/* Fase 2 - Escala */
.jornada__fase-2 {
  position: relative;
  padding: 44px 24px 28px;
  border: 1px solid var(--accent-ring);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,138,0,0.1), rgba(255,138,0,0.02));
  display: flex;
  justify-content: center;
}

.jornada__fase-2-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px;
  background: var(--accent);
  color: var(--bg-deep);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 20px var(--accent-glow);
}

.jornada__fase-2-label svg { width: 12px; height: 12px; }

.jornada__station--final { gap: 14px; }

.jornada__dot--final {
  width: 92px; height: 92px;
  border-radius: 28px;
  font-size: 26px;
  box-shadow: 0 0 60px rgba(255,138,0,0.5), inset 0 2px 0 rgba(255,255,255,0.3);
  position: relative;
}

.jornada__dot--final::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 36px;
  border: 2px solid var(--accent-ring);
  animation: ringPulse 2.4s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.08); }
}

.jornada__name--final {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.jornada__name--final + .jornada__sub {
  max-width: 220px;
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE - jornada */
@media (max-width: 760px) {
  .jornada { padding: 48px 20px 44px; }
  .jornada__trilho { height: auto; padding: 8px 0; }
  .jornada__stations {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .jornada__station {
    position: static;
    transform: none;
    animation: none;
  }
  .jornada__station--s1,
  .jornada__station--s2,
  .jornada__station--s3 { left: auto; top: auto; }
  .jornada__svg { display: none; }
  .jornada__fase-1 { padding: 40px 16px 24px; }
  .jornada__dot { width: 60px; height: 60px; font-size: 18px; border-radius: 18px; }
  .jornada__dot--final { width: 76px; height: 76px; font-size: 22px; border-radius: 22px; }
  .jornada__step-num { position: static; margin-bottom: 4px; }
}

/* ═══════ OBJECOES ═══════ */
.obj-grid { display: flex; flex-direction: column; gap: 24px; }

.obj {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  padding: 40px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-base));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: center;
  transition: all 0.4s var(--ease);
}

.obj__objecao {
  position: absolute;
  top: 14px; right: 18px;
  max-width: 240px;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: rgba(255,255,255,0.18);
  text-align: right;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 720px) {
  .obj__objecao { position: static; margin-bottom: 8px; max-width: none; text-align: center; color: rgba(255,255,255,0.24); }
}

.obj:hover { border-color: var(--accent-ring); transform: translateY(-2px); }

.obj--reverse { grid-template-columns: 1fr 320px; }
.obj--reverse .obj__img-wrap { order: 2; }
.obj--reverse .obj__content { order: 1; }

.obj__img-wrap { position: relative; display: flex; flex-direction: column; align-items: flex-start; }
.obj__img { width: 100%; height: auto; display: block; border-radius: var(--radius); border: 1px solid var(--border-strong); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

.obj__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-bottom: 14px;
  background: linear-gradient(180deg, rgba(255,138,0,0.14), rgba(255,138,0,0.04));
  border: 1px solid rgba(255,138,0,0.4);
  color: #FFD9A8;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.obj:hover .obj__badge { background: linear-gradient(180deg, rgba(255,138,0,0.22), rgba(255,138,0,0.08)); border-color: rgba(255,138,0,0.65); box-shadow: 0 0 18px rgba(255,138,0,0.3); }

.obj__pergunta { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.obj__titulo { font-size: clamp(22px, 2.8vw, 28px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: var(--fg); margin-bottom: 16px; }
.obj__resposta { font-size: 15px; color: var(--fg-muted); line-height: 1.75; }
.obj__resposta strong { color: var(--fg); font-weight: 600; }
.obj__resposta .highlight { background: linear-gradient(180deg, transparent 60%, rgba(255,138,0,0.25) 60%); color: var(--fg); font-weight: 600; padding: 0 2px; }

.obj__quote {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--surface);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--fg);
  font-style: italic;
  line-height: 1.6;
}

/* ═══════ ENTREGAVEIS ═══════ */
.entrega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .entrega-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .entrega-grid { grid-template-columns: 1fr; } }

.entrega {
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.entrega::before {
  content: '';
  position: absolute; inset: -30% -10% auto; height: 50%;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255,138,0,0.14), transparent 70%);
  opacity: 0;
  filter: blur(20px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.entrega:hover { border-color: rgba(255,138,0,0.45); transform: translateY(-3px); box-shadow: 0 18px 40px -18px rgba(255,138,0,0.4); }
.entrega:hover::before { opacity: 1; }
.entrega:hover .entrega__icon { box-shadow: 0 0 24px rgba(255,138,0,0.5); border-color: rgba(255,138,0,0.7); }

.entrega__icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255,138,0,0.22), rgba(255,138,0,0.06));
  border: 1px solid rgba(255,138,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}

.entrega__icon svg { width: 24px; height: 24px; color: var(--accent); }
.entrega__title { font-size: 17px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 8px; color: var(--fg); }
.entrega__desc { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* ═══════ MURAL ═══════ */
.mural { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }

/* Novo mural por categoria */
.mural-section { margin-top: 72px; }
.mural-section:first-of-type { margin-top: 24px; }
.mural-section__head { margin-bottom: 28px; text-align: center; }
.mural-section__num { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.mural-section__title { font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; letter-spacing: -0.025em; color: var(--fg); line-height: 1.15; }
.mural-section__sub { font-size: 14px; color: var(--fg-muted); margin-top: 8px; }

.mural-grid {
  column-count: 3;
  column-gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 960px) { .mural-grid { column-count: 2; } }
@media (max-width: 600px) { .mural-grid { column-count: 1; } }

.mural-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008));
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.mural-card:hover {
  border-color: rgba(255,138,0,0.45);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -18px rgba(255,138,0,0.4);
}
.mural-card__img {
  width: 100%;
  height: auto;
  display: block;
}
.mural-card__caption {
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mural-card__hook {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.35;
}
.mural-card__name {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.mural__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 9/14;
  transition: all 0.4s var(--ease);
}

.mural__item:hover { border-color: var(--accent-ring); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.mural__item img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ═══════ PRECO ═══════ */
.preco-wrap { max-width: 640px; margin: 0 auto; }

.preco {
  background: linear-gradient(135deg, rgba(255,138,0,0.12), rgba(255,138,0,0.02));
  border: 1px solid var(--accent-ring);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(255,138,0,0.1);
}

.preco::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 60%; height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  transform: translateX(-50%);
}

.preco__de { font-size: 13px; color: var(--fg-muted); margin-bottom: 8px; }
.preco__de s { text-decoration-thickness: 2px; text-decoration-color: var(--fg-dim); }
.preco__valor { font-size: clamp(64px, 11vw, 100px); font-weight: 900; letter-spacing: -0.05em; line-height: 1; margin: 8px 0; }
.preco__cifrao { font-size: 0.5em; vertical-align: top; margin-right: 6px; color: var(--fg-muted); font-weight: 600; }
.preco__parcela { font-size: 18px; color: var(--fg); font-weight: 600; margin-top: 10px; }
.preco__parcela span { color: var(--fg-muted); font-weight: 400; }

.preco__bonus { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--accent-ring); text-align: left; }
.preco__bonus-label { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.preco__bonus-title { font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 16px; }
.preco__bonus-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.preco__bonus-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.preco__bonus-list li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.preco__footnote { margin-top: 22px; font-size: 12px; color: var(--fg-dim); text-align: center; }

/* ═══════ INVESTIMENTO · STACK ═══════ */
.stack { max-width: 820px; margin: 0 auto; }
.stack__head { text-align: center; margin-bottom: 28px; }
.stack__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.stack__title { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; letter-spacing: -0.02em; color: var(--fg); }

.stack__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.stack__item {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008));
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.35s var(--ease);
}
.stack__item:hover { border-color: rgba(255,138,0,0.4); transform: translateY(-1px); box-shadow: 0 12px 28px -14px rgba(255,138,0,0.32); }
.stack__item-left { display: flex; align-items: center; gap: 16px; min-width: 0; }
.stack__item-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,138,0,0.12);
  border: 1px solid rgba(255,138,0,0.35);
  border-radius: 10px;
  color: var(--accent);
  font-size: 12px; font-weight: 800; letter-spacing: -0.01em;
}
.stack__item-num--star { background: linear-gradient(180deg, rgba(255,138,0,0.25), rgba(255,138,0,0.08)); border-color: rgba(255,138,0,0.6); color: #FFD9A8; box-shadow: 0 0 14px rgba(255,138,0,0.35); }
.stack__item-title { font-size: 15px; font-weight: 700; color: var(--fg); letter-spacing: -0.01em; line-height: 1.25; }
.stack__item-sub { font-size: 12px; color: var(--fg-muted); margin-top: 3px; }
.stack__item-val { flex-shrink: 0; font-size: 16px; font-weight: 800; letter-spacing: -0.015em; color: var(--fg); font-variant-numeric: tabular-nums; }

.stack__item--bonus { background: linear-gradient(180deg, rgba(255,138,0,0.08), rgba(255,138,0,0.02)); border-color: rgba(255,138,0,0.35); }
.stack__item--bonus .stack__item-val { color: var(--accent); }

.stack__total {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255,138,0,0.14), rgba(255,138,0,0.04));
  border: 1.5px solid rgba(255,138,0,0.45);
  border-radius: 14px;
  box-shadow: 0 0 32px rgba(255,138,0,0.2), 0 0 0 1px rgba(255,138,0,0.1) inset;
}
.stack__total-label { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #FFD9A8; }
.stack__total-val {
  font-size: clamp(26px, 3.4vw, 34px); font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(180deg, #FFFFFF, #FFB257);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 24px rgba(255,138,0,0.4);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .stack__item { flex-direction: column; align-items: flex-start; padding: 18px; }
  .stack__item-val { align-self: flex-end; }
  .stack__total { flex-direction: column; gap: 8px; text-align: center; }
}

/* Card grande: Implantação */
.impl-card {
  position: relative;
  margin-top: 18px;
  padding: 24px 28px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,138,0,0.1), rgba(255,138,0,0.02) 75%), linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008));
  border: 1.5px solid rgba(255,138,0,0.35);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.35s var(--ease);
}
.impl-card:hover { border-color: rgba(255,138,0,0.55); box-shadow: 0 18px 48px -18px rgba(255,138,0,0.4); }
.impl-card__glow { position: absolute; inset: -30% -10% auto; height: 70%; z-index: -1; background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(255,138,0,0.14), transparent 75%); filter: blur(24px); pointer-events: none; }
.impl-card__body { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,138,0,0.18); }
.impl-card__head { display: flex; align-items: center; gap: 14px; min-width: 0; }
.impl-card__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255,138,0,0.25), rgba(255,138,0,0.08));
  border: 1px solid rgba(255,138,0,0.55);
  border-radius: 12px;
  color: var(--accent);
}
.impl-card__icon svg { width: 22px; height: 22px; }
.impl-card__kicker { font-size: 10px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.impl-card__title { font-size: clamp(17px, 2vw, 20px); font-weight: 800; letter-spacing: -0.015em; color: var(--fg); line-height: 1.25; }
.impl-card__price {
  flex-shrink: 0;
  font-size: clamp(24px, 3vw, 30px); font-weight: 900; letter-spacing: -0.025em;
  background: linear-gradient(180deg, #FFFFFF, #FFB257);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.impl-card__note {
  display: flex; align-items: flex-start; gap: 12px;
  padding-top: 16px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.impl-card__note svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.impl-card__note strong { color: var(--fg); font-weight: 700; }
@media (max-width: 560px) {
  .impl-card__body { flex-direction: column; align-items: flex-start; }
  .impl-card__price { align-self: flex-end; }
}

/* ═══════ INVESTIMENTO · CALCULADORA ROI (INTERATIVA) ═══════ */
.roi-calc {
  position: relative;
  max-width: 720px;
  margin: 80px auto 0;
  padding: 40px 36px 36px;
  background: linear-gradient(180deg, rgba(10,10,14,0.6), rgba(5,5,8,0.4));
  border: 1px solid rgba(255,138,0,0.24);
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}
.roi-calc__glow { position: absolute; inset: -20% -10% auto; height: 60%; z-index: -1; background: radial-gradient(ellipse 50% 70% at 50% 0%, rgba(255,138,0,0.2), transparent 75%); filter: blur(30px); pointer-events: none; }
.roi-calc__head { text-align: center; margin-bottom: 32px; }
.roi-calc__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.roi-calc__title { font-size: clamp(24px, 3vw, 30px); font-weight: 800; letter-spacing: -0.025em; color: var(--fg); }
.roi-calc__sub { font-size: 13px; color: var(--fg-muted); margin-top: 8px; }

.roi-calc__body { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.roi-calc__sliders { display: flex; flex-direction: column; gap: 26px; }

.roi-calc__result {
  padding: 28px 22px;
  text-align: center;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(255,138,0,0.16), rgba(255,138,0,0.02) 70%);
  border: 1.5px solid rgba(255,138,0,0.4);
  border-radius: 16px;
  box-shadow: 0 0 32px rgba(255,138,0,0.2), 0 0 0 1px rgba(255,138,0,0.12) inset;
}
.roi-calc__result-label { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 14px; }
.roi-calc__result-val {
  font-size: clamp(34px, 5.5vw, 56px); font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(180deg, #FFFFFF, #FFB257);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 40px rgba(255,138,0,0.4);
  font-variant-numeric: tabular-nums;
}
.roi-calc__result-compare {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,138,0,0.22);
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 500;
}
.roi-calc__result-compare strong { color: #FFD9A8; font-weight: 800; }

@media (max-width: 720px) {
  .roi-calc__body { grid-template-columns: 1fr; gap: 24px; }
  .roi-calc { padding: 32px 22px 26px; }
}

/* (Legado roi — não removido mas não usado mais) */
.roi { max-width: 620px; margin: 72px auto 0; padding: 36px 32px; text-align: center; background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)); border: 1px solid var(--border); border-radius: 18px; }
.roi__head { margin-bottom: 24px; }
.roi__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.roi__title { font-size: clamp(22px, 2.8vw, 28px); font-weight: 800; letter-spacing: -0.025em; color: var(--fg); }

.roi__calc { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.roi__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.roi__row:last-child { border-bottom: none; }
.roi__label { font-size: 14px; color: var(--fg-muted); font-weight: 500; }
.roi__val { font-size: 18px; font-weight: 700; color: var(--fg); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.roi__row--result {
  margin-top: 10px;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(255,138,0,0.12), rgba(255,138,0,0.02));
  border: 1px solid rgba(255,138,0,0.4);
  border-radius: 12px;
  border-bottom: 1px solid rgba(255,138,0,0.4);
}
.roi__row--result .roi__label { color: var(--accent); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 12px; }
.roi__row--result .roi__val {
  font-size: clamp(24px, 3.2vw, 30px); font-weight: 900;
  background: linear-gradient(180deg, #FFFFFF, #FFB257);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 22px rgba(255,138,0,0.45);
  letter-spacing: -0.03em;
}

.roi__insight {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  background: rgba(255,138,0,0.1);
  border: 1px solid rgba(255,138,0,0.3);
  border-radius: 999px;
  font-size: 13px; color: var(--fg); font-weight: 500;
}
.roi__insight svg { width: 14px; height: 14px; color: var(--accent); }
.roi__insight strong { color: #FFD9A8; font-weight: 800; }

/* ═══════ INVESTIMENTO · LADDER (ESCADA DE PREÇOS) ═══════ */
.ladder { max-width: 720px; margin: 80px auto 0; }
.ladder__head { text-align: center; margin-bottom: 32px; }
.ladder__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.ladder__title { font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; letter-spacing: -0.025em; color: var(--fg); }

.ladder__steps { display: flex; flex-direction: column; align-items: center; gap: 0; }

.ladder__step {
  width: 100%;
  padding: 24px 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.35s var(--ease);
}

.ladder__step--strike { opacity: 0.88; }
.ladder__step--strike:hover { opacity: 1; border-color: rgba(255,255,255,0.18); }
.ladder__step-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 10px; }
.ladder__step-val { font-size: clamp(32px, 4.4vw, 44px); font-weight: 800; color: var(--fg); font-variant-numeric: tabular-nums; letter-spacing: -0.035em; line-height: 1; }
.ladder__step-val s { text-decoration-thickness: 3px; text-decoration-color: rgba(230,100,100,0.7); }
.ladder__step-sub { font-size: 13px; color: var(--fg-muted); margin-top: 6px; }

/* Step anchor (compacto) */
.ladder__step--anchor {
  padding: 18px 22px;
  opacity: 0.78;
  text-align: center;
}
.ladder__step--anchor .ladder__step-val { font-size: clamp(24px, 3vw, 30px); color: var(--fg-muted); }
.ladder__step-hint { font-size: 15px; color: var(--fg-muted); margin-top: 12px; letter-spacing: 0.01em; }
.ladder__step-hint strong { color: var(--accent); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }

/* Step OFICIAL (grande, sem riscar) */
.ladder__step--official {
  padding: 32px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.12);
}
.ladder__official-pill {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-muted);
}
.ladder__official-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: center; }
.ladder__official-main { text-align: left; }
.ladder__official-val {
  font-size: clamp(44px, 6.5vw, 64px); font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.ladder__official-parcela { font-size: clamp(15px, 1.8vw, 18px); color: var(--fg); font-weight: 700; letter-spacing: -0.01em; }
.ladder__official-alt { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }
.ladder__official-side {
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255,138,0,0.08), rgba(255,138,0,0.02));
  border: 1px dashed rgba(255,138,0,0.35);
  border-radius: 12px;
  text-align: left;
}
.ladder__side-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.ladder__side-val { font-size: 24px; font-weight: 900; color: var(--fg); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; margin-bottom: 8px; }
.ladder__side-note { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }

/* Observação abaixo do valor oficial */
.ladder__official-obs {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.ladder__official-obs svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.ladder__official-obs strong { color: var(--fg); font-weight: 700; }

@media (max-width: 720px) {
  .ladder__step--official { padding: 26px 22px; }
  .ladder__official-grid { grid-template-columns: 1fr; gap: 18px; }
}

.ladder__sep {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  padding: 16px 0;
  color: var(--fg-dim);
  font-size: 22px;
  font-weight: 700;
}
.ladder__sep span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.ladder__sep--final { padding: 72px 0 56px; position: relative; }
.ladder__sep--final::before, .ladder__sep--final::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,138,0,0.3), transparent);
  z-index: -1;
}
.ladder__sep--final span { background: rgba(255,138,0,0.14); border-color: rgba(255,138,0,0.4); color: var(--accent); animation: ladderPulse 2s ease-in-out infinite; width: 48px; height: 48px; font-size: 24px; }
@keyframes ladderPulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

/* Final step */
.ladder__step--final {
  position: relative;
  padding: 36px 32px 32px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,138,0,0.18), rgba(255,138,0,0.03) 70%);
  border: 1.5px solid rgba(255,138,0,0.5);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255,138,0,0.25), 0 0 0 1px rgba(255,138,0,0.12) inset;
  overflow: hidden;
  isolation: isolate;
}
.ladder__glow { position: absolute; inset: -30% -20% auto; height: 80%; z-index: -1; background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(255,138,0,0.22), transparent 75%); filter: blur(30px); pointer-events: none; }

.ladder__final-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(255,138,0,0.15);
  border: 1px solid rgba(255,138,0,0.45);
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: #FFD9A8;
  margin-bottom: 14px;
}
.ladder__final-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: tensaoPulse 2s ease-in-out infinite; }
.ladder__final-val {
  display: inline-block;
  font-size: clamp(40px, 5.5vw, 56px); font-weight: 900; letter-spacing: -0.035em; line-height: 1;
  background: linear-gradient(180deg, #FFFFFF, #FFB257);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 40px rgba(255,138,0,0.45);
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
  vertical-align: baseline;
}
.ladder__final-parcela { font-size: clamp(16px, 2vw, 20px); color: var(--fg); font-weight: 700; letter-spacing: -0.01em; }
.ladder__final-alt { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }

/* Final grid 2 cols (preço | bônus) */
.ladder__final-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; margin-top: 10px; text-align: left; }
.ladder__final-price { }

/* Inversão: 12× R$ 410,95 como primary, R$ 3.997 como secondary */
.ladder__final-val-small {
  display: inline-block;
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #FFFFFF, #FFB257);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 40px rgba(255,138,0,0.4);
  margin-right: 6px;
  vertical-align: baseline;
}
.ladder__final-bonus {
  padding: 20px 22px;
  background: rgba(255,138,0,0.08);
  border: 1px solid rgba(255,138,0,0.35);
  border-radius: 14px;
}
.ladder__final-bonus-title { font-size: 11px; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.ladder__final-bonus-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.ladder__final-bonus-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg); font-weight: 600; letter-spacing: -0.005em; }
.ladder__final-bonus-list li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.ladder__final-bonus-val { font-size: 13px; color: var(--fg-muted); padding-top: 12px; border-top: 1px dashed rgba(255,138,0,0.22); }
.ladder__final-bonus-val strong { color: #FFD9A8; font-weight: 800; font-size: 15px; letter-spacing: -0.01em; }

/* Variação "não está incluso" (substitui bônus mantido) */
.ladder__final-bonus--out {
  background: rgba(255,255,255,0.025);
  border: 1px dashed rgba(230,130,130,0.32);
}
.ladder__final-bonus--out .ladder__final-bonus-title { color: rgba(230,140,140,0.95); letter-spacing: 0.28em; }
.ladder__final-bonus--out .ladder__final-bonus-list li { color: rgba(255,255,255,0.72); font-weight: 500; }
.ladder__final-bonus--out .ladder__final-bonus-list li svg { color: rgba(230,110,110,0.8); }
.ladder__final-bonus--out .ladder__final-bonus-val { border-top-color: rgba(255,255,255,0.08); color: var(--fg-muted); }
.ladder__final-bonus--out .ladder__final-bonus-val strong { color: var(--fg); }

/* Reforço abaixo do card final */
.ladder__final-reinforce {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(255,138,0,0.06);
  border: 1px solid rgba(255,138,0,0.22);
  border-radius: 12px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.ladder__final-reinforce svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.ladder__final-reinforce strong { color: var(--fg); font-weight: 700; }

/* Linha destacada na lista "não está incluso" */
.not-included__list--hi {
  background: rgba(255,138,0,0.08) !important;
  border: 1px solid rgba(255,138,0,0.3);
}
.not-included__list--hi span { color: var(--accent) !important; }
.not-included__list--hi em { color: var(--fg-muted) !important; }

@media (max-width: 720px) {
  .ladder__final-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .ladder__final-bonus-list li { justify-content: center; }
}

/* Atenção: o que NÃO está incluso */
.not-included {
  margin-top: 32px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.025);
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 14px;
  transition: all 0.35s var(--ease);
}
.not-included:hover { border-color: rgba(255,138,0,0.3); background: rgba(255,138,0,0.03); }
.not-included__head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  font-size: 13px; font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.not-included__head svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.not-included__head strong { color: var(--fg); font-weight: 800; }
.not-included__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.not-included__list li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  font-size: 13px;
  flex-wrap: wrap;
}
.not-included__list span { font-weight: 700; color: var(--fg); }
.not-included__list em { font-style: normal; font-size: 12px; color: var(--fg-dim); letter-spacing: 0.01em; }

/* CTA final (botão grande) */
.ladder__cta { margin-top: 44px; text-align: center; }
.ladder__cta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 22px 44px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2.2vw, 22px); font-weight: 800; letter-spacing: -0.015em;
  color: #1a0d00;
  text-decoration: none;
  background: linear-gradient(180deg, #FFAA33, #FF7A00);
  border-radius: 16px;
  box-shadow: 0 18px 40px -14px rgba(255,138,0,0.65), 0 0 0 1px rgba(255,255,255,0.15) inset;
  transition: all 0.3s var(--ease);
}
.ladder__cta-btn:hover { transform: translateY(-2px); box-shadow: 0 24px 52px -14px rgba(255,138,0,0.8), 0 0 0 1px rgba(255,255,255,0.2) inset; }
.ladder__cta-btn svg { width: 20px; height: 20px; transition: transform 0.3s var(--ease); }
.ladder__cta-btn:hover svg { transform: translateX(5px); }
.ladder__cta-note { margin-top: 22px; font-size: 14px; color: var(--fg-muted); line-height: 1.55; max-width: 520px; margin-left: auto; margin-right: auto; }
.ladder__cta-note strong { color: var(--fg); font-weight: 700; }

/* Closer-only checkout options (discreto) */
.closer-opts {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.04em;
  opacity: 0.32;
  transition: opacity 0.25s var(--ease);
}
.closer-opts:hover { opacity: 0.85; }
.closer-opts__btn {
  color: var(--fg-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s var(--ease);
}
.closer-opts__btn:hover { color: var(--accent); background: rgba(255,138,0,0.06); }
.closer-opts__sep { color: var(--fg-dim); user-select: none; }

/* Bonus compare dentro do final step */
.bonus-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.bonus-card {
  position: relative;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px 16px;
  border-radius: 12px;
  transition: all 0.35s var(--ease);
  text-align: left;
}
.bonus-card__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
}
.bonus-card__icon svg { width: 16px; height: 16px; }
.bonus-card__body { flex: 1; min-width: 0; }
.bonus-card__label { font-size: 13px; font-weight: 800; letter-spacing: -0.005em; line-height: 1.2; margin-bottom: 4px; }
.bonus-card__desc { font-size: 12px; color: var(--fg-muted); line-height: 1.45; }
.bonus-card__desc strong { color: var(--fg); font-weight: 700; }

/* OFF: sem bônus — desbotado, com X */
.bonus-card--off {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(230,100,100,0.28);
  opacity: 0.62;
}
.bonus-card--off .bonus-card__icon { background: rgba(230,100,100,0.1); border: 1px solid rgba(230,100,100,0.35); color: rgba(255,140,140,0.9); }
.bonus-card--off .bonus-card__label { color: rgba(255,255,255,0.72); text-decoration: line-through; text-decoration-color: rgba(230,100,100,0.45); text-decoration-thickness: 1.5px; }
.bonus-card--off .bonus-card__desc { color: rgba(255,255,255,0.42); }

/* ON: com bônus — destaque laranja */
.bonus-card--on {
  background: linear-gradient(180deg, rgba(255,138,0,0.14), rgba(255,138,0,0.04));
  border: 1.5px solid rgba(255,138,0,0.55);
  box-shadow: 0 14px 32px -14px rgba(255,138,0,0.4), 0 0 0 1px rgba(255,138,0,0.12) inset;
}
.bonus-card--on .bonus-card__icon { background: linear-gradient(180deg, rgba(255,138,0,0.28), rgba(255,138,0,0.1)); border: 1px solid rgba(255,138,0,0.6); color: #FFD9A8; box-shadow: 0 0 18px rgba(255,138,0,0.45); }
.bonus-card--on .bonus-card__label { color: #fff; }
.bonus-card--on .bonus-card__tag {
  position: absolute;
  top: -10px; right: 14px;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 9px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255,138,0,0.65);
}

@media (max-width: 640px) {
  .bonus-compare { grid-template-columns: 1fr; }
  .ladder__step--final { padding: 28px 22px 22px; }
  .ladder__step { padding: 22px 20px; }
}

/* ═══════ GARANTIA ═══════ */
.garantia {
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 640px;
  margin: 0 auto 60px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.garantia__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,138,0,0.15), rgba(255,138,0,0.05));
  border: 1px solid var(--accent-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.garantia__icon svg { width: 24px; height: 24px; color: var(--accent); }
.garantia__title { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.garantia__text { font-size: 13px; color: var(--fg-muted); margin-top: 4px; line-height: 1.55; }

/* ═══════ CTA FINAL ═══════ */
.cta-final {
  text-align: center;
  padding: 0 20px;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final__logo { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 32px; display: block; filter: drop-shadow(0 0 30px var(--accent-glow)); }
.cta-final__title { font-size: clamp(36px, 6vw, 64px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 22px; }
.cta-final__sub { font-size: clamp(16px, 2vw, 18px); color: var(--fg-muted); max-width: 520px; margin: 0 auto; line-height: 1.6; }

/* ═══════ DIVIDER ═══════ */
.divider { height: 1px; background: linear-gradient(to right, transparent, var(--border-strong), transparent); }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 900px) {
  .dobra { padding: 60px 0 80px; }
  .about { grid-template-columns: 1fr; gap: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about__photo { max-width: 260px; margin: 0 auto; }
  .pilar { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .pilar__num { width: 52px; height: 52px; font-size: 18px; border-radius: 16px; }
  .obj, .obj--reverse { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .obj--reverse .obj__img-wrap { order: 0; }
  .obj--reverse .obj__content { order: 0; }
  .obj__img-wrap { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .dobra { padding: 48px 0 64px; }
  .brand-bar__inner { padding: 12px 20px; }
  .brand-bar__meta { display: none; }
  .stepper__btn { padding: 12px 14px; gap: 8px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__cell { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stats__cell:nth-child(2) { border-right: none; }
  .stats__cell:nth-child(3), .stats__cell:nth-child(4) { border-bottom: none; }
  .stats__cell:last-child { border-right: none; }
  .preco { padding: 40px 24px; }
  .garantia { flex-direction: column; text-align: center; padding: 24px; }
  .pilar--escala::after { position: static; display: inline-block; margin-bottom: 12px; }
  .mural { grid-template-columns: repeat(2, 1fr); }
  .page-nav { flex-direction: column-reverse; gap: 12px; padding: 28px 20px 0; }
  .pn-btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .blob { display: none; }
  html { scroll-behavior: auto; }
}
