/* =====================================================
   eCatálogos — apresentação refinada
   Paleta/imagens idênticas ao site oficial; melhor
   hierarquia, ritmo, componentes e microinterações.
   ===================================================== */

:root {
  --purple: #8300c4;
  --purple-deep: #5e0091;
  --purple-dark: #47006b;
  --green: #00b259;
  --green-dark: #008f47;
  --blue: #0d99ff;
  --blue-dark: #0b7fd6;
  --orange: #e49434;
  --orange-dark: #c97d20;
  --pink: #fe9a99;
  --ink: #23262f;
  --ink-soft: #353945;
  --grey: #777e90;
  --line: #e6e8ec;
  --bg: #fcfcfd;
  --bg-soft: #f4f5f6;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(35, 38, 47, 0.06);
  --shadow-md: 0 12px 32px rgba(35, 38, 47, 0.1);
  --shadow-lg: 0 24px 64px rgba(35, 38, 47, 0.16);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --font-head: "Outfit", "DM Sans", sans-serif;
  --font-body: "DM Sans", "Inter", sans-serif;
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

::selection { background: var(--purple); color: #fff; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1.2), box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 11px 18px; font-size: 0.9rem; }
.btn--green { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(0, 178, 89, 0.35); }
.btn--green:hover { background: var(--green-dark); }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 8px 24px rgba(228, 148, 52, 0.35); }
.btn--orange:hover { background: var(--orange-dark); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 8px 24px rgba(13, 153, 255, 0.35); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }

/* ---------- Destaques de texto ---------- */
.hl-green { color: #35e07e; }
.hl-purple { color: #8a2be2; }
.hl-blue { color: var(--blue); }
.hl-orange { color: var(--orange); }
.hl-ink { color: var(--ink); }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  background: linear-gradient(180deg, rgba(70, 0, 107, 0.55), transparent);
}
.nav.is-scrolled {
  background: rgba(94, 0, 145, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(35, 0, 55, 0.35);
  padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand img { height: 32px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.btn) {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  padding: 4px 0;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--green);
  transition: right 0.28s ease;
  border-radius: 2px;
}
.nav__links a:not(.btn):hover::after { right: 0; }
.nav__cta svg { transition: transform 0.25s ease; }
.nav__cta:hover svg { transform: translateX(3px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 24px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 85% -10%, rgba(131, 0, 196, 0.9), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(108, 59, 255, 0.5), transparent 55%),
    linear-gradient(160deg, #6d00a5 0%, var(--purple) 45%, #8a1bd0 100%);
  color: #fff;
  padding: 148px 0 0;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__glow--1 { width: 480px; height: 480px; background: rgba(53, 224, 126, 0.16); top: -120px; right: 8%; }
.hero__glow--2 { width: 420px; height: 420px; background: rgba(255, 255, 255, 0.08); bottom: 30%; left: -140px; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  margin-bottom: 26px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #35e07e;
  box-shadow: 0 0 0 4px rgba(53, 224, 126, 0.25);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(53, 224, 126, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(53, 224, 126, 0.08); }
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero__brand { display: block; color: #35e07e; font-size: 0.62em; font-weight: 700; letter-spacing: 0.01em; margin-bottom: 10px; }
.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 56ch;
  margin-bottom: 34px;
}
.hero__lead strong { color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 22px;
}
.hero__strip li {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 16px;
  position: relative;
}
.hero__strip li + li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.hero__strip li { padding-left: 20px; }
.hero__strip li:first-child { padding-left: 0; }
.hero__strip li:first-child::before { display: none; }
.hero__strip strong {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: #35e07e;
  line-height: 1.2;
}
.hero__strip span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.75); }

.hero__art { position: relative; }
.hero__art img {
  width: min(100%, 520px);
  margin-inline: auto;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.35));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Marcas */
.hero__brands {
  position: relative;
  z-index: 1;
  padding: 0 0 34px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12));
}
.hero__brands-caption {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee__card {
  display: grid;
  place-items: center;
  width: 150px;
  height: 78px;
  padding: 12px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(30, 0, 45, 0.28);
  transition: transform 0.25s ease;
}
.marquee__card:hover { transform: translateY(-4px) scale(1.03); }
.marquee__card img { max-height: 46px; max-width: 110px; width: auto; object-fit: contain; }

/* =====================================================
   INTRO
   ===================================================== */
.intro { background: var(--white); padding: 84px 0 40px; }
.intro__card {
  border: 1.5px solid var(--purple);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4.5vw, 52px);
  background:
    radial-gradient(600px 200px at 100% 0%, rgba(131, 0, 196, 0.05), transparent 60%),
    var(--white);
  box-shadow: var(--shadow-md);
}
.intro__card > h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: var(--purple);
  line-height: 1.25;
  margin-bottom: 14px;
}
.intro__lead { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 34px; max-width: 70ch; }
.intro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.intro__item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.intro__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(131, 0, 196, 0.35); }
.intro__num {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--purple);
  background: rgba(131, 0, 196, 0.08);
  border: 1px solid rgba(131, 0, 196, 0.25);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.intro__item h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.intro__item p { font-size: 0.92rem; color: var(--grey); }

/* =====================================================
   SECTION HEAD
   ===================================================== */
.section-head { text-align: center; max-width: 780px; margin: 0 auto 54px; }
.section-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-head p { color: var(--grey); font-size: 1.02rem; }
.section-head--light h2, .section-head--light p { color: #fff; }
.section-head--light p { color: rgba(255, 255, 255, 0.8); }

/* =====================================================
   NÚMEROS
   ===================================================== */
.numbers { background: var(--white); padding: 40px 0 96px; }
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.numbers__card {
  border: 1.5px solid var(--purple);
  border-radius: var(--r-md);
  background: var(--white);
  text-align: center;
  padding: 30px 20px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.numbers__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.numbers__icon { display: inline-block; margin-bottom: 14px; }
.numbers__icon img { width: 38px; margin-inline: auto; opacity: 0.9; }
.numbers__value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--purple);
  line-height: 1.2;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.numbers__label { color: var(--grey); font-size: 0.92rem; line-height: 1.45; }

/* =====================================================
   FERRAMENTAS
   ===================================================== */
.tools {
  background:
    radial-gradient(900px 400px at 110% 10%, rgba(131, 0, 196, 0.04), transparent 60%),
    var(--bg-soft);
  padding: 96px 0;
}
.tool {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 44px;
  transition: box-shadow 0.3s ease;
}
.tool:hover { box-shadow: var(--shadow-md); }
.tool:last-child { margin-bottom: 0; }
.tool--reverse { grid-template-columns: 1.08fr 0.92fr; }
.tool--reverse .tool__copy { order: 2; }
.tool--reverse .tool__art { order: 1; }

.tool__head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 26px; flex-wrap: wrap; }
.tool__chip {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 10px 22px;
  border-radius: 12px;
  border: 2px solid;
  background: #fff;
  white-space: nowrap;
}
.tool__head--b2b .tool__chip { color: var(--orange); border-color: var(--orange); }
.tool__head--fdv .tool__chip { color: var(--blue); border-color: var(--blue); }
.tool__head--moda .tool__chip { color: var(--green); border-color: var(--green); }
.tool__logo { height: 62px; width: auto; filter: drop-shadow(0 8px 18px rgba(35, 38, 47, 0.14)); }

.tool__copy h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 16px;
}
.tool__sub { color: var(--grey); font-size: 1rem; margin-bottom: 22px; }
.tool__sub strong { color: var(--ink-soft); }
.tool__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-bottom: 28px;
}
.tool__chips li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 8px 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.tool__chips li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.55;
}
.tool--reverse .tool__chips li::before { background: var(--blue); }
.tool:last-of-type .tool__chips li::before { background: var(--green); }

.tool__art img {
  width: 100%;
  border-radius: var(--r-md);
  filter: drop-shadow(0 24px 44px rgba(35, 38, 47, 0.16));
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.tool__art:hover img { transform: scale(1.015) translateY(-4px); }

/* =====================================================
   RECURSOS
   ===================================================== */
.features { background: var(--white); padding: 96px 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}
.feature-card {
  border: 1.5px solid var(--purple);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card > p { color: var(--grey); font-size: 0.95rem; margin-bottom: 24px; }
.feature-card__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 30px;
}
.feature-card__logos img { max-height: 52px; width: auto; filter: grayscale(0); transition: transform 0.25s ease; }
.feature-card__logos img:hover { transform: scale(1.08); }
.feature-card__split {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 22px;
}
.feature-card__split li {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple);
  background: rgba(131, 0, 196, 0.07);
  border: 1px solid rgba(131, 0, 196, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.feature-card__logos--cloud img { max-height: 58px; }

/* ---------- Curva ABC ---------- */
.abc {
  border: 1.5px solid var(--purple);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: clamp(22px, 3.5vw, 40px);
}
.abc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.abc__chips span {
  flex: 1 1 100px;
  text-align: center;
  background: var(--purple);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 8px;
}
.abc__body {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.abc__chart { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.abc__donut {
  --s1: 9.51; --s2: 7.61; --s3: 6.73; --s4: 18; --s5: 14; --s6: 12; --s7: 11; --s8: 10.75; --s9: 10.4;
  width: min(300px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    #1a62e4 0 calc(var(--s1) * 1%),
    #f1573f calc(var(--s1) * 1%) calc((var(--s1) + var(--s2)) * 1%),
    #17b8a6 calc((var(--s1) + var(--s2)) * 1%) calc((var(--s1) + var(--s2) + var(--s3)) * 1%),
    #7b5bd6 calc((var(--s1) + var(--s2) + var(--s3)) * 1%) calc((var(--s1) + var(--s2) + var(--s3) + var(--s4)) * 1%),
    #d4579e calc((var(--s1) + var(--s2) + var(--s3) + var(--s4)) * 1%) calc((var(--s1) + var(--s2) + var(--s3) + var(--s4) + var(--s5)) * 1%),
    #e3b33a calc((var(--s1) + var(--s2) + var(--s3) + var(--s4) + var(--s5)) * 1%) calc((var(--s1) + var(--s2) + var(--s3) + var(--s4) + var(--s5) + var(--s6)) * 1%),
    #efd45c calc((var(--s1) + var(--s2) + var(--s3) + var(--s4) + var(--s5) + var(--s6)) * 1%) calc((var(--s1) + var(--s2) + var(--s3) + var(--s4) + var(--s5) + var(--s6) + var(--s7)) * 1%),
    #20b85a calc((var(--s1) + var(--s2) + var(--s3) + var(--s4) + var(--s5) + var(--s6) + var(--s7)) * 1%) calc((var(--s1) + var(--s2) + var(--s3) + var(--s4) + var(--s5) + var(--s6) + var(--s7) + var(--s8)) * 1%),
    #b9bdd0 calc((var(--s1) + var(--s2) + var(--s3) + var(--s4) + var(--s5) + var(--s6) + var(--s7) + var(--s8)) * 1%) 100%
  );
  -webkit-mask: radial-gradient(circle at center, transparent 52%, #000 52.5%);
  mask: radial-gradient(circle at center, transparent 52%, #000 52.5%);
}
.abc__legend {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px 22px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.abc__legend li { display: flex; align-items: center; gap: 8px; }
.abc__legend i { width: 12px; height: 12px; border-radius: 50%; background: var(--c); flex-shrink: 0; }

.abc__filters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.abc__filters-grid label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.abc__filters-grid input,
.abc__filters-grid select {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.abc__filters-grid input:focus,
.abc__filters-grid select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(131, 0, 196, 0.12); }
.abc__clear {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.abc__clear:hover { background: var(--bg-soft); border-color: var(--purple); }

.abc__totals { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.abc__report {
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(131, 0, 196, 0.3);
}
.abc__kpi {
  border: 1px solid var(--purple);
  color: var(--purple);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.35;
}
.abc__kpi strong { font-size: 0.95rem; font-variant-numeric: tabular-nums; }

.abc__tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.abc__table { width: 100%; border-collapse: collapse; font-size: 0.86rem; min-width: 540px; }
.abc__table th {
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  padding: 10px 12px;
  text-align: center;
  white-space: nowrap;
}
.abc__table td {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.abc__table tbody tr:nth-child(odd) { background: var(--bg-soft); }
.abc__grades { display: table-cell; }
.abc__grades span { display: inline-block; margin-inline: 4px; line-height: 1.25; font-weight: 700; color: var(--ink); }
.abc__caption {
  text-align: center;
  color: var(--grey);
  font-size: 0.85rem;
  margin-top: 18px;
}

/* =====================================================
   CÓDIGO DE BARRAS
   ===================================================== */
.barcode {
  background:
    radial-gradient(800px 380px at 10% 0%, rgba(0, 178, 89, 0.08), transparent 60%),
    var(--purple-dark);
  padding: 96px 0;
}
.barcode .section-head { margin-bottom: 44px; }
.barcode__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.barcode__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.barcode__card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4); }
.barcode__card img {
  width: 100%;
  aspect-ratio: 4 / 2.9;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.barcode__card:hover img { transform: scale(1.05); }
.barcode__card figcaption {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

/* =====================================================
   SEGMENTOS
   ===================================================== */
.segments { background: var(--bg-soft); padding: 96px 0; }
.segments__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.segment {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 12px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.segment:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(131, 0, 196, 0.4); }
.segment img { border-radius: 10px; transition: transform 0.35s ease; }
.segment:hover img { transform: scale(1.03); }
.segment figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* =====================================================
   ESTRUTURA INTERNA
   ===================================================== */
.structure { background: var(--white); padding: 96px 0; }
.structure__card {
  border-radius: var(--r-lg);
  padding: clamp(30px, 4.5vw, 54px);
  color: #fff;
  background:
    radial-gradient(700px 300px at 90% -10%, rgba(53, 224, 126, 0.14), transparent 55%),
    radial-gradient(700px 300px at 0% 110%, rgba(13, 153, 255, 0.14), transparent 55%),
    linear-gradient(150deg, #6d00a5, var(--purple) 55%, #9b1de0);
  box-shadow: var(--shadow-lg);
}
.structure__card h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 28px;
}
.structure__card h2 small { font-size: 0.55em; font-weight: 600; color: rgba(255, 255, 255, 0.75); }
.structure__list { list-style: none; display: grid; gap: 14px; margin-bottom: 28px; }
.structure__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
}
.structure__list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(53, 224, 126, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335e07e' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}
.structure__techs-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}
.structure__techs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-bottom: 30px;
}
.structure__techs li {
  font-family: "Inter", monospace;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
}
.structure__panels {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
}
.structure__panels > p { color: rgba(255, 255, 255, 0.9); margin-bottom: 14px; }
.structure__panels ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.structure__panels li { font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); }
.structure__panels strong { color: #35e07e; }
.structure__panels em { font-style: normal; color: rgba(255, 255, 255, 0.6); font-size: 0.88em; }

/* =====================================================
   CONTATO
   ===================================================== */
.contact { background: var(--bg-soft); padding: 96px 0; }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 16px 26px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(131, 0, 196, 0.4);
  color: var(--purple);
}
.contact__card img { width: 52px; height: 52px; object-fit: contain; transition: transform 0.25s ease; }
.contact__card:hover img { transform: scale(1.12); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  position: relative;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 54px 0 40px;
}
.footer__inner { text-align: center; }
.footer__logo { width: 200px; margin: 0 auto 22px; }
.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 26px;
}
.footer__links a {
  color: var(--grey);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--purple); }
.footer__copy { color: var(--grey); font-size: 0.88rem; }
.footer__patent { color: var(--grey); font-size: 0.88rem; margin-top: 4px; }
.footer__patent strong { color: var(--ink-soft); }
.footer__top {
  position: absolute;
  right: 28px;
  top: -26px;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(131, 0, 196, 0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}
.footer__top:hover { transform: translateY(-4px); background: var(--purple-deep); }

/* =====================================================
   REVEAL ON SCROLL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__art img { animation: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__strip { justify-content: center; }
  .hero__art { order: -1; }
  .hero__art img { width: min(100%, 420px); }
  .intro__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .tool, .tool--reverse { grid-template-columns: 1fr; }
  .tool--reverse .tool__copy { order: 1; }
  .tool--reverse .tool__art { order: 2; }
  .abc__body { grid-template-columns: 1fr; }
  .segments__grid { grid-template-columns: repeat(4, 1fr); }
  .contact__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 84vw);
    background: rgba(70, 0, 107, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 34px 40px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__burger { display: flex; position: relative; z-index: 60; }
  .hero { padding-top: 120px; }
  .features__grid { grid-template-columns: 1fr; }
  .barcode__grid { grid-template-columns: 1fr; }
  .segments__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .abc__filters-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { right: 16px; }
}

@media (max-width: 480px) {
  .intro__grid { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: 1fr; }
  .marquee__card { width: 120px; height: 64px; }
  .marquee__card img { max-height: 38px; max-width: 88px; }
  .hero__strip li { flex: 1 1 45%; }
  .segments__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
