/* ============================================================
   AGENTY — Design System 2026
   Paleta quente · editorial · interativo
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --paper:   #faf7f2;
  --smoke:   #f0ebe0;
  --ink:     #18130e;
  --ink-2:   #2e2520;
  --ember:   #c94a1f;
  --ochre:   #f2b705;
  --moss:    #2d7a4f;
  --muted:   #8a7f74;
  --border:  #e2dbd0;

  --font:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;

  --nav-h:   64px;
  --max-w:   1440px;
  --gutter:  clamp(24px, 4vw, 64px); /* padding horizontal universal */
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
em { font-family: var(--font-serif); font-style: italic; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); border: 0;
}

/* ── Grain texture ───────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: multiply;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nav__logo-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url('../assets/favicon-paperblack.svg');
  mask-image: url('../assets/favicon-paperblack.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: var(--font);
}

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--ink); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 8px 18px;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--ember); }
.nav__cta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--moss);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.nav__mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__mobile-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav__mobile-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__mobile-btn.open span:nth-child(2) { opacity: 0; }
.nav__mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 24px clamp(20px, 4vw, 56px) 32px;
  gap: 20px;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-link {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
}
.nav__mobile-cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 12px 20px;
  border-radius: 2px;
  align-self: flex-start;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
}

/* hero__body: mesma largura e alinhamento do .container */
.hero__body {
  display: grid;
  grid-template-columns: 58fr 42fr;
  flex: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  border-left: 1px solid var(--border);
}

/* Left column: flex column with internal rows */
.hero__left {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: visible;
  position: relative;
  z-index: 2;
}

.hero__status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.hero__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--moss);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__status-sep { opacity: 0.3; margin: 0 2px; }

/* Display wrap: fills remaining height, space-between for headline and CTA */
.hero__display-wrap {
  flex: 1;
  padding: clamp(28px, 3.5vw, 52px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.8vw, 8rem);
  line-height: 0.91;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  overflow: visible;
  /* allow heading to visually bleed into image column */
  width: 110%;
}
.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-spring);
}
.hero__word.in { opacity: 1; transform: none; }
.hero__word--serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--ember);
  font-size: 0.91em;
}

.hero__rotate-wrap { display: inline-block; }
.hero__rotate-text {
  display: inline-block;
  color: var(--ember) !important;
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  text-transform: none !important;
  font-size: 0.91em;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.hero__sub-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
}
.hero__sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 20px;
  border-radius: 2px;
  transition: background 0.25s;
  max-width: 360px;
}
.hero__cta-card:hover { background: var(--ember); }
.hero__cta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  grid-column: 1; grid-row: 1;
}
.hero__cta-arrow {
  font-size: 1.1rem;
  grid-column: 2; grid-row: 1 / 3;
  align-self: center;
}
.hero__cta-meta {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  opacity: 0.45;
  text-transform: uppercase;
  grid-column: 1; grid-row: 2;
}

/* Scroll hint: pinned to bottom of left column */
.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px var(--gutter);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.hero__scroll-line {
  display: block;
  width: 28px; height: 1px;
  background: var(--muted);
}

/* Right column: floating aspect-ratio visual, bleeds to right viewport edge */
.hero__right {
  display: flex;
  align-items: center;
  padding: clamp(32px, 4vw, 60px) 0 clamp(32px, 4vw, 60px) clamp(20px, 2.5vw, 36px);
  overflow: visible;
  position: relative;
}

.hero__visual {
  position: relative;
  /* extend to right viewport edge when hero__body is narrower than viewport */
  width: calc(100% + max(0px, (100vw - var(--max-w)) / 2));
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 4px 0 0 4px;
  transform-origin: center right;
}
.hero__visual-inner {
  position: absolute;
  top: -10%; left: 0; right: 0;
  height: 120%;
  background: linear-gradient(145deg,
    #d44d22 0%,
    #a83210 38%,
    #5c1a08 68%,
    #1a100a 100%
  );
}
.hero__visual-inner::before {
  content: '';
  position: absolute;
  top: -15%; right: -10%;
  width: 75%; height: 55%;
  background: rgba(26, 16, 10, 0.5);
  transform: rotate(-18deg);
  transform-origin: top right;
}
.hero__visual-inner::after {
  content: '';
  position: absolute;
  bottom: 15%; left: 0;
  width: 55%; height: 1px;
  background: rgba(250, 247, 242, 0.12);
}
.hero__visual-coords {
  position: absolute;
  bottom: 20px; left: 20px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(26, 16, 10, 0.65);
  padding: 4px 10px;
  border-radius: 2px;
}

/* Hero person overlay — anchored in hero__right, above gradient (z1), below text (z2) */
.hero__person {
  position: absolute;
  bottom: 0;
  /* stick out left into the text column for the overlap effect */
  left: -28%;
  height: 96%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}
.hero__person img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}

.hero__person-mobile { display: none; }

/* ── Marquee ─────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  background: var(--ink);
  padding: 18px 0;
  border-top: 1px solid var(--ink-2);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 36s linear infinite;
  width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 0 32px;
}
.marquee__dot {
  display: inline-block;
  color: var(--ochre);
  font-size: 1rem;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Page sections ───────────────────────────────────────────── */
.pg-section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--border);
}
.pg-section--alt { background: var(--smoke); }
.pg-section--dark {
  background: var(--ink);
  border-color: var(--ink-2);
}
.pg-section--ochre {
  background: var(--ochre);
  border-color: rgba(24, 19, 14, 0.15);
}

.pg-section__head {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.pg-section__head:last-child { margin-bottom: 0; }
.pg-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.pg-label--light { color: rgba(250, 247, 242, 0.5); }
.pg-label--ink   { color: rgba(24, 19, 14, 0.6); }

.pg-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 800px;
}
.pg-heading--light { color: var(--paper); }
.pg-heading em { color: var(--ember); }

.pg-subhead {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
}

/* ── Dores grid ──────────────────────────────────────────────── */
/* ── Bento Grid (seção dores) ────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.bento-card {
  background: var(--smoke);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.18s ease;
  cursor: default;
  will-change: transform;
}
.bento-card:nth-child(1),
.bento-card:nth-child(4) { grid-column: span 3; }
.bento-card:nth-child(2),
.bento-card:nth-child(3) { grid-column: span 2; }
.bento-card:hover { box-shadow: 0 6px 40px rgba(24,19,14,0.11); }

/* Visual area */
.bento-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 28px 12px;
  gap: 10px;
}
.bento-visual__caption {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* Card body */
.bento-body {
  padding: 14px 22px 22px;
  border-top: 1px solid var(--border);
}
.bento-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.bento-num {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.bento-stat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
}
.bento-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
}
.bento-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.bento-card:hover .bento-text { opacity: 1; transform: translateY(0); }

/* Bar chart (card 01) */
.bento-chart { width: 100%; max-width: 220px; height: auto; overflow: visible; }
.bc-bar {
  fill: rgba(24,19,14,0.1);
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: bc-grow 0.9s cubic-bezier(.4,0,.2,1) backwards;
}
.bc-bar--last { fill: var(--ember); opacity: 0.8; }
.bc-bar--1 { animation-delay: 0.05s; }
.bc-bar--2 { animation-delay: 0.2s; }
.bc-bar--3 { animation-delay: 0.35s; }
.bc-bar--4 { animation-delay: 0.5s; }
.bc-bar--5 { animation-delay: 0.65s; }
@keyframes bc-grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* Chat visual (card 02) */
.bento-chat { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 240px; }
.bento-msg {
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 9px 13px;
  max-width: 90%;
}
.bento-msg--in {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 4px 12px 12px 12px;
  color: var(--ink);
}
.bento-msg--silent {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 4px 12px 12px 12px;
  color: var(--muted);
}
.bento-msg__time {
  display: block;
  font-size: 0.65rem;
  opacity: 0.55;
  margin-top: 3px;
}
.bento-gap {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: var(--muted);
  padding: 0 2px;
}
.bento-dots { display: flex; gap: 4px; align-items: center; padding: 2px 0; }
.bento-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.3;
}

/* Calls visual (card 03) */
.bento-calls { display: flex; gap: 16px; align-items: center; }
.bento-call {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid;
  flex-shrink: 0;
}
.bento-call--ok  { border-color: var(--moss);  color: var(--moss);  background: rgba(45,122,79,.07); }
.bento-call--miss{ border-color: var(--ember); color: var(--ember); background: rgba(201,74,31,.07); }

/* Calendar visual (card 04) */
.bento-cal { display: flex; flex-direction: column; gap: 6px; width: 100%; max-width: 210px; }
.bento-cal__row { display: flex; align-items: center; gap: 6px; }
.bento-cal__lbl {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  width: 26px;
  flex-shrink: 0;
}
.bento-cal__slot { flex: 1; height: 18px; border-radius: 3px; position: relative; }
.bento-cal__slot--ok   { background: rgba(45,122,79,.18); border: 1px solid rgba(45,122,79,.25); }
.bento-cal__slot--miss { background: rgba(201,74,31,.09); border: 1px dashed rgba(201,74,31,.3); }
.bento-cal__slot--miss::after {
  content: '×';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--ember);
  opacity: 0.55;
  line-height: 1;
}

/* ── Product table ───────────────────────────────────────────── */
.product-table {
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.product-row {
  display: grid;
  grid-template-columns: 64px 220px 1fr;
  align-items: center;
  gap: 0;
  padding: clamp(20px, 2.5vw, 32px) clamp(20px, 3vw, 36px);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
  cursor: default;
}
.product-row:last-child { border-bottom: none; }
.product-row:hover { background: var(--ink); color: var(--paper); }
.product-row:hover .product-row__sub,
.product-row:hover .product-row__stack,
.product-row:hover .status-label,
.product-row:hover .product-row__desc p { color: rgba(250,247,242,0.55); }
.product-row:hover .status-dot--green,
.product-row:hover .status-dot--ochre { border-color: rgba(250,247,242,0.3); }

.product-row__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  color: var(--border);
  line-height: 1;
  transition: color 0.2s;
}
.product-row:hover .product-row__num { color: rgba(250,247,242,0.2); }

.product-row__info { padding-right: 20px; }
.product-row__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s;
}
.product-row:hover .product-row__name { color: var(--paper); }
.product-row__sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  margin-top: 4px;
}

.product-row__desc {
  padding: 0 24px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
  transition: color 0.2s;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.product-row:hover .product-row__desc { border-color: rgba(250,247,242,0.1); color: var(--paper); }
.product-row__stack {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  transition: color 0.2s;
}

.product-row__status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding-left: 24px;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot--green { background: var(--moss); }
.status-dot--ochre { background: var(--ochre); }
.status-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

/* ── Process ─────────────────────────────────────────────────── */
.process-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.process-col {
  padding: clamp(28px, 3vw, 48px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-col:last-child { border-right: none; }

.process-col__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--border);
  line-height: 1;
}
.process-col__line {
  width: 32px; height: 2px;
  background: var(--ember);
  margin: 4px 0;
}
.process-col__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
}
.process-col__meta {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
}
.process-col__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.pricing-card {
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: 3px;
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-card--accent {
  border-color: var(--ochre);
  background: rgba(242, 183, 5, 0.06);
}
.pricing-card__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
}
.pricing-card--accent .pricing-card__label { color: var(--ochre); }
.pricing-card__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--paper);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-card__value--text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.2;
}
.pricing-card__value span {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.5);
}
.pricing-card__detail {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.45);
}
.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  padding-top: 20px;
}
.pricing-card__list li {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.65);
  padding-left: 14px;
  position: relative;
}
.pricing-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ember);
}

.pricing-note {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
}
.pricing-note p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.5);
}
.pricing-note__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ochre);
  transition: opacity 0.2s;
}
.pricing-note__cta:hover { opacity: 0.7; }

/* ── Operator ────────────────────────────────────────────────── */
.operator-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.operator-fact {
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.operator-fact:last-child { border-right: none; }
.operator-fact__label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.operator-fact__value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
}
.operator-fact__sub {
  font-size: 1rem;
  color: var(--muted);
}

/* ── CTA big (ochre) ─────────────────────────────────────────── */
.cta-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: clamp(20px, 4vw, 60px) 0;
}
.cta-big__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.cta-big__line {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.cta-big__line-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 1;
  color: var(--ember);
}
.cta-big__sub {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(24, 19, 14, 0.65);
  max-width: 460px;
}
.cta-big__btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--paper);
  background: var(--ink);
  padding: 18px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 5px 5px 0 0 rgba(24, 19, 14, 0.3);
}
.cta-big__btn:hover {
  background: var(--ember);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 0 rgba(24, 19, 14, 0.25);
}
.cta-big__url {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(24, 19, 14, 0.4);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer-new {
  background: var(--ink);
  border-top: 1px solid var(--ink-2);
  padding: 28px 0;
}
.footer-new__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-new__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--paper);
}
.footer-new__tagline {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.3);
  margin-top: 4px;
}
.footer-new__right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.3);
}
.footer-new__legal-link {
  color: rgba(250, 247, 242, 0.5);
  transition: color 0.2s;
}
.footer-new__legal-link:hover { color: rgba(250, 247, 242, 0.9); }
.footer-new__cta {
  color: var(--ochre);
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer-new__cta:hover { opacity: 0.7; }

/* ── Catalog examples label ──────────────────────────────────── */
.catalog-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}

/* ── Quem Opera — two-column grid ────────────────────────────── */
.quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(40px, 6vw, 80px);
  align-items: center;
}
.quem-grid__left { }
.quem-grid__right {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

/* ── Lucas photos fan ────────────────────────────────────────── */
.lucas-photos-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.lucas-photos {
  position: relative;
  width: 200px;
  height: 200px;
}
.lucas-photo {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 8px 32px rgba(24, 19, 14, 0.18);
  padding: 7px;
  transition: transform 0.65s cubic-bezier(0.34, 1.3, 0.64, 1);
  cursor: default;
}
.lucas-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}
.lucas-photo--left  { z-index: 30; transition-delay: 0.15s; }
.lucas-photo--mid   { z-index: 20; transition-delay: 0.30s; }
.lucas-photo--right { z-index: 10; transition-delay: 0.45s; }

.lucas-photos.animated .lucas-photo--left  { transform: rotate(-8deg) translate(-135px, 10px); }
.lucas-photos.animated .lucas-photo--mid   { transform: rotate(6deg); }
.lucas-photos.animated .lucas-photo--right { transform: rotate(-6deg) translate(172px, 20px); }

.lucas-photos.animated .lucas-photo--left:hover  { transform: rotate(1deg) translate(-145px, 0); }
.lucas-photos.animated .lucas-photo--mid:hover   { transform: rotate(0) translateY(-10px); }
.lucas-photos.animated .lucas-photo--right:hover { transform: rotate(3deg) translate(178px, 10px); }

.lucas-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.lucas-meta__sep { opacity: 0.4; }
.lucas-meta__linkedin {
  color: #0A66C2;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.lucas-meta__linkedin:hover { opacity: 0.7; }

/* ── Cal.com modal ───────────────────────────────────────────── */
.cal-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.cal-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 19, 14, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cal-modal__panel {
  position: relative;
  z-index: 1;
  background: rgba(250, 247, 242, 0.97);
  border-radius: 6px;
  width: min(680px, 92vw);
  height: min(720px, 88vh);
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(24, 19, 14, 0.35);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.cal-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  border-radius: 2px;
}
.cal-modal__close:hover { color: var(--ink); }
.cal-modal__iframe {
  width: 100%;
  flex: 1;
  border: none;
}

/* ── Scroll reveal ───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.22s; }
[data-reveal-delay="3"] { transition-delay: 0.34s; }

/* ── Auto-reveal (.ar) — universal scroll animation ─────── */
.ar {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.ar.in {
  opacity: 1;
  transform: none;
}

/* ── Parallax wrapper ────────────────────────────────────────── */
[data-parallax] { will-change: transform; }

/* ── Product page ────────────────────────────────────────────── */
.prod-hero {
  background: var(--ink);
  padding: calc(var(--nav-h) + 80px) 0 100px;
  border-bottom: 1px solid var(--ink-2);
}
.prod-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  justify-content: space-between;
}
.prod-hero__left { flex: 1; max-width: 600px; }
.prod-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 24px;
}
.prod-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
.prod-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 28px;
}
.prod-hero__title em { color: var(--ember); font-style: italic; }
.prod-hero__sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.6);
  max-width: 480px;
  margin-bottom: 36px;
}
.prod-hero__cta { font-size: 0.95rem; padding: 14px 28px; }

.prod-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ink-2);
  border-radius: 3px;
  overflow: hidden;
  min-width: 220px;
}
.prod-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--ink-2);
}
.prod-hero__stat:last-child { border-bottom: none; }
.prod-hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.02em;
}
.prod-hero__stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
}

/* Dores grid (seção "O Risco" no gestor-reputacao) */
.dores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.dore-card {
  padding: clamp(28px, 3.5vw, 48px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dore-card:nth-child(even) { border-right: none; }
.dore-card:nth-child(3),
.dore-card:nth-child(4) { border-bottom: none; }
.dore-card__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.dore-card__stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
}
.dore-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.dore-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Feature grid */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.feat-card {
  padding: clamp(28px, 3.5vw, 48px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feat-card:nth-child(even) { border-right: none; }
.feat-card:nth-child(3),
.feat-card:nth-child(4) { border-bottom: none; }
.feat-card__icon {
  font-size: 1.4rem;
  color: var(--ember);
  line-height: 1;
}
.feat-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
}
.feat-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Pricing */
.prod-price {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.prod-price__left { flex: 1; }
.prod-price__sub {
  margin-top: 16px;
  font-size: 1.1rem;
  color: rgba(250, 247, 242, 0.5);
  max-width: 360px;
  line-height: 1.7;
}
.prod-price__card {
  flex: 0 0 380px;
  border: 1.5px solid rgba(201, 74, 31, 0.45);
  border-radius: 12px;
  padding: 40px;
  background: var(--ink-2);
  box-shadow: 0 0 0 1px rgba(201,74,31,0.08), 0 24px 48px rgba(0,0,0,0.35);
}
.prod-price__setup {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
}
.prod-price__setup-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}
.prod-price__setup-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.prod-price__setup-note {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.75);
}
.prod-price__divider {
  height: 1px;
  background: rgba(250,247,242,0.08);
  margin: 0 0 24px;
}
.prod-price__monthly { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; padding: 16px 0 4px; }
.prod-price__monthly-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}
.prod-price__monthly-val {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--paper);
  letter-spacing: -0.03em;
  line-height: 1;
}
.prod-price__monthly-val span {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(250, 247, 242, 0.65);
}
.prod-price__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prod-price__list li {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.8);
  padding-left: 18px;
  position: relative;
}
.prod-price__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--moss);
  font-size: 0.8rem;
}
.prod-price__cta {
  width: 100%;
  justify-content: center;
  background: var(--ember) !important;
  color: var(--paper) !important;
  border-color: var(--ember) !important;
}
.prod-price__cta:hover {
  background: #b03f17 !important;
  border-color: #b03f17 !important;
}

/* CTA section */
.prod-cta { padding: 20px 0; }
.prod-cta__inner { max-width: 800px; }
.prod-cta__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.prod-cta__email {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.prod-cta__email:hover { opacity: 1; }

/* ── Scroll-Expand Hero (.sh) ────────────────────────────────── */
.sh { position:relative; height:100dvh; overflow:hidden; background:var(--ink);
      display:flex; flex-direction:column; align-items:center; justify-content:center; }
.sh__bg { position:absolute; inset:0;
          background:radial-gradient(ellipse at 60% 40%,#2e1a0e 0%,var(--ink) 70%); }
.sh__media { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
             width:300px; height:400px; border-radius:16px; overflow:hidden;
             box-shadow:0 0 60px rgba(0,0,0,.5); will-change:width,height; }
.sh__media video { width:100%; height:100%; object-fit:cover; display:block; }
.sh__overlay { position:absolute; inset:0; background:rgba(18,13,14,.5); }
.sh__badge { position:absolute; top:calc(var(--nav-h) + 32px); left:50%; transform:translateX(-50%);
             display:flex; align-items:center; gap:8px; font-size:.65rem; font-weight:600;
             letter-spacing:.14em; color:var(--moss); white-space:nowrap; z-index:20; }
.sh__badge-dot { width:7px; height:7px; border-radius:50%; background:var(--moss);
                 box-shadow:0 0 0 3px rgba(45,122,79,.25); animation:pulse 2s ease-in-out infinite; }
.sh__text { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
            display:flex; gap:clamp(8px,1.5vw,20px); pointer-events:none; z-index:10; white-space:nowrap; }
.sh__text span { font-family:var(--font-display); font-size:clamp(2rem,5vw,4.5rem);
                 font-weight:900; color:var(--paper); text-transform:uppercase;
                 letter-spacing:-.02em; will-change:transform;
                 transition:color .5s ease; }
.sh--expanded .sh__text span { color:var(--ember); }
.sh__hint { position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
            font-size:.65rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase;
            color:rgba(250,247,242,.35); white-space:nowrap; z-index:20; }
.sh__reveal { position:relative; z-index:20; margin-top:0; padding:80px 24px 40px;
              text-align:center; opacity:0; pointer-events:none;
              transition:opacity .7s ease;
              display:flex; flex-direction:column; align-items:center; gap:32px; }
.sh__reveal.visible { opacity:1; pointer-events:auto; }
.sh__reveal-sub { font-size:1.15rem; line-height:1.75; color:rgba(250,247,242,.6); max-width:480px; }
.sh__reveal-stats { display:flex; border:1px solid var(--ink-2); border-radius:3px; overflow:hidden; }
.sh__reveal-stats .prod-hero__stat { border-bottom:none; border-right:1px solid var(--ink-2); }
.sh__reveal-stats .prod-hero__stat:last-child { border-right:none; }
.sh-sub { background:var(--ink); padding:80px 24px 72px;
          display:flex; flex-direction:column; align-items:center; gap:36px; text-align:center; }
.sh-sub__text { font-size:1.1rem; line-height:1.8; color:rgba(250,247,242,.6); max-width:480px; }
.sh-sub__stats { display:flex; border:1px solid var(--ink-2); border-radius:3px; overflow:hidden; }
.sh-sub__stats .prod-hero__stat { border-bottom:none; border-right:1px solid var(--ink-2); }
.sh-sub__stats .prod-hero__stat:last-child { border-right:none; }

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__mobile-btn { display: flex; }

  .hero__body {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    border-left: none;
    border-right: none;
  }
  .hero__person { display: none; }

  .hero__left  { border-right: none; }
  .hero__right {
    height: 72vw;
    padding: 0;
    position: relative;
    overflow: visible;
  }

  .hero__person-mobile { display: none; }
  .hero__visual {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 3px 0 0 3px;
  }
  .hero__display {
    font-size: clamp(2.6rem, 9.5vw, 4.5rem);
    width: 100%;
  }
  .hero__display-wrap { padding: 20px var(--gutter); gap: 28px; }
  .hero__status-bar { padding: 12px var(--gutter); }
  .hero__scroll-hint { padding: 12px var(--gutter); }

  .bento-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bento-card:nth-child(1),
  .bento-card:nth-child(2),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4) { grid-column: span 1; }
  .bento-card { min-height: 280px; }
  .bento-text { opacity: 1; transform: none; }

  .product-row {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px 12px;
  }
  .product-row__num    { grid-column: 1; grid-row: 1; font-size: 1.4rem; }
  .product-row__status {
    grid-column: 2; grid-row: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-left: 0;
  }
  .product-row__info   { grid-column: 1 / -1; grid-row: 2; padding-right: 0; }
  .product-row__name   { font-size: 1.25rem; }
  .product-row__desc   { grid-column: 1 / -1; grid-row: 3; border: none; padding: 0; }

  .process-cols { grid-template-columns: 1fr; }
  .process-col { border-right: none; border-bottom: 1px solid var(--border); }
  .process-col:last-child { border-bottom: none; }

  .pricing-cols { grid-template-columns: 1fr; }

  .operator-facts { grid-template-columns: 1fr; }
  .operator-fact { border-right: none; border-bottom: 1px solid var(--border); }
  .operator-fact:last-child { border-bottom: none; }

  .quem-grid { grid-template-columns: 1fr; }
  .quem-grid__right { display: none; }

  .footer-new__inner { flex-direction: column; align-items: flex-start; }
  .footer-new__right { flex-wrap: wrap; gap: 16px; }

  .marquee__item { font-size: 1.22rem; }

  /* Remove explicit <br> from headings — let text wrap naturally on mobile */
  .pg-heading br { display: none; }

  /* Body text — revert to original sizes on mobile */
  .hero__sub            { font-size: 0.92rem; }
  .pg-subhead           { font-size: 1rem; }
  .bento-text           { font-size: 0.88rem; }
  .product-row__desc    { font-size: 0.92rem; }
  .process-col__text    { font-size: 0.92rem; }
  .pricing-card__list li { font-size: 0.88rem; }
  .operator-fact__sub   { font-size: 0.82rem; }
  .cta-big__sub         { font-size: 0.95rem; }
  .why-item__text       { font-size: 0.92rem; }
  .body    { font-size: 1rem; }
  .body-lg { font-size: 1.1rem; }
}

@media (max-width: 540px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card { min-height: 260px; }
  .hero__display { font-size: clamp(2.6rem, 10vw, 4rem); }
  .cta-big__line { font-size: clamp(3rem, 14vw, 6rem); }
  .cta-big__line-serif { font-size: clamp(2.5rem, 12vw, 5rem); }

  /* Scroll-hero: stack words vertically on mobile */
  .sh__text {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .sh__text span {
    font-size: clamp(1.3rem, 6.5vw, 2rem);
  }
}

/* ================================================================
   BACKWARD COMPAT — Subpages (sobre, casos, faq, servicos)
   Mantém as classes antigas funcionando no novo tema quente
   ================================================================ */

/* Shared nav for subpages (exceto dark-hero que gerencia o próprio nav) */
body:not(.home):not(.dark-hero) .nav {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
body:not(.home):not(.dark-hero) .nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
}
body.dark-hero .nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  border-bottom: 1px solid var(--border);
}

/* OLD nav classes still used in subpages */
.nav__logo { color: var(--ink); }

/* Page header (subpages) */
.page-header {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--smoke);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header__inner { display: flex; flex-direction: column; align-items: center; }

/* Typography helpers (subpages) */
.h1, .h2, .h3, .h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.h4 { font-size: 1.1rem; }

.body    { font-size: 1.2rem; line-height: 1.7; color: var(--ink); }
.body-lg { font-size: 1.4rem; line-height: 1.7; color: var(--muted); }

.caption {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.gradient-text {
  background: linear-gradient(135deg, var(--ember), var(--ochre));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons (subpages) */
.btn, .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: var(--ink);
  padding: 12px 24px;
  border-radius: 2px;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary:hover, .btn:hover { background: var(--ember); }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }

/* Badges */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid;
}
.badge--purple { border-color: var(--ember); color: var(--ember); }
.badge--green  { border-color: var(--moss); color: var(--moss); }

/* Section (subpages) */
body:not(.home) .section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--border);
}

/* Grid helpers */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-item__icon { font-size: 1.5rem; flex-shrink: 0; color: var(--ember); display: flex; align-items: center; }
.why-item__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.why-item__text { font-size: 1.1rem; line-height: 1.65; color: var(--muted); }

.why__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--ember);
  line-height: 1;
}
.why__stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }

/* Cards (subpages) */
.card, .card-feature {
  background: var(--smoke);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px;
}

/* Section small padding (subpages) */
.section--sm {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--border);
}
.section--sm.cta-section { background: var(--smoke); }

/* Legal content (privacidade, termos) */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  color: var(--ink);
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal-content p,
.legal-content li {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content a { color: var(--ember); }
.legal-content strong { color: var(--ink); font-weight: 600; }

/* CTA section (subpages) */
.cta-section { background: var(--smoke); }
.cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: clamp(48px, 6vw, 80px);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 3px;
}

/* Divider */
.divider { height: 1px; background: var(--border); margin: clamp(40px, 6vw, 80px) 0; }

/* Section header */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }

/* Testimonial */
.testimonial-card__stars { color: var(--ochre); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 24px;
}

/* FAQ (subpages) */
.faq-accordion .faq-item,
.faq-list .faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
}
.faq-item__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-item__body { max-height: 1000px; }
.faq-item__body p { padding-bottom: 24px; color: var(--muted); line-height: 1.7; }

/* Grad card (subpages) */
--grad-card: var(--smoke);
.grad-card { background: var(--smoke); }

/* Footer (subpages) */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}
.footer__brand .nav__logo { color: var(--paper); margin-bottom: 12px; }
.footer__brand p { font-size: 0.85rem; color: rgba(250, 247, 242, 0.5); }
.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--paper); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__copy { font-size: 0.78rem; color: rgba(250, 247, 242, 0.3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.78rem; color: rgba(250, 247, 242, 0.3); transition: color 0.2s; }
.footer__legal a:hover { color: var(--paper); }

/* Grad variables used inline in subpages */
.grad-text { background: linear-gradient(135deg, var(--ember), var(--ochre)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Old CSS variables → new ones (inline styles in subpages HTML) */
:root {
  --bg:      var(--paper);
  --bg-2:    var(--smoke);
  --surface: var(--smoke);
  --text:    var(--ink);
  --text-2:  var(--muted);
  --text-3:  var(--muted);
  --primary: var(--ember);
  --primary-light: var(--ember);
  --primary-dim: rgba(201, 74, 31, 0.1);
  --primary-glow: rgba(201, 74, 31, 0.25);
  --border-2: var(--border);
  --card:     var(--paper);
  --grad-card: var(--smoke);
  --radius-lg: 4px;
  --radius-xl: 6px;
  --font-display: var(--font-serif);
}

/* [data-animate] compat for subpages */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate].visible { opacity: 1; transform: none; }
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.22s; }
[data-animate-delay="3"] { transition-delay: 0.34s; }
[data-animate-delay="4"] { transition-delay: 0.46s; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .grid-3   { grid-template-columns: 1fr; }
  .grid-4   { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }

  /* Product page mobile */
  .prod-hero__inner { flex-direction: column; gap: 40px; }
  .prod-hero__stats { flex-direction: row; min-width: 0; width: 100%; }
  .prod-hero__stat  { flex: 1; padding: 20px; }
  .feat-grid        { grid-template-columns: 1fr; }
  .feat-card        { border-right: none !important; }
  .feat-card:nth-child(3) { border-bottom: 1px solid var(--border) !important; }
  .dores-grid       { grid-template-columns: 1fr; }
  .dore-card        { border-right: none !important; }
  .dore-card:nth-child(3) { border-bottom: 1px solid var(--border) !important; }
  .prod-price       { flex-direction: column; gap: 40px; }
  .prod-price__card { flex: 0 0 auto; width: 100%; }

  /* Subpages — page header */
  .page-header { padding: calc(var(--nav-h) + 36px) 0 36px; }
  .page-header .h1 br { display: none; }
  .body-lg { font-size: 1.15rem; }

  /* casos.html — article e stats responsivos */
  .case-article { grid-template-columns: 1fr !important; }
  .case-stats   { grid-template-columns: 1fr 1fr !important; }

  /* Reduce section padding on mobile */
  body:not(.home) .section { padding: clamp(56px, 8vw, 100px) 0; }
  .section--sm { padding: clamp(40px, 5vw, 64px) 0; }
}
@media (max-width: 540px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .prod-hero__stats { flex-direction: column; }
  .prod-hero__stat  { border-bottom: 1px solid var(--ink-2); padding: 20px 24px; }
  .prod-hero__stat:last-child { border-bottom: none; }

  /* casos.html — stats empilham no mobile pequeno */
  .case-stats { grid-template-columns: 1fr !important; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── Servicos — layout, list, meta, demo cards ───────────────── */

/* Alternate column order on desktop; resets on mobile */
.why-grid--alt > :last-child { order: -1; }

.service-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  display: flex;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}
.service-list li::before { content: '—'; color: var(--ember); flex-shrink: 0; }

.service-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.service-meta__item { display: flex; flex-direction: column; gap: 4px; }
.service-meta__label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.service-meta__value { font-size: 0.95rem; font-weight: 600; color: var(--ink); }

.service-demo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--grad-card);
  border: 1px solid var(--border-2);
}
.demo-head {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.demo-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--moss);
  background: rgba(45, 122, 79, 0.1);
  border: 1px solid rgba(45, 122, 79, 0.2);
  padding: 8px 14px;
  border-radius: 100px;
  margin-top: 6px;
  align-self: flex-start;
}
.chat { display: flex; flex-direction: column; gap: 10px; }
.chat__msg {
  max-width: 88%;
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 10px 14px;
}
.chat__msg--bot {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 4px 10px 10px 10px;
  color: var(--ink);
}
.chat__msg--user {
  background: var(--ember);
  color: var(--paper);
  border-radius: 10px 4px 10px 10px;
  align-self: flex-end;
}
.review {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}
.review__stars { color: var(--ochre); letter-spacing: 2px; margin-bottom: 6px; font-size: 0.85rem; }
.review__author { font-size: 0.75rem; color: var(--muted); margin-top: 8px; }
.review-reply {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ember);
}
.review-reply__label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 8px;
}
.transcript { display: flex; flex-direction: column; }
.transcript__line {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.transcript__line:last-of-type { border-bottom: none; }
.transcript__line strong { color: var(--ink); }

@media (max-width: 900px) {
  .why-grid--alt > :last-child { order: 0; }
}

/* ── Nav claro (sobre fundo escuro) ─────────────────────────── */
body.dark-hero .nav:not(.scrolled) .nav__logo,
body.dark-hero .nav:not(.scrolled) .nav__link { color: rgba(250,247,242,0.65); }
body.dark-hero .nav:not(.scrolled) .nav__link:hover { color: var(--paper); }
body.dark-hero .nav:not(.scrolled) .nav__mobile-btn span { background: var(--paper); }
body.dark-hero .nav:not(.scrolled) .nav__cta {
  background: rgba(250,247,242,0.12);
  border: 1px solid rgba(250,247,242,0.2);
}
body.dark-hero .nav:not(.scrolled) .nav__cta:hover { background: rgba(250,247,242,0.22); }

/* ── Botões secundários ──────────────────────────────────────── */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--border);
  padding: 12px 24px;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--ink); background: var(--smoke); }
.btn-secondary.btn-lg { padding: 15px 32px; font-size: 0.95rem; }

.btn-on-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--paper);
  padding: 12px 24px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-on-dark:hover { background: var(--ochre); }
.btn-on-dark.btn-lg { padding: 16px 32px; font-size: 0.95rem; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(250,247,242,0.65);
  background: transparent;
  border: 1.5px solid rgba(250,247,242,0.2);
  padding: 12px 24px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost-light:hover { border-color: rgba(250,247,242,0.5); color: var(--paper); }
.btn-ghost-light.btn-lg { padding: 15px 32px; font-size: 0.95rem; }

/* ── Nicho hero (dark gradient — landing pages por segmento) ─── */
.nicho-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(145deg, #d44d22 0%, #a83210 38%, #5c1a08 68%, #1a100a 100%);
  color: var(--paper);
  text-align: center;
}
.nicho-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--gutter) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nicho-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  margin-bottom: 28px;
}
.nicho-hero__badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ochre);
  flex-shrink: 0;
}
.nicho-hero__h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--paper);
  max-width: 920px;
  margin-bottom: 28px;
}
.nicho-hero__h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--ochre);
  font-size: 0.9em;
}
.nicho-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: rgba(250,247,242,0.55);
  max-width: 540px;
  margin-bottom: 40px;
}
.nicho-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.nicho-hero__stats {
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  width: 100%;
  max-width: 680px;
}
.nicho-hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.nicho-hero__stat:last-child { border-right: none; }
.nicho-hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.nicho-hero__stat-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.38);
}

/* Nicho stats dark strip */
.nicho-stats-row {
  display: flex;
  border: 1px solid var(--ink-2);
  border-radius: 3px;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}
.nicho-stats-row__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 36px 40px;
  border-right: 1px solid var(--ink-2);
  text-align: center;
}
.nicho-stats-row__item:last-child { border-right: none; }
.nicho-stats-row__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--ochre);
  letter-spacing: -0.02em;
}
.nicho-stats-row__label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.38);
  max-width: 160px;
  margin: 0 auto;
}

/* feat-grid com 3 colunas */
.feat-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feat-grid--3 .feat-card:nth-child(even) { border-right: 1px solid var(--border); }
.feat-grid--3 .feat-card { border-bottom: none; }
.feat-grid--3 .feat-card:last-child { border-right: none; }

/* feat-grid com 2 colunas (sem borda bottom) */
.feat-grid--2 .feat-card { border-bottom: none; }

@media (max-width: 900px) {
  .nicho-hero__stats { max-width: 100%; }
  .nicho-hero__h1 br { display: none; }
  .nicho-stats-row { flex-direction: column; }
  .nicho-stats-row__item { border-right: none; border-bottom: 1px solid var(--ink-2); }
  .nicho-stats-row__item:last-child { border-bottom: none; }
  .feat-grid--3 { grid-template-columns: 1fr; }
  .feat-grid--3 .feat-card:nth-child(n) { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .feat-grid--3 .feat-card:last-child { border-bottom: none !important; }
}
@media (max-width: 540px) {
  .nicho-hero__stat { padding: 20px 18px; }
  .nicho-hero__ctas { flex-direction: column; align-items: center; }
}
