/* ============================================================
   scaloo, Sites & Landing Pages
   Dark-first · editorial · cinematic
   ============================================================ */

:root {
  --bg:            #0a0610;
  --bg-soft:       #110a1c;
  --surface:       rgba(255, 255, 255, 0.024);
  --surface-2:     rgba(255, 255, 255, 0.04);
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text:          #f4f1f8;
  --text-soft:     #b6aec6;
  --text-dim:      #7d748f;

  --violet:        #7c3aed;
  --fuchsia:       #d946ef;
  --orange:        #fb923c;
  --green:         #4ade80;
  --grad:          linear-gradient(100deg, #7c3aed 0%, #d946ef 50%, #fb923c 100%);
  --grad-soft:     linear-gradient(100deg, rgba(124,58,237,.16), rgba(217,70,239,.14), rgba(251,146,60,.16));

  --radius:        18px;
  --radius-lg:     26px;
  --maxw:          1180px;

  --ease:          cubic-bezier(.22, 1, .36, 1);
  --shadow:        0 30px 80px -30px rgba(0,0,0,.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.6; font-size: 16px; letter-spacing: -0.011em;
  overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; }

/* ---------- Ambient background ---------- */
.bg-grain { position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background: radial-gradient(120% 90% at 50% -10%, #1a1030 0%, var(--bg) 55%), var(--bg); }
.bg-glow { position: fixed; z-index: -2; pointer-events: none; border-radius: 50%; filter: blur(120px); opacity: .5; }
.bg-glow--top { width: 700px; height: 700px; top: -280px; right: -120px; background: radial-gradient(circle, rgba(217,70,239,.4), transparent 65%); }
.bg-glow--mid { width: 620px; height: 620px; top: 38%; left: -240px; background: radial-gradient(circle, rgba(124,58,237,.34), transparent 65%); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Type helpers ---------- */
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500; color: var(--text-soft); padding: 7px 15px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); backdrop-filter: blur(8px); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fuchsia); box-shadow: 0 0 12px var(--fuchsia); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.kicker { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 18px; }
.kicker--danger { color: var(--orange); }
.section__head { max-width: 760px; margin: 0 auto clamp(48px, 6vw, 72px); text-align: center; }
.section__title { font-size: clamp(30px, 4.6vw, 52px); line-height: 1.06; font-weight: 700; letter-spacing: -0.03em; }
.section__lead { margin-top: 20px; font-size: clamp(16px, 1.6vw, 19px); color: var(--text-soft); }

/* ============================================================ NAV ============ */
.nav { position: sticky; top: 0; z-index: 100; transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(10, 6, 16, .72); backdrop-filter: blur(18px) saturate(150%); border-bottom-color: var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 58px; width: auto; display: block; }
.footer__brand .brand__logo { height: 52px; }
.nav__links { display: flex; gap: 34px; }
.nav__links a { font-size: 14.5px; color: var(--text-soft); font-weight: 500; position: relative; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0; background: var(--grad); transition: width .3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 16px 24px 28px; background: rgba(10,6,16,.96); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
.nav__mobile a { padding: 13px 4px; color: var(--text-soft); font-weight: 500; border-bottom: 1px solid var(--border); }
.nav__mobile .btn { margin-top: 14px; justify-content: center; }
.nav__mobile.is-open { display: flex; animation: slideDown .3s var(--ease); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: inherit; font-weight: 600; font-size: 15px; letter-spacing: -0.01em; border: 1px solid transparent; border-radius: 100px; cursor: pointer; padding: 13px 24px; transition: transform .2s var(--ease), box-shadow .3s, background .3s, border-color .3s; white-space: nowrap; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--primary { color: #fff; background: var(--grad); background-size: 160% 160%; box-shadow: 0 10px 30px -8px rgba(217,70,239,.5), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(217,70,239,.65), inset 0 1px 0 rgba(255,255,255,.3); background-position: 100% 50%; }
.btn--ghost { color: var(--text); background: var(--surface-2); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--surface); border-color: var(--text-dim); transform: translateY(-2px); }
.btn--whats { color: #fff; background: #25d366; box-shadow: 0 10px 30px -10px rgba(37,211,102,.6); width: 100%; }
.btn--whats:hover { transform: translateY(-2px); background: #20bd5a; box-shadow: 0 16px 40px -12px rgba(37,211,102,.7); }

/* ============================================================ HERO ============ */
.hero { padding-top: clamp(50px, 8vw, 90px); padding-bottom: clamp(40px, 5vw, 60px); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; margin-bottom: clamp(50px, 7vw, 80px); }
.hero__title { margin-top: 26px; font-size: clamp(36px, 5.4vw, 64px); line-height: 1.05; font-weight: 800; letter-spacing: -0.04em; }
.hero__title em { font-family: 'Instrument Serif', serif; font-weight: 400; font-style: italic; letter-spacing: -0.01em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__sub { margin-top: 26px; font-size: clamp(16px, 1.7vw, 19px); color: var(--text-soft); max-width: 560px; }
.hero__actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--text-soft); }
.hero__trust strong { color: var(--text); }
.avatars { display: inline-flex; }
.avatars span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff; border: 2px solid var(--bg); margin-left: -10px; background: var(--grad); }
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(135deg,#d946ef,#fb923c); }
.avatars span:nth-child(3) { background: linear-gradient(135deg,#7c3aed,#d946ef); }
.avatars span:last-child { background: var(--surface-2); color: var(--text-soft); border-color: var(--bg); }

/* Browser mock */
.hero__visual { position: relative; }
.browser { background: linear-gradient(165deg, var(--surface-2), var(--surface)); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.browser__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--border); }
.browser__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.browser__dot:nth-child(1){ background:#fb7185; } .browser__dot:nth-child(2){ background:#fbbf24; } .browser__dot:nth-child(3){ background:#4ade80; }
.browser__url { margin-left: 10px; flex: 1; font-size: 12px; color: var(--text-dim); background: rgba(0,0,0,.3); border-radius: 8px; padding: 6px 12px; }
.browser__view { padding: 24px; }
.mock-hero { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; padding-bottom: 22px; }
.mock-badge { font-size: 11px; padding: 5px 12px; border-radius: 100px; background: var(--grad-soft); border: 1px solid var(--border); color: var(--text-soft); }
.mock-h1 { height: 16px; width: 90%; border-radius: 6px; background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.1)); }
.mock-h1--short { width: 60%; }
.mock-text { height: 8px; width: 80%; border-radius: 5px; background: rgba(255,255,255,.08); }
.mock-text--short { width: 55%; }
.mock-cta { margin-top: 8px; font-size: 12px; font-weight: 600; color: #fff; padding: 9px 18px; border-radius: 100px; background: var(--grad); box-shadow: 0 8px 20px -8px rgba(217,70,239,.6); }
.mock-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mock-card { height: 64px; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid var(--border); }

/* Floating cards + gauge */
.float-card { position: absolute; background: rgba(17,10,28,.92); border: 1px solid var(--border-strong); border-radius: 16px; padding: 14px 18px; backdrop-filter: blur(14px); box-shadow: var(--shadow); animation: floaty 5s ease-in-out infinite; }
.float-card--gauge { top: -26px; right: -22px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.float-card--conv { bottom: -22px; left: -24px; animation-delay: -2.5s; }
.float-card__num { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.float-card--gauge .float-card__num { color: var(--green); }
.float-card--conv .float-card__num { color: var(--fuchsia); }
.float-card__label { font-size: 11.5px; color: var(--text-dim); }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.gauge { width: 56px; height: 56px; transform: rotate(-90deg); margin-bottom: 4px; }
.gauge__track { fill: none; stroke: rgba(255,255,255,.1); stroke-width: 7; }
.gauge__fill { fill: none; stroke: var(--green); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 214; stroke-dashoffset: 214; animation: gaugeFill 1.6s var(--ease) forwards .4s; }
@keyframes gaugeFill { to { stroke-dashoffset: 4; } }

/* Proof bar */
.proofbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: 28px 20px; backdrop-filter: blur(10px); }
.proofbar__item { text-align: center; }
.proofbar__item strong { display: block; font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.03em; }
.proofbar__item:nth-child(1) strong { color: var(--violet); }
.proofbar__item:nth-child(2) strong { color: var(--fuchsia); }
.proofbar__item:nth-child(3) strong { color: var(--orange); }
.proofbar__item:nth-child(4) strong { color: var(--green); }
.proofbar__item span { font-size: 13px; color: var(--text-dim); }

/* ============================================================ CARDS ============ */
.pain, .feature, .step { position: relative; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 28px; transition: transform .3s var(--ease), border-color .3s, background .3s; overflow: hidden; }
.pain::before, .feature::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: var(--grad-soft); opacity: 0; transition: opacity .35s; pointer-events: none; }
.pain:hover, .feature:hover, .step:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.pain:hover::before, .feature:hover::before { opacity: 1; }
.pain__icon { font-size: 28px; margin-bottom: 16px; }
.pain h3, .feature h3, .step h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; position: relative; }
.pain p, .feature p, .step p { color: var(--text-soft); font-size: 15px; position: relative; }
.feature__num { font-family: 'Instrument Serif', serif; font-size: 34px; margin-bottom: 8px; -webkit-text-fill-color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; opacity: .9; }

/* ============================================================ SHOWCASE ============ */
.section--showcase { background: linear-gradient(180deg, transparent, rgba(124,58,237,.04), transparent); }
.showcase { display: flex; flex-direction: column; gap: 22px; }
.showcase__row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: clamp(28px, 4vw, 48px); }
.showcase__row--reverse .showcase__text { order: 2; }
.showcase__text h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 14px; }
.showcase__text p { color: var(--text-soft); font-size: 16px; }
.showcase__text strong { color: var(--text); }
.showcase__card { background: rgba(0,0,0,.25); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.showcase__card--center { display: grid; place-items: center; }

/* Big gauge */
.gauge-big { position: relative; width: 180px; height: 180px; }
.gauge-big svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge-big .gauge__track { stroke-width: 10; }
.gauge-big__fill { fill: none; stroke: url(#x); stroke: var(--green); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 427; stroke-dashoffset: 427; }
.gauge-big.is-visible .gauge-big__fill { animation: gaugeBig 1.8s var(--ease) forwards; }
@keyframes gaugeBig { to { stroke-dashoffset: 8; } }
.gauge-big__label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.gauge-big__label span { font-size: 46px; font-weight: 800; letter-spacing: -0.04em; color: var(--green); }
.gauge-big__label small { display: block; font-size: 12px; color: var(--text-dim); }

/* Devices */
.devices { position: relative; height: 200px; display: grid; place-items: center; }
.device--desktop { width: 260px; height: 165px; border-radius: 12px; border: 2px solid var(--border-strong); background: rgba(255,255,255,.03); padding: 10px; }
.device--desktop span, .device--phone span { display: block; width: 100%; height: 100%; border-radius: 6px; background: var(--grad-soft); }
.device--phone { position: absolute; right: 6px; bottom: -6px; width: 64px; height: 120px; border-radius: 14px; border: 2px solid var(--border-strong); background: var(--bg-soft); padding: 8px 6px; box-shadow: var(--shadow); }
.device--phone span { background: var(--grad); opacity: .85; }

/* Copy flow */
.copyflow { display: flex; flex-direction: column; gap: 10px; }
.copyflow__step { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,.03); font-size: 15px; font-weight: 500; }
.copyflow__step b { width: 26px; height: 26px; flex-shrink: 0; border-radius: 8px; display: grid; place-items: center; font-size: 13px; background: var(--surface-2); color: var(--text-soft); }
.copyflow__step--cta { background: var(--grad-soft); border-color: var(--border-strong); }
.copyflow__step--cta b { background: var(--grad); color: #fff; }

/* ============================================================ STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps--5 { grid-template-columns: repeat(5, 1fr); position: relative; }
.steps--5 .step { position: relative; z-index: 1; }
.step__num { position: relative; z-index: 2; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--grad); color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 18px; box-shadow: 0 8px 20px -8px rgba(217,70,239,.6); transition: transform .35s var(--ease), box-shadow .35s; }
.step h3 { font-size: 17px; }
.step p { font-size: 14px; }

/* --- Timeline animada: do briefing ao lançamento --- */
/* Linha conectora entre os badges (desktop) */
@media (min-width: 981px) {
  .steps--5::before {
    content: ''; position: absolute; z-index: 0; top: 49px; left: 9%; right: 9%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,.35) 12%, rgba(217,70,239,.4) 50%, rgba(251,146,60,.35) 88%, transparent);
  }
  /* Luz que percorre a linha de ponta a ponta, em loop */
  .steps--5::after {
    content: ''; position: absolute; z-index: 1; top: 45px; left: 9%;
    width: 56px; height: 10px; border-radius: 10px; transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(217,70,239,.95), rgba(217,70,239,0) 70%);
    filter: blur(1px); animation: stepFlow 5s var(--ease) infinite;
  }
}
@keyframes stepFlow {
  0%   { left: 9%;  opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: 91%; opacity: 0; }
}

/* Anel de pulso emanando de cada badge, em sequência (1 -> 5) */
.steps--5 .step__num::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid var(--fuchsia); opacity: 0; pointer-events: none;
  animation: stepRipple 5s ease-out infinite;
}
.steps--5 .step:nth-child(1) .step__num::after { animation-delay: 0s; }
.steps--5 .step:nth-child(2) .step__num::after { animation-delay: .45s; }
.steps--5 .step:nth-child(3) .step__num::after { animation-delay: .9s; }
.steps--5 .step:nth-child(4) .step__num::after { animation-delay: 1.35s; }
.steps--5 .step:nth-child(5) .step__num::after { animation-delay: 1.8s; }
@keyframes stepRipple {
  0%   { transform: scale(1);   opacity: 0; }
  6%   { opacity: .85; }
  45%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Badge "acende" em sequência junto do pulso */
.steps--5 .step__num { animation: stepGlow 5s ease-in-out infinite; }
.steps--5 .step:nth-child(1) .step__num { animation-delay: 0s; }
.steps--5 .step:nth-child(2) .step__num { animation-delay: .45s; }
.steps--5 .step:nth-child(3) .step__num { animation-delay: .9s; }
.steps--5 .step:nth-child(4) .step__num { animation-delay: 1.35s; }
.steps--5 .step:nth-child(5) .step__num { animation-delay: 1.8s; }
@keyframes stepGlow {
  0%, 30%, 100% { box-shadow: 0 8px 20px -8px rgba(217,70,239,.6); transform: translateY(0) scale(1); }
  10% { box-shadow: 0 10px 34px -6px rgba(217,70,239,.95); transform: translateY(-4px) scale(1.07); }
}

/* Hover: badge reage */
.steps--5 .step:hover .step__num { transform: translateY(-3px) scale(1.08) rotate(-4deg); box-shadow: 0 14px 34px -8px rgba(217,70,239,.85); }

.portfolio__more { text-align: center; margin-top: 40px; }

/* ============================================================ PÁGINA DE PROJETOS ============ */
.work-hero { padding-bottom: 0; }
.work-hero .section__head { margin-bottom: 0; }
.work-hero .proofbar { margin-top: clamp(34px, 5vw, 48px); }
.work-section { padding-top: clamp(44px, 5vw, 64px); }
.work { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.work__card {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.work__card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: 0 30px 70px -30px rgba(0,0,0,.7); }
.work__frame { display: block; position: relative; overflow: hidden; background: #000; }
.work__bar { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: rgba(12,8,20,.9); border-bottom: 1px solid var(--border); }
.work__dots { display: inline-flex; gap: 6px; }
.work__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.work__dots i:nth-child(1) { background: #ff5f57; } .work__dots i:nth-child(2) { background: #febc2e; } .work__dots i:nth-child(3) { background: #28c840; }
.work__url { font-size: 12.5px; color: var(--text-dim); letter-spacing: -0.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.work__shot { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: top center; transition: transform .6s var(--ease); }
.work__card:hover .work__shot { transform: scale(1.04); }
.work__body { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.work__tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 14px; }
.work__name { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
.work__desc { color: var(--text-soft); font-size: 15px; line-height: 1.6; flex: 1; }
.work__link { margin-top: 26px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px; width: fit-content; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; transition: gap .25s var(--ease); }
.work__link span { -webkit-text-fill-color: var(--fuchsia); }
.work__link:hover { gap: 12px; }

.work-cta { text-align: center; margin-top: clamp(56px, 8vw, 96px); padding: clamp(36px, 5vw, 56px); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: linear-gradient(165deg, rgba(124,58,237,.12), rgba(10,6,16,.35)); }
.work-cta__title { font-size: clamp(24px, 3.4vw, 38px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.work-cta p { margin: 16px auto 28px; color: var(--text-soft); font-size: 17px; max-width: 460px; }
@media (max-width: 760px) { .work { grid-template-columns: 1fr; } }

/* ============================================================ QUEM SOMOS ============ */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.about__title { font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin: 16px 0 22px; }
.about__intro p { color: var(--text-soft); font-size: 17px; margin-bottom: 16px; max-width: 560px; }
.about__intro strong { color: var(--text); }
.about__intro .btn { margin-top: 16px; }
.about__panel { position: relative; overflow: hidden; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: linear-gradient(165deg, rgba(124,58,237,.12), rgba(10,6,16,.35)); padding: 40px; }
.about__panel-glow { position: absolute; top: -90px; right: -60px; width: 280px; height: 240px; background: radial-gradient(ellipse, rgba(217,70,239,.35), transparent 70%); filter: blur(50px); pointer-events: none; }
.about__panel h3 { position: relative; font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--text-dim); margin-bottom: 24px; }
.about__values { position: relative; list-style: none; display: flex; flex-direction: column; gap: 18px; }
.about__values li { display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; font-weight: 500; color: var(--text); letter-spacing: -0.01em; }
.about__values b { flex-shrink: 0; margin-top: 2px; font-size: 13px; -webkit-text-fill-color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.about__sign { position: relative; margin-top: 28px; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 22px; color: var(--text-soft); }
@media (max-width: 980px) { .about { grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================ PORTFOLIO ============ */
.project { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: transform .3s var(--ease), border-color .3s; }
.project:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.project__thumb { position: relative; aspect-ratio: 16/10; display: flex; align-items: flex-start; justify-content: flex-end; padding: 14px; }
.project__thumb--1 { background: linear-gradient(135deg,#2a1145,#7c3aed); }
.project__thumb--2 { background: linear-gradient(135deg,#3a1030,#d946ef); }
.project__thumb--3 { background: linear-gradient(135deg,#3a1810,#fb923c); }
.project__thumb--4 { background: linear-gradient(135deg,#1a1040,#a855f7); }
.project__thumb--5 { background: linear-gradient(135deg,#40103a,#e879f9); }
.project__thumb--6 { background: linear-gradient(135deg,#101a40,#7c3aed); }
.project__thumb::after { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 120% at 20% 0%, transparent, rgba(10,6,16,.55)); }
.project__score { position: relative; z-index: 1; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(10,6,16,.7); border: 2px solid var(--green); color: var(--green); font-weight: 800; font-size: 15px; backdrop-filter: blur(6px); }
.project__body { padding: 22px; }
.project__tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 10px; }
.project__body h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.project__body p { font-size: 14px; color: var(--text-soft); }

/* ============================================================ STACK MARQUEE ============ */
.stack { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stack__label { text-align: center; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 28px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span { font-size: clamp(20px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.02em; color: var(--text-dim); transition: color .3s; white-space: nowrap; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span:hover { color: var(--text); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================ PLANOS ============ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface); padding: 34px 30px;
  transition: transform .3s var(--ease), border-color .3s;
}
.plan:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.plan--featured {
  border-color: transparent; background: linear-gradient(180deg, rgba(124,58,237,.14), rgba(10,6,16,.3));
  box-shadow: 0 30px 80px -30px rgba(217,70,239,.5);
}
.plan--featured::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
@media (min-width: 981px) { .plan--featured { transform: scale(1.04); } .plan--featured:hover { transform: scale(1.04) translateY(-4px); } }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 700; letter-spacing: .03em; color: #fff;
  padding: 6px 16px; border-radius: 100px; background: var(--grad); white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(217,70,239,.6);
}
.plan__head { min-height: 78px; }
.plan__name { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.plan__tagline { margin-top: 7px; font-size: 14px; color: var(--text-soft); }
.plan__price { padding: 22px 0; margin: 4px 0 22px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.plan__from { display: block; font-size: 12.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.plan__value { display: inline-flex; align-items: baseline; gap: 4px; font-size: 42px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.plan__value b { font-size: 20px; font-weight: 600; color: var(--text-soft); }
.plan__value--custom { font-size: 30px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.plan__installment { display: block; margin-top: 12px; font-size: 13.5px; color: var(--text-soft); }
.plan__installment strong { color: var(--text); font-weight: 700; }
.plan__period { display: block; margin-top: 8px; font-size: 13px; color: var(--text-dim); }
.plan__features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan__features li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--text-soft); }
.plan__features li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--grad-soft); border: 1px solid var(--border-strong);
}
.plan__features li::after {
  content: ''; position: absolute; left: 5px; top: 7px; width: 7px; height: 4px;
  border-left: 2px solid var(--fuchsia); border-bottom: 2px solid var(--fuchsia);
  transform: rotate(-45deg);
}
.plan__cta { width: 100%; margin-top: auto; }
.pricing__note { text-align: center; margin-top: 30px; font-size: 14px; color: var(--text-dim); }

/* --- Comparativo de recursos --- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.compare { margin-top: 56px; }
.compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.compare__table { width: 100%; min-width: 720px; border-collapse: collapse; }
.compare__table th, .compare__table td { padding: 16px 20px; text-align: center; font-size: 14.5px; border-bottom: 1px solid var(--border); }
.compare__table thead th { padding: 22px 20px; font-size: 16px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); vertical-align: bottom; }
.compare__corner { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--fuchsia); }
.compare__table th[scope="row"] { text-align: left; font-weight: 500; color: var(--text-soft); }
.compare__table tbody td { color: var(--text); }
.compare__table tr:last-child th, .compare__table tr:last-child td { border-bottom: none; }
/* coluna em destaque */
.compare__table .is-featured { background: linear-gradient(180deg, rgba(124,58,237,.12), rgba(217,70,239,.05)); }
.compare__table thead .is-featured { color: #fff; border-top-left-radius: 12px; border-top-right-radius: 12px; }
/* check e dash */
.compare__table td[data-yes], .compare__table td[data-no] { position: relative; }
.compare__table td[data-yes]::after {
  content: ''; display: inline-block; width: 9px; height: 16px;
  border-right: 2.5px solid var(--fuchsia); border-bottom: 2.5px solid var(--fuchsia);
  transform: rotate(40deg); margin-top: -3px;
}
.compare__table td[data-no]::after {
  content: ''; display: inline-block; width: 14px; height: 2.5px; border-radius: 3px;
  background: var(--text-dim); vertical-align: middle;
}

/* ============================================================ TESTIMONIALS ============ */
.quote { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 30px; transition: transform .3s var(--ease), border-color .3s; }
.quote:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.quote__stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 17px; color: var(--text); line-height: 1.55; letter-spacing: -0.015em; }
.quote footer { margin-top: 16px; font-size: 13px; color: var(--text-dim); font-weight: 500; }

/* ============================================================ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chevron { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.faq__chevron::before, .faq__chevron::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--fuchsia); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__chevron::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__chevron::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__chevron::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__body { padding: 0 24px 22px; color: var(--text-soft); font-size: 15.5px; }
.faq__body p { max-width: 600px; }

/* ============================================================ CTA ============ */
.cta__card { position: relative; text-align: center; overflow: hidden; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: linear-gradient(165deg, rgba(124,58,237,.12), rgba(10,6,16,.4)); padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px); }
.cta__glow { position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 520px; height: 320px; background: radial-gradient(ellipse, rgba(217,70,239,.4), transparent 70%); filter: blur(60px); pointer-events: none; }
.cta__title { font-size: clamp(30px, 4.6vw, 54px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; position: relative; }
.cta__lead { margin: 20px auto 0; max-width: 560px; color: var(--text-soft); font-size: 17px; position: relative; }
.cta__form { position: relative; margin: 36px auto 0; max-width: 560px; display: flex; gap: 12px; flex-wrap: wrap; }
.cta__form input { flex: 1; min-width: 180px; padding: 15px 20px; font-family: inherit; font-size: 15px; color: var(--text); background: rgba(0,0,0,.3); border: 1px solid var(--border-strong); border-radius: 100px; outline: none; transition: border-color .25s, box-shadow .25s; }
.cta__form input::placeholder { color: var(--text-dim); }
.cta__form input:focus { border-color: var(--fuchsia); box-shadow: 0 0 0 3px rgba(217,70,239,.18); }
.cta__form select { flex: 1; min-width: 180px; padding: 15px 44px 15px 20px; font-family: inherit; font-size: 15px; color: var(--text); background-color: rgba(0,0,0,.3); border: 1px solid var(--border-strong); border-radius: 100px; outline: none; cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237d748f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 18px center; transition: border-color .25s, box-shadow .25s; }
.cta__form select:focus { border-color: var(--fuchsia); box-shadow: 0 0 0 3px rgba(217,70,239,.18); }
.cta__form select:invalid { color: var(--text-dim); }
.cta__form select option { background: var(--bg-soft); color: var(--text); }
.cta__form .btn { width: 100%; }
.cta__note { margin-top: 16px; font-size: 14.5px; font-weight: 500; position: relative; }
.cta__note.is-success { color: var(--green); }
.cta__note.is-error { color: #fb7185; }
.cta__or { position: relative; margin: 28px auto; max-width: 560px; text-align: center; }
.cta__or::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.cta__or span { position: relative; background: var(--bg); padding: 0 16px; color: var(--text-dim); font-size: 13px; }
.cta__card .btn--whats { max-width: 560px; margin: 0 auto; }

/* ============================================================ FOOTER ============ */
.footer { border-top: 1px solid var(--border); padding: 56px 0 32px; margin-top: 40px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.footer__brand { max-width: 340px; }
.footer__brand p { margin-top: 14px; color: var(--text-dim); font-size: 14.5px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px 28px; align-content: flex-start; }
.footer__links a { color: var(--text-soft); font-size: 14.5px; transition: color .2s; }
.footer__links a:hover { color: var(--text); }
.footer__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; color: var(--text-dim); font-size: 13px; }

/* ============================================================ A11Y / UTIL ============ */
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  padding: 10px 18px; border-radius: 100px; background: var(--grad); color: #fff;
  font-size: 14px; font-weight: 600; transform: translateY(-150%); transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* Foco visível e consistente para teclado */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 2px solid var(--fuchsia); outline-offset: 3px; border-radius: 6px;
}
.btn:focus-visible { outline-offset: 4px; }

/* Honeypot anti-spam */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Nota de privacidade no form */
.cta__privacy { position: relative; margin-top: 14px; font-size: 12.5px; color: var(--text-dim); }
.cta__privacy a { color: var(--text-soft); text-decoration: underline; text-underline-offset: 2px; }
.cta__privacy a:hover { color: var(--text); }

/* Nav: link ativo (scrollspy) */
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after { width: 100%; }

/* ============================================================ FAB (CTA flutuante mobile) ============ */
.fab {
  position: fixed; z-index: 90; right: 18px; bottom: 18px;
  display: none; align-items: center; gap: 9px;
  padding: 14px 20px; border-radius: 100px; color: #fff; font-weight: 700; font-size: 15px;
  background: #25d366; box-shadow: 0 12px 30px -8px rgba(37,211,102,.65);
  transform: translateY(120%); transition: transform .4s var(--ease), box-shadow .3s;
}
.fab.is-shown { transform: translateY(0); }
.fab:active { box-shadow: 0 8px 20px -8px rgba(37,211,102,.7); }
@media (max-width: 760px) { .fab { display: inline-flex; } }

/* ============================================================ CONSENT (LGPD) ============ */
.consent {
  position: fixed; z-index: 150; left: 16px; right: 16px; bottom: 16px; max-width: 520px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
  padding: 18px 20px; border: 1px solid var(--border-strong); border-radius: 18px;
  background: rgba(17,10,28,.92); backdrop-filter: blur(16px); box-shadow: var(--shadow);
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.consent.is-shown { transform: translateY(0); }
.consent__text { flex: 1 1 260px; font-size: 13.5px; color: var(--text-soft); line-height: 1.5; }
.consent__text a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.consent__actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 760px) { .consent { bottom: 84px; } .consent__actions { width: 100%; } .consent__actions .btn { flex: 1; } }

/* ============================================================ LEGAL ============ */
.legal { padding: clamp(64px, 9vw, 120px) 0; }
.legal__head { max-width: 760px; margin-bottom: 42px; }
.legal__title { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; font-weight: 800; letter-spacing: -0.035em; margin-bottom: 18px; }
.legal__lead { color: var(--text-soft); font-size: 17px; max-width: 680px; }
.legal__content { max-width: 760px; color: var(--text-soft); }
.legal__content section { padding: 26px 0; border-top: 1px solid var(--border); }
.legal__content h2 { color: var(--text); font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 12px; }
.legal__content p, .legal__content li { font-size: 16px; }
.legal__content p + p { margin-top: 12px; }
.legal__content ul { margin: 12px 0 0 20px; }
.legal__content a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; } }

/* ============================================================ RESPONSIVE ============ */
@media (max-width: 1040px) { .steps--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 64px; }
  .hero__visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps--5 { grid-template-columns: repeat(2, 1fr); }
  .showcase__row { grid-template-columns: 1fr; gap: 28px; }
  .showcase__row--reverse .showcase__text { order: 0; }
  .pricing { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .grid--2, .grid--3, .grid--4, .proofbar, .steps, .steps--5 { grid-template-columns: 1fr; }
  .proofbar { grid-template-columns: 1fr 1fr; gap: 22px 12px; }
  .hero__actions .btn { width: 100%; }
  .float-card--gauge { right: -6px; top: -16px; }
  .float-card--conv { left: -6px; }
  .cta__form { flex-direction: column; }
}

/* ============================================================
   HOME, Assessoria de Marketing com IA · add-ons
   (mesmos tokens da marca; indistinguível do core)
   ============================================================ */

/* ---------- Hero: mock de dashboard (cresce) ---------- */
.mock-dash { display: flex; flex-direction: column; gap: 16px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-kpi { border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,.03); padding: 12px 13px 11px; }
.mock-kpi b { display: block; font-size: 17px; font-weight: 800; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.mock-kpi span { font-size: 10.5px; color: var(--text-dim); }
.mock-chart { display: flex; align-items: flex-end; gap: 7px; height: 120px; padding: 14px 2px 0; border-top: 1px solid var(--border); }
.mock-bar { flex: 1; border-radius: 6px 6px 0 0; background: var(--grad); transform-origin: bottom; animation: barRise 1s var(--ease) both; }
.mock-bar:nth-child(1){ animation-delay: .05s } .mock-bar:nth-child(2){ animation-delay: .12s } .mock-bar:nth-child(3){ animation-delay: .19s }
.mock-bar:nth-child(4){ animation-delay: .26s } .mock-bar:nth-child(5){ animation-delay: .33s } .mock-bar:nth-child(6){ animation-delay: .40s } .mock-bar:nth-child(7){ animation-delay: .47s }
@keyframes barRise { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ---------- Cases (cards com métrica) ---------- */
.case { position: relative; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: clamp(26px, 3.4vw, 38px); transition: transform .3s var(--ease), border-color .3s; }
.case::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: var(--grad-soft); opacity: 0; transition: opacity .35s; pointer-events: none; }
.case:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.case:hover::before { opacity: 1; }
.case > * { position: relative; }
.case__tag { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--fuchsia); }
.case__name { font-size: clamp(19px, 2.2vw, 23px); font-weight: 700; letter-spacing: -0.025em; margin: 10px 0 20px; }
.case__metric { display: flex; align-items: baseline; gap: 12px; }
.case__metric b { font-size: clamp(40px, 6vw, 58px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.case__metric span { font-size: 14px; color: var(--text-soft); max-width: 180px; }
.case__desc { margin-top: 18px; color: var(--text-soft); font-size: 15px; flex: 1; }
.case__stats { display: flex; gap: 28px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.case__stat strong { display: block; font-size: 19px; font-weight: 800; letter-spacing: -0.03em; }
.case__stat span { font-size: 12.5px; color: var(--text-dim); }
.cases__note { text-align: center; margin-top: 26px; font-size: 13px; color: var(--text-dim); }

/* ---------- AIOS: console de módulos ---------- */
.section--aios { background: linear-gradient(180deg, transparent, rgba(217,70,239,.045), transparent); }
.console { border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(165deg, var(--surface-2), var(--surface)); overflow: hidden; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.console__bar { display: flex; align-items: center; gap: 11px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.console__title { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.console__live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--green); }
.console__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2.4s infinite; }
.console__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 18px; }
.console__mod { border: 1px solid var(--border); border-radius: 14px; background: rgba(255,255,255,.03); padding: 16px; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.console__mod:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.console__mod--active { background: var(--grad-soft); border-color: var(--border-strong); }
.console__mod-icon { font-size: 20px; margin-bottom: 10px; }
.console__mod b { display: block; font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; }
.console__mod span { font-size: 12px; color: var(--text-dim); }
.console__mini { margin-top: 13px; height: 5px; border-radius: 5px; background: rgba(255,255,255,.08); overflow: hidden; }
.console__mini i { display: block; height: 100%; border-radius: 5px; background: var(--grad); }

/* ---------- Conteúdo / blog ---------- */
.post { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 26px; overflow: hidden; transition: transform .3s var(--ease), border-color .3s; }
.post:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.post__thumb { display: block; aspect-ratio: 16 / 9; margin: -26px -26px 20px; background: var(--grad-soft); overflow: hidden; line-height: 0; }
.post__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.post:hover .post__thumb img { transform: scale(1.05); }
.post__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-dim); margin-bottom: 14px; }
.post__cat { font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--fuchsia); }
.post__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-dim); }
.post__title { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 10px; }
.post__excerpt { color: var(--text-soft); font-size: 14.5px; flex: 1; }
.post__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14.5px; width: fit-content; color: var(--fuchsia); transition: gap .25s var(--ease); }
.post__link:hover { gap: 11px; }
.posts__more { text-align: center; margin-top: 40px; }

/* ---------- CTA: garantias + contatos ---------- */
.cta__assure { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-top: 26px; }
.cta__assure span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-soft); }
.contact-methods { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.contact-method { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); font-size: 14px; color: var(--text-soft); transition: transform .2s var(--ease), border-color .25s, color .25s; }
.contact-method:hover { transform: translateY(-2px); border-color: var(--border-strong); color: var(--text); }
.contact-method svg { color: var(--fuchsia); }

@media (max-width: 760px) {
  .console__grid { grid-template-columns: 1fr; }
  .case__stats { gap: 22px; }
}

/* ============================================================
   Comparativo (achismo × scaloo) · casos por setor · manifesto · AIOS
   ============================================================ */

/* ---------- Versus (comparativo) ---------- */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.versus__col { position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: clamp(26px, 3.4vw, 40px); }
.versus__col--good { border-color: transparent; background: linear-gradient(180deg, rgba(124,58,237,.14), rgba(10,6,16,.3)); box-shadow: 0 30px 80px -36px rgba(217,70,239,.45); }
.versus__col--good::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.versus__label { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 7px; }
.versus__col--bad .versus__label { color: var(--text-dim); }
.versus__col--good .versus__label { color: var(--fuchsia); }
.versus__title { position: relative; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 24px; }
.versus__list { position: relative; list-style: none; display: flex; flex-direction: column; gap: 15px; }
.versus__list li { position: relative; padding-left: 32px; font-size: 15.5px; color: var(--text-soft); }
.versus__list li::before { content: ''; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; }
.versus__list--bad li::before { background: rgba(255,255,255,.04); border: 1px solid var(--border); }
.versus__list--bad li::after { content: ''; position: absolute; left: 6px; top: 10px; width: 8px; height: 2px; background: var(--text-dim); border-radius: 2px; }
.versus__list--good li::before { background: var(--grad-soft); border: 1px solid var(--border-strong); }
.versus__list--good li::after { content: ''; position: absolute; left: 5px; top: 7px; width: 7px; height: 4px; border-left: 2px solid var(--fuchsia); border-bottom: 2px solid var(--fuchsia); transform: rotate(-45deg); }
@media (max-width: 760px) { .versus { grid-template-columns: 1fr; } }

/* ---------- Casos de uso por setor ---------- */
.usecase { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 26px; transition: transform .3s var(--ease), border-color .3s; }
.usecase:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.usecase__icon { font-size: 24px; margin-bottom: 14px; }
.usecase__metric { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 4px; }
.usecase h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 9px; }
.usecase p { color: var(--text-soft); font-size: 14.5px; flex: 1; }
.usecase__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag-chip { font-size: 11.5px; color: var(--text-dim); padding: 5px 11px; border: 1px solid var(--border); border-radius: 100px; background: rgba(255,255,255,.02); }

/* ---------- Manifesto (página Sobre) ---------- */
.manifesto { color: var(--text-soft); }
.manifesto .lead-line { font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(24px, 3.6vw, 36px); line-height: 1.28; color: var(--text); margin-bottom: 32px; letter-spacing: -0.01em; }
.manifesto .lead-line em { font-style: italic; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.manifesto p { font-size: clamp(16.5px, 1.9vw, 19px); line-height: 1.7; margin-bottom: 22px; letter-spacing: -0.01em; }
.manifesto p strong { color: var(--text); font-weight: 600; }
.manifesto__sign { margin-top: 8px; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 22px; color: var(--text-soft); }

/* ---------- AIOS: tira de métricas + integrações ---------- */
.aios-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: 28px 20px; backdrop-filter: blur(10px); }
.aios-metric { text-align: center; }
.aios-metric strong { display: block; font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.03em; }
.aios-metric:nth-child(1) strong { color: var(--violet); }
.aios-metric:nth-child(2) strong { color: var(--fuchsia); }
.aios-metric:nth-child(3) strong { color: var(--orange); }
.aios-metric:nth-child(4) strong { color: var(--green); }
.aios-metric span { font-size: 13px; color: var(--text-dim); }
@media (max-width: 620px) { .aios-metrics { grid-template-columns: 1fr 1fr; gap: 22px 12px; } }

/* ============================================================
   Spotlight Sites & Landing Pages · mock que se constrói ao vivo
   ============================================================ */
.section--sites { background: linear-gradient(180deg, transparent, rgba(251,146,60,.05), transparent); }
.lpshow { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.lpshow__copy .section__title { text-align: left; }
.lpshow__lead { margin-top: 18px; font-size: clamp(16px, 1.7vw, 18px); color: var(--text-soft); max-width: 520px; }
.lpshow__list { list-style: none; display: grid; gap: 13px; margin: 26px 0 30px; }
.lpshow__list li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--text); }
.lpshow__list li::before { content: ''; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--border-strong); }
.lpshow__list li::after { content: ''; position: absolute; left: 5px; top: 7px; width: 7px; height: 4px; border-left: 2px solid var(--fuchsia); border-bottom: 2px solid var(--fuchsia); transform: rotate(-45deg); }
.lpshow__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* mock animado */
.lpbuild { position: relative; }
.lpbuild .browser__view { position: relative; overflow: hidden; }
.lpbuild__scan { position: absolute; left: 0; right: 0; top: 0; height: 90px; z-index: 3; pointer-events: none; background: linear-gradient(180deg, rgba(124,58,237,0), rgba(217,70,239,.22) 55%, rgba(124,58,237,0)); mix-blend-mode: screen; animation: lpScan 4.2s var(--ease) infinite; }
@keyframes lpScan { 0% { transform: translateY(-100px); opacity: 0; } 10% { opacity: 1; } 78% { opacity: 1; } 100% { transform: translateY(440px); opacity: 0; } }

.lpb { display: flex; flex-direction: column; gap: 12px; }
.lpb__badge { align-self: flex-start; font-size: 11px; padding: 5px 12px; border-radius: 100px; background: var(--grad-soft); border: 1px solid var(--border); color: var(--text-soft); animation: lpPop 4.2s var(--ease) infinite; }
.lpb__line { height: 13px; border-radius: 6px; background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.06), rgba(255,255,255,.16)); background-size: 200% 100%; animation: lpShimmer 2.6s linear infinite; }
.lpb__line--title { height: 18px; width: 90%; background: var(--grad); background-size: 200% 100%; opacity: .92; animation: lpShimmer 3.2s linear infinite; }
.lpb__line--title2 { width: 58%; }
.lpb__line--short { width: 70%; }
@keyframes lpShimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.lpb__cta { position: relative; overflow: hidden; align-self: flex-start; margin-top: 6px; font-size: 12px; font-weight: 600; color: #fff; padding: 9px 18px; border-radius: 100px; background: var(--grad); box-shadow: 0 8px 20px -8px rgba(217,70,239,.6); }
.lpb__cta::after { content: ''; position: absolute; top: 0; left: -60%; width: 45%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-18deg); animation: lpSweep 3s var(--ease) infinite; }
@keyframes lpSweep { 0% { left: -60%; } 55%, 100% { left: 140%; } }
.lpb__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.lpb__card { height: 52px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid var(--border); animation: lpPop 4.2s var(--ease) infinite; }
.lpb__card:nth-child(2) { animation-delay: .12s; } .lpb__card:nth-child(3) { animation-delay: .24s; }
@keyframes lpPop { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

@media (max-width: 980px) {
  .lpshow { grid-template-columns: 1fr; gap: 44px; }
  .lpshow__visual { max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ============================================================
   Barra de certificações & parcerias (marquee de logos)
   ============================================================ */
.certs__track { display: flex; align-items: center; gap: clamp(48px, 6vw, 84px); width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .certs__track { animation-play-state: paused; }
.cert-logo { height: 30px; width: auto; display: block; opacity: .6; filter: saturate(.9); transition: opacity .3s var(--ease), filter .3s var(--ease), transform .3s var(--ease); }
.cert-logo:hover { opacity: 1; filter: none; transform: translateY(-2px); }
@media (max-width: 620px) { .cert-logo { height: 26px; } .certs__track { gap: 48px; } }

/* ============================================================
   Conteúdo / Blog, índice + artigo
   ============================================================ */
/* destaque do post em destaque no índice */
.post--feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.post--feature .post__cover { background: linear-gradient(150deg, rgba(124,58,237,.30), rgba(217,70,239,.16), rgba(251,146,60,.18)); position: relative; min-height: 240px; overflow: hidden; line-height: 0; }
.post--feature .post__cover img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; display: block; transition: transform .45s var(--ease); }
.post--feature .post__cover::after { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 120% at 20% 0%, transparent, rgba(10,6,16,.5)); }
.post--feature:hover .post__cover img { transform: scale(1.04); }
.post--feature .post__inner { padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.post--feature .post__title { font-size: clamp(22px, 2.8vw, 30px); }
.post--feature .post__excerpt { font-size: 16px; }
@media (max-width: 760px) { .post--feature { grid-template-columns: 1fr; } .post--feature .post__cover { min-height: 160px; } }

/* artigo */
.article { padding: clamp(48px, 7vw, 90px) 0; }
.article__head { max-width: 760px; margin: 0 auto 36px; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 13px; color: var(--text-dim); margin-bottom: 18px; }
.article__cat { font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--fuchsia); }
.article__meta .post__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-dim); }
.article__title { font-size: clamp(30px, 5vw, 50px); line-height: 1.06; font-weight: 800; letter-spacing: -0.035em; margin-bottom: 18px; }
.article__lead { font-size: clamp(17px, 2vw, 20px); color: var(--text-soft); line-height: 1.5; }
.article__body { max-width: 720px; margin: 0 auto; color: var(--text-soft); }
.article__body h2 { color: var(--text); font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -0.02em; line-height: 1.2; margin: 42px 0 14px; }
.article__body h3 { color: var(--text); font-size: 19px; letter-spacing: -0.01em; margin: 30px 0 10px; }
.article__body p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
.article__body ul, .article__body ol { margin: 0 0 18px 22px; }
.article__body li { font-size: 17px; line-height: 1.7; margin-bottom: 8px; }
.article__body strong { color: var(--text); font-weight: 600; }
.article__body a { color: var(--fuchsia); text-decoration: underline; text-underline-offset: 2px; }
.article__pull { margin: 34px 0; padding: 22px 28px; border-left: 2px solid var(--fuchsia); background: var(--surface); border-radius: 0 14px 14px 0; font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4; color: var(--text); }
.article__cta { max-width: 720px; margin: 50px auto 0; padding: clamp(28px, 4vw, 40px); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: linear-gradient(165deg, rgba(124,58,237,.12), rgba(10,6,16,.35)); text-align: center; }
.article__cta h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 10px; }
.article__cta p { color: var(--text-soft); margin: 0 auto 22px; max-width: 460px; }
.article__back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; color: var(--text-soft); font-weight: 500; font-size: 14.5px; transition: gap .25s var(--ease), color .25s; }
.article__back:hover { color: var(--text); gap: 12px; }
.article__related { max-width: var(--maxw); margin: 64px auto 0; padding-top: 40px; border-top: 1px solid var(--border); }
.article__related-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 22px; }
.article__related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article__related-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; text-decoration: none; transition: transform .25s var(--ease), border-color .25s; }
.article__related-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.article__related-card-img { display: block; aspect-ratio: 16 / 9; background: var(--grad-soft); overflow: hidden; }
.article__related-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.article__related-card:hover .article__related-card-img img { transform: scale(1.06); }
.article__related-card-title { padding: 18px 22px 0; font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.3; letter-spacing: -0.01em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article__related-card-desc { padding: 10px 22px 22px; font-size: 14px; color: var(--text-soft); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 900px) { .article__related-grid { gap: 18px; } }
@media (max-width: 680px) { .article__related-grid { grid-template-columns: 1fr; } }

/* ===== Modelo de artigo "Pillar": resumo, sumário, FAQ, autor, tabela ===== */
.article__takeaways { max-width: 720px; margin: 30px auto 0; padding: 24px 28px; border: 1px solid var(--border-strong); border-radius: var(--radius); background: var(--grad-soft); }
.article__takeaways-label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 14px; }
.article__takeaways ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.article__takeaways li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.55; color: var(--text); }
.article__takeaways li::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--fuchsia); font-weight: 700; }

.article__toc { max-width: 720px; margin: 26px auto 0; padding: 22px 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.article__toc-label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; }
.article__toc ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.article__toc li { font-size: 15.5px; line-height: 1.4; }
.article__toc a { color: var(--text-soft); text-decoration: none; transition: color .2s; }
.article__toc a:hover { color: var(--fuchsia); }

.article__body table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 0; }
.article__table-wrap { overflow-x: auto; margin: 26px 0; border: 1px solid var(--border); border-radius: var(--radius); }
.article__body th, .article__body td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.article__body thead th { background: var(--surface-2); color: var(--text); font-weight: 600; font-size: 13px; letter-spacing: .03em; }
.article__body tbody td { color: var(--text-soft); line-height: 1.5; }
.article__body tbody tr:last-child td { border-bottom: none; }
.article__body tbody td:first-child { color: var(--text); font-weight: 600; }

.article__faq { max-width: 720px; margin: 52px auto 0; }
.article__faq > h2 { font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -0.02em; margin: 0 0 18px; color: var(--text); }
.faq-item { border-top: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 { font-size: 18px; color: var(--text); margin: 0 0 8px; letter-spacing: -0.01em; }
.faq-item p { font-size: 16px; line-height: 1.7; color: var(--text-soft); margin: 0; }

.article__author { max-width: 720px; margin: 44px auto 0; padding: 28px 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); display: flex; gap: 26px; align-items: center; }
.article__author-avatar { flex-shrink: 0; width: 150px; height: 150px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; overflow: hidden; }
.article__author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.article__author-eyebrow { display: block; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 8px; }
.article__author-name { font-weight: 700; color: var(--text); font-size: 20px; letter-spacing: -0.01em; margin-bottom: 10px; }
.article__author-bio { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); margin: 0; }
.article__byline { color: var(--text-soft); }
@media (max-width: 560px) { .article__author { flex-direction: column; gap: 16px; align-items: center; text-align: center; } }
.article__cover { max-width: 720px; margin: 14px auto 4px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); line-height: 0; }
.article__cover img { display: block; width: 100%; height: auto; }

.article__share { max-width: 720px; margin: 44px auto 0; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.article__share-label { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--text-soft); }
.article__share-links { display: flex; gap: 10px; }
.article__share-btn { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border); background: var(--surface); color: var(--text-soft); transition: transform .2s var(--ease), border-color .2s, background .2s, color .2s; }
.article__share-btn svg { width: 18px; height: 18px; }
.article__share-btn:hover { transform: translateY(-2px); color: #fff; border-color: transparent; }
.article__share-btn--fb:hover { background: #1877F2; }
.article__share-btn--x:hover { background: #000; border-color: var(--border-strong); }
.article__share-btn--in:hover { background: #0A66C2; }
.article__share-btn--wa:hover { background: #25D366; }

/* link nos cards de serviço (home) */
.feature__link { position: relative; z-index: 1; margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14px; color: var(--fuchsia); transition: gap .25s var(--ease); }
.feature__link:hover { gap: 11px; }

/* ============================================================
   Hubs, contato e melhorias de cases
   ============================================================ */
.hub-intro { max-width: 880px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.hub-intro .section__lead { max-width: 760px; margin-left: auto; margin-right: auto; }
.hub-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.service-map { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-map__group { padding: clamp(6px, 2vw, 14px); }
.service-map__group h2 { font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 12px; }
.service-map__group p { color: var(--text-soft); margin-bottom: 22px; }
.service-links { display: grid; gap: 12px; }
.service-link { display: grid; gap: 4px; padding: 16px 18px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.025); transition: transform .25s var(--ease), border-color .25s, background .25s; }
.service-link:hover { transform: translateY(-2px); border-color: var(--border-strong); background: rgba(255,255,255,.045); }
.service-link strong { font-size: 15.5px; }
.service-link span { color: var(--text-soft); font-size: 13.5px; }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.contact-panel { border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: linear-gradient(165deg, rgba(124,58,237,.12), rgba(10,6,16,.4)); padding: clamp(28px, 5vw, 48px); }
.contact-panel .cta__form { margin-top: 28px; max-width: none; }
.contact-panel .cta__form input, .contact-panel .cta__form select { min-width: min(220px, 100%); }
.contact-panel .cta__form .btn { margin-top: 2px; }
.contact-aside { display: grid; gap: 16px; }
.contact-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 24px; }
.contact-card h2, .contact-card h3 { font-size: 20px; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 10px; }
.contact-card p, .contact-card li { color: var(--text-soft); font-size: 15px; }
.contact-card ul { list-style: none; display: grid; gap: 10px; margin-top: 14px; }
.contact-card li { position: relative; padding-left: 24px; }
.contact-card li::before { content: ''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--fuchsia); box-shadow: 0 0 12px rgba(217,70,239,.6); }
.work-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 44px; }
.filter-chip { font: inherit; font-size: 13.5px; font-weight: 600; color: var(--text-soft); border: 1px solid var(--border); border-radius: 100px; background: var(--surface); padding: 9px 15px; cursor: pointer; transition: color .2s, border-color .2s, background .2s, transform .2s var(--ease); }
.filter-chip:hover { transform: translateY(-1px); border-color: var(--border-strong); color: var(--text); }
.filter-chip.is-active { color: #fff; border-color: transparent; background: var(--grad); }
.work__card.is-hidden { display: none; }
.work__results { list-style: none; display: grid; gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.work__results li { position: relative; padding-left: 24px; color: var(--text-soft); font-size: 14px; line-height: 1.45; }
.work__results li::before { content: ''; position: absolute; left: 0; top: .45em; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.article-related { max-width: 720px; margin: 46px auto 0; }
.article-related .grid { margin-top: 18px; }
@media (max-width: 980px) { .service-map, .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .hub-actions .btn { width: 100%; }
  .work-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-chip { flex: 0 0 auto; }
}

/* ============================================================
   Página Assessoria, visuais em JS (headline rotativa, radar, funil)
   ============================================================ */
/* Headline rotativa */
.rotator { display: inline-block; text-align: left; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.rotator.is-out { opacity: 0; transform: translateY(-10px); }

/* Radar de diagnóstico */
.radar { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.radar__visual { position: relative; }
.radar__svg { width: 100%; max-width: 420px; height: auto; margin: 0 auto; display: block; overflow: visible; }
.radar-ring { fill: none; stroke: var(--border); stroke-width: 1; }
.radar-axis { stroke: var(--border); stroke-width: 1; }
.radar-label { fill: var(--text-soft); font-size: 11.5px; font-weight: 600; }
.radar-poly { fill: rgba(217,70,239,.16); stroke: var(--fuchsia); stroke-width: 2; stroke-linejoin: round; filter: drop-shadow(0 0 12px rgba(217,70,239,.45)); }
.radar-dot { fill: #fff; }
.radar__score { display: flex; align-items: baseline; gap: 9px; margin-bottom: 24px; }
.radar__score b { font-size: clamp(44px, 7vw, 66px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.radar__score span { font-size: 13px; color: var(--text-dim); }
.radar__hint { margin-top: 16px; font-size: 13.5px; color: var(--text-dim); }
@media (max-width: 860px) { .radar { grid-template-columns: 1fr; gap: 36px; } }

/* Segmented toggle */
.seg { position: relative; display: grid; grid-template-columns: 1fr 1fr; padding: 4px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); max-width: 320px; }
.seg__pill { position: absolute; top: 4px; left: 4px; width: calc(50% - 4px); bottom: 4px; border-radius: 100px; background: var(--grad); box-shadow: 0 8px 20px -8px rgba(217,70,239,.6); transition: transform .4s var(--ease); }
.seg[data-active="scaloo"] .seg__pill { transform: translateX(100%); }
.seg button { position: relative; z-index: 1; border: none; background: none; cursor: pointer; font-family: inherit; font-weight: 600; font-size: 14px; color: var(--text-soft); padding: 10px 8px; border-radius: 100px; transition: color .3s; }
.seg button.is-active { color: #fff; }

/* Funil de conversão */
.funnel { position: relative; max-width: 560px; margin: 0 auto; }
.funnel__canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.funnel__stage { position: relative; z-index: 1; height: 60px; margin: 0 auto; border-radius: 14px; border: 1px solid var(--border-strong); background: var(--surface); display: flex; align-items: center; justify-content: space-between; padding: 0 22px; overflow: hidden; opacity: 0; transform: scaleY(.6); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.funnel.is-visible .funnel__stage { opacity: 1; transform: scaleY(1); }
.funnel__bar { position: absolute; inset: 0; background: var(--grad-soft); transform: scaleX(0); transform-origin: left; transition: transform .9s var(--ease); }
.funnel.is-visible .funnel__bar { transform: scaleX(1); }
.funnel__name { position: relative; z-index: 1; font-weight: 600; font-size: 15px; color: var(--text); }
.funnel__num { position: relative; z-index: 1; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.funnel__rate { position: relative; z-index: 1; text-align: center; font-size: 12.5px; color: var(--text-dim); margin: 9px 0; }

/* painel de entregáveis (páginas de serviço), reaproveita .about__panel/.about__values */
.deliver__list { position: relative; list-style: none; display: grid; gap: 14px; }
.deliver__list li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--text); }
.deliver__list li::before { content: ''; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--border-strong); }
.deliver__list li::after { content: ''; position: absolute; left: 5px; top: 7px; width: 7px; height: 4px; border-left: 2px solid var(--fuchsia); border-bottom: 2px solid var(--fuchsia); transform: rotate(-45deg); }

/* ============================================================
   Visuais animados das páginas de serviço (SVG + JS)
   Tráfego: gráfico de canais · Social: curva · Dados: dashboard
   ============================================================ */
.svgviz { max-width: 660px; margin: 0 auto; }
.svgviz__svg { width: 100%; height: auto; display: block; overflow: visible; }
.viz-grid { stroke: rgba(255,255,255,.06); stroke-width: 1; }
.viz-bar { /* altura animada via JS */ }
.viz-label { fill: var(--text-soft); font-size: 12px; font-weight: 600; font-family: 'Inter', sans-serif; }
.viz-val { fill: var(--text); font-size: 13px; font-weight: 800; font-family: 'Inter', sans-serif; }
.viz-note { text-align: center; margin-top: 22px; font-size: 13px; color: var(--text-dim); }

/* Curva de crescimento */
.growth__head { display: flex; align-items: baseline; gap: 10px; justify-content: center; margin-bottom: 16px; }
.growth__head b { font-size: clamp(36px, 6vw, 56px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.growth__head span { font-size: 13px; color: var(--text-dim); max-width: 160px; }
.growth-line { fill: none; stroke: var(--fuchsia); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 8px rgba(217,70,239,.5)); }
.growth-area { opacity: 0; transition: opacity .9s var(--ease); }
.growth.is-drawn .growth-area { opacity: 1; }
.growth-dot { fill: #fff; filter: drop-shadow(0 0 6px var(--fuchsia)); }
.growth-xlabel { fill: var(--text-dim); font-size: 11px; text-anchor: middle; font-family: 'Inter', sans-serif; }

/* Dashboard ao vivo */
.dash { max-width: 620px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(165deg, var(--surface-2), var(--surface)); overflow: hidden; box-shadow: var(--shadow); }
.dash__bar { display: flex; align-items: center; gap: 11px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.dash__title { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.dash__live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--green); }
.dash__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2.4s infinite; }
.dash__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
.dash__tile { background: var(--bg-soft); padding: 18px 20px; }
.dash__tile > span { font-size: 12px; color: var(--text-dim); }
.dash__tile b { display: block; font-size: clamp(22px, 3.4vw, 28px); font-weight: 800; letter-spacing: -0.03em; margin: 5px 0 10px; }
.dash__tile:nth-child(1) b { color: var(--violet); } .dash__tile:nth-child(1) .spark-line { stroke: var(--violet); }
.dash__tile:nth-child(2) b { color: var(--fuchsia); } .dash__tile:nth-child(2) .spark-line { stroke: var(--fuchsia); }
.dash__tile:nth-child(3) b { color: var(--green); } .dash__tile:nth-child(3) .spark-line { stroke: var(--green); }
.dash__tile:nth-child(4) b { color: var(--orange); } .dash__tile:nth-child(4) .spark-line { stroke: var(--orange); }
.spark { width: 100%; height: 34px; display: block; overflow: visible; }
.spark-line { fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 520px) { .dash__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Marquee de clientes · cards de serviço (hub) · footer rico
   ============================================================ */
/* Clientes, logos padronizados deslizando */
.clients__track { display: flex; align-items: center; gap: clamp(36px, 5vw, 68px); width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .clients__track { animation-play-state: paused; }
.client-logo { height: 50px; width: auto; display: block; filter: brightness(0) invert(0.68); opacity: .85; transition: filter .35s var(--ease), opacity .35s var(--ease), transform .3s var(--ease); }
.client-logo:hover { filter: brightness(0) invert(1); opacity: 1; transform: translateY(-3px); }
@media (max-width: 620px) { .client-logo { height: 42px; } }

/* Cards de serviço (página /servicos/) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 28px; transition: transform .3s var(--ease), border-color .3s; }
.svc-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: var(--grad-soft); opacity: 0; transition: opacity .35s; pointer-events: none; }
.svc-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.svc-card:hover::before { opacity: 1; }
.svc-card > * { position: relative; }
.svc-card__icon { font-size: 26px; margin-bottom: 14px; }
.svc-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 9px; }
.svc-card__desc { color: var(--text-soft); font-size: 14.5px; margin-bottom: 16px; }
.svc-card__list { list-style: none; display: grid; gap: 9px; margin-bottom: 18px; flex: 1; }
.svc-card__list li { position: relative; padding-left: 22px; font-size: 14px; color: var(--text-soft); }
.svc-card__list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }
.svc-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14px; color: var(--fuchsia); transition: gap .25s var(--ease); }
.svc-card__link:hover { gap: 11px; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }

/* Footer rico (multi-coluna) */
.footer--rich .footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; align-items: start; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-dim); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: var(--text-soft); font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-contact li { color: var(--text-soft); font-size: 14.5px; line-height: 1.5; }
.footer-contact a { color: var(--text-soft); }
.footer-contact a:hover { color: var(--text); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-soft); transition: border-color .25s, color .25s, transform .2s var(--ease); }
.footer-social a:hover { border-color: var(--border-strong); color: var(--text); transform: translateY(-2px); }
.footer--rich .footer__brand p { margin-top: 14px; max-width: 280px; }
.footer__base a { color: var(--text-soft); text-decoration: none; }
.footer__base a:hover { color: var(--text); }
@media (max-width: 880px) { .footer--rich .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px 28px; } }
@media (max-width: 520px) { .footer--rich .footer__inner { grid-template-columns: 1fr; } }

/* ============================================================
   Ícones em caixa (estilo Lucide dentro de borda retangular)
   ============================================================ */
.pain__icon, .usecase__icon, .svc-card__icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  background: var(--grad-soft);
  color: var(--fuchsia);
  font-size: 0; /* zera resto de emoji se sobrar */
}
.pain__icon { margin-bottom: 18px; }
.usecase__icon, .svc-card__icon { margin-bottom: 16px; }
.pain__icon svg, .usecase__icon svg, .svc-card__icon svg { width: 22px; height: 22px; display: block; }
.console__mod-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  background: var(--grad-soft);
  color: var(--fuchsia);
  margin-bottom: 12px; font-size: 0;
}
.console__mod-icon svg { width: 18px; height: 18px; display: block; }
/* leve realce do ícone quando o card é focado */
.pain:hover .pain__icon, .feature:hover .feature__num, .svc-card:hover .svc-card__icon,
.usecase:hover .usecase__icon, .console__mod:hover .console__mod-icon { border-color: var(--fuchsia); }
