/* ==========================================================================
   Eleve Makers — style.css
   Sistema visual inspirado em pareto.io: tema claro (creme/cinza), display
   serifada + Jost, slate como cor de apoio, seções escuras #11161E, marcas
   de registro em cruz e grade de blueprint (linguagem de planta técnica).
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  color-scheme: light;

  --cream: #F2F2F2;        /* sem bege: ground único cinza claro */
  --grey: #F2F2F2;         /* fundo das seções claras */
  --grey-2: #F1F1F1;
  --ink: #222222;          /* texto principal */
  --ink-2: #3D3D3D;        /* texto secundário */
  --ink-3: #2B313B;        /* headlines */
  --slate: #54647A;        /* cor de apoio */
  --slate-light: #BACCE3;  /* fim do gradiente de texto */
  --slate-pale: #D1DCEF;
  --dark: #11161E;         /* seção escura */
  --dark-2: #14171D;       /* footer */
  --dark-3: #2B313B;
  --line: #A0A0A0;         /* bordas e réguas */
  --line-2: #B7B7B7;
  --line-soft: rgba(183,183,183,.45);
  --hair: rgba(201,207,218,.18);
  --on-dark: #F2F2F2;
  --on-dark-2: #C2C2C2;
  --on-dark-3: #8C8C8C;
  --footer-link: #BDCDDB;
  --footer-tag: #859CB2;
  --footer-muted: #6E7A87;
  --paper: #F2F2F2;

  --display: "Fraunces", "Georgia", "Times New Roman", serif;
  --body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  --max: 1258px;
  --gutter: 20px;
  --ease: cubic-bezier(.44, 0, .56, 1);
  --ease-out: cubic-bezier(.33, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
strong, .w500 { font-weight: 500; }
:focus-visible { outline: 2px solid var(--slate); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--dark); color: var(--on-dark); padding: 10px 14px; border-radius: 6px;
}
.skip-link:focus { top: 12px; }

/* ---------- Tipografia compartilhada ---------- */
h1, h2, .display {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 72;
  letter-spacing: -.005em;
  line-height: 1.06;
  color: var(--ink-3);
  text-wrap: balance;
}
.mono { font-family: var(--mono); }
.grad {
  background-image: linear-gradient(90deg, var(--ink) 0%, var(--slate-light) 98%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: inline-block;
}
.grad-light {
  background-image: linear-gradient(90deg, var(--on-dark) 0%, var(--slate) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: inline-block;
}

/* ---------- Botões e links ---------- */
.btn-dark {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 22px; border-radius: 10px;
  background: var(--dark); color: var(--on-dark);
  font-family: var(--body); font-weight: 400; font-size: 17px; line-height: 1;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.btn-dark:hover { background: var(--dark-3); transform: translateY(-1px); }
.btn-dark .arrow::before, .btn-dark .arrow::after, .btn-dark .arrow { --arrow-color: var(--on-dark); }
.btn-block { width: 100%; justify-content: center; }

.arrow {
  position: relative; display: inline-block; width: 29px; height: 12px; flex: none;
  --arrow-color: currentColor;
}
.arrow::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 29px; height: 1px; background: var(--arrow-color);
}
.arrow::after {
  content: ""; position: absolute; right: 0; top: 2px; width: 8px; height: 8px;
  border-top: 1px solid var(--arrow-color); border-right: 1px solid var(--arrow-color);
  transform: rotate(45deg);
}
.link-under {
  font-weight: 300; font-size: 17px; color: var(--ink);
  text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 400; font-size: 23px; line-height: 1; color: var(--ink);
  text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px;
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 18px; }
.link-arrow .arrow { width: 18px; }
.link-arrow .arrow::before { width: 18px; }
.link-arrow.light { color: var(--on-dark); }

/* ---------- Marcas de registro (cruz) e réguas ---------- */
.cross { position: absolute; width: 15px; height: 15px; pointer-events: none; }
.cross::before, .cross::after { content: ""; position: absolute; background: var(--line); }
.cross::before { left: 0; top: 7px; width: 15px; height: 1px; }
.cross::after { left: 7px; top: 0; width: 1px; height: 15px; }
.cross-tl { left: -7px; top: -7px; }
.cross-tr { right: -7px; top: -7px; }
.cross-bl { left: -7px; bottom: -7px; }
.cross-br { right: -7px; bottom: -7px; }

/* ---------- Navegação ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  padding: 39px 40px;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.is-scrolled {
  padding: 14px 40px;
  background: rgba(242,242,242,.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(34,34,34,.06);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav { transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), transform .42s var(--ease-out); }
.nav-inner { position: relative; display: flex; align-items: center; justify-content: center; min-height: 43px; }
.nav-left { display: flex; align-items: center; gap: 44px; }
.nav-cta { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.nav-burger { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.nav-brand { display: block; color: var(--ink); }
.nav-mark { display: block; color: currentColor; }
.nav-link {
  font-weight: 300; font-size: 21.2px; line-height: 1.2; color: var(--ink);
  transition: opacity .2s;
}
.nav-link:hover { opacity: .6; }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 17px; border-radius: 6.6px;
  background: linear-gradient(90deg, var(--dark-2) 0%, var(--dark-3) 100%);
  color: #fff; font-weight: 300; font-size: 15px; line-height: 1.2;
  transition: opacity .3s;
}
.nav-cta:hover { opacity: .85; }
.nav-burger {
  display: none; width: 40px; height: 40px; margin: 0;
  flex-direction: column; align-items: flex-end; justify-content: center; gap: 6px;
}
.nav-burger span { display: block; height: 1.5px; border-radius: 1px; background: var(--ink); transition: width .3s; }
.nav-burger span:nth-child(1) { width: 26px; }
.nav-burger span:nth-child(2) { width: 18px; }
.nav-burger:hover span:nth-child(2) { width: 26px; }

.sheet {
  position: fixed; inset: 0; z-index: 120;
  display: flex; flex-direction: column;
  background: var(--dark); color: var(--on-dark);
  padding: 22px 24px 34px;
  overflow-y: auto;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px);
  transition: opacity .28s ease, transform .34s var(--ease-out), visibility 0s linear .28s;
}
.sheet.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: opacity .28s ease, transform .34s var(--ease-out), visibility 0s; }
.sheet-top { display: flex; align-items: center; justify-content: space-between; }
.sheet-mark { color: var(--on-dark); }
.sheet-x { width: 40px; height: 40px; margin-right: -9px; display: flex; align-items: center; justify-content: center; color: var(--on-dark); }
.sheet-nav { margin-top: 44px; display: flex; flex-direction: column; }
.sheet-link {
  font-weight: 300; font-size: 30px; line-height: 1.2; color: #F4F4F4;
  padding: 20px 0; border-top: 1px solid var(--hair);
}
.sheet-nav .sheet-link:last-child { border-bottom: 1px solid var(--hair); }
.sheet-cta {
  margin-top: auto; display: flex; align-items: center; justify-content: center;
  padding: 17px 20px; border-radius: 8px;
  background: var(--paper); color: #20242C; font-weight: 400; font-size: 18px; line-height: 1.2;
}

/* ---------- WhatsApp FAB ---------- */
.fab {
  position: fixed; right: 28px; bottom: 28px; z-index: 20;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark); color: var(--on-dark);
  box-shadow: 0 10px 28px rgba(17,22,30,.28);
  transition: background .3s, box-shadow .3s;
  animation: fabin .5s var(--ease-out) .35s both;
}
.fab:hover { background: var(--dark-3); box-shadow: 0 14px 34px rgba(17,22,30,.34); }
@keyframes fabin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- Seções: container comum ---------- */
.value-content, .problem-content, .method-content, .solutions-content, .cases-content,
.partners-content, .faq-content, .diag-content, .footer-content, .logos-content {
  position: relative; width: 100%; max-width: 1400px; margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 860px; max-height: 1140px; height: calc(100vh + 120px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: visible; clip-path: inset(0 0 -700px 0);
  z-index: 0;
  padding-inline: var(--gutter);
  background: var(--cream);
}
.hero-wave {
  position: absolute; z-index: 0; pointer-events: none;
  left: -6%; right: -6%; top: -6%; bottom: auto;
  width: 112%; height: 132%; max-width: none;
  animation: wavedrift 32s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes wavedrift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-1.2%, .8%, 0) scale(1.035); } }
.hero-headline { position: relative; z-index: 3; text-align: center; max-width: 1180px; margin-top: -22vh; }
.hero-h1 {
  display: flex; flex-direction: column; align-items: center;
  font-family: var(--display); font-weight: 340; font-variation-settings: "SOFT" 40;
  font-size: clamp(34px, 5.1vw, 70px);
  line-height: 1.12; letter-spacing: -.005em; color: var(--ink-3);
}
.hero-line { display: block; white-space: nowrap; }
.rotator {
  position: relative; display: inline-block;
  white-space: nowrap; color: var(--slate);
}
.rotator-ghost { visibility: hidden; white-space: nowrap; }
.rotator-word {
  position: absolute; left: 0; right: 0; top: 0; text-align: left; white-space: nowrap;
  color: var(--slate); will-change: opacity, filter;
  transition: opacity .55s var(--ease-out), filter .55s var(--ease-out);
}
.rotator-word.is-out { opacity: 0; filter: blur(6px); transition: opacity .32s var(--ease), filter .32s var(--ease); }
.rotator-word.is-in { opacity: 0; filter: blur(6px); transition: none; }
.hero-actions { display: none; }

.hero-wordmark { position: absolute; left: 0; right: 0; bottom: 190px; z-index: 3; text-align: center; }
.wordmark { font-family: var(--display); font-weight: 400; font-size: 27px; color: #ECEEF1; }
.wordmark-sub { font-family: var(--display); font-weight: 300; font-size: 15px; letter-spacing: .01em; line-height: 1.15; color: #ECEEF1; margin-top: 4px; }
@media (max-width: 760px) {
  .hero-line { white-space: normal; }
  .hero-h1 { font-size: clamp(30px, 8.6vw, 44px); }
  .hero { height: calc(100vh + 60px); min-height: 700px; }
  .hero-headline { margin-top: -14vh; }
  .hero-wordmark { bottom: 120px; }
  .hero-wave { left: -30%; width: 160%; }
}

/* ---------- Segmentos (logos) ---------- */
.logos { position: relative; background: var(--grey); padding-block: 0 26px; overflow: hidden; }
.blueprint {
  position: absolute; inset: 0; opacity: .04; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--ink-2) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink-2) 1px, transparent 1px);
  background-size: 233px 60px;
}
.logos-fade {
  position: absolute; left: 0; right: 0; top: -2px; height: 130px; z-index: 1; pointer-events: none;
  background: linear-gradient(#F2F2F2 0%, rgba(242,242,242,.55) 45%, rgba(242,242,242,0) 100%);
}
.logos-content { z-index: 2; padding-top: 140px; text-align: center; }
.logos-label { font-size: 14px; line-height: 1.3; color: var(--ink); }
.logos-label strong { font-weight: 600; }
.clients {
  margin-top: 40px; display: flex; justify-content: center; align-items: stretch; gap: 0; flex-wrap: wrap;
}
.clients li { display: flex; }
.client {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 22px 34px;
  border-left: 1px solid var(--line-2); transition: opacity .25s;
}
.clients li:first-child .client { border-left: 0; }
.client:hover { opacity: .65; }
.client-name { font-family: var(--display); font-size: 27px; line-height: 1; color: var(--ink); white-space: nowrap; }
.client-seg { font-size: 12px; letter-spacing: .02em; color: var(--ink-2); }
.logos-label-2 { margin-top: 72px; }
.marquee {
  margin-top: 32px; height: 76px; display: flex; align-items: center; overflow: hidden;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 36px, #000 calc(100% - 36px), rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 36px, #000 calc(100% - 36px), rgba(0,0,0,0) 100%);
}
.marquee-track { display: flex; align-items: center; gap: 46px; width: max-content; padding-right: 46px; animation: drift 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--display); font-size: 26px; color: var(--ink-2); white-space: nowrap; opacity: .85;
}
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Valor + stats ---------- */
.value { background: var(--grey); padding-block: 96px 120px; }
.value-copy { max-width: 780px; margin: 0 auto; text-align: center; display: grid; gap: 40px; }
.value-copy p { font-size: clamp(19px, 2.3vw, 30px); line-height: 1.45; font-weight: 300; color: var(--ink); }
.value-copy strong { font-weight: 500; }

.stats-box {
  position: relative; margin: 96px auto 0; max-width: 943px;
  border: 1px solid var(--line); background: var(--grey);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding: 40px 10px 36px;
}
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; padding-inline: 8px; }
.stat-num {
  font-weight: 500; font-size: 30px; line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.stat-label { margin-top: 12px; font-weight: 400; font-size: 14px; line-height: 1.35; color: var(--ink-2); }

/* ---------- Problema ---------- */
.problem { position: relative; background: var(--grey); padding-block: 40px 120px; overflow: hidden; }
.orb {
  position: absolute; left: 50%; top: 42%; width: min(1100px, 130vw); aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(242,242,242,0) 58%, rgba(84,100,122,.10) 62%, rgba(84,100,122,.22) 66%, rgba(84,100,122,.08) 71%, rgba(242,242,242,0) 76%);
  filter: blur(6px);
}
.problem-content { display: flex; flex-direction: column; align-items: center; gap: 48px; }
.problem-headline { text-align: center; padding-top: 24px; }
.problem-headline h2 { font-size: clamp(26px, 3.6vw, 48px); }
.problem-line2 { font-family: var(--display); font-size: clamp(26px, 3.6vw, 48px); line-height: 1.06; color: var(--ink-3); }
.problem-icons {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; width: 100%; max-width: 1200px; margin-top: 60px;
}
.picon { display: flex; flex-direction: column; align-items: center; text-align: center; color: var(--dark-3); }
.picon svg { width: 117px; height: 117px; overflow: visible; }
.picon p { margin-top: 28px; font-size: 18px; line-height: 1.35; color: var(--ink-2); font-weight: 300; }
.picon strong { font-weight: 500; }
.problem-callout { max-width: 1100px; text-align: center; font-size: 17px; line-height: 1.4; color: var(--dark); margin-top: 24px; }
.problem-callout strong { font-weight: 500; }

/* ícones animados */
.spin { animation: spin 24s linear infinite; transform-origin: 0 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.pulse { animation: pulse 2.6s ease-in-out infinite; transform-origin: 0 0; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.28); } }
.bob { animation: bob 3.2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3.2px); } }
.sway { animation: sway 7s ease-in-out infinite; transform-origin: 0 0; }
@keyframes sway { 0%,100% { transform: rotate(-6deg); } 50% { transform: rotate(6deg); } }
.merid { animation: merid 6s ease-in-out infinite; transform-origin: 0 0; }
@keyframes merid { 0%,100% { transform: scaleX(.147); } 50% { transform: scaleX(.62); } }

/* ---------- Método ---------- */
.method { position: relative; background: var(--grey); padding-block: 40px 100px; }
.method::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(rgba(242,242,242,0) 0%, rgba(242,242,242,.9) 48%, var(--grey) 100%);
}
.method-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 605px); gap: 80px; align-items: start; padding-top: 60px; }
.method-left { display: flex; flex-direction: column; align-items: flex-start; gap: 60px; padding-left: 96px; padding-top: 80px; }
.method-left h2 { font-size: clamp(28px, 3.4vw, 46px); }

.accordion { width: 100%; }
.acc-item { border-top: 1px solid var(--line-2); }
.accordion .acc-item:last-child { border-bottom: 1px solid var(--line-2); }
.acc-head {
  display: flex; align-items: flex-start; justify-content: space-between; width: 100%;
  padding: 29px 0 0; text-align: left;
}
.acc-title { font-weight: 400; font-size: clamp(23px, 2.6vw, 36px); line-height: 1.1; color: var(--ink); padding-top: 9px; }
.acc-plus {
  position: relative; flex: none; width: 45px; height: 45px; background: #D8D8D8; color: var(--dark-3);
  display: flex; align-items: center; justify-content: center;
  transition: background .45s var(--ease);
}
.acc-plus svg { transition: transform .45s var(--ease); }
.acc-head[aria-expanded="true"] .acc-plus svg { transform: rotate(45deg); }
.acc-head[aria-expanded="true"] .acc-plus { background: var(--dark); color: var(--on-dark); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.acc-head[aria-expanded="true"] + .acc-body { grid-template-rows: 1fr; }
.acc-inner { overflow: hidden; }
.acc-inner p {
  padding: 9px 60px 13px 0; font-size: clamp(16px, 1.8vw, 26px); line-height: 1.3; font-weight: 300; color: var(--ink-2);
  opacity: 0; transition: opacity .45s var(--ease);
}
.acc-head[aria-expanded="true"] + .acc-body .acc-inner p { opacity: 1; }
.acc-item::after { content: ""; display: block; height: 33px; }
.acc-head[aria-expanded="true"] ~ * { }

/* ---------- Soluções (escuro) ---------- */
.solutions { position: relative; background: var(--dark); color: var(--on-dark); padding-block: 120px 100px; overflow: hidden; }
.dark-grid {
  position: absolute; inset: 0; opacity: .14; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--slate) 1px, transparent 1px),
    linear-gradient(to bottom, var(--slate) 1px, transparent 1px);
  background-size: 233px 82px;
}
.skyline { position: absolute; left: 0; right: 0; bottom: 0; height: 60%; pointer-events: none; opacity: .9; }
.skyline svg { width: 100%; height: 100%; }
.solutions-content { z-index: 2; }
.sol-head { font-size: clamp(26px, 3.6vw, 48px); text-align: center; color: var(--on-dark); }
.sol-head2 { font-family: var(--display); font-size: clamp(26px, 3.6vw, 48px); line-height: 1.06; text-align: center; color: var(--on-dark); }
.sol-kicker { margin-top: 140px; font-family: var(--display); font-size: clamp(24px, 3vw, 40px); line-height: 1.06; color: var(--on-dark); padding-left: 96px; }
.sol-kicker2 { font-family: var(--display); font-size: clamp(24px, 3vw, 40px); line-height: 1.06; padding-left: 96px; }
.tabs { display: flex; width: 100%; margin-top: 60px; padding-inline: 96px; }
.tabs-list { width: 545px; flex: none; }
.tab {
  display: block; width: 100%; padding: 20px 0 21px; text-align: left;
  border-top: 1px solid var(--line-soft);
  font-weight: 400; font-size: 33px; line-height: 1; color: var(--on-dark-3);
  transition: color .4s var(--ease), font-size .2s;
}
.tab.is-on { font-weight: 500; font-size: 36px; color: var(--on-dark); }
.tabs-end { border-top: 1px solid var(--line-soft); }
.tabs-panels { flex: 1; padding-left: 167px; padding-top: 20px; min-width: 0; }
.panel { animation: pin .45s var(--ease) both; }
.panel[hidden] { display: none; }
@keyframes pin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.pgroup { margin-top: 30px; }
.pgroup:first-child { margin-top: 0; }
.pitem {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px; width: 100%; text-align: left;
  font-weight: 400; font-size: clamp(22px, 2.3vw, 32px); line-height: 1.3; color: var(--on-dark);
}
.psign { flex: none; color: var(--on-dark-3); transition: transform .4s var(--ease); }
.pitem[aria-expanded="true"] .psign { transform: rotate(45deg); }
.pbody { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.pitem[aria-expanded="true"] + .pbody { grid-template-rows: 1fr; }
.pbody > div { overflow: hidden; }
.pbody p {
  padding: 10px 40px 4px 0; font-weight: 300; font-size: clamp(16px, 1.6vw, 23px); line-height: 1.45; color: var(--on-dark-2);
  opacity: 0; transition: opacity .4s var(--ease);
}
.pitem[aria-expanded="true"] + .pbody p { opacity: 1; }

.sol-mobile { display: none; margin-top: 40px; }
.srow { border-top: 1px solid var(--line-soft); }
.srow:last-of-type { border-bottom: 1px solid var(--line-soft); }
.shead {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%; text-align: left;
  padding: 17px 0 18px; font-weight: 400; font-size: 20px; line-height: 1.25; color: var(--on-dark-3);
  transition: color .4s var(--ease);
}
.shead.is-on { font-weight: 500; color: var(--on-dark); }
.ssign { flex: none; font-size: 20px; line-height: 1; color: var(--on-dark-3); transition: transform .4s var(--ease); }
.shead.is-on .ssign { transform: rotate(45deg); color: var(--on-dark); }
.sbody { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.shead.is-on + .sbody { grid-template-rows: 1fr; }
.sbody > .smoves { overflow: hidden; display: flex; flex-direction: column; gap: 18px; opacity: 0; transition: opacity .4s var(--ease); }
.shead.is-on + .sbody > .smoves { opacity: 1; padding: 2px 0 22px; }
.smlabel { font-weight: 500; font-size: 17px; line-height: 1.3; color: var(--on-dark); }
.smbody { margin-top: 3px; font-weight: 300; font-size: 15px; line-height: 1.5; color: var(--on-dark-2); }
.solutions .link-arrow { margin-top: 64px; margin-left: 96px; }

/* ---------- Cases ---------- */
.cases { position: relative; background: var(--grey); padding-block: 77px 140px; overflow: hidden; }
.mosaic { position: absolute; pointer-events: none; background-repeat: no-repeat; background-size: 100% 100%; z-index: 1; }
.mosaic-tl { left: -52px; top: -76px; width: 530px; height: 229px; background-image: url("../img/mosaic-tl.svg"); }
.mosaic-tr { right: -50px; top: -76px; width: 521px; height: 225px; background-image: url("../img/mosaic-tr.svg"); }
.mosaic-bl { left: -39px; bottom: -34px; width: 881px; height: 344px; background-image: url("../img/mosaic-bl.svg"); }
.mosaic-br { right: -33px; bottom: -33px; width: 856px; height: 334px; background-image: url("../img/mosaic-br.svg"); }
.cases-content { z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0; }
.cases-headline { text-align: center; }
.cases-headline h2 { font-size: clamp(30px, 3.8vw, 52px); line-height: 1; }
.cases-line2 { font-family: var(--display); font-size: clamp(30px, 3.8vw, 52px); line-height: 1; color: var(--ink); }

.case-grid {
  width: 100%; max-width: 1040px; margin-top: 90px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px;
}
/* 5º case (ímpar no fim) ocupa a linha inteira */
.case-grid .case:nth-child(odd):last-child { grid-column: 1 / -1; }
.case {
  display: flex; flex-direction: column; gap: 14px; padding: 28px 31px 26px; border-radius: 14px;
  color: var(--on-dark); min-height: 300px; transition: transform .35s var(--ease);
}
.case:hover { transform: translateY(-4px); }
.case-tag { font-size: 12px; letter-spacing: .02em; color: var(--slate-pale); opacity: .85; }
.case-name { font-family: var(--display); font-size: 40px; line-height: 1; color: var(--on-dark); margin-top: 6px; }
.case-desc { font-weight: 300; font-size: 17px; line-height: 1.45; color: var(--on-dark-2); }
.case-front { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(201,207,218,.22); font-weight: 400; font-size: 16px; line-height: 1.35; color: var(--on-dark); }
.case-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 13px; color: var(--slate-pale); }
.case-link .arrow { width: 18px; }
.case-link .arrow::before { width: 18px; }
.c3 .case-desc { color: #E5E8EE; }
.c3 .case-tag, .c3 .case-link { color: #E5E8EE; }
.cmarquee { width: 100vw; margin-top: 90px; overflow: hidden; }
.crow { overflow: hidden; padding-block: 10px; }
.crow-a { margin-left: -100px; }
.crow-b { margin-left: -287px; margin-top: 10px; }
.ctrack { display: flex; gap: 30px; width: max-content; padding-right: 30px; }
.ctrack-left { animation: cl 70s linear infinite; }
.ctrack-right { animation: cr 78s linear infinite; }
.crow:hover .ctrack { animation-play-state: paused; }
@keyframes cl { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes cr { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.chalf { display: flex; gap: 30px; }
.ccard {
  display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-start; flex: 0 0 auto;
  width: 361px; min-height: 148px; border-radius: 14px; padding: 16px 31px 16px;
  transition: transform .35s var(--ease);
}
.ccard:hover { transform: translateY(-4px); }
.c1 { background: var(--ink); }
.c2 { background: var(--dark-3); }
.c3 { background: var(--slate); }
.cnum { font-weight: 500; font-size: 53px; line-height: 1; color: var(--on-dark); text-align: right; font-variant-numeric: tabular-nums; }
.ccopy { margin-top: 3px; font-weight: 300; font-size: 20px; line-height: 1.28; text-align: right; display: flex; flex-direction: column; }
.c1 .ccopy { color: #B2B2B2; }
.c2 .ccopy { color: #D1D1D1; }
.c3 .ccopy { color: #E5E8EE; }
.ccopy strong { font-weight: 500; }
.cases .link-arrow { margin-top: 70px; }

/* ---------- Stack / parceiros ---------- */
.partners { background: var(--grey-2); padding-block: 0; }
.partners-content { position: relative; padding-block: 60px; min-height: 342px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.rule { position: absolute; left: 70px; right: 70px; height: 1px; background: #8C8C8C; }
.rule-top { top: 29px; }
.rule-bottom { bottom: 28px; }
.partners .cross::before, .partners .cross::after { background: #8C8C8C; }
.partners .cross-tl { left: 63px; top: 22px; }
.partners .cross-tr { right: 63px; top: 22px; }
.partners .cross-bl { left: 63px; bottom: 21px; }
.partners .cross-br { right: 63px; bottom: 21px; }
.partners-head { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.24; padding-left: max(0px, calc(50% - 630px + 176px)); }
.stack-list {
  display: flex; flex-wrap: wrap; gap: 14px 28px; max-width: 560px; justify-content: flex-end;
  padding-right: max(0px, calc(50% - 630px + 100px));
}
.stack-list li { font-family: var(--mono); font-size: 14px; letter-spacing: .01em; color: var(--ink-2); white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq { background: var(--grey); padding-block: 110px 120px; }
.faq-content { max-width: 1100px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 640px); gap: 60px; }
.faq-head { font-size: clamp(26px, 3vw, 40px); }
.faq-list details { border-top: 1px solid var(--line-2); }
.faq-list details:last-child { border-bottom: 1px solid var(--line-2); }
.faq-list summary {
  list-style: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 22px 0; font-weight: 400; font-size: 21px; line-height: 1.3; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.fsign { flex: none; color: var(--on-dark-3); transition: transform .4s var(--ease); font-size: 22px; line-height: 1.2; }
.faq-list details[open] .fsign { transform: rotate(45deg); color: var(--ink); }
.faq-list details p { padding: 0 60px 24px 0; font-weight: 300; font-size: 17px; line-height: 1.5; color: var(--ink-2); }

/* ---------- Diagnóstico / formulário ---------- */
.diag { background: var(--cream); padding-block: 110px 120px; }
.diag-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 680px); gap: 64px; align-items: start; }
.diag-copy h2 { font-size: clamp(30px, 3.8vw, 52px); }
.diag-sub { margin-top: 24px; font-size: 19px; line-height: 1.45; color: var(--ink-2); max-width: 520px; }
.diag-list { margin-top: 28px; display: grid; gap: 12px; }
.diag-list li { position: relative; padding-left: 26px; font-size: 17px; color: var(--ink); }
.diag-list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 12px;
  border: 1px solid var(--slate); background: linear-gradient(135deg, var(--slate) 50%, transparent 50%);
}
.diag-contact { margin-top: 32px; font-size: 15px; color: var(--ink-2); }
.diag-contact a { text-decoration: underline; text-underline-offset: 4px; color: var(--ink); }

/* ---------- Formulário em passos (diagnóstico) ---------- */
.quote { background: transparent; padding-block: 110px 96px; position: relative; z-index: 1; }
.quote-content { position: relative; width: 100%; max-width: 1400px; margin: 0 auto; padding-inline: var(--gutter); }
.quote__inner { max-width: 943px; margin: 0 auto; }
.diag .quote__inner { max-width: none; margin: 0; }
.quote__box {
  position: relative; background: transparent; border: 1px solid var(--line);
  padding: 36px 44px 32px;
  box-shadow: none;
}
.quote__step-label { font-size: 12px; letter-spacing: .04em; color: var(--slate); margin-bottom: 18px; }
.quote__step { display: none; }
.quote__step.is-active { display: block; animation: pin .4s var(--ease) both; }
.quote__title { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; color: var(--ink-3); text-wrap: balance; }
.quote__sub { margin-top: 10px; font-size: 16px; line-height: 1.45; color: var(--ink-2); max-width: 60ch; }
.quote__sub a { text-decoration: underline; text-underline-offset: 4px; color: var(--ink); }
.quote__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin-top: 28px; }
.quote__field { display: grid; gap: 8px; align-content: start; }
.quote__field--full { grid-column: 1 / -1; }
.quote__label { font-size: 13px; font-weight: 400; letter-spacing: .02em; text-transform: uppercase; color: var(--ink-2); }
.quote__input, .quote__select {
  width: 100%; font: inherit; font-weight: 400; font-size: 16px; color: var(--ink);
  padding: 12px 14px; background: #fff; border: 1px solid var(--line-2); border-radius: 6px;
  transition: border-color .2s;
}
.quote__input:focus, .quote__select:focus { outline: none; border-color: var(--dark); }
.quote__input.is-invalid, .quote__select.is-invalid { border-color: #B23A3A; }
.quote__range { width: 100%; margin: 14px 0 0; accent-color: var(--dark); height: 24px; }
.quote__value { font-family: var(--display); font-size: 30px; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.quote__unit { font-family: var(--body); font-size: 14px; font-weight: 400; color: var(--ink-2); }
.quote__chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.chip {
  padding: 12px 18px; border: 1px solid var(--line-2); border-radius: 999px; background: #fff;
  font-weight: 400; font-size: 15px; color: var(--ink); transition: background .25s, color .25s, border-color .25s;
}
.chip:hover { border-color: var(--dark); }
.chip.is-on { background: var(--dark); border-color: var(--dark); color: var(--on-dark); }
.quote__note { margin-top: 16px; font-size: 13px; color: var(--on-dark-3); }
.quote__nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line-2); }
.quote__back { font-weight: 300; font-size: 16px; color: var(--ink-2); padding: 10px 0; visibility: hidden; }
.quote__back.is-visible { visibility: visible; }
.quote__back:hover { color: var(--ink); }
.quote__next {
  display: inline-flex; align-items: center; gap: 12px; padding: 13px 24px; border-radius: 10px;
  background: var(--dark); color: var(--on-dark); font-weight: 400; font-size: 16px; line-height: 1;
  transition: background .3s, opacity .3s;
}
.quote__next:hover:not(:disabled) { background: var(--dark-3); }
.quote__next:disabled { opacity: .35; cursor: not-allowed; }
.quote__success { text-align: center; padding-block: 16px; }
.quote__check { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%; background: var(--dark); color: var(--on-dark); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.quote__success .quote__sub { margin-inline: auto; }
.quote__box.is-done .quote__nav, .quote__box.is-done .quote__step-label { display: none; }
.quote__error { margin-top: 12px; font-size: 14px; color: #B23A3A; }

/* ---------- Footer ---------- */
.footer { background: var(--dark-2); color: var(--on-dark); padding-block: 88px 40px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-inline: 71px; }
.footer-wordmark { font-family: var(--display); font-size: 30px; color: var(--paper); }
.footer-tag { margin-top: 14px; font-family: var(--display); font-weight: 300; font-size: 14px; letter-spacing: .5px; color: var(--footer-tag); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px 40px; padding-top: 10px; }
.footer-nav a { font-weight: 300; font-size: 15px; color: var(--footer-link); }
.footer-nav a:hover { color: var(--on-dark); }
.footer-social { display: flex; gap: 18px; padding-top: 8px; color: var(--footer-link); }
.footer-social a:hover { color: var(--on-dark); }
.footer-hair { position: relative; margin: 70px 0 36px; display: flex; align-items: center; padding-inline: 63px; }
.hline { flex: 1; height: 1px; background: rgba(201,207,218,.18); }
.hplus { position: relative; width: 17px; height: 17px; flex: none; }
.hplus::before, .hplus::after { content: ""; position: absolute; background: #47525C; }
.hplus::before { left: 0; top: 7px; width: 17px; height: 3px; }
.hplus::after { left: 7px; top: 0; width: 3px; height: 17px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-inline: 71px; }
.footer-bottom p { font-size: 12px; font-weight: 300; color: var(--footer-muted); line-height: 1.6; }
.footer-claim { font-family: var(--display) !important; letter-spacing: .5px; color: var(--footer-tag) !important; }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1100px) {
  .method-left { padding-left: 0; padding-top: 20px; }
  .sol-kicker, .sol-kicker2 { padding-left: 0; }
  .tabs { padding-inline: 0; }
  .tabs-list { width: 42%; }
  .tabs-panels { padding-left: 60px; }
  .tab { font-size: 26px; }
  .tab.is-on { font-size: 28px; }
  .solutions .link-arrow { margin-left: 0; }
  .partners-head { padding-left: 0; }
  .stack-list { padding-right: 0; }
  .footer-top, .footer-bottom { padding-inline: 0; }
  .footer-hair { padding-inline: 0; }
}

@media (max-width: 900px) {
  .nav { padding: 16px 20px; }
  .nav.is-scrolled { padding: 12px 20px; }
  .nav-left .nav-link, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mark { width: 36px; height: 36px; }

  .hero { height: auto; min-height: 0; max-height: none; padding-block: 150px 220px; }
  .hero-h1 { font-size: clamp(26px, 6.6vw, 40px); }
  .hero-actions { margin-top: 32px; gap: 18px; }
  .hero-wordmark {
    bottom: 0; padding: 40px 20px 60px;
    background: linear-gradient(rgba(17,22,30,0) 0%, rgba(17,22,30,.32) 48%, rgba(17,22,30,.6) 100%);
  }

  .logos-content { padding-top: 36px; }
  .value { padding-block: 60px 68px; }
  .stats-box { grid-template-columns: 1fr 1fr; gap: 32px 0; padding: 32px 8px; margin-top: 56px; }

  .problem { padding-block: 24px 60px; }
  .problem-icons { grid-template-columns: 1fr; gap: 36px; margin-top: 20px; }
  .picon svg { width: 94px; height: 94px; }

  .method-content { grid-template-columns: 1fr; gap: 26px; padding-top: 30px; }
  .method-left { gap: 26px; }
  .method-left .btn-dark { order: 3; }
  .acc-head { padding-top: 20px; }
  .acc-title { padding-top: 5px; }
  .acc-plus { width: 34px; height: 34px; }
  .acc-inner p { padding: 8px 0 10px; }
  .acc-item::after { height: 22px; }

  .solutions { padding-block: 100px 58px; }
  .sol-kicker { margin-top: 80px; }
  .tabs { display: none; }
  .sol-mobile { display: block; }
  .solutions .link-arrow { margin-top: 34px; font-size: 20px; }

  .cases { padding-block: 58px 100px; }
  .cmarquee { margin-top: 50px; }
  .case-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 50px; }
  .case { min-height: 0; padding: 22px 20px; }
  .case-name { font-size: 32px; }
  .clients { margin-top: 28px; }
  .client { padding: 14px 22px; }
  .client-name { font-size: 24px; }
  .logos-label-2 { margin-top: 48px; }
  .crow-a { margin-left: -30px; }
  .crow-b { margin-left: -128px; }
  .ctrack, .chalf { gap: 14px; }
  .ctrack { padding-right: 14px; }
  .ccard { width: 232px; min-height: 104px; border-radius: 11px; padding: 12px 18px 12px; }
  .cnum { font-size: 34px; }
  .ccopy { font-size: 14px; margin-top: 2px; }
  .cases .link-arrow { margin-top: 40px; font-size: 20px; }
  .mosaic-tl { width: 238px; height: 103px; top: -37px; left: -23px; }
  .mosaic-tr { width: 234px; height: 101px; top: -37px; right: -23px; }
  .mosaic-bl { width: 300px; height: 118px; bottom: -16px; left: -18px; }
  .mosaic-br { width: 292px; height: 114px; bottom: -15px; right: -15px; }

  .partners-content { flex-direction: column; align-items: flex-start; min-height: 0; padding-block: 56px; }
  .rule { left: 20px; right: 20px; }
  .rule-top { top: 16px; }
  .rule-bottom { bottom: 16px; }
  .partners .cross-tl { left: 13px; top: 9px; }
  .partners .cross-tr { right: 13px; top: 9px; }
  .partners .cross-bl { left: 13px; bottom: 9px; }
  .partners .cross-br { right: 13px; bottom: 9px; }
  .stack-list { justify-content: flex-start; max-width: none; }

  .faq { padding-block: 70px 80px; }
  .faq-content { grid-template-columns: 1fr; gap: 28px; }
  .faq-list summary { font-size: 18px; padding: 18px 0; }
  .faq-list details p { padding-right: 30px; }

  .quote { padding-block: 48px 56px; }
  .quote__back:not(.is-visible) { display: none; }
  .quote__box { padding: 24px 18px 22px; }
  .quote__grid { grid-template-columns: 1fr; gap: 18px; margin-top: 22px; }
  .quote__nav { flex-direction: column-reverse; align-items: stretch; }
  .quote__next { justify-content: center; }
  .quote__back { text-align: center; }
  .diag { padding-block: 70px 80px; }
  .diag-content { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 22px 18px; }
  .field-row { grid-template-columns: 1fr; }

  .footer { padding-block: 44px 34px; }
  .footer-top { flex-direction: column; gap: 26px; }
  .footer-hair { margin: 36px 0 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .fab { right: 18px; bottom: 18px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .stats-box { grid-template-columns: 1fr; }
  .stat-num { font-size: 28px; }
  .hero-h1 { font-size: 24px; }
  .rotator { white-space: normal; }
  .rotator-ghost, .rotator-word { white-space: normal; }
}


/* ═══ Ferramenta (Process Flow AI) ═══ */
.ferramenta { padding: 110px 0 100px; border-top: 1px solid rgba(0,0,0,.08); }
.ferramenta-inner { max-width: 1100px; margin: 0 auto; padding-inline: var(--gutter); }
.ferramenta-head { max-width: 780px; }
.ferramenta-head h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; margin: 12px 0 18px; }
.ferramenta-head p { font-size: 17px; line-height: 1.6; }
.ferramenta-actions { display: flex; align-items: center; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.ferramenta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 56px; }
.ferramenta-card { position: relative; padding: 30px 30px 26px; border: 1px solid rgba(0,0,0,.1); border-radius: 18px; background: rgba(255,255,255,.65); }
.ferramenta-num { display: block; font-family: var(--mono, "IBM Plex Mono", monospace); font-size: 12px; letter-spacing: .12em; color: var(--slate); margin-bottom: 10px; }
.ferramenta-card h3 { font-family: var(--display); font-weight: 400; font-size: 26px; line-height: 1.1; margin: 0 0 14px; }
.ferramenta-card p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0 0 10px; }
.ferramenta-card p strong { color: var(--ink); font-weight: 500; }
.ferramenta-card .ferramenta-ai { padding-top: 10px; margin-top: 4px; border-top: 1px dashed rgba(0,0,0,.14); }
.ferramenta-how { margin-top: 72px; padding: 44px 40px; border-radius: 22px; background: var(--dark); color: var(--on-dark, #F2F2F2); }
.ferramenta-how .eyebrow { color: var(--slate-light); }
.ferramenta-how h3 { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.12; margin: 10px 0 30px; color: #F2F2F2; }
.ferramenta-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.ferramenta-steps li { display: grid; gap: 8px; font-size: 14.5px; line-height: 1.55; color: rgba(242,242,242,.72); }
.ferramenta-steps li strong { color: #F2F2F2; font-weight: 500; font-size: 16px; line-height: 1.3; }
.ferramenta-step-n { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(242,242,242,.35); display: inline-flex; align-items: center; justify-content: center; font-family: var(--mono, monospace); font-size: 12px; color: #F2F2F2; }
.ferramenta-how .ferramenta-actions { margin-top: 36px; }
.ferramenta-how .btn-dark { background: #F2F2F2; color: var(--dark); }
.ferramenta-how .btn-dark .arrow, .ferramenta-how .btn-dark .arrow::before, .ferramenta-how .btn-dark .arrow::after { --arrow-color: var(--dark); }
.ferramenta-how .btn-dark:hover { background: #fff; }
@media (max-width: 900px) {
  .ferramenta { padding: 72px 0; }
  .ferramenta-grid { grid-template-columns: 1fr; }
  .ferramenta-steps { grid-template-columns: 1fr; }
  .ferramenta-how { padding: 32px 24px; }
}

html, body { overflow-x: clip; }

/* seção de diagnóstico após a capa: oculta — o formulário vive em #contato */


/* grão fino uniforme em toda a página (sem blend: sem emendas entre seções) */
body {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero { background: transparent; }
