:root {
  --bg: #0b0b0b;
  --card: #151515;
  --card-soft: #1c1c1c;
  --line: #2a2a2a;
  --line-bright: rgba(255, 255, 255, .16);
  --text: #ffffff;
  --muted: #b8b8b8;
  --muted-soft: rgba(255, 255, 255, .58);
  --fint: #e87800;
  --fint-bright: #ff9a1f;
  --green: #27d68b;
  --yellow: #ffd36d;
  --red: #ff5d5d;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .46);
  --max: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(232, 120, 0, .18), transparent 28rem),
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, .08), transparent 20rem),
    linear-gradient(180deg, #0b0b0b 0%, #11100f 48%, #090909 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .18;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

button,
a {
  font-family: inherit;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(44px);
  opacity: .42;
}

.ambient-one {
  width: 330px;
  height: 330px;
  right: -120px;
  top: 100px;
  background: rgba(232, 120, 0, .34);
}

.ambient-two {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: 110px;
  background: rgba(39, 214, 139, .13);
}

.app-shell {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 54px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: auto;
  display: block;
  object-fit: contain;
}

.screen {
  display: none;
  animation: fadeIn .38s ease both;
}

.screen.active {
  display: block;
}

.hero-panel,
.question-card,
.analysis-panel,
.result-hero,
.section-card,
.resume-card {
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 120, 0, .15), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .072), rgba(255, 255, 255, .028));
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero-panel {
  min-height: 500px;
  padding: clamp(26px, 5vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(39, 214, 139, .13), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(255, 154, 31, .16), transparent 30%);
  opacity: .92;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(232, 120, 0, .24);
  border-radius: 999px;
  right: -120px;
  bottom: -140px;
  box-shadow: inset 0 0 60px rgba(232, 120, 0, .12);
}

.hero-panel > * {
  position: relative;
  z-index: 2;
}

.kicker,
.result-kicker,
.modal-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(232, 120, 0, .36);
  background: rgba(232, 120, 0, .12);
  color: #ffc180;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.start-screen .kicker {
  border-color: rgba(39, 214, 139, .34);
  background:
    linear-gradient(135deg, rgba(39, 214, 139, .16), rgba(232, 120, 0, .11));
  color: #d9ffe9;
  box-shadow: 0 0 0 1px rgba(39, 214, 139, .06), 0 12px 34px rgba(39, 214, 139, .10);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 20px rgba(39, 214, 139, .85);
  animation: heroPulse 1.65s ease-in-out infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: .94;
  letter-spacing: -.065em;
}

.hero-subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.46;
  margin-bottom: 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
}

.start-screen .trust-row span {
  border-color: rgba(255, 255, 255, .14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.start-screen .trust-row span:nth-child(3) {
  border-color: rgba(39, 214, 139, .22);
  background: rgba(39, 214, 139, .075);
}

.start-screen .trust-row svg {
  color: #ffc180;
}

svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.primary-action,
.ghost-action {
  appearance: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.primary-action {
  position: relative;
  z-index: 2;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb45d, var(--fint) 52%, #ff8a00);
  color: #100a05;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(232, 120, 0, .28);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.start-screen .primary-action {
  min-height: 58px;
  padding-inline: 28px;
  background:
    linear-gradient(135deg, #ffd083 0%, #ff9a1f 42%, #e87800 100%);
  box-shadow:
    0 20px 48px rgba(232, 120, 0, .34),
    0 0 0 5px rgba(232, 120, 0, .06);
  animation: ctaBreath 2.4s ease-in-out infinite;
}

.primary-action:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 22px 54px rgba(232, 120, 0, .36);
}

.primary-action.compact {
  min-height: 50px;
  padding: 0 20px;
}

.ghost-action {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  font-weight: 850;
}

.restart-diagnosis-action {
  margin-top: 12px;
  min-height: 44px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .045);
}

.restart-diagnosis-action:hover {
  border-color: rgba(255, 196, 117, .26);
  color: #ffc180;
}

.mentor-line {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.55;
}

.progress-wrap {
  position: sticky;
  top: 0;
  z-index: 8;
  padding: 8px 0 10px;
  background: linear-gradient(180deg, rgba(11, 11, 11, .96), rgba(11, 11, 11, .76), transparent);
  backdrop-filter: blur(14px);
}

.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.progress-meta strong {
  color: rgba(255, 255, 255, .86);
}

.progress-track,
.analysis-rail {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.progress-bar,
#analysisRail {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fint), #ffd083);
  box-shadow: 0 0 24px rgba(232, 120, 0, .42);
  transition: width .42s ease;
}

.question-card {
  padding: clamp(20px, 3.8vw, 34px);
  min-height: auto;
}

.question-count {
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .28);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
}

.question-card h2 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.question-card p {
  max-width: 690px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 20px;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.answer-card {
  min-height: 84px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  color: var(--text);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.answer-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(232, 120, 0, .72);
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 120, 0, .16), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .26);
}

.answer-card.selected {
  border-color: var(--fint-bright);
  box-shadow: 0 0 0 1px rgba(232, 120, 0, .3), 0 20px 55px rgba(232, 120, 0, .14);
}

.answer-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.22;
  letter-spacing: -.02em;
}

.answer-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.36;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 30;
  width: min(520px, calc(100% - 32px));
  padding: 18px 20px;
  transform: translate(-50%, 28px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(232, 120, 0, .38);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 120, 0, .2), transparent 42%),
    rgba(18, 18, 18, .92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  backdrop-filter: blur(18px);
  transition: opacity .25s ease, transform .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast span {
  display: block;
  margin-bottom: 4px;
  color: #ffc180;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.toast p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  line-height: 1.45;
  font-size: 14px;
}

.analysis-panel {
  min-height: 580px;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
}

.orbital {
  position: relative;
  width: 136px;
  height: 136px;
  margin-bottom: 34px;
  border-radius: 999px;
  border: 1px solid rgba(232, 120, 0, .26);
  box-shadow: inset 0 0 55px rgba(232, 120, 0, .08);
}

.orbital span {
  position: absolute;
  inset: 15px;
  border-radius: 999px;
  border: 2px solid transparent;
  border-top-color: var(--fint-bright);
  animation: spin 1.6s linear infinite;
}

.orbital span:nth-child(2) {
  inset: 30px;
  border-top-color: rgba(255, 255, 255, .7);
  animation-duration: 2.2s;
  animation-direction: reverse;
}

.orbital span:nth-child(3) {
  inset: 48px;
  border-top-color: var(--green);
  animation-duration: 1.2s;
}

.analysis-panel h2 {
  width: min(640px, 100%);
  min-height: 84px;
  margin: 0 auto 26px;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.analysis-rail {
  width: min(460px, 100%);
}

.result-hero {
  padding: clamp(26px, 5vw, 46px);
  margin-bottom: 18px;
}

.result-hero h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: .98;
  letter-spacing: -.055em;
}

.result-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 0;
}

.result-content {
  display: grid;
  gap: 16px;
}

.section-card {
  padding: clamp(22px, 4vw, 34px);
}

.section-card.highlight {
  border-color: rgba(232, 120, 0, .38);
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 120, 0, .18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .03));
}

.section-label {
  display: block;
  color: #ffc180;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-card h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.section-card p {
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.58;
  margin-bottom: 0;
}

.stage-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.stage-icon,
.metric-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--text);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
}

.stage-icon svg,
.metric-icon svg {
  width: 30px;
  height: 30px;
}

.stage-icon.red { color: var(--red); }
.stage-icon.yellow { color: var(--yellow); }
.stage-icon.green { color: var(--green); }
.stage-icon.tree { color: #80e6a6; }

.check-grid,
.plan-grid,
.locked-grid,
.objective-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.check-item,
.plan-item,
.metric-card,
.journey-item,
.objective-card {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .052);
  padding: 18px;
}

.check-item {
  color: rgba(255, 255, 255, .82);
  line-height: 1.45;
}

.check-item::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(39, 214, 139, .6);
}

.score-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.score-big {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 120, 0, .18), transparent 44%),
    rgba(255, 255, 255, .055);
  border: 1px solid rgba(232, 120, 0, .28);
}

.score-big > strong {
  font-size: clamp(56px, 9vw, 86px);
  line-height: .9;
  letter-spacing: -.06em;
}

.score-big span {
  color: var(--muted);
  font-weight: 900;
}

.metrics {
  display: grid;
  gap: 10px;
}

.metric-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.metric-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, .82);
  font-weight: 900;
}

.metric-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
}

.metric-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fint), #ffd083);
  transition: width 1.4s cubic-bezier(.2, .8, .2, 1);
}

.inertia-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.inertia-list span {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(232, 120, 0, .24);
  background: rgba(232, 120, 0, .075);
  color: rgba(255, 255, 255, .82);
}

.journey {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.journey-item {
  min-height: 114px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.journey-item strong {
  font-size: 14px;
}

.journey-item span {
  color: var(--muted-soft);
  font-size: 12px;
  font-weight: 800;
}

.journey-item.current {
  border-color: rgba(232, 120, 0, .72);
  background: rgba(232, 120, 0, .12);
  box-shadow: 0 0 0 1px rgba(232, 120, 0, .18), 0 18px 44px rgba(232, 120, 0, .12);
}

.plan-item small {
  display: block;
  color: #ffc180;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.plan-item strong {
  display: block;
  color: rgba(255, 255, 255, .88);
  line-height: 1.35;
}

.plan-progress {
  margin-top: 18px;
}

.progress-number {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}

.progress-number strong {
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -.055em;
}

.locked-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.locked-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 120, 0, .13), transparent 42%),
    rgba(255, 255, 255, .055);
  padding: 18px;
}

.locked-card h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.25;
}

.locked-preview {
  position: relative;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.45;
  filter: blur(2.8px);
  user-select: none;
}

.locked-card::after {
  content: "";
  position: absolute;
  inset: 62px 0 0;
  background: linear-gradient(180deg, rgba(21, 21, 21, .12), rgba(21, 21, 21, .86) 58%, rgba(21, 21, 21, .98));
  pointer-events: none;
}

.lock-badge {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .42);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #ffc180;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.objective-card {
  min-height: 86px;
  cursor: pointer;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  font-weight: 900;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.objective-card:hover,
.objective-card.selected {
  transform: translateY(-3px);
  border-color: rgba(232, 120, 0, .7);
  background: rgba(232, 120, 0, .12);
}

.cta-panel {
  display: grid;
  gap: 16px;
}

.cta-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.regulatory {
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 14px;
  margin-top: 18px;
}

/* V1.1 - Resultado mais emocional, escaneável e orientado à continuidade */
.mentor-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(232, 120, 0, .28);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 196, 117, .14), transparent 30%),
    radial-gradient(circle at 96% 0%, rgba(232, 120, 0, .16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .082), rgba(255, 255, 255, .028));
}

.mentor-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  bottom: -130px;
  border: 1px solid rgba(232, 120, 0, .18);
  border-radius: 999px;
  box-shadow: inset 0 0 60px rgba(232, 120, 0, .08);
  pointer-events: none;
}

.quiet-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
}

.diagnosis-card h3,
.attention-card h3 {
  font-size: clamp(28px, 4vw, 42px);
}

.mentor-split,
.attention-layout,
.what-now-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px);
  gap: 20px;
  align-items: center;
}

.mentor-note {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background: rgba(0, 0, 0, .18);
}

.mentor-note svg {
  color: #ffc180;
}

.mentor-note strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.mentor-note span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.45;
}

.stage-result-card {
  border-color: rgba(255, 255, 255, .13);
}

.stage-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stage-summary-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
}

.stage-summary-grid small {
  display: block;
  margin-bottom: 7px;
  color: #ffc180;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stage-summary-grid strong {
  display: block;
  color: rgba(255, 255, 255, .84);
  line-height: 1.35;
}

.check-item,
.plan-item {
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.check-item:hover,
.plan-item:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 120, 0, .28);
  background: rgba(255, 255, 255, .07);
}

.attention-layout,
.what-now-inner,
.positive-strip {
  grid-template-columns: auto 1fr;
}

.attention-layout .metric-icon,
.positive-strip svg,
.what-now-orbit {
  color: #ffc180;
}

.positive-strip {
  display: grid;
  gap: 16px;
  align-items: start;
}

.positive-strip svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(39, 214, 139, .26);
  border-radius: 14px;
  background: rgba(39, 214, 139, .08);
}

.inertia-card {
  border-color: rgba(232, 120, 0, .36);
  background:
    radial-gradient(circle at 88% 8%, rgba(232, 120, 0, .22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
}

.inertia-card .inertia-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.relief-card {
  border-color: rgba(39, 214, 139, .2);
  background:
    radial-gradient(circle at 100% 0%, rgba(39, 214, 139, .12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
}

.short-bullets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.short-bullets span {
  padding: 16px;
  border: 1px solid rgba(39, 214, 139, .16);
  border-radius: 18px;
  background: rgba(39, 214, 139, .055);
  color: rgba(255, 255, 255, .78);
  line-height: 1.4;
}

.emotional-card h3 {
  font-size: clamp(30px, 5vw, 48px);
}

.what-now-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 196, 117, .46);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 196, 117, .22), transparent 32%),
    radial-gradient(circle at 100% 8%, rgba(232, 120, 0, .26), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, .092), rgba(255, 255, 255, .03));
  box-shadow: 0 30px 90px rgba(232, 120, 0, .12), var(--shadow);
}

.what-now-card h3 {
  font-size: clamp(30px, 4.8vw, 50px);
}

.what-now-card p {
  max-width: 680px;
  font-size: 18px;
  color: rgba(255, 255, 255, .82);
}

.what-now-orbit {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 196, 117, .34);
  border-radius: 26px;
  background: rgba(232, 120, 0, .12);
  box-shadow: inset 0 0 28px rgba(232, 120, 0, .08), 0 16px 38px rgba(0, 0, 0, .18);
}

.what-now-orbit svg {
  width: 36px;
  height: 36px;
}

.locked-section {
  border-color: rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 120, 0, .12), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .07), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
}

.premium-locked-card {
  min-height: 218px;
  border-color: rgba(255, 255, 255, .12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035)),
    radial-gradient(circle at 100% 0%, rgba(232, 120, 0, .18), transparent 42%);
  padding: 20px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.premium-locked-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 196, 117, .36);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .26);
}

.locked-step {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 196, 117, .24);
  border-radius: 999px;
  color: #ffc180;
  background: rgba(232, 120, 0, .08);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.premium-locked-card h4 {
  font-size: 16px;
}

.premium-locked-card .locked-preview {
  font-size: 13.5px;
  filter: blur(2px);
}

.premium-locked-card::after {
  inset: 84px 0 0;
  background: linear-gradient(180deg, rgba(21, 21, 21, .05), rgba(21, 21, 21, .68) 52%, rgba(21, 21, 21, .98));
}

/* V1.2 - Emoção, progressão e desejo de continuidade */
.stage-reveal-card {
  position: relative;
  animation: stageReveal .86s cubic-bezier(.18, .82, .22, 1) both;
  box-shadow: 0 30px 92px rgba(232, 120, 0, .13), var(--shadow);
}

.stage-reveal-card .stage-icon {
  animation: stageGlow 1.8s ease both;
}

.stage-reveal-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0%, rgba(255, 196, 117, .22), transparent 28%);
  opacity: .62;
  pointer-events: none;
}

.score-live-card {
  border-color: rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 120, 0, .12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .064), rgba(255, 255, 255, .026));
}

.score-big {
  position: relative;
  overflow: hidden;
}

.score-big::after {
  content: "";
  position: absolute;
  inset: auto -30% -45% -30%;
  height: 120px;
  background: radial-gradient(circle, rgba(232, 120, 0, .22), transparent 68%);
  pointer-events: none;
}

.score-big strong {
  position: relative;
  z-index: 2;
  animation: scoreArrive .95s ease both;
}

.score-big em {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 12px;
  color: #ffc180;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
}

.journey-card {
  overflow: hidden;
}

.journey-map {
  position: relative;
  margin-top: 22px;
  padding-top: 12px;
}

.journey-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
}

.journey-line span {
  display: block;
  width: var(--journey-progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fint), #ffd083);
  box-shadow: 0 0 22px rgba(232, 120, 0, .34);
  animation: journeyFill 1.2s cubic-bezier(.2, .8, .2, 1) both;
}

.journey-card .journey {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.journey-dot {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .22);
  filter: grayscale(.15);
}

.journey-item.completed .journey-dot {
  border-color: rgba(232, 120, 0, .32);
  background: rgba(232, 120, 0, .11);
}

.journey-item.current .journey-dot {
  transform: scale(1.08);
  border-color: rgba(255, 196, 117, .62);
  box-shadow: 0 0 0 4px rgba(232, 120, 0, .08), 0 16px 34px rgba(232, 120, 0, .18);
}

.journey-item.current span {
  color: #ffc180;
}

.premium-locked-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 48px rgba(0, 0, 0, .18);
}

.locked-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 14px;
  filter: blur(2.4px);
  opacity: .52;
}

.locked-lines span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}

.locked-lines span:nth-child(2) {
  width: 78%;
}

.locked-lines span:nth-child(3) {
  width: 58%;
}

.first-step-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(39, 214, 139, .22);
  background:
    radial-gradient(circle at 0% 0%, rgba(39, 214, 139, .12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .064), rgba(255, 255, 255, .026));
}

.continuation-strip,
.cta-bridge {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.continuation-strip span,
.continuation-strip strong,
.cta-bridge span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-weight: 900;
}

.continuation-strip strong {
  color: #ffc180;
  border-color: rgba(232, 120, 0, .28);
  background: rgba(232, 120, 0, .1);
}

.cta-continuation-card {
  border-color: rgba(255, 196, 117, .42);
}

.cta-bridge {
  margin: 4px 0 4px;
}

@keyframes stageReveal {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.975);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes stageGlow {
  0% { box-shadow: 0 0 0 rgba(232, 120, 0, 0); }
  45% { box-shadow: 0 0 0 8px rgba(232, 120, 0, .08), 0 0 38px rgba(232, 120, 0, .24); }
  100% { box-shadow: 0 0 0 4px rgba(232, 120, 0, .04), 0 0 20px rgba(232, 120, 0, .12); }
}

@keyframes scoreArrive {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes journeyFill {
  from { width: 0; }
  to { width: var(--journey-progress); }
}

/* V1.2B - impacto, mapa e curiosidade mais perceptiveis */
.diagnosis-moment {
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-color: rgba(255, 196, 117, .36);
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 196, 117, .20), transparent 31%),
    radial-gradient(circle at 10% 90%, rgba(39, 214, 139, .10), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .078), rgba(255, 255, 255, .022));
  box-shadow:
    0 34px 120px rgba(0, 0, 0, .34),
    0 0 0 1px rgba(255, 196, 117, .08),
    0 0 82px rgba(232, 120, 0, .12);
  animation: diagnosisMomentIn 1.05s cubic-bezier(.16, .86, .23, 1) both;
}

.diagnosis-moment::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .055);
  pointer-events: none;
}

.diagnosis-moment-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: clamp(24px, 5vw, 46px);
  align-items: center;
}

.stage-seal {
  width: clamp(122px, 15vw, 176px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    radial-gradient(circle at 34% 18%, rgba(255, 255, 255, .18), transparent 34%),
    linear-gradient(145deg, rgba(232, 120, 0, .23), rgba(39, 214, 139, .09));
  box-shadow:
    0 0 0 8px rgba(232, 120, 0, .055),
    0 26px 62px rgba(0, 0, 0, .28),
    0 0 74px rgba(232, 120, 0, .25);
  animation: stageSealPulse 2.4s ease both;
}

.stage-seal span {
  position: absolute;
  transform: translate(-44px, -44px);
  font-size: 28px;
}

.stage-seal svg {
  width: 62px;
  height: 62px;
  color: #ffd29a;
  filter: drop-shadow(0 8px 24px rgba(232, 120, 0, .28));
}

.result-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 117, .28);
  background: rgba(232, 120, 0, .10);
  color: #ffc180;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.stage-moment-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: .94;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.stage-moment-copy p {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
  color: rgba(255, 255, 255, .82);
}

.diagnosis-moment .stage-summary-grid {
  margin-top: 28px;
}

.diagnosis-moment .stage-summary-grid > div {
  min-height: 104px;
  border-color: rgba(255, 196, 117, .20);
  background: rgba(0, 0, 0, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.score-theater-card {
  padding: clamp(28px, 4vw, 48px);
  border-color: rgba(39, 214, 139, .20);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
}

.score-theater-card .score-layout {
  grid-template-columns: minmax(300px, .9fr) 1.1fr;
  gap: clamp(22px, 4vw, 42px);
}

.score-theater-card .score-big {
  min-height: 328px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 44px);
  border-color: rgba(255, 196, 117, .22);
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 196, 117, .18), transparent 35%),
    rgba(0, 0, 0, .18);
}

.score-theater-card .score-big strong {
  font-size: clamp(72px, 10vw, 132px);
  line-height: .9;
  letter-spacing: -.08em;
  text-shadow: 0 18px 44px rgba(0, 0, 0, .32);
}

.score-theater-card .score-big > span {
  margin-top: 14px;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.score-theater-card .score-big > em {
  margin-top: 12px;
  font-size: 18px;
}

.score-interpretation {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(39, 214, 139, .22);
  background: rgba(39, 214, 139, .075);
}

.score-interpretation small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.score-interpretation strong {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.score-theater-card .metrics {
  gap: 16px;
}

.score-theater-card .metric-card {
  padding: 20px;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .055);
}

.score-theater-card .metric-track {
  height: 11px;
  margin-top: 14px;
}

.score-theater-card .metric-fill {
  transition: width 1.75s cubic-bezier(.16, .8, .22, 1);
  box-shadow: 0 0 22px rgba(39, 214, 139, .22);
}

.metric-reading {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.journey-map-card-v12b {
  background:
    radial-gradient(circle at 15% 10%, rgba(39, 214, 139, .10), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .068), rgba(255, 255, 255, .022));
}

.journey-map-v12b {
  margin-top: 30px;
  padding: 34px 8px 10px;
}

.journey-track-v12b {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 65px;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .045);
}

.journey-track-v12b span {
  display: block;
  width: var(--journey-progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #27d68b, var(--fint), #ffd29a);
  box-shadow: 0 0 28px rgba(232, 120, 0, .34);
  animation: journeyFill 1.45s cubic-bezier(.16, .82, .24, 1) both;
}

.journey-map-v12b .journey {
  gap: 14px;
}

.journey-node {
  min-height: 174px;
  justify-content: flex-start;
  padding: 22px 14px;
  transition: transform .35s ease, opacity .35s ease, border-color .35s ease;
}

.journey-node .journey-dot {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border-radius: 24px;
  font-size: 24px;
  background: rgba(0, 0, 0, .30);
}

.journey-node .journey-dot svg {
  width: 22px;
  height: 22px;
}

.journey-node.completed {
  opacity: .88;
  border-color: rgba(39, 214, 139, .20);
}

.journey-node.completed .journey-dot {
  color: #cffff0;
  border-color: rgba(39, 214, 139, .32);
  background: rgba(39, 214, 139, .13);
}

.journey-node.current {
  transform: translateY(-10px) scale(1.045);
  border-color: rgba(255, 196, 117, .46);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 117, .18), transparent 55%),
    rgba(232, 120, 0, .105);
  box-shadow:
    0 22px 62px rgba(232, 120, 0, .18),
    0 0 0 1px rgba(255, 196, 117, .08);
}

.journey-node.current .journey-dot {
  border-color: rgba(255, 196, 117, .62);
  box-shadow: 0 0 0 7px rgba(232, 120, 0, .08), 0 18px 38px rgba(232, 120, 0, .22);
  animation: stageSealPulse 2.2s ease both;
}

.journey-node.future {
  opacity: .46;
  filter: saturate(.72);
}

.journey-node strong {
  font-size: 15px;
}

.journey-node .node-status {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  margin: 10px auto 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.journey-node.current .node-status {
  color: #201306;
  background: #ffc180;
}

.locked-section {
  border-color: rgba(255, 196, 117, .20);
  background:
    radial-gradient(circle at 80% 0%, rgba(232, 120, 0, .12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .064), rgba(255, 255, 255, .02));
}

.premium-locked-card {
  min-height: 288px;
  padding: 24px;
  border-color: rgba(255, 196, 117, .18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .028)),
    radial-gradient(circle at 20% 0%, rgba(255, 196, 117, .10), transparent 44%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 24px 64px rgba(0, 0, 0, .28);
}

.premium-locked-card::after {
  inset: 122px 0 0;
  background:
    linear-gradient(180deg, rgba(21, 21, 21, .02), rgba(21, 21, 21, .72) 48%, rgba(21, 21, 21, .98)),
    radial-gradient(circle at 50% 55%, rgba(232, 120, 0, .12), transparent 40%);
}

.locked-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.premium-locked-card .lock-badge {
  position: static;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 15px;
  color: #ffc180;
  background: rgba(232, 120, 0, .14);
}

.premium-locked-card .lock-badge svg {
  width: 18px;
  height: 18px;
}

.premium-locked-card h4 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.16;
}

.locked-content-shell {
  position: relative;
  z-index: 2;
  min-height: 130px;
  overflow: hidden;
}

.premium-locked-card .locked-preview {
  max-width: 92%;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .76);
  filter: none;
  font-size: 14px;
  line-height: 1.45;
}

.locked-secret {
  display: grid;
  gap: 8px;
  filter: blur(3.8px);
  opacity: .72;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .62) 42%, transparent 100%);
}

.locked-secret span {
  display: block;
  min-height: 18px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 850;
}

.locked-curiosity {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: block;
  padding: 12px;
  border-radius: 15px;
  border: 1px solid rgba(255, 196, 117, .20);
  background: rgba(0, 0, 0, .36);
  color: #ffc180;
  font-size: 12px;
  line-height: 1.25;
}

.transition-card-v12b {
  padding: clamp(30px, 5vw, 54px);
  border-color: rgba(39, 214, 139, .34);
  background:
    radial-gradient(circle at 8% 15%, rgba(39, 214, 139, .18), transparent 34%),
    radial-gradient(circle at 84% 80%, rgba(255, 196, 117, .13), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .024));
  box-shadow: 0 30px 92px rgba(0, 0, 0, .26);
}

.transition-copy h3 {
  max-width: 880px;
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.05em;
}

.transition-copy p {
  max-width: 880px;
  color: #ffc180;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.12;
}

.transition-copy small {
  display: block;
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .66);
  font-size: 15px;
  line-height: 1.55;
}

.cta-continuation-card {
  padding: clamp(30px, 5vw, 54px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 117, .18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .024));
}

.cta-momentum {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 18px;
}

.cta-momentum div {
  min-height: 124px;
  padding: 17px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .18);
}

.cta-momentum small {
  color: #ffc180;
  font-size: 11px;
  font-weight: 950;
}

.cta-momentum strong,
.cta-momentum span {
  display: block;
}

.cta-momentum strong {
  margin: 10px 0 8px;
  font-size: 16px;
  line-height: 1.2;
}

.cta-momentum span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.4;
}

@keyframes diagnosisMomentIn {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(.955);
    filter: blur(14px);
  }
  58% {
    opacity: 1;
    transform: translateY(-4px) scale(1.012);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes stageSealPulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 120, 0, 0), 0 20px 50px rgba(0, 0, 0, .20); }
  45% { box-shadow: 0 0 0 12px rgba(232, 120, 0, .08), 0 0 78px rgba(232, 120, 0, .30), 0 24px 64px rgba(0, 0, 0, .26); }
  100% { box-shadow: 0 0 0 8px rgba(232, 120, 0, .045), 0 0 48px rgba(232, 120, 0, .20), 0 24px 64px rgba(0, 0, 0, .24); }
}

/* V1.2C - refinamento: emocao por movimento, nao por volume */
.diagnosis-moment {
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow:
    0 26px 86px rgba(0, 0, 0, .28),
    0 0 0 1px rgba(255, 196, 117, .07),
    0 0 58px rgba(232, 120, 0, .10);
}

.diagnosis-moment::after {
  inset: 14px;
  border-radius: 24px;
}

.diagnosis-moment-grid {
  grid-template-columns: minmax(104px, 140px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 34px);
}

.stage-seal {
  width: clamp(104px, 11vw, 136px);
  border-radius: 34px;
  box-shadow:
    0 0 0 6px rgba(232, 120, 0, .045),
    0 20px 48px rgba(0, 0, 0, .24),
    0 0 48px rgba(232, 120, 0, .18);
}

.stage-seal span {
  transform: translate(-34px, -34px);
  font-size: 22px;
}

.stage-seal svg {
  width: 48px;
  height: 48px;
}

.result-kicker {
  margin-bottom: 10px;
  padding: 7px 10px;
  font-size: 11px;
  letter-spacing: .06em;
}

.stage-moment-copy h3 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.stage-moment-copy p {
  max-width: 720px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.48;
}

.diagnosis-moment .stage-summary-grid {
  margin-top: 22px;
  gap: 12px;
}

.diagnosis-moment .stage-summary-grid > div {
  min-height: 84px;
  padding: 16px;
}

.score-theater-card {
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.score-theater-card .score-layout {
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 3vw, 30px);
}

.score-theater-card .score-big {
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  align-items: flex-start;
}

.score-theater-card .score-big strong {
  font-size: clamp(58px, 6.4vw, 88px);
  line-height: .98;
  letter-spacing: 0;
  text-shadow: 0 12px 30px rgba(0, 0, 0, .26);
  white-space: nowrap;
}

.score-theater-card .score-big > span {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .08em;
}

.score-theater-card .score-big > em {
  display: none;
}

.score-interpretation {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
}

.score-interpretation small {
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: .08em;
}

.score-interpretation strong {
  display: block;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.score-theater-card .metrics {
  gap: 12px;
}

.score-theater-card .metric-card {
  padding: 16px;
  border-radius: 18px;
}

.score-theater-card .metric-track {
  height: 8px;
  margin-top: 10px;
}

.metric-reading {
  margin-top: 8px;
  font-size: 11.5px;
  line-height: 1.35;
}

.journey-map-v12b {
  margin-top: 24px;
  padding: 26px 4px 6px;
}

.journey-track-v12b {
  top: 54px;
  height: 6px;
}

.journey-node {
  min-height: 142px;
  padding: 18px 12px;
}

.journey-node .journey-dot {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  border-radius: 18px;
  font-size: 20px;
}

.journey-node .journey-dot svg {
  width: 18px;
  height: 18px;
}

.journey-node.current {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 16px 44px rgba(232, 120, 0, .14),
    0 0 0 1px rgba(255, 196, 117, .08);
}

.journey-node strong {
  font-size: 14px;
  line-height: 1.2;
}

.journey-node .node-status {
  margin-top: 8px;
  padding: 6px 8px;
  font-size: 9px;
}

.premium-locked-card {
  min-height: 252px;
  padding: 20px;
}

.premium-locked-card::after {
  inset: 112px 0 0;
}

.locked-topline {
  margin-bottom: 12px;
}

.premium-locked-card .lock-badge {
  width: 36px;
  height: 36px;
  border-radius: 13px;
}

.premium-locked-card h4 {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.22;
}

.locked-content-shell {
  min-height: 112px;
}

.premium-locked-card .locked-preview {
  max-width: 100%;
  font-size: 13px;
  line-height: 1.42;
}

.locked-secret {
  filter: blur(3px);
}

.locked-secret span {
  min-height: 16px;
  padding: 7px 9px;
  font-size: 11px;
}

.locked-curiosity {
  left: 16px;
  right: 16px;
  bottom: 14px;
  padding: 10px;
  font-size: 11px;
}

.transition-card-v12b {
  padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.transition-copy h3 {
  max-width: 780px;
  margin-bottom: 8px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: 0;
}

.transition-copy p {
  max-width: 780px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.24;
}

.transition-copy small {
  max-width: 720px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.cta-continuation-card {
  padding: clamp(26px, 4vw, 40px);
}

.cta-momentum {
  gap: 10px;
  margin: 20px 0 16px;
}

.cta-momentum div {
  min-height: 104px;
  padding: 14px;
  border-radius: 18px;
}

.cta-momentum strong {
  margin: 8px 0 6px;
  font-size: 14px;
}

.cta-momentum span {
  font-size: 12px;
  line-height: 1.35;
}

/* V1.2C QA - contenção e hierarquia refinada após screenshots */
.section-card,
.result-hero,
.diagnosis-moment,
.score-theater-card,
.journey-map-card-v12b,
.transition-card-v12b,
.cta-continuation-card {
  max-width: 100%;
  overflow: hidden;
}

.section-card *,
.result-hero *,
.diagnosis-moment *,
.score-theater-card * {
  min-width: 0;
}

.stage-seal {
  position: relative;
  overflow: hidden;
}

.stage-seal span {
  z-index: 2;
}

.stage-seal svg {
  position: relative;
  z-index: 1;
}

.stage-moment-copy,
.score-big,
.metric-card,
.journey-node,
.premium-locked-card,
.cta-momentum div {
  min-width: 0;
}

.score-big > strong,
.score-theater-card .score-big > strong {
  font-size: clamp(54px, 6vw, 82px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.score-interpretation,
.score-theater-card .score-interpretation {
  overflow: hidden;
}

.score-interpretation strong,
.score-theater-card .score-interpretation strong,
.score-theater-card .score-big .score-interpretation strong {
  display: block;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

.metric-head {
  align-items: flex-start;
}

.metric-head span,
.metric-head strong,
.metric-reading {
  overflow-wrap: normal;
  word-break: normal;
}

.stage-moment-copy h3,
.section-card h3,
.transition-copy h3,
.transition-copy p {
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

/* Ajustes finais de foco e continuidade */
.attention-card {
  border-color: rgba(255, 196, 117, .46);
  background:
    radial-gradient(circle at 14% 50%, rgba(255, 196, 117, .16), transparent 22%),
    radial-gradient(circle at 92% 50%, rgba(232, 120, 0, .18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .082), rgba(255, 255, 255, .026));
  box-shadow:
    0 26px 78px rgba(0, 0, 0, .26),
    0 0 0 1px rgba(255, 196, 117, .07),
    0 0 56px rgba(232, 120, 0, .10);
}

.attention-card .metric-icon {
  color: #ffc180;
  border-color: rgba(255, 196, 117, .28);
  background:
    radial-gradient(circle, rgba(255, 196, 117, .20), rgba(255, 255, 255, .055));
  box-shadow: 0 0 0 6px rgba(232, 120, 0, .055), 0 18px 42px rgba(232, 120, 0, .14);
  animation: attentionGlow 2.2s ease-in-out infinite;
}

.attention-card h3 {
  text-shadow: 0 12px 34px rgba(0, 0, 0, .20);
}

.inertia-card {
  border-color: rgba(255, 93, 93, .46);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 93, 93, .16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .070), rgba(255, 255, 255, .026));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .24),
    0 0 0 1px rgba(255, 93, 93, .07);
}

.inertia-card .section-label {
  color: #ffb4a8;
}

.inertia-card .inertia-list span {
  border-color: rgba(255, 93, 93, .28);
  background: rgba(255, 93, 93, .07);
}

.transition-card-v12b .continuation-strip strong {
  position: relative;
  color: #1b1005;
  border-color: rgba(255, 196, 117, .62);
  background: linear-gradient(135deg, #ffd69c, #ff9a1f);
  box-shadow:
    0 16px 38px rgba(232, 120, 0, .22),
    0 0 0 5px rgba(232, 120, 0, .07);
  animation: nextStepGlow 2.25s ease-in-out infinite;
}

.resume-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(18px);
}

.resume-modal.show {
  display: grid;
}

.resume-card {
  width: min(560px, 100%);
  padding: 30px;
}

.resume-card h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.resume-card p {
  color: var(--muted);
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes heroPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 16px rgba(39, 214, 139, .70);
  }
  50% {
    transform: scale(1.32);
    box-shadow: 0 0 28px rgba(39, 214, 139, .95);
  }
}

@keyframes ctaBreath {
  0%, 100% {
    box-shadow:
      0 20px 48px rgba(232, 120, 0, .34),
      0 0 0 5px rgba(232, 120, 0, .06);
  }
  50% {
    box-shadow:
      0 24px 58px rgba(232, 120, 0, .44),
      0 0 0 8px rgba(232, 120, 0, .09);
  }
}

@keyframes attentionGlow {
  0%, 100% {
    filter: brightness(1);
    box-shadow: 0 0 0 6px rgba(232, 120, 0, .055), 0 18px 42px rgba(232, 120, 0, .14);
  }
  50% {
    filter: brightness(1.08);
    box-shadow: 0 0 0 8px rgba(232, 120, 0, .085), 0 22px 52px rgba(232, 120, 0, .22);
  }
}

@keyframes nextStepGlow {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 16px 38px rgba(232, 120, 0, .22),
      0 0 0 5px rgba(232, 120, 0, .07);
  }
  50% {
    transform: translateY(-1px);
    box-shadow:
      0 20px 48px rgba(232, 120, 0, .30),
      0 0 0 8px rgba(232, 120, 0, .10);
  }
}

@media (max-width: 880px) {
  .app-shell {
    width: min(100% - 24px, var(--max));
    padding-top: 18px;
  }

  .app-header {
    margin-bottom: 16px;
  }

  .brand img {
    width: 56px;
  }

  .hero-panel,
  .question-card,
  .analysis-panel {
    min-height: auto;
  }

  .trust-row,
  .modal-actions {
    align-items: stretch;
  }

  .trust-row span {
    flex: 1 1 180px;
  }

  .answer-grid,
  .check-grid,
  .plan-grid,
  .objective-grid,
  .score-layout,
  .score-theater-card .score-layout,
  .mentor-split,
  .diagnosis-moment-grid,
  .cta-momentum,
  .stage-summary-grid,
  .short-bullets {
    grid-template-columns: 1fr;
  }

  .diagnosis-moment {
    min-height: auto;
    text-align: left;
  }

  .stage-seal {
    justify-self: start;
  }

  .stage-moment-copy h3 {
    font-size: clamp(32px, 9vw, 46px);
  }

  .score-theater-card .score-big {
    min-height: auto;
  }

  .score-theater-card .score-big strong {
    font-size: clamp(52px, 13vw, 76px);
  }

  .score-interpretation strong {
    font-size: 14px;
  }

  .cta-momentum div {
    min-height: auto;
  }

  .journey {
    grid-template-columns: 1fr;
  }

  .journey-line,
  .journey-track-v12b {
    display: none;
  }

  .journey-map-v12b {
    padding: 10px 0 0;
  }

  .journey-node {
    min-height: auto;
    align-items: flex-start;
    text-align: left;
    transform: none;
  }

  .journey-node.current {
    transform: none;
  }

  .journey-dot {
    margin-bottom: 10px;
  }

  .locked-grid {
    grid-template-columns: 1fr;
  }

  .stage-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .app-shell {
    width: min(100% - 20px, var(--max));
    padding-bottom: 38px;
  }

  .hero-panel,
  .question-card,
  .analysis-panel,
  .result-hero,
  .section-card {
    border-radius: 24px;
  }

  .hero-panel,
  .question-card {
    padding: 20px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .primary-action {
    width: 100%;
  }

  .progress-meta {
    display: grid;
    gap: 4px;
  }

  .diagnosis-moment,
  .score-theater-card,
  .transition-card-v12b,
  .cta-continuation-card {
    padding: 18px;
  }

  .section-card {
    padding: 18px;
  }

  .section-card h3 {
    font-size: clamp(22px, 7.4vw, 30px);
    line-height: 1.12;
    text-wrap: auto;
  }

  .section-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .stage-seal {
    width: 94px;
    border-radius: 28px;
  }

  .stage-seal span {
    transform: translate(-30px, -30px);
    font-size: 20px;
  }

  .stage-seal svg {
    width: 42px;
    height: 42px;
  }

  .stage-moment-copy p,
  .transition-copy small {
    font-size: 13.5px;
  }

  .score-theater-card .score-big > strong {
    font-size: clamp(46px, 12vw, 62px);
  }

  .metric-head {
    gap: 8px;
  }

  .metric-head span,
  .metric-head strong {
    font-size: 12px;
  }

  .metric-reading,
  .score-interpretation strong {
    font-size: 11.5px;
  }

  .transition-copy h3 {
    font-size: 30px;
  }

  .transition-copy p {
    font-size: 18px;
  }
}
