:root {
  --navy:        #16243B;
  --navy-mid:    #243352;
  --cobalt:      #1E5FD8;
  --cobalt-dark: #1750BF;
  --green:       #25C26E;
  --green-dark:  #1DAE5E;
  --orange:      #FF4500;
  --white:       #FFFFFF;
  --off-white:   #F0F1F3;
  --secondary:   #DEE0E3;
  --blue-tint:   #EBF0FB;
  --green-tint:  #E7F7EE;
  --text:        #16243B;
  --text-2:      #455170;
  --text-3:      #8494B0;
  --border:      #DEE0E3;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
em { font-style: italic; }

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .875rem 2rem;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,194,110,.35);
}
.btn-green:hover { background: var(--green-dark); box-shadow: 0 6px 20px rgba(37,194,110,.45); }

.btn-outline {
  background: transparent;
  color: var(--cobalt);
  border: 2px solid var(--cobalt);
}
.btn-outline:hover { background: var(--blue-tint); }

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }

.btn-white-orange {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-white-orange:hover { background: var(--off-white); }

.btn-lg   { padding: 1.125rem 2.5rem; font-size: 1.125rem; border-radius: 10px; }
.btn-full { width: 100%; }

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: .3rem .875rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--blue-tint);
  color: var(--cobalt);
  margin-bottom: .875rem;
}

/* ── SECTION HEADER ── */
.s-header {
  text-align: center;
  margin-bottom: 3rem;
}
.s-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--navy);
  margin-bottom: .625rem;
}
.s-header p {
  color: var(--text-2);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-delay: 0.01ms !important; }
  .steps-line-fill, .step-num { transition-delay: 0s !important; transform: none !important; }
  .steps-line-fill { transform: scaleX(1) !important; }
  .evo-line { transition: none !important; stroke-dashoffset: 0 !important; }
  .evo-area, .evo-dot { transition: none !important; opacity: 1 !important; }
  .evo-badge { transition: none !important; opacity: 1 !important; transform: translate(-50%, -190%) !important; }
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--navy);
  letter-spacing: -.01em;
}
.nav-logo span { color: var(--green); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-login-link {
  font-size: .9375rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(160deg, #fff 0%, #ECEDF0 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.375rem;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-green 2s ease infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,194,110,.5); }
  50%      { box-shadow: 0 0 0 7px rgba(37,194,110,0); }
}
.eyebrow-text {
  font-size: .75rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* headline */
.hero-h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: var(--navy);
  margin-bottom: 1.375rem;
}
.hero-h1 .hl {
  position: relative;
  color: var(--cobalt);
}
.hero-h1 .hl::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 3px;
  background: var(--cobalt);
  border-radius: 2px;
  animation: draw-underline .6s ease .9s forwards;
}
@keyframes draw-underline { to { width: 100%; } }

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 500px;
}
.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .625rem;
}
.hero-micro {
  font-size: .8125rem;
  color: var(--text-3);
}

/* ── DIAGNOSTIC CARD ── */
.diag-card {
  background: var(--navy);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 28px 80px rgba(22,36,59,.28), 0 8px 24px rgba(22,36,59,.12);
  position: relative;
  overflow: hidden;
  font-size: .8125rem;
}
.diag-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cobalt), var(--green));
}
.dc-topbar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dc-dots { display: flex; gap: .375rem; }
.dc-dot  { width: 10px; height: 10px; border-radius: 50%; }
.dc-dot:nth-child(1) { background: #FF5F57; }
.dc-dot:nth-child(2) { background: #FEBC2E; }
.dc-dot:nth-child(3) { background: #28C840; }
.dc-label {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
  margin-left: .25rem;
}

/* animated lines */
.dc-line {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: .5rem;
  opacity: 0;
  animation: fadeup .4s ease forwards;
}
.dc-prompt { color: var(--green); font-weight: 700; flex-shrink: 0; }
.dc-txt    { color: rgba(255,255,255,.65); line-height: 1.5; }
.dc-txt.dim { color: rgba(255,255,255,.35); font-style: italic; }

/* subject rows */
.dc-subjects { margin: .875rem 0; }
.dc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .45rem .7rem;
  border-radius: 7px;
  margin-bottom: .375rem;
  opacity: 0;
  animation: fadeup .4s ease forwards;
}
.dc-row.ok  { background: rgba(37,194,110,.1); }
.dc-row.gap { background: rgba(255,69,0,.1); border: 1px solid rgba(255,69,0,.25); }
.dc-row-name  {
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: .5rem;
}
.dc-row-right { display: flex; gap: .4rem; align-items: center; flex-shrink: 0; }
.dc-score { font-weight: 700; font-size: .75rem; }
.dc-row.ok  .dc-score { color: var(--green); }
.dc-row.gap .dc-score { color: #FF6B35; }
.dc-tag {
  font-size: .625rem;
  font-weight: 700;
  padding: .15rem .4rem;
  border-radius: 4px;
}
.dc-row.ok  .dc-tag { background: rgba(37,194,110,.2); color: var(--green); }
.dc-row.gap .dc-tag { background: rgba(255,69,0,.2); color: #FF6B35; }

/* result block */
.dc-result {
  margin-top: .875rem;
  padding: .75rem .875rem;
  border-radius: 9px;
  background: linear-gradient(135deg,rgba(23,96,238,.18),rgba(37,194,110,.08));
  border: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  animation: fadeup .5s ease forwards;
}
.dc-result-label { font-size: .65rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.dc-result-txt   { font-size: .8125rem; color: #fff; font-weight: 600; }

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

/* ════════════════════════════════════════
   PAIN
════════════════════════════════════════ */
.pain-section { background: var(--white); }

.pain-head { text-align: center; margin-bottom: 2.5rem; }
.pain-head h2 { color: var(--navy); font-size: clamp(1.75rem,3.5vw,2.75rem); margin-bottom: .5rem; }
.pain-head p  { color: var(--text-3); font-size: 1.0625rem; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.pain-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 320px;
  padding: 2rem 1.75rem;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(22,36,59,.22);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.pain-item:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37,194,110,.22), 0 18px 44px rgba(37,194,110,.45);
  transform: translateY(-3px);
}
.pain-ico {
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.125rem;
  transition: color .2s;
}
.pain-item:hover .pain-ico { color: var(--green); }
.pain-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1875rem;
  color: #fff;
  margin-bottom: .875rem;
  line-height: 1.3;
  height: 3.35rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.pain-txt { color: rgba(255,255,255,.72); font-size: .875rem; line-height: 1.65; margin-top: 1.75rem; }

.pain-conclusion {
  text-align: center;
  max-width: 920px;
  margin: 3rem auto 0;
  padding: 2.25rem 3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(22,36,59,.06);
}
.pain-conclusion p { color: var(--navy-mid); font-size: 1.1875rem; line-height: 1.75; }
.pain-conclusion strong { color: var(--green-dark); }

/* ════════════════════════════════════════
   BENEFITS — solid dark moment
════════════════════════════════════════ */
.benefits-section {
  position: relative;
  background: var(--navy);
  overflow: visible;
}
.benefits-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.benefits-text { max-width: 620px; text-align: center; }
.benefits-text .badge { background: rgba(255,255,255,.92); color: var(--navy); }
.benefits-text h2 { font-size: clamp(1.625rem,3vw,2.25rem); color: #fff; margin: .875rem 0 .625rem; }
.benefits-text > p { font-size: 1.0625rem; color: rgba(255,255,255,.68); line-height: 1.75; margin-bottom: 1.75rem; }

/* short scannable benefit tags, replaces the old paragraph-heavy list */
.benefits-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .625rem; }
.benefits-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .875rem;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.88);
  white-space: nowrap;
}
.benefits-tag .rc-mark { color: var(--green); font-weight: 800; flex-shrink: 0; }

/* line + area evolution graph */
.evo-graph-wrap { position: relative; width: 100%; max-width: 820px; margin: 3rem auto 0; }
.evo-graph { display: block; width: 100%; height: auto; overflow: visible; }
.evo-grid { stroke: rgba(255,255,255,.07); stroke-width: 1; }
.evo-line {
  stroke-dasharray: 532;
  stroke-dashoffset: 532;
  transition: stroke-dashoffset 1.4s cubic-bezier(.16,1,.3,1);
}
.reveal.visible .evo-line { stroke-dashoffset: 0; }
.evo-area {
  opacity: 0;
  transition: opacity 1s ease;
  transition-delay: .9s;
}
.reveal.visible .evo-area { opacity: 1; }
.evo-dot {
  fill: #25C26E;
  opacity: 0;
  transition: opacity .3s ease;
  transition-delay: 1.3s;
  animation: evo-pulse 2.4s ease-in-out 1.6s infinite;
}
.reveal.visible .evo-dot { opacity: 1; }
@keyframes evo-pulse {
  0%,100% { filter: drop-shadow(0 0 3px rgba(37,194,110,.6)); }
  50%      { filter: drop-shadow(0 0 9px rgba(37,194,110,1)); }
}
.evo-badge {
  position: absolute;
  left: 93.3%; top: 19.4%;
  transform: translate(-50%, -160%);
  background: var(--green);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: .3rem .7rem;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: 1.5s;
  box-shadow: 0 6px 16px rgba(37,194,110,.4);
}
.reveal.visible .evo-badge { opacity: 1; transform: translate(-50%, -190%); }
.evo-graph-labels {
  display: flex; justify-content: space-between;
  margin-top: .625rem; padding: 0 .3rem;
  font-size: .6875rem; color: rgba(255,255,255,.4); font-weight: 600;
}
.evo-result { text-align: center; margin-top: 1.5rem; }
.evo-result-num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.1875rem; color: #fff; }
.evo-result-label { display: block; font-size: .8125rem; color: rgba(255,255,255,.45); margin-top: .2rem; }

/* soft glow bleeding into the section below, visually linking the two */
.benefits-glow {
  position: absolute;
  left: 50%; bottom: -70px;
  transform: translateX(-50%);
  width: 460px; height: 160px;
  background: radial-gradient(closest-side, rgba(37,194,110,.32), rgba(37,194,110,0) 72%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 1;
}

/* ════════════════════════════════════════
   COMO FUNCIONA
════════════════════════════════════════ */
.how-section { background: var(--white); }

.how-tagline {
  display: block;
  margin-top: .875rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .8125rem;
  color: var(--green-dark);
  letter-spacing: .02em;
}

/* unboxed connected timeline — deliberately not a bordered card grid,
   so it doesn't read as a repeat of the Pain cards above it */
.steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.steps-line {
  position: absolute;
  top: 22px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  opacity: 1;
  transform: none;
  transition: none;
  z-index: 0;
}
.steps-line-fill {
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s ease-in-out;
}
.steps-line.visible .steps-line-fill { transform: scaleX(1); }

.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1rem; color: var(--text-3);
  margin: 0 auto 1.125rem;
  transition: background .6s ease, border-color .6s ease, color .6s ease, transform .6s ease;
}
/* circles "light up" green, timed to when the line reaches their position */
.steps-line.visible ~ .step .step-num {
  background: var(--green); border-color: var(--green); color: #fff; transform: scale(1.04);
}
.steps-line.visible ~ .step:nth-child(3) .step-num { transition-delay: .6s; }
.steps-line.visible ~ .step:nth-child(4) .step-num { transition-delay: 1.2s; }
.steps-line.visible ~ .step:nth-child(5) .step-num { transition-delay: 1.8s; }

.step-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.step-desc { font-size: .875rem; color: var(--text-2); line-height: 1.65; }

.how-cta { text-align: center; margin-top: 3rem; }

/* ════════════════════════════════════════
   PESO DE DIFICULDADE REAL
════════════════════════════════════════ */
.weight-section { background: var(--white); }
.weight-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.weight-text h2 { font-size: clamp(1.625rem,3vw,2.25rem); color: var(--navy); margin: .875rem 0 1rem; }
.weight-text > p { font-size: 1.0625rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.5rem; }

.weight-number {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.weight-number::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(closest-side, rgba(37,194,110,.16), rgba(37,194,110,0) 70%);
  z-index: -1;
}
.wn-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .5rem;
}
.wn-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(4.5rem, 11vw, 7.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--green-dark);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.wn-caption {
  margin-top: 1rem;
  font-size: .9375rem;
  color: var(--text-2);
  max-width: 280px;
}

/* mockup captions (shared: weight, correção) */
.mm-caption { display: block; margin-top: .75rem; font-size: .8rem; color: var(--text-3); }
.mm-caption--center { text-align: center; }

/* ════════════════════════════════════════
   REDAÇÃO SPOTLIGHT
════════════════════════════════════════ */
.redacao-section { background: var(--blue-tint); }
.redacao-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.redacao-text h2 { font-size: clamp(1.625rem,3vw,2.25rem); color: var(--navy); margin: .875rem 0 1rem; }
.redacao-text > p { font-size: 1.0625rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.5rem; }

.redacao-checks { list-style: none; display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.75rem; }
.redacao-checks li { display: flex; align-items: flex-start; gap: .625rem; font-size: .9375rem; color: var(--text); }
.rc-mark { color: var(--green-dark); font-weight: 700; flex-shrink: 0; }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); }

/* shared mini progress bar (used in correção competency rows) */
.wt-bar { height: 6px; border-radius: 100px; background: rgba(255,255,255,.1); overflow: hidden; }
.wt-bar-fill { display: block; height: 100%; border-radius: 100px; background: var(--green); }
.wt-bar-fill.mid  { background: #FFB84D; }
.wt-bar-fill.high { background: #FF6B35; }

/* correção mockup */
.corr-mockup {
  background: var(--navy);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 28px 70px rgba(22,36,59,.22);
}
.corr-excerpt-label {
  display: block;
  font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .5rem;
}
.corr-text {
  font-size: .875rem;
  color: rgba(255,255,255,.82);
  line-height: 1.9;
  margin: 0;
}
.corr-strike { text-decoration: line-through; color: rgba(255,255,255,.35); }
.corr-comment {
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  color: #fff;
  font-weight: 600;
}
.corr-note {
  display: flex; align-items: flex-start; gap: .5rem;
  margin: .75rem 0 1.375rem;
  padding: .625rem .75rem;
  background: rgba(37,194,110,.1);
  border: 1px solid rgba(37,194,110,.25);
  border-radius: 10px;
  font-size: .8125rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}

.corr-comps { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.25rem; }
.corr-comp-row { display: grid; grid-template-columns: 118px 1fr 28px; align-items: center; gap: .625rem; }
.corr-comp-name { font-size: .6875rem; color: rgba(255,255,255,.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.corr-comp-score { font-size: .75rem; font-weight: 700; color: #fff; text-align: right; }

.corr-total {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: .875rem; border-top: 1px solid rgba(255,255,255,.1);
}
.corr-total span { font-size: .8125rem; color: rgba(255,255,255,.5); }
.corr-total strong { color: var(--green); font-size: 1.5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.corr-total strong small { font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.4); }

/* ════════════════════════════════════════
   SOCIAL PROOF
════════════════════════════════════════ */
.proof-section { background: var(--green-tint); }

.authority-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.authority-block p {
  font-size: 1.125rem;
  color: var(--navy-mid);
  margin: 0 auto;
  line-height: 1.75;
}
.auth-stats {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}
.auth-stat {
  flex: 1;
  max-width: 220px;
  padding: 0 1.75rem;
  border-left: 1px solid rgba(22,36,59,.14);
}
.auth-stat:first-child { border-left: none; }
.auth-num  {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--green-dark);
  display: block;
  margin-bottom: .375rem;
}
.auth-lbl { font-size: .8125rem; color: var(--text-2); line-height: 1.5; }

.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; }
.proof-grid--single { max-width: 480px; margin: 0 auto; }
.proof-placeholder { background: #fff; border: 2px dashed var(--border); border-radius: 14px; padding: 2rem; text-align: center; }
.proof-stars { font-size: 1rem; margin-bottom: .75rem; color: #F59E0B; }
.proof-quote { font-size: .9375rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; line-height: 1.5; }
.proof-name  { font-size: .8rem; color: var(--text-3); }

/* ── Carrossel de depoimentos ── */
.testi-carousel { max-width: 560px; margin: 0 auto; }
.testi-viewport { overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.testi-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 .375rem;
  box-sizing: border-box;
}
.testi-slide .proof-placeholder { height: 100%; box-sizing: border-box; }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.testi-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, color .15s, transform .1s;
  flex-shrink: 0;
}
.testi-arrow:hover { border-color: var(--green); color: var(--green-dark); }
.testi-arrow:active { transform: scale(.94); }
.testi-dots { display: flex; align-items: center; gap: .5rem; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.testi-dot.active { background: var(--green); transform: scale(1.25); }

@media (max-width: 640px) {
  .testi-carousel { max-width: 100%; padding: 0 .5rem; }
  .proof-placeholder { padding: 1.5rem 1.25rem; }
  .testi-arrow { width: 36px; height: 36px; font-size: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .testi-track { transition: none; }
}

/* ════════════════════════════════════════
   PRICING
════════════════════════════════════════ */
.pricing-section { background: var(--off-white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.07); }
.pricing-card.featured {
  border-color: var(--cobalt);
  box-shadow: 0 8px 40px rgba(23,96,238,.12);
}
.featured-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--cobalt);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--navy);
  margin-bottom: .5rem;
}
.plan-desc { font-size: .875rem; color: var(--text-3); margin-bottom: 1.375rem; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: .2rem;
  margin-bottom: 1.625rem;
}
.price-currency { font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.price-value    { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-period   { font-size: .875rem; color: var(--text-3); }

.plan-features { list-style: none; margin-bottom: 1.5rem; }
.plan-features li {
  display: flex;
  gap: .625rem;
  padding: .5rem 0;
  font-size: .9375rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .chk { color: var(--green); font-weight: 700; flex-shrink: 0; }

.pricing-card > .btn { margin-top: auto; }

/* ════════════════════════════════════════
   OBJECTIONS / FAQ
════════════════════════════════════════ */
.obj-section { background: var(--white); }
.faq-section { background: var(--off-white); }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 1.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--cobalt); box-shadow: 0 10px 30px rgba(23,96,238,.09); }
.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.375rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.4;
}
.faq-btn:hover { color: var(--cobalt); }
.faq-btn:focus-visible { outline: 2px solid var(--cobalt); outline-offset: 2px; border-radius: 4px; }
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--blue-tint); color: var(--cobalt); }

.faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-body { max-height: 300px; }
.faq-body-inner {
  padding-bottom: 1.375rem;
  font-size: .9375rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════ */
.final-section {
  background: var(--off-white);
  padding: 6rem 0;
  text-align: center;
}
.final-section h2 {
  color: var(--navy);
  font-size: clamp(2rem,4.5vw,3.5rem);
  margin: 0 auto 1rem;
  max-width: 680px;
}
.final-section > .container > p {
  color: var(--text-2);
  font-size: 1.125rem;
  margin: 0 auto 2.5rem;
  max-width: 500px;
  line-height: 1.75;
}
.final-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.final-micro { font-size: .875rem; color: var(--text-3); }

.ps-block {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.ps-block p { color: var(--text-2); font-size: .9375rem; line-height: 1.75; margin-bottom: .875rem; }
.ps-block p strong { color: var(--navy); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: #0D1828; padding: 3.5rem 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.125rem; color: #fff; margin-bottom: .75rem; }
.footer-logo span { color: var(--green); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 280px; }

.footer-col-title {
  display: block;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-col a { display: block; font-size: .875rem; color: rgba(255,255,255,.75); margin-bottom: .75rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }

.footer-newsletter p { font-size: .8125rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 1rem; }
.footer-form { display: flex; gap: .5rem; }
.footer-input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .625rem .875rem;
  font-size: .875rem;
  color: #fff;
  font-family: inherit;
}
.footer-input::placeholder { color: rgba(255,255,255,.35); }
.footer-input:focus-visible { outline: 2px solid var(--green); outline-offset: 1px; }
.footer-form .btn { padding: .625rem 1.125rem; font-size: .875rem; white-space: nowrap; }
.footer-form-note { display: block; font-size: .75rem; color: rgba(255,255,255,.35); margin-top: .625rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-social { display: flex; gap: .625rem; }
.footer-social-ico {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  transition: background .15s, color .15s;
}
.footer-social-ico:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .steps-timeline { grid-template-columns: 1fr; gap: 0; margin-top: 2rem; }
  .steps-line     { display: none; }
  .step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.125rem 0;
    border-bottom: 1px solid var(--border);
  }
  .step:last-child { border-bottom: none; }
  .step-num  { margin: 0; flex-shrink: 0; }
  .step-body { flex: 1; }

  /* no horizontal line to animate on mobile — circles are just solid */
  .step .step-num { background: var(--green); border-color: var(--green); color: #fff; }
}

@media (max-width: 768px) {
  .hero-inner         { grid-template-columns: 1fr; text-align: center; }
  .hero-cta-stack     { align-items: center; }
  .hero-eyebrow       { justify-content: center; }
  .hero-sub           { max-width: 100%; }
  .hero-h1 .hl::after { display: none; }

  .auth-stats         { gap: 1.5rem; }

  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand       { grid-column: 1 / -1; }
  .footer-newsletter  { grid-column: 1 / -1; }
  .footer-form        { max-width: 360px; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .btn-lg             { width: 100%; }

  .redacao-inner      { grid-template-columns: 1fr; gap: 2.5rem; }
  .weight-inner       { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .container          { padding: 0 1rem; }
  .nav-actions         { gap: .625rem; }
  .section            { padding: 3rem 0; }
  .section-sm         { padding: 2rem 0; }
  .hero               { padding: 2.5rem 0; }
  .s-header           { margin-bottom: 2rem; }

  .diag-card          { padding: 1.125rem; }
  .dc-subjects        { margin: .625rem 0; }

  .pain-conclusion    { padding: 1.25rem 1rem; }
  .final-section      { padding: 4rem 0; }

  .auth-stats         { gap: 1rem; }
  .auth-num           { font-size: 1.625rem; }

  .pricing-card       { padding: 1.5rem; }
  .plan-price         { margin-bottom: 1.25rem; }
  .price-value        { font-size: 2.5rem; }

  .ps-block           { margin-top: 2.5rem; padding-top: 2rem; }
  .nav-inner          { height: 56px; }

  .footer-grid        { grid-template-columns: 1fr; }
  .footer-brand, .footer-newsletter { grid-column: auto; }
  .footer-form        { flex-direction: column; max-width: 100%; }

  .corr-mockup        { padding: 1.125rem; }
  .corr-comps         { gap: .5rem; }
  .corr-comp-row      { grid-template-columns: 92px 1fr 24px; gap: .5rem; }
  .corr-comp-name     { font-size: .625rem; }

  .weight-number      { padding: 2rem 1rem; }

  .evo-graph-wrap     { margin-top: 2rem; }
  .evo-graph-labels   { font-size: .625rem; }
}
