/* ============================================================
   CADENVIA — Alternativa DARK (inspirada em aarin.com.br)
   Dark cinematográfico, orbe brilhante, tipografia etérea.
   ============================================================ */

:root {
  --bg:       #050A07;
  --bg-2:     #0A140F;
  --panel:    rgba(255,255,255,.035);
  --panel-2:  rgba(255,255,255,.055);
  --line:     rgba(255,255,255,.09);
  --line-2:   rgba(255,255,255,.16);
  --text:     #EAF1EC;
  --muted:    #A6B7AC;
  --faint:    #5A6B60;
  --cyan:     #3EE38F;
  --blue:     #1FBE63;
  --violet:   #12934D;
  --ember:    #E9764B;   /* elo com a marca (terracota) */
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --display: "Bricolage Grotesque", "Inter", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--cyan); color: #04140C; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(80px, 13vw, 170px) 0; position: relative; }
.eyebrow { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--cyan); font-weight: 600; }
.muted { color: var(--muted); }

h1,h2,h3 { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.04; }

/* ---------- fundo com brilhos ---------- */
.bg-glows { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg-glows::before, .bg-glows::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(120px); opacity: .5;
}
.bg-glows::before { width: 620px; height: 620px; top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(31,190,99,.35), transparent 70%); }
.bg-glows::after { width: 560px; height: 560px; bottom: -160px; right: -120px;
  background: radial-gradient(circle, rgba(18,147,77,.28), transparent 70%); }
.grain { position: fixed; inset: 0; z-index: -1; opacity: .04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); }
.hdr.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 1.16rem; letter-spacing: -0.02em; }
.brand .logo { width: 30px; height: 30px; flex: none; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { padding: 9px 15px; border-radius: 9px; font-size: 0.94rem; color: var(--muted); transition: .2s var(--ease); }
.nav-links a:hover { color: var(--text); background: var(--panel); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.tagline-mini { font-size: 0.8rem; color: var(--faint); letter-spacing: .02em; }

.menu-btn { display: none; width: 40px; height: 40px; border-radius: 9px; align-items: center; justify-content: center; }
.menu-btn span { width: 18px; height: 1.6px; background: var(--text); position: relative; transition: .25s var(--ease); }
.menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.6px; background: var(--text); transition: .25s var(--ease); }
.menu-btn span::before { top: -6px; } .menu-btn span::after { top: 6px; }

@media (max-width: 900px){
  .tagline-mini { display: none; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--bg-2); padding: 14px var(--pad) 24px; gap: 2px; border-bottom: 1px solid var(--line);
    transform: translateY(-135%); transition: transform .35s var(--ease); box-shadow: 0 26px 44px -28px #000a;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 4px; font-size: 1.05rem; }
  .menu-btn { display: flex; }
}
/* em telas estreitas, o botão de CTA some do header para o hambúrguer caber */
@media (max-width: 620px){
  .nav-right .btn--primary { display: none; }
  .nav { gap: 12px; }
}

/* ---------- botões ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 24px; border-radius: 999px;
  font-weight: 500; font-size: 0.96rem; transition: .25s var(--ease); letter-spacing: -0.01em; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--primary { color: #04140C; background: linear-gradient(100deg, var(--cyan), var(--blue));
  box-shadow: 0 0 0 1px rgba(62,227,143,.3), 0 14px 40px -14px rgba(31,190,99,.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(62,227,143,.5), 0 18px 50px -14px rgba(31,190,99,.75); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--text); }
.btn--ghost:hover { background: var(--panel); border-color: var(--cyan); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.lang { display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px; overflow: hidden; font-size: .78rem; font-weight: 600; }
.lang button { padding: 5px 11px; color: var(--faint); }
.lang button.active { background: var(--text); color: var(--bg); }

/* ---------- HERO ---------- */
.hero { text-align: center; padding: clamp(60px,10vw,120px) 0 clamp(40px,7vw,90px); position: relative; }
.hero .ghost-word { font-family: var(--display); font-weight: 300; font-size: clamp(6rem, 26vw, 20rem);
  line-height: .8; letter-spacing: -.04em; text-align: center;
  background: linear-gradient(180deg, rgba(236,238,245,.14), rgba(236,238,245,0));
  -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none; }
.hero .hero-over { margin-top: clamp(-90px,-9vw,-40px); position: relative; }
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 4.2rem); letter-spacing: -0.03em; max-width: 16ch; margin: 0 auto; }
.hero h1 .grad { background: linear-gradient(100deg, var(--cyan), var(--blue) 55%, var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { margin: 26px auto 0; max-width: 54ch; color: var(--muted); font-size: clamp(1.05rem,1.6vw,1.25rem); }
.hero .btn-row { justify-content: center; margin-top: 38px; }
.badge-top { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--panel); font-size: .82rem; color: var(--muted); margin-bottom: 30px; }
.badge-top .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

/* ---------- statement gigante ---------- */
.statement { text-align: center; }
.statement h2 { font-size: clamp(2rem, 5.5vw, 4rem); letter-spacing: -0.03em; max-width: 20ch; margin: 0 auto; line-height: 1.08; }
.statement h2 .em { color: var(--cyan); }
.statement .small { color: var(--faint); font-size: .8rem; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 26px; }

/* ---------- ORBE ---------- */
.orb-section { text-align: center; padding: clamp(60px,10vw,130px) 0; }
.orb-wrap { position: relative; width: min(560px, 82vw); aspect-ratio: 1; margin: 0 auto; display: grid; place-items: center; }
.orb {
  position: absolute; inset: 12%; border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(62,227,143,.45), transparent 45%),
    radial-gradient(circle at 68% 72%, rgba(18,147,77,.4), transparent 50%),
    radial-gradient(circle at 50% 50%, #0A2A1C, #030A06 72%);
  box-shadow: inset 0 0 80px rgba(31,190,99,.35), 0 0 120px -10px rgba(31,190,99,.45), 0 0 220px -30px rgba(18,147,77,.5);
}
.orb-lines { position: absolute; inset: 12%; border-radius: 50%; opacity: .55; animation: spin 40s linear infinite; }
.orb-halo { position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, transparent 46%, rgba(62,227,143,.10) 47%, transparent 52%); animation: pulse 6s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{ transform: scale(1); opacity:.6 } 50%{ transform: scale(1.04); opacity:1 } }
.orb-caption { position: relative; z-index: 2; }
.orb-caption h2 { font-size: clamp(2rem,6vw,4rem); letter-spacing: -0.03em; font-weight: 300; }
.orb-caption h2 .q { color: var(--cyan); font-family: var(--sans); }
.orb-section .sub { margin: 20px auto 0; max-width: 46ch; color: var(--muted); }
@media (prefers-reduced-motion: reduce){ .orb-lines,.orb-halo{ animation: none; } }

/* ---------- cards (por onde começar) ---------- */
.section-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(40px,5vw,64px); }
.section-head h2 { font-size: clamp(1.8rem,3.6vw,2.8rem); letter-spacing: -0.03em; margin-top: 16px; }
.section-head .sub { margin-top: 16px; color: var(--muted); }
.grid { display: grid; gap: 20px; }
.cols-3 { grid-template-columns: repeat(3,1fr); }
.cols-2 { grid-template-columns: repeat(2,1fr); }
@media (max-width: 860px){ .cols-3,.cols-2 { grid-template-columns: 1fr; } }

.card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(24px,3vw,34px); transition: .3s var(--ease); overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0; border-radius: 18px; padding: 1px;
  background: linear-gradient(130deg, transparent, rgba(62,227,143,.35), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s var(--ease); }
.card:hover { transform: translateY(-4px); background: var(--panel-2); }
.card:hover::before { opacity: 1; }
.card .q { font-size: .82rem; color: var(--cyan); font-weight: 600; letter-spacing: .04em; }
.card h3 { font-size: 1.35rem; margin: 12px 0 10px; letter-spacing: -0.02em; }
.card p { color: var(--muted); font-size: .98rem; }
.card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(62,227,143,.1); color: var(--cyan); border: 1px solid rgba(62,227,143,.2); }
.card .ic svg { width: 23px; height: 23px; }
.card .tag { display: inline-block; margin-top: 16px; font-size: .8rem; color: var(--muted); }
.card .tag b { color: var(--cyan); font-weight: 600; }
.card .recebe { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.card .recebe .lbl { color: var(--cyan); font-weight: 600; }

/* ---------- mockup painel ---------- */
.mock-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,64px); align-items: center; }
@media (max-width: 900px){ .mock-section { grid-template-columns: 1fr; } }
.mock-section h2 { font-size: clamp(1.8rem,3.6vw,2.8rem); letter-spacing: -0.03em; }
.mock-section .sub { margin-top: 18px; color: var(--muted); max-width: 44ch; }
.laptop { border-radius: 16px; border: 1px solid var(--line-2); background: linear-gradient(160deg, #0D1710, #060B08);
  padding: 16px; box-shadow: 0 40px 90px -40px rgba(31,190,99,.4); }
.laptop .bar { display: flex; gap: 6px; margin-bottom: 14px; }
.laptop .bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.dash { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.kpi { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.kpi .v { font-family: var(--display); font-size: 1.7rem; letter-spacing: -0.02em; }
.kpi .v.up { color: var(--cyan); } .kpi .v.dn { color: var(--ember); }
.kpi .k { font-size: .72rem; color: var(--faint); margin-top: 4px; }
.dash .chart { grid-column: 1 / -1; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; }
.bars span { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--cyan), rgba(31,190,99,.25)); }

/* ---------- eixos ---------- */
.axis { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: clamp(28px,4vw,44px); }
.axis .n { font-family: var(--display); font-size: .9rem; color: var(--cyan); letter-spacing: .1em; text-transform: uppercase; }
.axis h3 { font-size: clamp(1.5rem,2.6vw,2rem); margin: 12px 0 14px; letter-spacing: -0.02em; }
.axis p { color: var(--muted); }
.axis ul { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.axis li { display: flex; gap: 11px; align-items: center; color: var(--muted); font-size: .96rem; }
.axis li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); flex: none; }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta-box { position: relative; border: 1px solid var(--line-2); border-radius: 26px; padding: clamp(44px,7vw,88px) var(--pad);
  background: radial-gradient(circle at 50% 0%, rgba(31,190,99,.14), transparent 60%), var(--bg-2); overflow: hidden; }
.cta-box h2 { font-size: clamp(2rem,4.6vw,3.4rem); letter-spacing: -0.03em; max-width: 18ch; margin: 0 auto; }
.cta-box .sub { margin: 20px auto 32px; max-width: 50ch; color: var(--muted); }
.cta-box .btn-row { justify-content: center; }

/* ---------- footer ---------- */
.ftr { border-top: 1px solid var(--line); padding: clamp(50px,6vw,72px) 0 40px; }
.ftr-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.ftr .brand { margin-bottom: 14px; }
.ftr p { color: var(--muted); max-width: 34ch; font-size: .96rem; }
.ftr-links { display: flex; gap: 40px; flex-wrap: wrap; }
.ftr-links .col h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--faint); margin-bottom: 14px; }
.ftr-links a { display: block; padding: 5px 0; color: var(--muted); font-size: .94rem; }
.ftr-links a:hover { color: var(--cyan); }
.ftr-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--faint); font-size: .85rem; }

/* ---------- pontos cegos ---------- */
.blind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 860px){ .blind-grid { grid-template-columns: 1fr; } }
.blind { display: flex; gap: 15px; align-items: flex-start; padding: 22px 24px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 15px; transition: .3s var(--ease); }
.blind:hover { background: var(--panel-2); border-color: var(--line-2); }
.blind .bi { flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  color: var(--faint); background: rgba(255,255,255,.04); border: 1px solid var(--line); transition: .3s var(--ease); }
.blind:hover .bi { color: var(--cyan); border-color: rgba(62,227,143,.3); }
.blind .bi svg { width: 18px; height: 18px; }
.blind p { color: var(--muted); font-size: .98rem; margin-top: 5px; }
.blind.seal { background: linear-gradient(120deg, rgba(62,227,143,.1), rgba(31,190,99,.04));
  border-color: rgba(62,227,143,.28); }
.blind.seal p { color: var(--text); font-family: var(--display); font-size: 1.1rem; margin-top: 3px; }
.blind .bi.on { color: var(--cyan); border-color: rgba(62,227,143,.3); background: rgba(62,227,143,.08); }

/* ---------- abordagem global (dimensões) ---------- */
.dim { padding: 26px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; transition: .3s var(--ease); }
.dim:hover { background: var(--panel-2); border-color: rgba(62,227,143,.28); transform: translateY(-3px); }
.dim .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
  color: var(--cyan); background: rgba(62,227,143,.09); border: 1px solid rgba(62,227,143,.2); }
.dim .ic svg { width: 22px; height: 22px; }
.dim h3 { font-size: 1.2rem; letter-spacing: -0.02em; margin-bottom: 8px; }
.dim p { color: var(--muted); font-size: .95rem; }
.dim-more { text-align: center; color: var(--faint); margin-top: 28px; font-size: .96rem; max-width: 60ch; margin-left: auto; margin-right: auto; }

/* ---------- indústrias ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 860px){ .ind-grid { grid-template-columns: 1fr; } }
.indcard { padding: 28px; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; transition: .3s var(--ease); display: flex; flex-direction: column; }
.indcard:hover { background: var(--panel-2); border-color: rgba(62,227,143,.28); transform: translateY(-3px); }
.indcard .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; color: var(--cyan); background: rgba(62,227,143,.09); border: 1px solid rgba(62,227,143,.2); }
.indcard .ic svg { width: 23px; height: 23px; }
.indcard h3 { font-size: 1.25rem; letter-spacing: -0.02em; margin-bottom: 10px; }
.indcard p { color: var(--muted); font-size: .95rem; flex: 1; }
.indcard .proof { margin-top: 16px; font-size: .78rem; color: var(--cyan); font-weight: 600; letter-spacing: .02em; }

/* ---------- integrações ---------- */
.integ { padding: 24px 26px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; transition: .3s var(--ease); }
.integ:hover { background: var(--panel-2); border-color: rgba(62,227,143,.24); }
.integ h3 { font-size: 1.05rem; letter-spacing: -0.01em; margin-bottom: 16px; color: var(--text); }
.integ .tools { display: flex; flex-wrap: wrap; gap: 8px; }
.integ .tools span { font-size: .82rem; color: var(--muted); padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.02); transition: .2s var(--ease); }
.integ:hover .tools span { border-color: rgba(62,227,143,.25); color: var(--text); }

/* ---------- página de casos ---------- */
.page-hero { padding: clamp(56px,8vw,110px) 0 clamp(10px,3vw,30px); text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem,5vw,3.8rem); letter-spacing: -0.03em; max-width: 18ch; margin: 18px auto 0; }
.page-hero .sub { margin: 22px auto 0; max-width: 56ch; color: var(--muted); font-size: clamp(1.02rem,1.5vw,1.2rem); }
.case-d { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px,4vw,52px); align-items: center;
  padding: clamp(26px,4vw,42px); background: var(--panel); border: 1px solid var(--line); border-radius: 20px; }
.case-d + .case-d { margin-top: 22px; }
.case-d:nth-child(even) .case-body { order: 2; }
@media (max-width: 820px){ .case-d { grid-template-columns: 1fr; } .case-d:nth-child(even) .case-body { order: 0; } }
.case-d .sector { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); }
.case-d h3 { font-size: clamp(1.5rem,2.6vw,2rem); margin: 12px 0 14px; letter-spacing: -0.02em; }
.case-d p { color: var(--muted); }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cmetric { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.cmetric .v { font-family: var(--display); font-size: clamp(1.9rem,3.4vw,2.6rem); letter-spacing: -0.03em; line-height: 1; color: var(--cyan); }
.cmetric .k { margin-top: 8px; font-size: .84rem; color: var(--muted); }
.cases-note { color: var(--faint); font-size: .88rem; margin-top: 28px; max-width: 70ch; }

/* ---------- método (passos) ---------- */
.steps2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; counter-reset: st; }
@media (max-width: 860px){ .steps2 { grid-template-columns: 1fr; } }
.st2 { padding: 26px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; transition: .3s var(--ease); }
.st2:hover { background: var(--panel-2); border-color: rgba(62,227,143,.24); }
.st2 .num { counter-increment: st; font-family: var(--display); font-size: 1rem; color: var(--cyan); letter-spacing: .06em; }
.st2 .num::before { content: "0" counter(st) " —"; }
.st2 h3 { font-size: 1.2rem; letter-spacing: -0.02em; margin: 8px 0 8px; }
.st2 p { color: var(--muted); font-size: .95rem; }

/* ---------- barra de impacto ---------- */
.impact { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,4vw,48px); padding: clamp(30px,4vw,44px) 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 720px){ .impact { grid-template-columns: 1fr 1fr; gap: 28px 20px; } }
.impact .stat .num { font-family: var(--display); font-size: clamp(2rem,4vw,2.8rem); letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(100deg,var(--cyan),var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.impact .stat .lbl { margin-top: 9px; font-size: .88rem; color: var(--muted); max-width: 24ch; }

/* ---------- manifesto de confiança ---------- */
.manifesto { text-align: center; }
.manifesto h2 { font-size: clamp(1.9rem,4.4vw,3.2rem); letter-spacing: -0.03em; max-width: 20ch; margin: 0 auto; line-height: 1.1; }
.manifesto h2 .em { color: var(--cyan); }
.manifesto .sub { margin: 20px auto 0; max-width: 52ch; color: var(--muted); }
.manifesto .small { font-size: .8rem; letter-spacing: .24em; text-transform: uppercase; color: var(--faint); margin-bottom: 24px; }

/* ---------- artigo (insight) ---------- */
.art-hero { max-width: 760px; margin: 0 auto; padding: clamp(40px,7vw,80px) 0 clamp(20px,3vw,32px); }
.art-hero .art-cat { font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; color: var(--cyan); font-weight: 600; }
.art-hero h1 { font-family: var(--display); font-size: clamp(2rem,4.6vw,3.2rem); letter-spacing: -0.03em; line-height: 1.08; margin: 16px 0 0; }
.art-meta2 { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .86rem; color: var(--faint); }
.article-wrap { max-width: 720px; margin: 0 auto; }
.article { font-size: 1.08rem; line-height: 1.85; color: #C2CEC6; padding-bottom: clamp(20px,4vw,40px); }
.article .lead { font-size: 1.28rem; line-height: 1.6; color: var(--text); margin-bottom: 1.6em; letter-spacing: -0.01em; }
.article p { margin-bottom: 1.35em; }
.article h2 { font-family: var(--display); font-size: clamp(1.4rem,2.6vw,1.85rem); letter-spacing: -0.02em; color: var(--text); margin: 2em 0 .7em; }
.article h2 .idx { color: var(--cyan); }
.article strong { color: var(--text); font-weight: 600; }
.article ul { margin: 1em 0 1.4em; padding-left: 0; list-style: none; }
.article ul li { position: relative; padding-left: 22px; margin-bottom: .7em; }
.article ul li::before { content: ""; position: absolute; left: 2px; top: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.article blockquote { margin: 1.6em 0; padding: 6px 0 6px 22px; border-left: 2px solid var(--cyan); color: var(--text); font-family: var(--display); font-size: 1.2rem; }
.art-stat { margin: 1.8em 0; padding: 22px 24px; border: 1px solid rgba(62,227,143,.25); border-radius: 14px; background: rgba(62,227,143,.05); }
.art-stat .big { font-family: var(--display); font-size: clamp(1.7rem,3vw,2.1rem); letter-spacing: -0.02em; color: var(--cyan); line-height: 1.1; }
.art-stat p { margin: 8px 0 0; color: var(--text); font-size: 1rem; }
.art-stat .src { display: block; margin-top: 10px; font-size: .8rem; color: var(--faint); }
.article-cta { max-width: 720px; margin: clamp(30px,4vw,48px) auto 0; padding-top: clamp(28px,3vw,40px); border-top: 1px solid var(--line); text-align: center; }
.article-cta h3 { font-family: var(--display); font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 16px; }
.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; color: var(--muted); margin-bottom: 8px; }
.back-link:hover { color: var(--cyan); }

/* ---------- insights ---------- */
.ins-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px){ .ins-grid { grid-template-columns: 1fr; } }
.inscard { display: flex; flex-direction: column; padding: clamp(24px,3vw,32px); background: var(--panel); border: 1px solid var(--line); border-radius: 18px; transition: .3s var(--ease); }
.inscard:hover { background: var(--panel-2); border-color: rgba(62,227,143,.28); transform: translateY(-3px); }
.inscard .cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cyan); font-weight: 600; }
.inscard h3 { font-size: 1.3rem; letter-spacing: -0.02em; margin: 14px 0 10px; }
.inscard p { color: var(--muted); font-size: .95rem; flex: 1; }
.inscard .meta { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--faint); }
.inscard .meta .soon { color: var(--cyan); font-weight: 600; }

/* ---------- faixa de marcas (hero) ---------- */
.logostrip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; margin-top: clamp(40px,6vw,72px); }
.logostrip .lbl { text-align: center; font-size: .72rem; text-transform: uppercase; letter-spacing: .22em; color: var(--faint); margin-bottom: 18px; }
.logostrip .marks { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(24px,5vw,56px); }
.logostrip .marks span { font-family: var(--display); font-weight: 600; font-size: clamp(1.1rem,2vw,1.5rem); letter-spacing: -0.01em;
  color: var(--muted); opacity: .85; transition: .25s var(--ease); }
.logostrip .marks span:hover { color: var(--cyan); opacity: 1; }

/* ---------- logos de marca (com fallback p/ texto) ---------- */
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 30px; width: auto; max-width: 128px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .66; transition: opacity .25s var(--ease); }
.brand-logo:hover img { opacity: 1; }
.brand-logo img + i { display: none; }   /* logo carregou → esconde o texto */
.brand-logo i { font-style: normal; font-family: var(--display); font-weight: 600; color: var(--muted); }
.cli .names .brand-logo img { height: 22px; max-width: 96px; }
.cli .names .brand-logo i { font-size: 1rem; }

/* ---------- case em destaque (spotlight) ---------- */
.spotlight { position: relative; border: 1px solid rgba(62,227,143,.3); border-radius: 26px; overflow: hidden;
  background: radial-gradient(130% 130% at 0% 0%, rgba(62,227,143,.12), transparent 48%), var(--bg-2);
  padding: clamp(30px,5vw,58px); display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(30px,5vw,56px); align-items: center; }
@media (max-width: 860px){ .spotlight { grid-template-columns: 1fr; } }
.spotlight .tag { display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em;
  font-weight: 700; color: var(--cyan); margin-bottom: 18px; }
.spotlight .tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.spotlight h3 { font-family: var(--display); font-size: clamp(1.6rem,3vw,2.3rem); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.spotlight p { color: var(--muted); font-size: 1.02rem; }
.spotlight .who { margin-top: 20px; font-size: .88rem; color: var(--text); }
.spotlight .who b { color: var(--cyan); font-weight: 600; }
.spotlight .who span { color: var(--faint); }
.spot-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.spot-nums .n { background: var(--bg-2); padding: 22px; }
.spot-nums .v { font-family: var(--display); font-size: clamp(1.8rem,3.4vw,2.4rem); letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(100deg,var(--cyan),var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.spot-nums .k { margin-top: 8px; font-size: .82rem; color: var(--muted); }

/* ---------- clientes (cards) ---------- */
.cli-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: clamp(28px,4vw,44px); }
@media (max-width: 860px){ .cli-grid { grid-template-columns: 1fr; } }
.cli { padding: 26px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; transition: .3s var(--ease); }
.cli:hover { background: var(--panel-2); border-color: rgba(62,227,143,.24); }
.cli .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cyan); font-weight: 600; }
.cli .names { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 12px; }
.cli .names span { font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--text); padding: 5px 12px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--line-2); }
.cli p { color: var(--muted); font-size: .92rem; }

/* ---------- prova social ---------- */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px){ .quotes { grid-template-columns: 1fr; } }
.quote { padding: clamp(26px,3vw,38px); background: var(--panel); border: 1px solid var(--line); border-radius: 18px; }
.quote .mark { font-family: var(--display); font-size: 2.4rem; line-height: .6; color: var(--cyan); }
.quote p { font-size: 1.15rem; color: var(--text); margin: 10px 0 18px; letter-spacing: -0.01em; }
.quote .who { font-size: .85rem; color: var(--muted); }
.quote .who b { color: var(--text); font-weight: 600; }
.trust-note { text-align: center; color: var(--faint); font-size: .82rem; margin-top: 22px; }

/* ---------- fundador (perfil) ---------- */
.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px,4vw,52px); align-items: start;
  padding: clamp(28px,4vw,44px); background: var(--panel); border: 1px solid var(--line); border-radius: 20px; text-align: left; }
@media (max-width: 820px){ .founder { grid-template-columns: 1fr; } }
.founder .av { width: 88px; height: 88px; border-radius: 22px; display: grid; place-items: center; font-family: var(--display);
  font-size: 2rem; color: #04140C; background: linear-gradient(135deg,#3EE38F,#12934D); margin-bottom: 20px; }
.founder h3 { font-size: 1.6rem; letter-spacing: -0.02em; margin-bottom: 4px; }
.founder .role { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--cyan); font-weight: 600; }
.founder .certs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.founder .certs span { font-size: .76rem; color: var(--text); padding: 6px 11px; border-radius: 999px; border: 1px solid rgba(62,227,143,.3); background: rgba(62,227,143,.08); }
.founder .f-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: .9rem; font-weight: 500; color: var(--cyan); }
.founder .f-link:hover { text-decoration: underline; }
.founder .f-bio p { color: var(--muted); margin-bottom: 18px; }
.founder .f-highlights { list-style: none; display: grid; gap: 11px; }
.founder .f-highlights li { display: flex; gap: 11px; align-items: flex-start; color: var(--text); font-size: .96rem; }
.founder .f-highlights li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); margin-top: 8px; flex: none; }

/* ---------- sócios fundadores ---------- */
.disc-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 4px 0 clamp(36px,5vw,56px); }
.disc-row span { font-size: .82rem; color: var(--muted); padding: 7px 15px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255,255,255,.02); }
.disc-row span b { color: var(--cyan); font-weight: 600; }
.partners { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 900px){ .partners { grid-template-columns: 1fr; } }
.partner { display: flex; flex-direction: column; padding: clamp(26px,3vw,34px); background: var(--panel); border: 1px solid var(--line); border-radius: 20px; transition: .3s var(--ease); }
.partner:hover { background: var(--panel-2); border-color: rgba(62,227,143,.24); transform: translateY(-3px); }
.partner .av { width: 72px; height: 72px; border-radius: 20px; display: grid; place-items: center; font-family: var(--display); font-size: 1.6rem; color: #04140C; margin-bottom: 18px; }
.partner .av.a { background: linear-gradient(135deg,#3EE38F,#12934D); }
.partner .av.b { background: linear-gradient(135deg,#1FBE63,#0C7A3E); }
.partner .av.c { background: linear-gradient(135deg,#6BF0B0,#1FBE63); }
.partner .seal { align-self: flex-start; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--cyan);
  padding: 5px 11px; border-radius: 999px; border: 1px solid rgba(62,227,143,.3); background: rgba(62,227,143,.08); margin-bottom: 12px; }
.partner h3 { font-size: 1.3rem; letter-spacing: -0.02em; margin-bottom: 4px; }
.partner .dir { font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.partner p { color: var(--muted); font-size: .94rem; flex: 1; }
.partner .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.partner .tags span { font-size: .74rem; color: var(--muted); padding: 5px 10px; border-radius: 999px; border: 1px solid var(--line-2); }
.partner .plink { margin-top: 16px; font-size: .88rem; font-weight: 500; color: var(--cyan); }
.partner .plink:hover { text-decoration: underline; }

/* ---------- equipe ---------- */
.team2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 760px){ .team2 { grid-template-columns: 1fr; } }
.tcard { padding: 28px; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; text-align: left; }
.tcard .av { width: 60px; height: 60px; border-radius: 999px; display: grid; place-items: center; font-family: var(--display); font-size: 1.4rem; color: #04140C; margin-bottom: 18px; }
.tcard .av.a { background: linear-gradient(135deg,#3EE38F,#1FBE63); }
.tcard .av.b { background: linear-gradient(135deg,#1FBE63,#12934D); }
.tcard .av.c { background: linear-gradient(135deg,#5AF0A8,#12934D); }
.tcard h3 { font-size: 1.15rem; margin-bottom: 2px; }
.tcard .role { font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--cyan); font-weight: 600; margin-bottom: 10px; }
.tcard p { color: var(--muted); font-size: .94rem; }

/* ---------- formulário ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px,5vw,64px); align-items: start; text-align: left; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 13px 15px; font-family: inherit; font-size: 1rem; color: var(--text);
  background: rgba(255,255,255,.03); border: 1px solid var(--line-2); border-radius: 11px; transition: .2s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(62,227,143,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .84rem; color: var(--faint); margin-top: 4px; }
#formStatus { display: none; color: var(--cyan); font-weight: 600; margin-top: 10px; }
.contact-aside .row { padding: 16px 0; border-top: 1px solid var(--line); }
.contact-aside .row:first-child { border-top: none; }
.contact-aside .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cyan); }
.contact-aside .v { margin-top: 4px; color: var(--text); }

/* ---------- acessibilidade ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{ opacity:1; transform:none; } html{ scroll-behavior:auto; } }

