/* =========================================================
   MICROMAX — Suporte e Gestão de TI
   Design system + estilos do site
   Paleta extraída da logomarca oficial: verde #97C11F + grafite
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* marca */
  --lime: #97c11f;
  --lime-bright: #b0dc2c;
  --lime-deep: #7ba315;
  --lime-ink: #55700c; /* verde legível sobre fundo claro */

  /* grafite */
  --ink-950: #0b0f0d;
  --ink-900: #0e1311;
  --ink-850: #131917;
  --ink-800: #1a211e;
  --ink-700: #232b27;

  /* claros */
  --paper: #ffffff;
  --paper-2: #f5f8f2;
  --paper-3: #eef3e9;
  --line: #e2e8dc;
  --line-strong: #d2dbc9;

  /* texto */
  --text: #131815;
  --muted: #59645d;
  --muted-dark: #97a29b;
  --text-dark: #e9efe9;

  /* forma */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-full: 999px;

  /* sombra */
  --sh-1: 0 1px 2px rgba(13, 20, 15, .05), 0 4px 14px rgba(13, 20, 15, .05);
  --sh-2: 0 2px 6px rgba(13, 20, 15, .06), 0 14px 38px rgba(13, 20, 15, .09);
  --sh-3: 0 30px 70px rgba(9, 14, 11, .18);
  --sh-lime: 0 14px 34px rgba(151, 193, 31, .32);

  /* layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(68px, 9vw, 124px);
  --header-h: 76px;

  /* tipografia */
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--lime); color: var(--ink-950); }

/* ---------- 3. Tipografia ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.022em;
  color: inherit;
}

h1 { font-size: clamp(2.3rem, 1.35rem + 3.7vw, 4.05rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.95rem); }
h3 { font-size: clamp(1.2rem, 1.02rem + .7vw, 1.5rem); }
h4 { font-size: 1.06rem; }

p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }

.lead {
  font-size: clamp(1.05rem, .98rem + .38vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .775rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--lime-ink);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--lime);
}

.hl { color: var(--lime-ink); }

/* ---------- 4. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: 1340px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 78px); }
.section--alt { background: var(--paper-2); }

.section-head { max-width: 660px; margin-bottom: clamp(36px, 4.5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 + p { margin-top: 18px; }

.split {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }

.grid { display: grid; gap: clamp(18px, 2.2vw, 26px); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* seções escuras */
.dark {
  background: var(--ink-900);
  color: var(--text-dark);
}
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .lead, .dark p { color: var(--muted-dark); }
.dark .eyebrow { color: var(--lime-bright); }

/* ---------- 5. Botões ---------- */
.btn {
  --btn-bg: var(--lime);
  --btn-fg: var(--ink-950);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.005em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn--primary { box-shadow: var(--sh-lime); }
.btn--primary:hover { background: var(--lime-bright); box-shadow: 0 18px 42px rgba(151, 193, 31, .42); }

.btn--dark { --btn-bg: var(--ink-900); --btn-fg: #fff; }
.btn--dark:hover { --btn-bg: var(--ink-700); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink-900); background: var(--paper-2); }

.btn--ghost-light {
  --btn-bg: rgba(255, 255, 255, .04);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .38); }

.btn--sm { padding: 10px 20px; font-size: .875rem; }
.btn--lg { padding: 17px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .93rem;
  color: var(--lime-ink);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.dark .link-arrow { color: var(--lime-bright); }

/* ---------- 6. Header ---------- */
.skip-link {
  position: absolute;
  left: 16px; top: -70px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--lime);
  color: var(--ink-950);
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(13, 20, 15, .06);
}

/* header transparente sobre hero escuro */
.site-header.on-dark {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.on-dark .nav-link,
.site-header.on-dark .header-phone { color: rgba(255, 255, 255, .82); }
.site-header.on-dark .nav-link:hover,
.site-header.on-dark .header-phone:hover { color: #fff; }
.site-header.on-dark .logo-dark { display: block; }
.site-header.on-dark .logo-light { display: none; }
.site-header.on-dark .burger span { background: #fff; }
.site-header.on-dark .btn--ghost { --btn-fg: #fff; border-color: rgba(255, 255, 255, .24); }
.site-header.on-dark .btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .45); }

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}

.brand { flex: none; display: flex; align-items: center; }
.brand img { height: 34px; width: auto; }
.logo-dark { display: none; }

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
/* o CTA dentro do menu existe só para a versão mobile */
.nav > .btn { display: none; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: .93rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-link:hover { background: rgba(151, 193, 31, .13); color: var(--lime-ink); }
.nav-link[aria-current="page"] { color: var(--lime-ink); font-weight: 600; }
.site-header.on-dark .nav-link[aria-current="page"] { color: var(--lime-bright); }

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .93rem;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.header-phone svg { width: 17px; height: 17px; color: var(--lime); }

.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;                 /* com height 2px → 7px entre os centros */
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .32s var(--ease), opacity .2s var(--ease), background-color .3s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-2);
    padding: 12px var(--gutter) 26px;
    display: grid;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    pointer-events: none;
    transition: clip-path .4s var(--ease), opacity .3s var(--ease);
  }
  .nav.is-open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link {
    display: flex;
    padding: 15px 12px;
    border-radius: var(--r-sm);
    font-size: 1.02rem;
    color: var(--text) !important;
    border-bottom: 1px solid var(--line);
  }
  .nav-list li:last-child .nav-link { border-bottom: 0; }
  .nav > .btn { display: inline-flex; margin-top: 16px; }
  .burger { display: flex; margin-left: auto; }
  /* com o menu aberto o cabeçalho fica opaco */
  .site-header.is-menu-open {
    background: var(--paper);
    border-bottom-color: var(--line);
  }
  .header-phone { display: none; }
  .header-actions .btn { display: none; }
}
@media (max-width: 460px) { .brand img { height: 28px; } }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--header-h) + clamp(52px, 8vw, 96px));
  padding-bottom: clamp(70px, 9vw, 120px);
  background: var(--ink-950);
  color: var(--text-dark);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.hero__glow--a {
  width: 620px; height: 620px;
  top: -240px; right: -140px;
  background: radial-gradient(circle, rgba(151, 193, 31, .5), transparent 68%);
  animation: float-a 17s var(--ease) infinite alternate;
}
.hero__glow--b {
  width: 500px; height: 500px;
  bottom: -220px; left: -160px;
  background: radial-gradient(circle, rgba(78, 160, 120, .34), transparent 70%);
  animation: float-b 21s var(--ease) infinite alternate;
}
@keyframes float-a { to { transform: translate3d(-70px, 60px, 0) scale(1.14); } }
@keyframes float-b { to { transform: translate3d(60px, -50px, 0) scale(1.1); } }

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 62% at 50% 34%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 62% at 50% 34%, #000 35%, transparent 100%);
}

.hero__inner {
  display: grid;
  gap: clamp(46px, 6vw, 66px);
  align-items: center;
}
@media (min-width: 1000px) {
  .hero__inner { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); }
}

.hero .eyebrow { color: var(--lime-bright); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  margin-bottom: 26px;
  border: 1px solid rgba(151, 193, 31, .3);
  border-radius: var(--r-full);
  background: rgba(151, 193, 31, .1);
  font-size: .82rem;
  font-weight: 500;
  color: #dff0ad;
}
.hero-badge b {
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--lime);
  color: var(--ink-950);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero h1 { color: #fff; }
.hero h1 em {
  font-style: normal;
  color: var(--lime-bright);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .04em;
  height: .09em;
  border-radius: 4px;
  background: rgba(176, 220, 44, .32);
}

.hero__sub {
  margin-top: 24px;
  max-width: 54ch;
  font-size: clamp(1.04rem, .97rem + .4vw, 1.2rem);
  line-height: 1.72;
  color: #b3bdb5;
}

.hero .btn-row { margin-top: 36px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  color: #9fa9a2;
}
.hero__trust svg { width: 17px; height: 17px; color: var(--lime); flex: none; }

/* --- Painel NOC (visual do hero) --- */
.noc {
  position: relative;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(30, 38, 33, .95), rgba(14, 19, 17, .95));
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--sh-3);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.noc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(151, 193, 31, .07), transparent 42%);
  pointer-events: none;
}

.noc__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
}
.noc__dots { display: flex; gap: 6px; }
.noc__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .16); }
.noc__dots i:first-child { background: rgba(255, 107, 92, .8); }
.noc__dots i:nth-child(2) { background: rgba(255, 199, 88, .8); }
.noc__dots i:nth-child(3) { background: rgba(151, 193, 31, .9); }
.noc__title {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  color: #b6c0b8;
  letter-spacing: .01em;
}
.noc__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime-bright);
}
.noc__live i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime-bright);
  box-shadow: 0 0 0 0 rgba(176, 220, 44, .65);
  animation: pulse 2.1s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(176, 220, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(176, 220, 44, 0); }
}

.noc__body { padding: 20px 18px 22px; }

.noc__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.noc__kpi {
  padding: 13px 12px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
}
.noc__kpi span {
  display: block;
  font-size: .67rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #838d86;
  margin-bottom: 5px;
}
.noc__kpi b {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.02em;
}
.noc__kpi b small { font-size: .6em; font-weight: 500; color: #93a08f; }

.noc__rows { display: grid; gap: 3px; }
.noc__row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 10px 10px;
  border-radius: 9px;
  font-size: .845rem;
  transition: background-color .25s var(--ease);
}
.noc__row:hover { background: rgba(255, 255, 255, .04); }
.noc__row svg { width: 17px; height: 17px; color: #7d8880; }
.noc__row span { color: #c3ccc5; }
.noc__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.noc__tag i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.noc__tag--ok { background: rgba(151, 193, 31, .15); color: #b9dd4f; }
.noc__tag--warn { background: rgba(255, 190, 70, .14); color: #ffcb63; }
.noc__tag--info { background: rgba(120, 175, 255, .14); color: #96c0ff; }

.noc__spark {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 54px;
  margin-top: 18px;
  padding: 0 2px;
}
.noc__spark i {
  flex: 1;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--lime), rgba(151, 193, 31, .22));
  transform-origin: bottom;
  animation: bar 3.4s var(--ease) infinite alternate;
}
@keyframes bar { from { transform: scaleY(.55); } to { transform: scaleY(1); } }

/* cartão flutuante de chamado */
.noc-toast {
  position: absolute;
  left: clamp(-6px, -1vw, 0px);
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px 13px 14px;
  border-radius: var(--r-md);
  background: #fff;
  color: var(--text);
  box-shadow: var(--sh-3);
  animation: rise 6s var(--ease) infinite;
}
.noc-toast__ico {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(151, 193, 31, .18);
  color: var(--lime-deep);
  flex: none;
}
.noc-toast__ico svg { width: 19px; height: 19px; }
.noc-toast b { display: block; font-family: var(--font-display); font-size: .88rem; }
.noc-toast small { font-size: .76rem; color: var(--muted); }
@keyframes rise {
  0%, 8% { transform: translateY(14px); opacity: 0; }
  16%, 84% { transform: translateY(0); opacity: 1; }
  96%, 100% { transform: translateY(-10px); opacity: 0; }
}

@media (max-width: 620px) {
  .noc__kpis { grid-template-columns: 1fr 1fr; }
  .noc__kpis .noc__kpi:last-child { display: none; }
  .noc-toast { left: 50%; transform: translateX(-50%); bottom: -14px; }
  @keyframes rise {
    0%, 8% { transform: translate(-50%, 14px); opacity: 0; }
    16%, 84% { transform: translate(-50%, 0); opacity: 1; }
    96%, 100% { transform: translate(-50%, -10px); opacity: 0; }
  }
}

/* ---------- 8. Faixa de confiança ---------- */
.strip {
  padding-block: 26px;
  background: var(--ink-850);
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px clamp(22px, 4vw, 52px);
  text-align: center;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .885rem;
  font-weight: 500;
  color: #a9b3ab;
}
.strip__item svg { width: 19px; height: 19px; color: var(--lime); flex: none; }
.strip__item b { color: #fff; font-weight: 600; }

/* ---------- 9. Cards de serviço (pilares) ---------- */
.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.pillar::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--lime-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-2);
  border-color: var(--line-strong);
}
.pillar:hover::after { transform: scaleX(1); }

.pillar__ico {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 22px;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, rgba(151, 193, 31, .2), rgba(151, 193, 31, .07));
  color: var(--lime-deep);
  flex: none;
}
.pillar__ico svg { width: 26px; height: 26px; }

.pillar h3 { margin-bottom: 12px; }
.pillar > p { color: var(--muted); font-size: .96rem; }

.pillar__list { margin: 20px 0 26px; display: grid; gap: 9px; }
.pillar__list li {
  position: relative;
  padding-left: 26px;
  font-size: .91rem;
  color: var(--muted);
}
.pillar__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .52em;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(151, 193, 31, .16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355700c' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 9px no-repeat;
}
.pillar .link-arrow { margin-top: auto; }

/* ---------- 10. Diferenciais ---------- */
.feature {
  padding: clamp(24px, 2.6vw, 30px);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.feature:hover { transform: translateY(-4px); border-color: var(--lime); box-shadow: var(--sh-1); }
.feature__ico {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--ink-900);
  color: var(--lime-bright);
}
.feature__ico svg { width: 21px; height: 21px; }
.feature h4 { margin-bottom: 9px; font-size: 1.08rem; }
.feature p { font-size: .91rem; color: var(--muted); line-height: 1.62; }

.dark .feature {
  background: rgba(255, 255, 255, .035);
  border-color: rgba(255, 255, 255, .09);
}
.dark .feature:hover { border-color: rgba(151, 193, 31, .5); background: rgba(255, 255, 255, .06); }
.dark .feature__ico { background: rgba(151, 193, 31, .16); }

/* ---------- 11. Checklist de escopo ---------- */
.scope-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
}
.scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: .92rem;
  font-weight: 500;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.scope-list li:hover { border-color: var(--lime); transform: translateX(3px); }
.scope-list svg { width: 19px; height: 19px; color: var(--lime-deep); flex: none; margin-top: 1px; }

.dark .scope-list li {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .09);
  color: #d3dbd4;
}
.dark .scope-list svg { color: var(--lime-bright); }

/* ---------- 12. Processo ---------- */
.steps { display: grid; gap: clamp(20px, 2.4vw, 28px); counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step { position: relative; padding-top: 30px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -14px; left: 0;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(151, 193, 31, .2);
  letter-spacing: -.05em;
}
.step__line {
  height: 2px;
  margin-bottom: 20px;
  background: var(--line);
  position: relative;
}
.step__line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34px;
  background: var(--lime);
}
.step h4 { margin-bottom: 10px; position: relative; }
.step p { font-size: .91rem; color: var(--muted); }

.dark .step__line { background: rgba(255, 255, 255, .12); }
.dark .step::before { color: rgba(176, 220, 44, .22); }

/* ---------- 13. Números ---------- */
.stats {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.7rem + 2.6vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: #fff;
}
.stat__num sup {
  font-size: .42em;
  vertical-align: super;
  color: var(--lime-bright);
  margin-left: 2px;
}
.stat__label {
  margin-top: 12px;
  font-size: .89rem;
  color: #9aa49c;
  line-height: 1.5;
}

/* ---------- 14. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item.is-open { border-color: var(--lime); box-shadow: var(--sh-1); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
}
.faq__q:hover { color: var(--lime-ink); }
.faq__q svg {
  width: 20px; height: 20px;
  margin-left: auto;
  flex: none;
  color: var(--lime-deep);
  transition: transform .35s var(--ease);
}
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 22px 22px;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- 15. CTA ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  padding: clamp(42px, 5.5vw, 70px) clamp(26px, 5vw, 68px);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--ink-900) 0%, #17211b 55%, #1d2a1c 100%);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 460px; height: 460px;
  top: -180px; right: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 193, 31, .38), transparent 68%);
  filter: blur(46px);
}
.cta-band__inner {
  display: grid;
  gap: 30px;
  align-items: center;
}
@media (min-width: 860px) {
  .cta-band__inner { grid-template-columns: 1fr auto; gap: 48px; }
}
.cta-band h2 { color: #fff; }
.cta-band p { margin-top: 14px; color: #a9b3ab; max-width: 52ch; }

/* ---------- 16. Contato ---------- */
.contact-grid { display: grid; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); } }

.info-card {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.info-card:hover { border-color: var(--lime); transform: translateY(-3px); }
.info-card__ico {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(151, 193, 31, .15);
  color: var(--lime-deep);
  flex: none;
}
.info-card__ico svg { width: 21px; height: 21px; }
.info-card h4 { font-size: .84rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.info-card p, .info-card a { font-size: 1rem; font-weight: 500; line-height: 1.5; }
.info-card a:hover { color: var(--lime-ink); }
.info-card small { display: block; margin-top: 4px; font-size: .84rem; color: var(--muted); font-weight: 400; }

.form-card {
  padding: clamp(26px, 3.4vw, 38px);
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
}
.form-grid { display: grid; gap: 18px; }
@media (min-width: 620px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.field label span { color: var(--lime-deep); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--paper-2);
  font-size: .95rem;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background-color .22s var(--ease);
}
.field textarea { resize: vertical; min-height: 122px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2359645d' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 42px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  background: var(--paper);
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(151, 193, 31, .17);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa49c; }

.form-note { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.form-status {
  display: none;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: rgba(151, 193, 31, .13);
  border: 1px solid rgba(151, 193, 31, .4);
  font-size: .9rem;
  font-weight: 500;
}
.form-status.is-visible { display: flex; }
.form-status svg { width: 19px; height: 19px; color: var(--lime-deep); flex: none; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--sh-1);
}
.map-frame iframe { width: 100%; height: 340px; border: 0; filter: grayscale(.35) contrast(1.05); }

/* ---------- 17. Rodapé ---------- */
.site-footer {
  background: var(--ink-950);
  color: #9aa49c;
  padding-top: clamp(52px, 6vw, 78px);
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  gap: clamp(30px, 4vw, 48px);
  padding-bottom: clamp(36px, 4vw, 52px);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.site-footer img { height: 34px; margin-bottom: 20px; }
.site-footer p { font-size: .9rem; line-height: 1.65; max-width: 34ch; }
.footer-title {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-list { display: grid; gap: 11px; }
.footer-list a { transition: color .2s var(--ease), padding-left .25s var(--ease); }
.footer-list a:hover { color: var(--lime-bright); padding-left: 4px; }

.footer-contact { display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; line-height: 1.55; }
.footer-contact svg { width: 17px; height: 17px; color: var(--lime); flex: none; margin-top: 3px; }
.footer-contact a:hover { color: var(--lime-bright); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  /* respiro extra para o botão flutuante do WhatsApp não cobrir o texto */
  padding-bottom: clamp(74px, 8vw, 92px);
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .83rem;
  color: #7d8780;
}
.footer-bottom a:hover { color: var(--lime-bright); }

/* ---------- 18. WhatsApp flutuante ---------- */
.wa-fab {
  position: fixed;
  right: clamp(16px, 3vw, 26px);
  bottom: clamp(16px, 3vw, 26px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px 13px 15px;
  border-radius: var(--r-full);
  background: #25d366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  transform: translateY(90px);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .35s var(--ease), box-shadow .3s var(--ease);
}
.wa-fab.is-visible { transform: translateY(0); opacity: 1; }
.wa-fab:hover { box-shadow: 0 16px 40px rgba(37, 211, 102, .55); }
.wa-fab svg { width: 23px; height: 23px; flex: none; }
@media (max-width: 560px) {
  .wa-fab { padding: 14px; }
  .wa-fab span { display: none; }
}

/* ---------- 19. Cabeçalho de página interna ---------- */
.page-hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--header-h) + clamp(46px, 6vw, 74px));
  padding-bottom: clamp(46px, 6vw, 78px);
  background: var(--ink-950);
  color: var(--text-dark);
  overflow: hidden;
}
.page-hero .hero__glow--a { width: 520px; height: 520px; top: -260px; right: -120px; opacity: .42; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem); }
.page-hero p { margin-top: 20px; max-width: 58ch; color: #a9b3ab; font-size: clamp(1rem, .95rem + .3vw, 1.12rem); }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: .84rem;
  color: #8b958d;
}
.crumbs a:hover { color: var(--lime-bright); }
.crumbs svg { width: 13px; height: 13px; opacity: .5; }
.crumbs [aria-current] { color: var(--lime-bright); }

/* ---------- 20. Blocos auxiliares ---------- */
.media-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-900);
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
  padding: clamp(26px, 3vw, 38px);
  color: #fff;
}
.media-card h3 { color: #fff; }

.quote {
  position: relative;
  padding: clamp(28px, 3.4vw, 42px);
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
}
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + .55vw, 1.42rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--text);
}
.quote::before {
  content: "";
  display: block;
  width: 38px; height: 38px;
  margin-bottom: 20px;
  background: var(--lime);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M7.17 6A5.17 5.17 0 0 0 2 11.17V18h6.83v-6.83H5.5A1.67 1.67 0 0 1 7.17 9.5V6Zm10 0A5.17 5.17 0 0 0 12 11.17V18h6.83v-6.83H15.5a1.67 1.67 0 0 1 1.67-1.67V6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M7.17 6A5.17 5.17 0 0 0 2 11.17V18h6.83v-6.83H5.5A1.67 1.67 0 0 1 7.17 9.5V6Zm10 0A5.17 5.17 0 0 0 12 11.17V18h6.83v-6.83H15.5a1.67 1.67 0 0 1 1.67-1.67V6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 9px; }
.tag {
  padding: 7px 15px;
  border-radius: var(--r-full);
  background: var(--paper-3);
  border: 1px solid var(--line);
  font-size: .84rem;
  font-weight: 500;
  color: var(--muted);
}
.dark .tag { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .1); color: #b6c0b8; }

.mini-list { display: grid; gap: 14px; }
.mini-list li { display: flex; gap: 13px; align-items: flex-start; }
.mini-list svg { width: 20px; height: 20px; color: var(--lime-deep); flex: none; margin-top: 2px; }
.mini-list b { display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 3px; }
.mini-list p { font-size: .9rem; color: var(--muted); }
.dark .mini-list svg { color: var(--lime-bright); }

/* ---------- 21. Animação de entrada ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 22. Utilitários ---------- */
.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;
}
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 14px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 34px; }
.mt-4 { margin-top: 46px; }
.text-center { text-align: center; }
