/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #0D1E3A;
  --blue:      #1A4FA8;
  --blue-mid:  #2563C4;
  --blue-lt:   #3B7DE8;
  --blue-pale: #EEF4FF;
  --slate:     #334155;
  --gray:      #64748B;
  --line:      #E2E8F0;
  --bg:        #F8FAFC;
  --white:     #FFFFFF;
  --text:      #0F172A;
  /* pillars */
  --c-com: #B03A2E;
  --c-est: #1A4FA8;
  --c-pes: #0D6E60;
  --c-pro: #5B2C83;
  --c-prc: #B34A00;
  /* CTA laranja estratégico (skill v2.0) */
  --orange:      #F97316;
  --orange-dark: #EA6500;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── UTILS ─── */
.container { width: 92%; max-width: 1100px; margin: 0 auto; }
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 14px;
}
.title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.72;
  max-width: 540px;
}
.rule {
  width: 40px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px 0 28px;
}
.btn {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
}
.btn-solid {
  background: var(--blue-mid);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(37,99,196,0.28);
}
.btn-solid:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,196,0.36);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(0,0,0,0.14);
}
.btn-white:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 3px 16px rgba(249,115,22,0.38);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.44);
}
.hero-link-sec {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  align-self: center;
}
.hero-link-sec:hover { color: rgba(255,255,255,0.9); }

/* ─── ICON COMPONENT ─── */
.icon { display: inline-block; flex-shrink: 0; }
.icon svg { display: block; }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0;
  transition: box-shadow 0.3s, background 0.3s;
}
nav.solid {
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}
nav.dark-nav { background: var(--navy); }
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}
nav.solid .nav-logo { color: var(--navy); }
.nav-logo .brand-dot { color: var(--blue-lt); }
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}
nav.solid .nav-links a { color: var(--slate); }
.nav-links a:hover { color: var(--white); }
nav.solid .nav-links a:hover { color: var(--blue-mid); }
.nav-cta {
  font-size: 0.83rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 5px;
  background: var(--orange);
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 112px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,125,232,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,125,232,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(37,99,196,0.18) 0%, transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,125,232,0.12);
  border: 1px solid rgba(59,125,232,0.25);
  color: #93C5FD;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow span { width: 6px; height: 6px; background: #60A5FA; border-radius: 50%; }
.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-h1 strong { color: #60A5FA; font-weight: 900; }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 44px;
}
.stat-val {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.42);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.hero-diagram {
  display: flex; justify-content: center; align-items: center;
}
.diagram-wrap {
  position: relative;
  width: 460px; height: 480px;
  display: flex; justify-content: center; align-items: center;
}
#hero-ce3p { width: 100%; height: 100%; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-diagram { display: none; }
  #hero { padding: 100px 0 64px; }
}

/* ─── SECTION SHARED ─── */
section { padding: 96px 0; }

/* ─── PROBLEMA ─── */
#problema { background: var(--bg); }
.problema-head { max-width: 620px; margin-bottom: 48px; }
.dor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.dor-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.dor-item:hover {
  border-color: var(--blue-lt);
  box-shadow: 0 4px 20px rgba(37,99,196,0.08);
  transform: translateY(-3px);
}
.dor-icon-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
}
.dor-icon-wrap svg { width: 26px; height: 26px; stroke: var(--blue-mid); }
.dor-item h4 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.dor-item p { font-size: 0.84rem; color: var(--gray); line-height: 1.58; }
.bridge {
  margin-top: 48px;
  background: var(--navy);
  border-radius: 10px;
  padding: 40px 48px;
  display: flex; align-items: center; gap: 36px;
}
.bridge-content h3 {
  font-size: 1.6rem; font-weight: 900;
  color: var(--white); line-height: 1.2;
  letter-spacing: -0.03em; margin-bottom: 12px;
}
.bridge-content p { color: rgba(255,255,255,0.65); font-size: 0.96rem; }
.bridge-action { flex-shrink: 0; }
@media (max-width: 680px) {
  .bridge { flex-direction: column; padding: 28px 24px; }
}

/* ─── STORY / QUEM SOMOS ─── */
#story { background: var(--white); }
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.story-visual {
  display: flex; justify-content: center; align-items: center;
}
.ce3p-mark {
  width: 320px; height: 320px;
  position: relative;
}
.story-text p {
  font-size: 0.98rem;
  color: var(--slate);
  margin-bottom: 18px;
  line-height: 1.78;
}
.story-text p strong { color: var(--navy); font-weight: 600; }
.story-valores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 28px;
}
.valor {
  background: var(--bg);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 16px 18px;
}
.valor h5 {
  font-size: 0.88rem; font-weight: 900;
  color: var(--navy); margin-bottom: 5px; letter-spacing: -0.01em;
}
.valor p { font-size: 0.80rem; color: var(--gray); line-height: 1.55; }
@media (max-width: 820px) {
  .story-layout { grid-template-columns: 1fr; }
  .story-visual { display: none; }
}

/* ─── PROVA / RESULTADOS ─── */
#prova {
  background: var(--navy);
  color: var(--white);
}
#prova .label { color: #93C5FD; }
#prova .title { color: var(--white); }
#prova .sub { color: rgba(255,255,255,0.6); }
#prova .rule { background: #60A5FA; }
.numeros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px; overflow: hidden;
  margin: 44px 0 52px;
}
.numero {
  padding: 32px 24px; text-align: center;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s;
}
.numero:hover { background: rgba(255,255,255,0.05); }
.numero-val {
  font-size: 3.6rem; font-weight: 900;
  color: #60A5FA; letter-spacing: -0.04em; line-height: 1;
}
.numero-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  margin-top: 10px; line-height: 1.5;
}
.depos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.depo {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 30px 28px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.depo:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(96,165,250,0.25);
}
.depo-quote {
  position: absolute; top: 18px; right: 22px;
  font-size: 4rem; line-height: 1;
  font-family: Georgia, serif;
  color: rgba(96,165,250,0.18);
}
.depo p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-style: italic;
}
.depo-author {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 12px;
}
.depo-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-lt));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.82rem; color: var(--white);
  flex-shrink: 0;
}
.depo-name { font-size: 0.88rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.depo-role { font-size: 0.75rem; color: rgba(255,255,255,0.48); margin-top: 2px; }

/* ─── FEATURES / CE3P PILARES ─── */
#pilares { background: var(--bg); }
.pilares-intro { max-width: 640px; margin-bottom: 52px; }

.ce3p-id {
  display: flex; align-items: center; gap: 0;
  font-size: 3.6rem; font-weight: 900;
  letter-spacing: -0.05em; margin-bottom: 6px;
}
.ce3p-id .lc { color: var(--blue-mid); }
.ce3p-id .le { color: var(--navy); }
.ce3p-id .l3p { color: var(--blue-lt); }

.diagram-zone {
  display: flex; justify-content: center;
  margin-bottom: 56px;
}
#ce3p-svg { width: 100%; max-width: 700px; cursor: pointer; }
.hex-area polygon { stroke: var(--white); stroke-width: 2; transition: opacity 0.18s; }
.hex-area:hover polygon { opacity: 0.88; }
.hex-area text { pointer-events: none; font-family: 'Inter', sans-serif; }
#hex-tooltip {
  position: fixed;
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
  max-width: 210px;
  z-index: 1000;
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.06);
  font-family: 'Inter', sans-serif;
}
#hex-tooltip.on { opacity: 1; }
#hex-tooltip strong {
  display: block; margin-bottom: 8px;
  font-size: 0.85rem; color: #60A5FA;
}
#hex-tooltip ul { padding-left: 14px; }
#hex-tooltip li { margin-bottom: 4px; line-height: 1.4; }
.diagram-hint {
  text-align: center; font-size: 0.78rem;
  color: var(--gray); margin-top: 8px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  border-top: 4px solid var(--blue-mid);
  transition: box-shadow 0.22s, transform 0.22s;
}
.pillar:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.pillar.com { border-top-color: var(--c-com); }
.pillar.est { border-top-color: var(--c-est); }
.pillar.pes { border-top-color: var(--c-pes); }
.pillar.pro { border-top-color: var(--c-pro); }
.pillar.prc { border-top-color: var(--c-prc); }
.pillar-icon-wrap {
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pillar-icon-wrap svg { width: 26px; height: 26px; }
.pillar.com .pillar-icon-wrap { background: #FEF2F2; }
.pillar.com .pillar-icon-wrap svg { stroke: var(--c-com); }
.pillar.est .pillar-icon-wrap { background: #EEF4FF; }
.pillar.est .pillar-icon-wrap svg { stroke: var(--c-est); }
.pillar.pes .pillar-icon-wrap { background: #F0FDF9; }
.pillar.pes .pillar-icon-wrap svg { stroke: var(--c-pes); }
.pillar.pro .pillar-icon-wrap { background: #FAF5FF; }
.pillar.pro .pillar-icon-wrap svg { stroke: var(--c-pro); }
.pillar.prc .pillar-icon-wrap { background: #FFF7ED; }
.pillar.prc .pillar-icon-wrap svg { stroke: var(--c-prc); }
.pillar h3 {
  font-size: 1.15rem; font-weight: 900;
  color: var(--navy); margin-bottom: 4px; letter-spacing: -0.02em;
}
.pillar-sub {
  font-size: 0.78rem; font-style: italic;
  color: var(--orange); margin-bottom: 13px; font-weight: 600;
}
.pillar p { font-size: 0.87rem; color: var(--slate); margin-bottom: 16px; line-height: 1.68; }
.method-pills {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.pill {
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 4px;
  background: var(--bg); color: var(--slate);
  border: 1px solid var(--line);
  letter-spacing: 0.01em;
}
.pillar-footer {
  font-size: 0.81rem; color: var(--gray);
  border-top: 1px solid var(--line);
  padding-top: 14px; line-height: 1.6;
}
.pillar-footer strong { color: var(--navy); font-weight: 600; }

/* ─── COMO FUNCIONA ─── */
#processo { background: var(--white); }
.processo-head { text-align: center; margin-bottom: 56px; }
.processo-head .rule { margin-left: auto; margin-right: auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative; z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  letter-spacing: -0.02em;
}
.step-num::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(249,115,22,0.25);
}
.step h4 {
  font-size: 0.96rem; font-weight: 800;
  color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em;
}
.step p { font-size: 0.83rem; color: var(--gray); line-height: 1.62; }

/* ─── CTA FINAL ─── */
#cta {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,125,232,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,125,232,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #93C5FD; margin-bottom: 18px;
}
#cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.08; letter-spacing: -0.04em;
  max-width: 720px; margin: 0 auto 20px;
}
#cta p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.62);
  max-width: 520px; margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.trust-row {
  margin-top: 40px;
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; color: rgba(255,255,255,0.58);
}
.trust-item svg { width: 16px; height: 16px; stroke: #60A5FA; }

/* ─── FOOTER ─── */
footer {
  background: #070F1E;
  padding: 28px 0;
  text-align: center;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
footer a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
footer a:hover { color: #60A5FA; }
.footer-logo {
  font-size: 0.92rem; font-weight: 800;
  letter-spacing: -0.02em; color: rgba(255,255,255,0.55);
}

/* ─── CUSTO INVISÍVEL ─── */
#custo { background: var(--white); }
.custo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 44px;
}
.custo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--bg);
  transition: border-color 0.2s, transform 0.2s;
}
.custo-card:hover {
  border-color: rgba(249,115,22,0.35);
  transform: translateY(-3px);
}
.custo-label {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.custo-card h4 {
  font-size: 1.08rem; font-weight: 900;
  color: var(--navy); margin-bottom: 10px; line-height: 1.22;
  letter-spacing: -0.02em;
}
.custo-card p { font-size: 0.86rem; color: var(--gray); line-height: 1.65; }

/* ─── MATURIDADE ─── */
#maturidade { background: var(--bg); }
.maturidade-intro { max-width: 620px; margin-bottom: 52px; }
.mat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
@media (max-width: 800px) {
  .mat-grid { grid-template-columns: 1fr; }
}
.mat-level {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  background: var(--white);
  transition: background 0.2s;
  position: relative;
}
.mat-level:last-child { border-right: none; }
.mat-level:hover { background: var(--blue-pale); }
.mat-num {
  font-size: 3rem; font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1; margin-bottom: 10px;
}
.mat-level:nth-child(1) .mat-num { color: #CBD5E1; }
.mat-level:nth-child(2) .mat-num { color: #94A3B8; }
.mat-level:nth-child(3) .mat-num { color: var(--blue-lt); }
.mat-level:nth-child(4) .mat-num { color: var(--blue-mid); }
.mat-level:nth-child(5) .mat-num { color: var(--navy); }
.mat-level h4 {
  font-size: 0.82rem; font-weight: 800;
  color: var(--navy); margin-bottom: 6px; line-height: 1.3;
}
.mat-level p { font-size: 0.76rem; color: var(--gray); line-height: 1.55; }
.mat-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
}
.mat-level:nth-child(1) .mat-bar { background: #CBD5E1; width: 20%; }
.mat-level:nth-child(2) .mat-bar { background: #94A3B8; width: 40%; }
.mat-level:nth-child(3) .mat-bar { background: var(--blue-lt); width: 60%; }
.mat-level:nth-child(4) .mat-bar { background: var(--blue-mid); width: 80%; }
.mat-level:nth-child(5) .mat-bar { background: var(--navy); width: 100%; }
.mat-cta {
  margin-top: 40px;
  text-align: center;
}
.mat-cta p {
  font-size: 1rem; color: var(--slate);
  margin-bottom: 20px; line-height: 1.65;
}
.mat-cta p strong { color: var(--navy); }

/* ─── TRANSFORMAÇÕES ANTES/DEPOIS ─── */
#transformacoes { background: var(--navy); color: var(--white); }
#transformacoes .label { color: #93C5FD; }
#transformacoes .title { color: var(--white); }
#transformacoes .rule { background: #60A5FA; }
.transf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px; margin-top: 44px;
}
.transf-card {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s;
}
.transf-card:hover { border-color: rgba(134,239,172,0.2); }
.transf-antes {
  padding: 22px 26px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.transf-depois {
  padding: 22px 26px;
  border-left: 3px solid #86EFAC;
}
.transf-tag {
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.transf-antes .transf-tag { color: rgba(255,255,255,0.4); }
.transf-depois .transf-tag { color: #86EFAC; }
.transf-antes p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.62;
  font-style: italic;
}
.transf-depois p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.62;
  font-weight: 500;
}

/* ─── RISCOS EVITADOS ─── */
#riscos { background: var(--bg); }
.riscos-intro { max-width: 600px; margin-bottom: 44px; }
.riscos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.risco-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.risco-item:hover {
  border-color: var(--blue-lt);
  box-shadow: 0 4px 16px rgba(37,99,196,0.07);
}
.risco-check {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  display: flex; align-items: center; justify-content: center;
}
.risco-check svg { width: 16px; height: 16px; stroke: #16A34A; }
.risco-item h5 {
  font-size: 0.98rem; font-weight: 900;
  color: var(--navy); margin-bottom: 6px; letter-spacing: -0.01em;
}
.risco-item p { font-size: 0.83rem; color: var(--gray); line-height: 1.58; }

/* ─── FUTURO DESEJADO ─── */
#futuro { background: var(--white); }
.futuro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 44px;
}
.futuro-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.futuro-item:hover {
  border-color: var(--blue-lt);
  box-shadow: 0 6px 20px rgba(37,99,196,0.08);
  transform: translateY(-3px);
}
.futuro-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.futuro-icon svg { width: 28px; height: 28px; stroke: var(--blue-mid); }
.futuro-item h4 {
  font-size: 1rem; font-weight: 900;
  color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em;
}
.futuro-item p { font-size: 0.83rem; color: var(--gray); line-height: 1.62; }

/* ─── ANIMATIONS ─── */
@keyframes hero-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
[data-fade] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-fade].in { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
