/* ============================================================
   NUMO — Site institucional (Home)
   Aplica colors_and_type.css (tokens oficiais). Estilos da página.
   Verde só como sinal de "positivo" nas tabelas (decisão do Allan).
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--branco-gelo); color: var(--fg);
  font-family: var(--font); font-weight: var(--w-regular);
  -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: var(--lh-body);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* sinal positivo — único uso de verde, confinado a tabelas */
:root { --positive: #06BE35; --positive-deep: #05992b; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.wrap--narrow { max-width: 940px; }
.section { padding: clamp(56px, 7.5vw, 104px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }

/* ---- Lucide ---- */
svg.lucide { stroke-width: 1.75; width: 22px; height: 22px; vertical-align: middle; }

/* ---- Eyebrow ---- */
.eyebrow { font-size: var(--fs-eyebrow); font-weight: var(--w-semibold);
  letter-spacing: var(--track-tag); text-transform: uppercase; color: var(--fg-muted);
  margin: 0 0 18px; display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .55; }
.eyebrow.on-dark { color: rgba(247,255,255,.6); }
.eyebrow.centered { justify-content: center; }

/* ---- Section heads ---- */
.head { max-width: 760px; }
.head.centered { margin: 0 auto; text-align: center; }
.head h2 { font-size: var(--fs-h1); font-weight: var(--w-extrabold); letter-spacing: var(--track-tight);
  line-height: var(--lh-snug); margin: 0; color: var(--fg); text-wrap: balance; }
.head h2 .light { font-weight: var(--w-light); }
.head p { font-size: var(--fs-lead); font-weight: var(--w-light); color: var(--fg-muted);
  line-height: 1.5; margin: 18px 0 0; max-width: 620px; }
.head.centered p { margin-left: auto; margin-right: auto; }
.on-dark .head h2, h2.on-dark { color: #fff; }
.on-dark .head p { color: rgba(247,255,255,.74); }

/* ---- Buttons ---- */
.btn { font-weight: var(--w-semibold); font-size: 15px; padding: 15px 30px; border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease); display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: .01em; white-space: nowrap; }
.btn svg.lucide { width: 18px; height: 18px; }
.btn--primary { background: var(--imperial-blue); color: #fff; }
.btn--primary:hover { background: var(--imperial-700); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(1,23,70,.24); }
.btn--ghost { color: var(--imperial-blue); box-shadow: inset 0 0 0 1.5px var(--imperial-blue); }
.btn--ghost:hover { background: var(--imperial-blue); color: #fff; }
.btn--white { background: #fff; color: var(--imperial-blue); }
.btn--white:hover { background: var(--branco-gelo); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline-w { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45); }
.btn--outline-w:hover { box-shadow: inset 0 0 0 1.5px #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 18px 38px; font-size: 16px; }

/* ============ NAV ============ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 60; transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav__logo { height: 22px; transition: filter var(--dur) var(--ease); }
.nav > .wrap { max-width: 1340px; }
.nav__links { display: flex; gap: 20px; align-items: center; flex-wrap: nowrap; margin-left: 44px; margin-right: auto; }
.nav__links a { font-size: 14.5px; font-weight: var(--w-medium); position: relative; white-space: nowrap; transition: color var(--dur) var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -7px; height: 2px; width: 0;
  background: var(--imperial-blue); transition: width var(--dur) var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { font-size: 14px; font-weight: var(--w-medium); display: inline-flex; align-items: center; gap: 8px; }
/* over hero (dark) */
.nav--ondark .nav__logo { filter: brightness(0) invert(1); }
.nav--ondark .nav__links a, .nav--ondark .nav__phone { color: rgba(247,255,255,.9); }
.nav--ondark .nav__links a:hover { color: #fff; }
.nav--ondark .nav__btn { background: #fff; color: var(--imperial-blue); }
.nav--ondark .nav__btn:hover { background: var(--branco-gelo); }
/* solid on scroll */
.nav--solid { background: rgba(247,255,255,.88); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--border); }
.nav--solid .nav__logo { filter: none; }
.nav--solid .nav__links a, .nav--solid .nav__phone { color: var(--fg); }
.nav--solid .nav__btn { background: var(--imperial-blue); color: #fff; }
.nav__burger { display: none; }

/* ---- dropdown "Investimentos" ---- */
.nav__group { position: relative; display: inline-flex; align-items: center; }
.nav__group > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; white-space: nowrap; }
.nav__group > a svg.lucide { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.nav__group:hover > a svg.lucide { transform: rotate(180deg); }
.nav__sub { position: absolute; top: 100%; left: 50%; padding-top: 18px;
  transform: translateX(-50%); min-width: 216px; z-index: 60;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur) var(--ease); }
.nav__group:hover .nav__sub { opacity: 1; visibility: visible; pointer-events: auto; }
.nav__sub-inner { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: 8px; display: flex; flex-direction: column; gap: 2px;
  transform: translateY(6px); transition: transform var(--dur) var(--ease); }
.nav__group:hover .nav__sub-inner { transform: translateY(0); }
.nav__sub a { font-size: 14.5px; font-weight: var(--w-medium); padding: 10px 14px;
  border-radius: var(--r-sm); white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.nav__sub a::after { content: none; }
.nav--ondark .nav__sub a, .nav--solid .nav__sub a { color: var(--fg); }
.nav--ondark .nav__sub a:hover, .nav--solid .nav__sub a:hover { color: var(--imperial-blue); background: var(--branco-gelo); }
/* ---- destaque: Calculadora de Investimentos ---- */
.nav__links .nav__link--calc { display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--r-pill); font-weight: var(--w-semibold);
  border: 1px solid transparent; line-height: 1;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.nav__links .nav__link--calc::after { content: none; }
.nav__links .nav__link--calc svg.lucide { width: 16px; height: 16px; }
.nav--ondark .nav__links .nav__link--calc { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.42); color: #fff; }
.nav--ondark .nav__links .nav__link--calc:hover { background: #fff; border-color: #fff; color: var(--imperial-blue); }
.nav--solid .nav__links .nav__link--calc { background: var(--imperial-blue); border-color: var(--imperial-blue); color: #fff; }
.nav--solid .nav__links .nav__link--calc:hover { background: var(--imperial-700); border-color: var(--imperial-700); color: #fff; }
/* mobile sub-group */
.mm-sub-label { color: rgba(255,255,255,.55) !important; font-size: .95rem !important; letter-spacing: var(--track-tag);
  text-transform: uppercase; font-weight: var(--w-semibold) !important; padding: 14px 0 6px !important; border-bottom: none !important; }
.mobile-menu a.mm-sub { font-size: 1.2rem; padding-left: 16px; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; background: var(--grad-hero); overflow: hidden; }
.hero__photo { position: absolute; inset: 0; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; opacity: .5; }
/* Short Stay: aproxima do conjunto colorido p/ não deixar a esquerda vazia */
.hero__photo--shift img { object-position: 70% center; transform: scale(1.32); transform-origin: 72% 42%; }
.hero__veil { position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(1,23,70,.9) 14%, rgba(1,23,70,.68) 46%, rgba(1,23,70,.1) 100%); }
.hero__graf { position: absolute; right: -90px; bottom: -70px; width: 540px; opacity: .07;
  filter: brightness(0) invert(1); pointer-events: none; }
.hero__content { position: relative; z-index: 3; max-width: 960px; padding-top: 72px; }
.hero h1 { color: #fff; font-weight: var(--w-extrabold); font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1.04; letter-spacing: -.025em; margin: 0 0 24px; text-wrap: normal; }
.hero h1 .light { font-weight: var(--w-light); }
.hero__sub { color: rgba(247,255,255,.84); font-size: clamp(1.1rem, 1.7vw, 1.4rem); font-weight: var(--w-light);
  line-height: 1.5; max-width: 600px; margin: 0 0 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__note { margin-top: 30px; font-size: 14px; color: rgba(247,255,255,.6);
  display: flex; align-items: center; gap: 9px; }
.hero__note svg.lucide { width: 17px; height: 17px; color: rgba(247,255,255,.7); }

/* ============ OBJETIVOS (segmentação) ============ */
.objs { background: var(--branco-gelo); }
.objs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.obj { background: #fff; border-radius: var(--r-xl); padding: 34px 30px 30px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); display: flex; flex-direction: column; min-height: 280px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.obj:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.obj__icn { width: 54px; height: 54px; border-radius: var(--r-md); background: var(--branco-gelo);
  display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--border); margin-bottom: 22px; }
.obj__icn svg.lucide { width: 26px; height: 26px; color: var(--imperial-blue); }
.obj h3 { font-size: 1.45rem; font-weight: var(--w-bold); letter-spacing: -.01em; color: var(--azul-escuro); margin: 0 0 10px; }
.obj p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; margin: 0 0 22px; flex: 1; }
.obj__link { font-size: 14.5px; font-weight: var(--w-semibold); color: var(--imperial-blue);
  display: inline-flex; align-items: center; gap: 8px; transition: gap var(--dur) var(--ease); }
.obj:hover .obj__link { gap: 13px; }

/* ============ TABELAS COMPARATIVAS ============ */
.table-wrap { margin-top: 52px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--border); background: #fff; }
table.cmp { width: 100%; border-collapse: collapse; font-size: 15px; }
table.cmp th, table.cmp td { padding: 18px 20px; text-align: center; border-bottom: 1px solid var(--border); }
table.cmp thead th { background: var(--branco-gelo); font-weight: var(--w-semibold); color: var(--fg-muted);
  font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
table.cmp tbody th { text-align: left; font-weight: var(--w-semibold); color: var(--azul-escuro); font-size: 15.5px; }
table.cmp tbody tr:last-child td, table.cmp tbody tr:last-child th { border-bottom: none; }
table.cmp tbody tr:hover { background: rgba(1,23,70,.02); }
.cell-tag { display: inline-block; font-size: 13.5px; font-weight: var(--w-semibold); }
.cell-tag.is-pos { color: var(--positive-deep); }
.cell-tag.is-neg { color: var(--imperial-300); }
.cell-tag.is-mid { color: var(--azul-escuro); }
/* coluna Numo destacada */
table.cmp .col-numo { background: var(--imperial-blue); }
table.cmp thead .col-numo { background: var(--imperial-blue); color: #fff; }
table.cmp .col-numo .cell-tag { color: #fff; }
table.cmp .col-numo .cell-tag.is-pos { color: #6ff09a; }
.col-numo-logo { height: 17px; filter: brightness(0) invert(1); display: inline-block; vertical-align: middle; }
.mark { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; }
.mark svg.lucide { width: 16px; height: 16px; stroke-width: 2.4; }
.mark--yes { color: var(--positive-deep); }
.mark--no { color: var(--imperial-300); opacity: .5; }
.col-numo .mark--yes { color: #6ff09a; background: rgba(111,240,154,.16); }
.col-numo .mark--no { color: rgba(247,255,255,.4); opacity: 1; }
.table-note { margin-top: 16px; font-size: 13px; color: var(--fg-muted); display: flex; align-items: center; gap: 8px; }
.table-note svg.lucide { width: 15px; height: 15px; }

/* ============ MÉTODO ============ */
.metodo { background: var(--branco-gelo); border-top: 1px solid var(--border); }
.metodo__top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.metodo__media { position: relative; border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.metodo__media img { width: 100%; height: 100%; object-fit: cover; }
.metodo__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(1,23,70,0) 55%, rgba(1,23,70,.4)); }
.metodo__quote { position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 2; color: #fff;
  font-size: 1.05rem; font-weight: var(--w-light); line-height: 1.4; }
.steps { display: grid; gap: 18px; margin-top: 34px; }
.step { display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--border); }
.step:first-child { border-top: none; padding-top: 0; }
.step__n { font-size: 13px; font-weight: var(--w-bold); color: var(--imperial-300); letter-spacing: .08em; flex: none;
  width: 38px; height: 38px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--border); display: grid; place-items: center; }
.step h3 { font-size: 1.2rem; font-weight: var(--w-bold); color: var(--azul-escuro); margin: 0 0 6px; letter-spacing: -.01em; }
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; margin: 0; }

/* ============ ALAVANCAGEM ============ */
.lev { background: var(--imperial-blue); position: relative; overflow: hidden; }
.lev__pattern { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: url("assets/logos/NUMO_Grafismo.png") 0 0 / 560px auto repeat;
  filter: brightness(0) invert(1); opacity: .05;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%); }
.lev__graf { position: absolute; left: -60px; top: -50px; width: 440px; opacity: .07; filter: brightness(0) invert(1); }
.lev__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.lev__copy h2 { color: #fff; font-size: var(--fs-h1); font-weight: var(--w-extrabold); letter-spacing: -.02em;
  line-height: var(--lh-snug); margin: 0 0 22px; text-wrap: balance; }
.lev__copy h2 .u { border-bottom: 3px solid rgba(247,255,255,.55); padding-bottom: 3px; }
.lev__copy p { color: rgba(247,255,255,.8); font-size: var(--fs-lead); font-weight: var(--w-light); line-height: 1.55; margin: 0 0 22px; }
.lev__mantra { color:#fff; font-weight: var(--w-light); font-size: 1.3rem; line-height: 1.35; margin: 30px 0 0;
  padding-left: 22px; border-left: 3px solid rgba(111,240,154,.7); }
.lev__mantra b { font-weight: var(--w-bold); }
.compare { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-2xl);
  padding: 14px 34px; backdrop-filter: blur(8px); }
.compare__row { display: flex; flex-direction: column; gap: 5px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.compare__row:last-child { border-bottom: none; }
.compare__lbl { color: rgba(247,255,255,.66); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: var(--w-semibold); }
.compare__val { color: #fff; font-weight: var(--w-extrabold); font-size: 2rem; line-height: 1.05; letter-spacing: -.02em; }
.compare__val.pos { color: #6ff09a; }
.compare__desc { color: rgba(247,255,255,.55); font-size: 13.5px; line-height: 1.4; }

/* ============ OBJEÇÕES ("Será?") ============ */
.obj-sec { background: var(--branco-gelo); }
.objc__list { margin-top: 52px; display: grid; gap: 18px; }
.objc { background: #fff; border-radius: var(--r-xl); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  padding: 30px 34px; display: grid; grid-template-columns: 1fr 1.25fr; gap: 36px; align-items: start; }
.objc__dogma { position: relative; }
.objc__dogma .q { font-size: 12px; font-weight: var(--w-bold); letter-spacing: .14em; text-transform: uppercase;
  color: var(--imperial-300); display: block; margin-bottom: 12px; }
.objc__dogma p { font-size: 1.2rem; font-weight: var(--w-light); color: var(--azul-escuro); line-height: 1.35; margin: 0; }
.objc__reply { position: relative; padding-left: 36px; }
.objc__reply::before { content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 2px; background: var(--imperial-blue); opacity: .25; }
.objc__reply .sera { font-weight: var(--w-extrabold); color: var(--imperial-blue); font-size: 1rem; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.objc__reply p { font-size: 16px; color: var(--fg); line-height: 1.55; margin: 0; }
.objc__reply b { font-weight: var(--w-bold); }

/* ============ DIFERENCIAL (tabela 3 col) — usa table.cmp ============ */
.dif { background: #fff; border-top: 1px solid var(--border); }

/* ============ CIDADES ============ */
.cidades { background: linear-gradient(180deg, var(--branco-gelo), #e9f1fb); border-top: 1px solid var(--border); overflow: hidden; }
.cidades .wrap { position: relative; z-index: 1; }
.cidades__graf { position: absolute; top: -36px; right: -60px; width: 46%; height: 64%; z-index: 0; pointer-events: none;
  background: url("assets/logos/NUMO_Grafismo.png") right top / 300px auto repeat; opacity: .10;
  -webkit-mask-image: radial-gradient(125% 120% at 100% 0, #000, transparent 72%);
          mask-image: radial-gradient(125% 120% at 100% 0, #000, transparent 72%); }
.cidades__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 52px; }
.city { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 380px; box-shadow: var(--shadow-md);
  display: flex; align-items: flex-end; isolation: isolate; }
.city img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform var(--dur-slow) var(--ease); filter: saturate(.92); }
.city::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(1,23,70,.05) 30%, rgba(1,23,70,.55) 62%, rgba(4,14,23,.92) 100%); }
.city:hover img { transform: scale(1.05); }
.city__body { padding: 30px 30px 28px; color: #fff; width: 100%; }
.city__tag { font-size: 11px; font-weight: var(--w-semibold); letter-spacing: .18em; text-transform: uppercase; color: rgba(247,255,255,.74); }
.city__name { font-size: 1.9rem; font-weight: var(--w-extrabold); letter-spacing: -.01em; margin: 5px 0 14px; }
.city__facts { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.city__facts li { font-size: 14px; color: rgba(247,255,255,.88); line-height: 1.4; display: flex; gap: 10px; align-items: flex-start; }
.city__facts li svg.lucide { width: 16px; height: 16px; flex: none; margin-top: 2px; color: #8fb4ff; }
.city__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 13px; font-weight: var(--w-bold); letter-spacing: var(--track-tag); text-transform: uppercase;
  color: #fff; transition: gap var(--dur) var(--ease); }
.city__cta svg.lucide { width: 16px; height: 16px; color: #8fb4ff; transition: transform var(--dur) var(--ease); }
.city:hover .city__cta { gap: 12px; }
.city:hover .city__cta svg.lucide { transform: translateX(2px); }

/* ============ DEPOIMENTOS ============ */
.depo { background: var(--azul-escuro); position: relative; overflow: hidden; }
.depo__pattern { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("assets/logos/NUMO_Grafismo.png") 0 0 / 560px auto repeat;
  filter: brightness(0) invert(1); opacity: .04;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%); }
.depo .wrap { position: relative; z-index: 1; }
.depo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.dcard { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-xl);
  overflow: hidden; display: flex; flex-direction: column; align-self: start; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.dcard:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.28); }
.dcard__video { position: relative; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--imperial-700), var(--azul-escuro)); display: grid; place-items: center; overflow: hidden; }
.dcard__video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; z-index: 0; }
.dcard__video img + .dcard__play { box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.dcard__video::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(4,14,23,.15) 0%, rgba(4,14,23,.55) 100%); }
.dcard__video:has(img)::after { opacity: 1; }
.dcard__video:not(:has(img))::after { opacity: 0; }
.dcard__video .ph { position: absolute; inset: 0; display: grid; place-items: center; }
.dcard__play { width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center;
  box-shadow: var(--shadow-md); transition: transform var(--dur) var(--ease); position: relative; z-index: 2; }
.dcard:hover .dcard__play { transform: scale(1.08); }
.dcard__play svg.lucide { width: 24px; height: 24px; color: var(--imperial-blue); margin-left: 3px; }
.dcard__phlabel { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(247,255,255,.5); z-index: 2; }
.dcard__body { padding: 22px 24px 26px; }
.dcard__name { color: #fff; font-size: 1.15rem; font-weight: var(--w-bold); margin: 0 0 4px; }
.dcard__loc { color: rgba(247,255,255,.6); font-size: 13.5px; display: flex; align-items: center; gap: 7px; }
.dcard__loc svg.lucide { width: 15px; height: 15px; }

/* CTA card — "Quer ser o próximo?" */
.dcard--cta { grid-column: span 2; background: linear-gradient(120deg, var(--imperial-blue) 0%, var(--imperial-700) 100%);
  border: 1px solid rgba(143,180,255,.4); box-shadow: 0 14px 40px rgba(1,23,70,.45); position: relative; overflow: hidden; }
.dcard--cta::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("assets/logos/NUMO_Grafismo.png") 0 0 / 300px auto repeat;
  filter: brightness(0) invert(1); opacity: .08; }
.dcard--cta:hover { transform: translateY(-4px); border-color: rgba(143,180,255,.75); box-shadow: 0 18px 50px rgba(1,23,70,.55); }
.dcard--cta__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
  gap: 28px; height: 100%; padding: 32px 40px; text-decoration: none; flex-wrap: wrap; }
.dcard--cta__text { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.dcard--cta__icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.12);
  border: 1px solid rgba(143,180,255,.5); display: grid; place-items: center; margin-bottom: 4px; }
.dcard--cta__icon svg.lucide { width: 23px; height: 23px; color: #fff; }
.dcard--cta__title { color: #fff; font-size: 1.7rem; font-weight: var(--w-extrabold); letter-spacing: -.01em; margin: 0; }
.dcard--cta__sub { color: rgba(247,255,255,.78); font-size: 15px; font-weight: var(--w-light); line-height: 1.45; margin: 0; max-width: 360px; }
.dcard--cta__btn { flex-shrink: 0; display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--imperial-blue); font-weight: var(--w-bold); font-size: 15px;
  padding: 14px 26px; border-radius: var(--r-pill); transition: gap var(--dur) var(--ease), transform var(--dur) var(--ease); }
.dcard--cta__btn svg.lucide { width: 17px; height: 17px; }
.dcard--cta:hover .dcard--cta__btn { gap: 13px; }

/* ============ QUEM SOMOS ============ */
.about { background: #fff; }
.about__inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.about__media { position: relative; border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--shadow-lg); }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__copy h2 { font-size: var(--fs-h1); font-weight: var(--w-extrabold); letter-spacing: -.02em; line-height: var(--lh-snug); margin: 0 0 22px; }
.about__copy p { font-size: 16.5px; color: var(--fg); line-height: 1.65; margin: 0 0 18px; }
.about__copy p.lead { font-size: var(--fs-lead); font-weight: var(--w-light); color: var(--azul-escuro); }
.about__stat { margin-top: 34px; padding: 26px 30px; border-radius: var(--r-xl); background: var(--branco-gelo);
  border: 1px solid var(--border); display: flex; gap: 22px; align-items: center; }
.about__stat .big { font-size: 3.2rem; font-weight: var(--w-extrabold); color: var(--imperial-blue); letter-spacing: -.03em; line-height: 1; flex: none; }
.about__stat .txt { font-size: 15px; color: var(--fg-muted); line-height: 1.45; }
.about__stat .txt b { color: var(--azul-escuro); font-weight: var(--w-semibold); }

/* ============ BLOG ============ */
.blog { background: #fff; border-top: 1px solid var(--border); }
.blog__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.post { background: #fff; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--azul-escuro); }
.post__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.post:hover .post__thumb img { transform: scale(1.05); }
.post__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post__cat { font-size: 11px; font-weight: var(--w-semibold); letter-spacing: .14em; text-transform: uppercase; color: var(--imperial-300); margin-bottom: 12px; }
.post h3 { font-size: 1.2rem; font-weight: var(--w-bold); color: var(--azul-escuro); line-height: 1.3; margin: 0 0 16px; letter-spacing: -.01em; flex: 1; }
.post__more { font-size: 14px; font-weight: var(--w-semibold); color: var(--imperial-blue); display: inline-flex; align-items: center; gap: 8px; transition: gap var(--dur) var(--ease); }
.post:hover .post__more { gap: 13px; }

/* ============ FAQ ============ */
.faq { background: var(--branco-gelo); border-top: 1px solid var(--border); }
.faq__list { margin-top: 48px; max-width: 880px; margin-left: auto; margin-right: auto; }
.qa { border-bottom: 1px solid var(--border); }
.qa__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 4px; font-size: 1.15rem; font-weight: var(--w-semibold); color: var(--azul-escuro); letter-spacing: -.01em; }
.qa__q svg.lucide { flex: none; color: var(--imperial-blue); transition: transform var(--dur) var(--ease); }
.qa.open .qa__q svg.lucide { transform: rotate(45deg); }
.qa__a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease); }
.qa__a > div { padding: 0 4px 28px; font-size: 16px; color: var(--fg-muted); line-height: 1.65; max-width: 760px; }

/* ============ CTA FINAL ============ */
.cta { background: var(--grad-hero); position: relative; overflow: hidden; text-align: center; }
.cta__graf { position: absolute; right: -80px; bottom: -80px; width: 520px; opacity: .07; filter: brightness(0) invert(1); }
.cta__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta h2 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: var(--w-extrabold); letter-spacing: -.025em;
  line-height: 1.06; margin: 0 0 20px; text-wrap: balance; }
.cta p { color: rgba(247,255,255,.8); font-size: var(--fs-lead); font-weight: var(--w-light); margin: 0 0 36px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta__resp { margin-top: 24px; font-size: 13.5px; color: rgba(247,255,255,.55); display: flex; align-items: center; justify-content: center; gap: 9px; }
.cta__resp svg.lucide { width: 16px; height: 16px; }

/* ============ FOOTER ============ */
.footer { background: var(--azul-escuro); color: rgba(247,255,255,.62); padding: clamp(56px,7vw,80px) 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo { height: 30px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer__tagline { font-size: 14.5px; line-height: 1.6; max-width: 280px; }
.footer h4 { color: #fff; font-size: 12px; font-weight: var(--w-semibold); letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer a { font-size: 14.5px; transition: color var(--dur) var(--ease); }
.footer a:hover { color: #fff; }
.footer__contact li { font-size: 14.5px; line-height: 1.5; display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg.lucide { width: 17px; height: 17px; flex: none; margin-top: 2px; color: rgba(247,255,255,.5); }
.footer__social { display: flex; gap: 12px; margin-top: 4px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); transition: all var(--dur) var(--ease); }
.footer__social a:hover { background: rgba(255,255,255,.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ============ WHATSAPP FLOAT ============ */
/* (não incluído — CTAs diretos no nav, blocos e rodapé) */

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .metodo__top, .lev__inner, .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .metodo__media, .about__media { aspect-ratio: 16/10; max-height: 420px; }
  .objc { grid-template-columns: 1fr; gap: 18px; }
  .objc__reply { padding-left: 22px; }
}
/* nav collapses to burger early — the labels are long */
@media (max-width: 1160px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: grid; place-items: center; width: 44px; height: 44px; }
  .nav__burger svg.lucide { width: 26px; height: 26px; }
  .nav--ondark .nav__burger { color: #fff; }
  .nav--solid .nav__burger { color: var(--azul-escuro); }
}
@media (max-width: 860px) {
  .wrap { padding: 0 24px; }
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: grid; place-items: center; width: 44px; height: 44px; }
  .nav__burger svg.lucide { width: 26px; height: 26px; }
  .nav--ondark .nav__burger { color: #fff; }
  .nav--solid .nav__burger { color: var(--azul-escuro); }
  .objs__grid, .depo__grid, .blog__grid, .cidades__grid { grid-template-columns: 1fr; }
  .table-wrap { overflow-x: auto; }
  table.cmp { min-width: 640px; }
  .hero { min-height: 92vh; }
  .about__stat .big { font-size: 2.6rem; }
}
/* menu mobile simples */
.mobile-menu { position: fixed; inset: 0; z-index: 70; background: var(--imperial-blue); padding: 90px 32px 32px;
  transform: translateY(-100%); visibility: hidden; pointer-events: none;
  transition: transform var(--dur) var(--ease), visibility var(--dur) var(--ease); display: flex; flex-direction: column; gap: 6px; }
.mobile-menu.open { transform: none; visibility: visible; pointer-events: auto; }
.mobile-menu a { color: #fff; font-size: 1.5rem; font-weight: var(--w-semibold); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-menu .btn { margin-top: 22px; justify-content: center; }
.mobile-close { position: absolute; top: 26px; right: 24px; color: #fff; width: 44px; height: 44px; display: grid; place-items: center; }
.mobile-close svg.lucide { width: 28px; height: 28px; }

/* ============ LEAD CTA (inline) ============ */
.lead-cta { margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.lead-cta .btn--primary svg.lucide { width: 19px; height: 19px; }
.lead-cta__note { font-size: 14px; font-weight: var(--w-regular); color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 8px; }
.lead-cta__note svg.lucide { width: 15px; height: 15px; opacity: .7; }

/* ============ LEAD MODAL ============ */
.lead-modal { display: none; position: fixed; inset: 0; z-index: 9998;
  background: var(--veil-dark); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  padding: 24px 16px; overflow-y: auto; }
.lead-modal.open { display: flex; align-items: center; justify-content: center; }
.lead-modal__card { position: relative; width: 100%; max-width: 470px; margin: auto;
  background: var(--branco); border-radius: var(--r-2xl); box-shadow: var(--shadow-lg);
  padding: 44px 40px 36px; opacity: 1; animation: leadIn var(--dur) var(--ease); }
@keyframes leadIn { from { transform: translateY(16px); } to { transform: none; } }
.lead-modal__close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px;
  display: grid; place-items: center; border-radius: var(--r-pill); color: var(--fg-muted);
  background: var(--branco-gelo); transition: all var(--dur) var(--ease); }
.lead-modal__close:hover { background: rgba(1,23,70,.08); color: var(--imperial-blue); }
.lead-modal__close svg.lucide { width: 20px; height: 20px; }

.lead-modal__form h3 { font-size: var(--fs-h3); font-weight: var(--w-extrabold);
  letter-spacing: var(--track-tight); line-height: var(--lh-snug); color: var(--fg); margin: 0; text-wrap: balance; }
.lead-modal__form > p { font-size: 15px; font-weight: var(--w-light); color: var(--fg-muted);
  line-height: 1.55; margin: 14px 0 26px; }

#leadForm, #proxForm { display: flex; flex-direction: column; gap: 16px; }
.lf-field { display: flex; flex-direction: column; gap: 7px; }
.lf-field > span { font-size: 13px; font-weight: var(--w-semibold); color: var(--fg); letter-spacing: .01em; }
.lf-field input, .lf-phone select {
  font-family: var(--font); font-size: 15px; color: var(--fg);
  padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--r-md);
  background: var(--branco-gelo); transition: all var(--dur) var(--ease); width: 100%; }
.lf-field input::placeholder { color: var(--fg-muted); opacity: .6; }
.lf-field input:focus, .lf-phone select:focus { outline: none; border-color: var(--imperial-blue);
  background: var(--branco); box-shadow: 0 0 0 4px rgba(1,23,70,.08); }
.lf-field.err input, .lf-field.err select { border-color: #c0392b; background: rgba(192,57,43,.05); }
.lf-phone { display: flex; gap: 10px; }
.lf-phone select { width: auto; flex: 0 0 auto; cursor: pointer; font-weight: var(--w-medium); }
.lf-phone input { flex: 1; }

.lf-submit { width: 100%; justify-content: center; margin-top: 4px; position: relative; }
.lf-submit__loading { display: none; align-items: center; gap: 10px; }
.lf-submit.is-loading .lf-submit__label { display: none; }
.lf-submit.is-loading .lf-submit__loading { display: inline-flex; }
.lf-submit__label { display: inline-flex; align-items: center; gap: 10px; }
.lf-submit__loading svg.lucide { animation: lfSpin .8s linear infinite; }
@keyframes lfSpin { to { transform: rotate(360deg); } }
.lf-priv { font-size: 12.5px; color: var(--fg-muted); display: flex; align-items: center; gap: 7px;
  justify-content: center; margin: 4px 0 0; }
.lf-priv svg.lucide { width: 15px; height: 15px; opacity: .7; }

.lead-modal__done { display: none; text-align: center; padding: 8px 0; }
.lf-done-icon { width: 64px; height: 64px; border-radius: var(--r-pill); margin: 0 auto 22px;
  display: grid; place-items: center; background: rgba(1,23,70,.07); color: var(--imperial-blue); }
.lf-done-icon svg.lucide { width: 32px; height: 32px; stroke-width: 2.4; }
.lead-modal__done h3 { font-size: var(--fs-h3); font-weight: var(--w-extrabold);
  letter-spacing: var(--track-tight); color: var(--fg); margin: 0; }
.lead-modal__done p { font-size: 15px; font-weight: var(--w-light); color: var(--fg-muted);
  line-height: 1.55; margin: 14px auto 26px; max-width: 340px; }
.lead-modal__done .btn { width: 100%; justify-content: center; }

@media (max-width: 480px) {
  .lead-modal__card { padding: 40px 24px 28px; border-radius: var(--r-xl); }
}

/* ============ DEPOIMENTOS — botões clicáveis ============ */
button.dcard__video { appearance: none; -webkit-appearance: none; border: 0; margin: 0;
  font: inherit; color: inherit; cursor: pointer; width: 100%; }
button.dcard--cta__inner { appearance: none; -webkit-appearance: none; border: 0; margin: 0;
  font: inherit; color: inherit; cursor: pointer; width: 100%; text-align: left; background: transparent; }

/* ============ VIDEO MODAL ============ */
.vid-modal { display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(4,14,23,.88); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 64px 24px 32px; }
.vid-modal.open { display: flex; align-items: center; justify-content: center; }
.vid-modal__inner { position: relative; width: 100%; max-width: min(1040px, 152vh); margin: auto; }
.vid-modal__frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-lg); background: #000; animation: leadIn var(--dur) var(--ease); }
.vid-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vid-modal--vertical .vid-modal__inner { width: auto; max-width: none; }
.vid-modal--vertical .vid-modal__frame { aspect-ratio: 9/16; height: min(80vh, 760px); width: auto; }
.vid-modal__close { position: absolute; top: -54px; right: 0; width: 46px; height: 46px;
  display: grid; place-items: center; border-radius: var(--r-pill); color: #fff;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); cursor: pointer;
  transition: background var(--dur) var(--ease); }
.vid-modal__close:hover { background: rgba(255,255,255,.24); }
.vid-modal__close svg.lucide { width: 22px; height: 22px; }

/* ============ IMÓVEIS / PRODUTOS ============ */
.imoveis { background: var(--branco-gelo); }
.imv__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin: 38px 0 26px; flex-wrap: wrap; }
.imv__filters { display: flex; gap: 10px; flex-wrap: wrap; }
.imv__filter { font-family: var(--font); font-size: 14px; font-weight: var(--w-semibold);
  color: var(--fg-muted); background: var(--branco); border: 1.5px solid var(--border);
  padding: 11px 24px; border-radius: var(--r-pill); cursor: pointer;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.imv__filter:hover { border-color: var(--imperial-300); color: var(--imperial-blue); }
.imv__filter.is-active { background: var(--imperial-blue); border-color: var(--imperial-blue); color: #fff; }
.imv__nav { display: flex; gap: 10px; }
.imv__arrow { width: 46px; height: 46px; border-radius: var(--r-pill); display: grid; place-items: center;
  background: var(--branco); border: 1.5px solid var(--border); color: var(--imperial-blue); cursor: pointer;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.imv__arrow:hover:not(:disabled) { border-color: var(--imperial-blue); background: var(--imperial-blue); color: #fff; }
.imv__arrow:disabled { opacity: .32; cursor: default; }
.imv__arrow svg.lucide { width: 20px; height: 20px; }

.imv__track { display: flex; gap: 22px; overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory; padding: 6px 4px 20px; margin: 0 -4px; scrollbar-width: none; }
.imv__track::-webkit-scrollbar { display: none; }
.imv-card { flex: 0 0 330px; scroll-snap-align: start; background: var(--branco);
  border: 1px solid var(--border); border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.imv-card[hidden] { display: none; }
.imv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.imv-card__media { position: relative; height: clamp(150px, 21vh, 210px); background: var(--branco-gelo); }
.imv-card__media img,
.imv-card__media image-slot { display: block; width: 100%; height: 100%; object-fit: cover; }
.imv-card__badge { position: absolute; top: 16px; left: 16px; z-index: 2; pointer-events: none;
  font-size: 11px; font-weight: var(--w-bold); letter-spacing: var(--track-tag); text-transform: uppercase;
  color: #fff; background: var(--azul-escuro); padding: 8px 15px; border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(4,14,23,.3); }
.imv-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.imv-card__loc { font-size: 12px; font-weight: var(--w-bold); letter-spacing: var(--track-tag);
  text-transform: uppercase; color: var(--imperial-300); }
.imv-card__name { font-size: 1.34rem; font-weight: var(--w-extrabold); color: var(--fg);
  margin: 5px 0 14px; letter-spacing: var(--track-tight); }
.imv-card__stats { list-style: none; margin: 0 0 16px; padding: 2px 16px;
  border: 1px solid var(--border); border-radius: var(--r-lg); }
.imv-card__stats li { display: flex; flex-direction: column; gap: 2px; padding: 10px 0;
  border-bottom: 1px solid var(--border); }
.imv-card__stats li:last-child { border-bottom: 0; }
.imv-stat__lbl { font-size: 11px; font-weight: var(--w-semibold); letter-spacing: var(--track-tag);
  text-transform: uppercase; color: var(--fg-muted); }
.imv-stat__val { font-size: 1.08rem; font-weight: var(--w-bold); color: var(--fg); }
.imv-stat__val.accent { color: var(--imperial-blue); }
.imv-card__cta { width: 100%; justify-content: center; margin-top: auto; }
@media (max-width: 600px) {
  .imv-card { flex-basis: 82%; }
}

/* ============================================================
   ELEMENTOS DE MARCA — marcador (A2), hairline (B3), picos (C5), recorte (A1)
   ============================================================ */

/* --- marcador dos picos (reaproveitável) --- */
.brand-tick { display: block; width: 34px; height: 13px; margin: 0 0 18px;
  background: url("assets/logos/numo-mark-imperial.png") left center / contain no-repeat; }

/* A2 — marcador antes de todo cabeçalho .head */
.head::before { content: ""; display: block; width: 34px; height: 13px; margin: 0 0 18px;
  background: url("assets/logos/numo-mark-imperial.png") left center / contain no-repeat; }
.head.centered::before { margin-left: auto; margin-right: auto; background-position: center; }
.depo .head::before { background-image: url("assets/logos/numo-mark-white.png"); }
/* tick branco quando o cabeçalho está sobre fundo escuro */
.on-dark .head::before, .head.on-dark::before, .prova .head::before { background-image: url("assets/logos/numo-mark-white.png"); }
.blog__head .head::before { margin-bottom: 16px; }

/* B4 — grafismo reaproveitável em seção clara (canto, bem sutil) */
.sec-graf { position: absolute; top: -30px; right: -60px; width: 44%; height: 62%; z-index: 0; pointer-events: none;
  background: url("assets/logos/NUMO_Grafismo.png") right top / 300px auto repeat; opacity: .085;
  -webkit-mask-image: radial-gradient(125% 120% at 100% 0, #000, transparent 70%);
  mask-image: radial-gradient(125% 120% at 100% 0, #000, transparent 70%); }
.sec-graf--left { right: auto; left: -60px; background-position: left top;
  -webkit-mask-image: radial-gradient(125% 120% at 0 0, #000, transparent 70%);
  mask-image: radial-gradient(125% 120% at 0 0, #000, transparent 70%); }
.sec-graf ~ .wrap { position: relative; z-index: 1; }

/* B3 — divisor de hairlines (linhas de gráfico) */
.hrule { position: relative; height: 60px; display: flex; align-items: center; justify-content: center;
  background-color: var(--branco-gelo);
  background-image:
    linear-gradient(90deg, var(--branco-gelo) 0%, rgba(247,255,255,0) 18%, rgba(247,255,255,0) 82%, var(--branco-gelo) 100%),
    repeating-linear-gradient(90deg, rgba(1,23,70,.34) 0 1px, transparent 1px 8px); }
.hrule--white { background-color: #fff;
  background-image:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 18%, rgba(255,255,255,0) 82%, #fff 100%),
    repeating-linear-gradient(90deg, rgba(1,23,70,.34) 0 1px, transparent 1px 8px); }
.hrule__mark { position: relative; z-index: 1; background: var(--branco-gelo); padding: 0 18px;
  display: grid; place-items: center; }
.hrule__mark::after { content: ""; display: block; width: 30px; height: 11px;
  background: url("assets/logos/numo-mark-imp300.png") center / contain no-repeat; }
.hrule--white .hrule__mark { background: #fff; }
/* sem linha horizontal contínua logo abaixo do divisor — só as verticais */
.hrule + .section { border-top: none; }

/* C5 — picos crescentes no Método */
.step__mark { flex: none; width: 46px; display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.step__chart { display: flex; align-items: flex-end; gap: 3px; height: 28px; }
.step__chart i { width: 7px; border-radius: 2px 2px 0 0; background: rgba(1,23,70,.16); display: block;
  transition: background var(--dur) var(--ease); }
.step__chart i:nth-child(1) { height: 30%; }
.step__chart i:nth-child(2) { height: 52%; }
.step__chart i:nth-child(3) { height: 74%; }
.step__chart i:nth-child(4) { height: 100%; }
.step__mark[data-on="1"] i:nth-child(-n+1),
.step__mark[data-on="2"] i:nth-child(-n+2),
.step__mark[data-on="3"] i:nth-child(-n+3),
.step__mark[data-on="4"] i:nth-child(-n+4) { background: var(--imperial-blue); }
.step .step__n { width: auto; height: auto; border-radius: 0; box-shadow: none; display: block;
  font-size: 12px; letter-spacing: .12em; color: var(--imperial-300); }
