
:root {
  --brand: #8f4d12;
  --brand-hover: #6f390b;
  --brand-soft: #f2e4d3;
  --gold: #c79a52;
  --gold-soft: #ead5ad;
  --ink: #1b1a18;
  --ink-soft: #36322d;
  --muted: #6d675f;
  --paper: #f5f0e8;
  --paper-soft: #faf7f1;
  --surface: #fffdfa;
  --surface-strong: #ffffff;
  --line: #ded5c8;
  --line-dark: rgba(27, 26, 24, .16);
  --pet: #536b56;
  --pet-hover: #3e5341;
  --pet-soft: #e7eee6;
  --success: #276844;
  --error: #a43c31;
  --white: #ffffff;

  --font-display: 'Manrope', 'Inter', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --section: clamp(4.5rem, 8vw, 7.5rem);

  --space-1: .5rem;
  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;

  --radius-xs: 7px;
  --radius-s: 11px;
  --radius-m: 18px;
  --radius-l: 28px;

  --shadow-soft: 0 16px 48px rgba(40, 31, 22, .08);
  --shadow-elevated: 0 28px 80px rgba(40, 31, 22, .14);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .045;
  background: url('../images/paper-noise.png') repeat;
  mix-blend-mode: multiply;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
::selection { color: var(--ink); background: var(--brand-soft); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  transform: translateY(-160%);
  padding: .85rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-s);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}
.section { position: relative; padding-block: var(--section); }
.section--paper { background: var(--paper); }
.section--soft { background: var(--paper-soft); }
.section--pet { background: var(--pet-soft); }
.section--ink { color: var(--white); background: var(--ink); }
.rule { margin: 0; border: 0; border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.1rem;
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 2rem; height: 1px; flex: 0 0 auto; background: currentColor; }
.eyebrow--pet { color: var(--pet); }
.eyebrow--light { color: var(--gold-soft); }
.kicker {
  color: var(--brand);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.045em;
}
h1 { margin-bottom: 1.5rem; font-size: clamp(3.2rem, 5.6vw, 5.8rem); line-height: .99; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.35rem, 4.1vw, 4rem); line-height: 1.04; }
h3 { margin-bottom: .75rem; font-size: clamp(1.35rem, 2vw, 1.9rem); line-height: 1.13; }
p { color: var(--muted); }
.lead { max-width: 43rem; font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.65; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--brand);
  font-size: .92rem;
  font-weight: 800;
}
.text-link::after { content: '↗'; font-size: 1.05rem; transition: transform .22s var(--ease); }
.text-link:hover::after { transform: translate(3px, -3px); }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.button {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .88rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .2s var(--ease), color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--brand); box-shadow: 0 10px 24px rgba(143, 77, 18, .18); }
.button--primary:hover { background: var(--brand-hover); box-shadow: 0 14px 32px rgba(111, 57, 11, .22); }
.button--pet { color: var(--white); background: var(--pet); }
.button--pet:hover { background: var(--pet-hover); }
.button--outline { color: var(--ink); background: transparent; border-color: var(--line-dark); }
.button--outline:hover { border-color: var(--ink); }
.button--light { color: var(--ink); background: var(--white); }
.button--ghost-light { color: var(--white); border-color: rgba(255, 255, 255, .38); }
.button[disabled] { opacity: .58; cursor: wait; transform: none; }

/* Cabeçalho */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 250, .93);
  border-bottom: 1px solid rgba(222, 213, 200, .82);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { background: rgba(255, 253, 250, .98); box-shadow: 0 12px 36px rgba(35, 28, 21, .07); }
.header-inner { min-height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; }
.brand { min-width: max-content; display: inline-flex; align-items: center; gap: .78rem; }
.brand-mark { width: 2.5rem; height: 2.5rem; color: var(--brand); }
.brand-copy { display: grid; line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 800; letter-spacing: -.055em; }
.brand-tag { margin-top: .28rem; color: var(--muted); font-size: .56rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.nav-list { display: flex; align-items: center; gap: clamp(.65rem, 1.55vw, 1.4rem); margin: 0; padding: 0; list-style: none; }
.nav-link { position: relative; display: block; padding-block: .75rem; color: var(--ink-soft); font-size: .8rem; font-weight: 700; }
.nav-link::after { content: ''; position: absolute; right: 100%; bottom: .42rem; left: 0; height: 1.5px; background: var(--brand); transition: right .22s var(--ease); }
.nav-link:hover::after, .nav-link[aria-current='page']::after { right: 0; }
.nav-link[aria-current='page'] { color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.menu-toggle { width: 3rem; height: 3rem; display: none; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-xs); background: transparent; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; width: 1.25rem; height: 1.5px; display: block; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle::before { transform: translateY(-5px); }
.menu-toggle::after { transform: translateY(5px); }
.menu-toggle[aria-expanded='true'] span { opacity: 0; }
.menu-toggle[aria-expanded='true']::before { transform: translateY(1px) rotate(45deg); }
.menu-toggle[aria-expanded='true']::after { transform: translateY(-1px) rotate(-45deg); }

/* Hero inicial */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}
.hero::before {
  content: '';
  position: absolute;
  top: -23rem;
  right: -18rem;
  width: 48rem;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 154, 82, .35);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(199, 154, 82, .045), 0 0 0 12rem rgba(199, 154, 82, .025);
}
.hero-grid {
  min-height: min(820px, calc(100vh - 5rem));
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6.5rem);
  padding-block: clamp(4rem, 7vw, 7rem);
}
.hero-copy { position: relative; z-index: 3; }
.hero-copy h1 { max-width: 11ch; font-size: clamp(3.55rem, 5.5vw, 5.75rem); }
.hero-copy h1 em { color: var(--brand); font-style: normal; }
.hero-copy .lead { max-width: 38rem; }
.hero-meta {
  max-width: 41rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.hero-meta div { min-width: 0; }
.hero-meta strong { display: block; color: var(--ink); font-size: .78rem; font-weight: 800; }
.hero-meta span { display: block; margin-top: .2rem; color: var(--muted); font-size: .7rem; line-height: 1.45; }
.hero-stage { position: relative; min-height: 610px; }
.hero-panel { position: absolute; overflow: hidden; border-radius: var(--radius-l); }
.hero-panel--main {
  inset: 1.7rem 1.7rem 1.7rem 1rem;
  background: linear-gradient(145deg, #fff 0%, #f6eee3 55%, #ecdfcf 100%);
  border: 1px solid rgba(143, 77, 18, .18);
  box-shadow: var(--shadow-elevated);
}
.hero-panel--main::before {
  content: '';
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(143, 77, 18, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(143, 77, 18, .025);
}
.hero-product-cos { position: absolute; bottom: 4%; left: 2%; z-index: 2; width: min(72%, 470px); filter: drop-shadow(0 28px 28px rgba(42, 30, 20, .19)); }
.hero-product-pet { position: absolute; right: -1%; bottom: 8%; z-index: 3; width: min(49%, 320px); filter: drop-shadow(0 24px 24px rgba(42, 30, 20, .17)); }
.hero-note {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 13rem;
  padding: 1.2rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-soft);
}
.hero-note span { display: block; color: var(--gold-soft); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-note strong { display: block; margin-top: .4rem; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.2; }
.hero-lab { position: absolute; bottom: 0; left: 0; z-index: 5; width: 9.5rem; height: 12rem; object-fit: cover; border: .48rem solid var(--surface); border-radius: var(--radius-s); box-shadow: var(--shadow-soft); }
.hero-line { position: absolute; top: 13%; right: 9%; left: 9%; z-index: 1; height: 1px; background: rgba(199, 154, 82, .7); }
.hero-line::before, .hero-line::after { content: ''; position: absolute; top: 50%; width: .55rem; height: .55rem; transform: translateY(-50%); background: var(--surface); border: 2px solid var(--gold); border-radius: 50%; }
.hero-line::before { left: 0; }
.hero-line::after { right: 0; }

/* Hero interno */
.page-hero { position: relative; overflow: hidden; background: var(--paper); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 49.95%, rgba(143,77,18,.08) 50%, transparent 50.05%); pointer-events: none; }
.page-hero .container { min-height: 500px; display: grid; grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); padding-block: clamp(3.8rem, 7vw, 6.5rem); }
.page-hero-copy { position: relative; z-index: 2; min-width: 0; }
.page-hero h1 { max-width: 12ch; font-size: clamp(3.2rem, 5.1vw, 5.4rem); }
.page-hero .lead { max-width: 36rem; }
.page-hero-art { position: relative; min-height: 390px; }
.page-hero-art::after { content: ''; position: absolute; inset: 7% 0 0 13%; background: rgba(255,255,255,.45); border: 1px solid rgba(199,154,82,.6); border-radius: var(--radius-l); transform: rotate(2deg); }
.page-hero-art img { position: absolute; inset: auto 0 0 auto; z-index: 2; width: 86%; max-height: 420px; object-fit: contain; filter: drop-shadow(0 28px 30px rgba(45, 31, 19, .17)); }
.page-hero-art--company::after { inset: 0 0 0 10%; transform: none; }
.page-hero-art--company img { width: 84%; height: 100%; object-fit: cover; border-radius: var(--radius-l); filter: none; }
.page-hero-art--cosmetics img { width: 88%; }
.page-hero-art--pet::after { border-color: rgba(83,107,86,.42); }
.page-hero-art--pet img { width: 90%; }
.page-hero--pet { background: var(--pet-soft); }
.page-hero--dark { color: var(--white); background: var(--ink); }
.page-hero--dark::before { background: linear-gradient(90deg, transparent 49.95%, rgba(255,255,255,.1) 50%, transparent 50.05%); }
.page-hero--dark h1 { color: var(--white); }
.page-hero--dark p { color: rgba(255,255,255,.68); }
.page-hero--dark .breadcrumbs { color: rgba(255,255,255,.55); }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; color: var(--muted); font-size: .75rem; }
.breadcrumbs span::before { content: '/'; margin-right: .5rem; }
.breadcrumbs a:hover { color: var(--brand); }

/* Faixa institucional */
.signature-strip { color: var(--ink); background: var(--surface-strong); border-block: 1px solid var(--line); }
.signature-strip .container { min-height: 7.8rem; display: grid; grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr)); align-items: stretch; }
.signature-intro { display: flex; align-items: center; padding-right: 2.4rem; font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; line-height: 1.22; letter-spacing: -.03em; }
.signature-item { display: flex; flex-direction: column; justify-content: center; padding: 1.4rem 1.6rem; border-left: 1px solid var(--line); }
.signature-item span { color: var(--brand); font-size: .64rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.signature-item strong { margin-top: .32rem; font-size: .84rem; font-weight: 700; line-height: 1.45; }

/* Cabeçalhos de seção */
.editorial-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); align-items: end; gap: clamp(2rem, 6vw, 6rem); margin-bottom: clamp(2.7rem, 5vw, 4.6rem); }
.editorial-head > div { min-width: 0; }
.editorial-head h2 { max-width: 15ch; margin-bottom: 0; }
.editorial-head > p { max-width: 36rem; justify-self: end; margin-bottom: .2rem; padding-left: 1.5rem; border-left: 2px solid var(--brand-soft); }

/* Divisões */
.divisions-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: 1.25rem; align-items: stretch; }
.division-card { position: relative; min-height: 540px; overflow: hidden; background: var(--surface-strong); border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: 0 1px 0 rgba(255,255,255,.7) inset; }
.division-card--pet { margin-top: 3rem; background: var(--pet-soft); border-color: rgba(83,107,86,.22); }
.division-card-copy { position: relative; z-index: 3; width: 65%; padding: clamp(2rem, 4vw, 3.8rem); }
.division-card-copy h3 { max-width: 13ch; margin-top: .8rem; }
.division-card-copy p { max-width: 27rem; }
.division-card-visual { position: absolute; right: -4%; bottom: -3%; z-index: 2; width: 57%; filter: drop-shadow(0 30px 26px rgba(40, 29, 19, .16)); }
.division-card--pet .division-card-visual { right: -6%; width: 61%; }
.division-card::after { content: ''; position: absolute; top: -10rem; right: -10rem; width: 27rem; height: 27rem; border: 1px solid rgba(143,77,18,.18); border-radius: 50%; box-shadow: 0 0 0 4rem rgba(143,77,18,.025); }
.division-card--pet::after { border-color: rgba(83,107,86,.24); box-shadow: 0 0 0 4rem rgba(83,107,86,.028); }
.category-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.35rem 0 1.8rem; }
.category-chips span { padding: .42rem .62rem; color: var(--ink-soft); background: rgba(255,255,255,.66); border: 1px solid var(--line); border-radius: 999px; font-size: .67rem; font-weight: 600; }

/* Processo */
.process-layout { display: grid; grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr); align-items: start; gap: clamp(3rem, 7vw, 7rem); }
.process-sticky { position: sticky; top: 8rem; }
.process-sticky h2 { max-width: 12ch; }
.process-list { counter-reset: step; overflow: hidden; background: rgba(255,255,255,.58); border: 1px solid var(--line); border-radius: var(--radius-m); }
.process-step { counter-increment: step; display: grid; grid-template-columns: 4.7rem 1fr; gap: 1.25rem; padding: 1.8rem 2rem; border-bottom: 1px solid var(--line); transition: background .22s ease; }
.process-step:last-child { border-bottom: 0; }
.process-step:hover { background: var(--surface-strong); }
.process-step::before { content: counter(step, decimal-leading-zero); color: var(--brand); font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; line-height: 1.1; }
.process-step h3 { margin-bottom: .42rem; font-family: var(--font-display); font-size: 1.08rem; font-weight: 800; letter-spacing: -.025em; }
.process-step p { max-width: 42rem; margin: 0; font-size: .93rem; }

/* Estrutura */
.structure-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); grid-template-rows: auto auto; gap: 1rem; }
.structure-media { position: relative; min-height: 310px; overflow: hidden; background: var(--paper); border-radius: var(--radius-m); }
.structure-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.structure-media:hover img { transform: scale(1.025); }
.structure-media--tall { grid-row: span 2; min-height: 650px; }
.structure-media--caption { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(2rem, 4vw, 3rem); color: var(--white); background: var(--brand); }
.structure-media--caption strong { max-width: 10ch; color: var(--white); font-family: var(--font-display); font-size: clamp(2.2rem, 3.8vw, 3.8rem); font-weight: 700; line-height: 1.02; letter-spacing: -.045em; }
.structure-media--caption p { color: rgba(255,255,255,.76); }

/* Perfis e compromissos — área corrigida */
.audience-grid {
  counter-reset: audience;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.audience-item {
  counter-increment: audience;
  position: relative;
  min-width: 0;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.65rem;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  transition: transform .22s var(--ease), border-color .22s ease, box-shadow .22s ease;
}
.audience-item::before {
  content: counter(audience, decimal-leading-zero);
  position: absolute;
  top: 1.35rem;
  left: 1.65rem;
  color: var(--brand);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.audience-item::after { content: ''; position: absolute; top: 0; right: 0; width: 4rem; height: 4rem; border-top: 1px solid var(--brand-soft); border-right: 1px solid var(--brand-soft); border-radius: 0 var(--radius-m) 0 100%; }
.audience-item:hover { transform: translateY(-4px); border-color: rgba(143,77,18,.36); box-shadow: var(--shadow-soft); }
.audience-item strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.18rem; font-weight: 800; line-height: 1.2; letter-spacing: -.03em; }
.audience-item span { display: block; margin-top: .55rem; color: var(--muted); font-size: .86rem; line-height: 1.55; }

.quote-panel { position: relative; overflow: hidden; padding: clamp(2.7rem, 6vw, 5.5rem); color: var(--white); background: var(--ink); border-radius: var(--radius-l); }
.quote-panel::before { content: ''; position: absolute; top: -12rem; right: -10rem; width: 28rem; height: 28rem; border: 1px solid rgba(199,154,82,.28); border-radius: 50%; box-shadow: 0 0 0 4rem rgba(199,154,82,.035); }
.quote-panel::after { content: 'G'; position: absolute; right: 1rem; bottom: -8rem; color: rgba(255,255,255,.04); font-family: var(--font-display); font-size: 23rem; font-weight: 800; line-height: 1; }
.quote-panel p { position: relative; z-index: 2; max-width: 24ch; margin: 0; color: var(--white); font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 3.4rem); font-weight: 600; line-height: 1.18; letter-spacing: -.045em; }

/* FAQ e CTA */
.faq-layout { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); align-items: start; gap: clamp(3rem, 7vw, 7rem); }
.faq-list { overflow: hidden; background: rgba(255,255,255,.5); border: 1px solid var(--line); border-radius: var(--radius-m); }
details.faq { border-bottom: 1px solid var(--line); }
details.faq:last-child { border-bottom: 0; }
details.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem 1.5rem; list-style: none; font-weight: 700; cursor: pointer; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; flex: 0 0 auto; color: var(--brand); font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; transition: transform .2s ease; }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { padding: 0 3.2rem 1.4rem 1.5rem; margin-bottom: 0; }

.cta-band { position: relative; overflow: hidden; padding-block: var(--section); color: var(--white); background: var(--brand); }
.cta-band::after { content: ''; position: absolute; top: -15rem; right: -10rem; width: 38rem; height: 38rem; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(255,255,255,.025), 0 0 0 10rem rgba(255,255,255,.018); }
.cta-band .container { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); align-items: end; gap: 3rem; }
.cta-band h2 { max-width: 13ch; margin-bottom: 0; color: var(--white); }
.cta-band p { max-width: 35rem; color: rgba(255,255,255,.76); }

/* Empresa */
.timeline { position: relative; margin-left: .5rem; }
.timeline::before { content: ''; position: absolute; top: .4rem; bottom: .4rem; left: .35rem; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 2.8rem 3rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; top: .2rem; left: 0; width: .75rem; height: .75rem; background: var(--surface); border: 2px solid var(--brand); border-radius: 50%; }
.timeline-item span { color: var(--brand); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.timeline-item h3 { margin-top: .42rem; font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; letter-spacing: -.025em; }
.timeline-item p { max-width: 38rem; margin-bottom: 0; }

.values-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-m); gap: 1px; }
.value-item { min-width: 0; min-height: 280px; padding: 2rem; background: var(--surface); }
.value-item .number { color: var(--brand); font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.value-item h3 { margin-top: 3.2rem; font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; letter-spacing: -.025em; }

/* Produtos cosméticos */
.category-index { display: grid; grid-template-columns: 17rem minmax(0, 1fr); align-items: start; gap: clamp(2.5rem, 6vw, 6rem); }
.category-nav { position: sticky; top: 7.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-s); }
.category-nav button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; color: var(--muted); background: var(--surface); border: 0; border-bottom: 1px solid var(--line); text-align: left; font-size: .84rem; font-weight: 700; }
.category-nav button:last-child { border-bottom: 0; }
.category-nav button::after { content: '→'; }
.category-nav button[aria-selected='true'] { color: var(--white); background: var(--brand); }
.category-panels, .category-panel, .category-panel > div { min-width: 0; }
.category-panel { display: none; }
.category-panel.is-active { display: grid; grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(2.5rem, 5vw, 5rem); animation: fadeIn .35s ease both; }
.category-panel h2 { max-width: 13ch; font-size: clamp(2.2rem, 3.7vw, 3.55rem); }
.category-panel-image { position: relative; min-height: 450px; display: grid; place-items: center; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l); }
.category-panel-image::after { content: ''; position: absolute; top: -7rem; right: -7rem; width: 20rem; height: 20rem; border: 1px solid var(--gold-soft); border-radius: 50%; }
.category-panel-image img { position: relative; z-index: 2; width: 82%; max-height: 390px; object-fit: contain; filter: drop-shadow(0 22px 22px rgba(40,29,19,.13)); }
.product-list { margin: 1.35rem 0 0; padding: 0; columns: 2; column-gap: 2rem; list-style: none; }
.product-list li { break-inside: avoid; padding: .65rem 0; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-size: .87rem; }

/* Pet */
.pet-categories { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.pet-category { position: relative; min-width: 0; min-height: 340px; overflow: hidden; padding: 2rem; background: var(--surface); border: 1px solid rgba(83,107,86,.23); border-radius: var(--radius-l); }
.pet-category:nth-child(2) { color: var(--white); background: var(--pet); }
.pet-category:nth-child(2) h3 { color: var(--white); }
.pet-category:nth-child(2) p { color: rgba(255,255,255,.72); }
.pet-category:nth-child(3) { grid-column: 1 / -1; min-height: 290px; background: var(--paper); }
.pet-category-copy { position: relative; z-index: 2; max-width: 58%; }
.pet-category img { position: absolute; right: -1%; bottom: -8%; width: 46%; max-height: 92%; object-fit: contain; filter: drop-shadow(0 20px 20px rgba(35,30,24,.16)); }

/* Terceirização */
.process-roadmap { position: relative; }
.process-roadmap::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--line); }
.roadmap-item { position: relative; width: 50%; min-height: 245px; padding: 0 clamp(2.5rem, 6vw, 6rem) 4rem 0; }
.roadmap-item:nth-child(even) { margin-left: 50%; padding: 0 0 4rem clamp(2.5rem, 6vw, 6rem); }
.roadmap-item::after { content: ''; position: absolute; top: .2rem; right: -.45rem; width: .9rem; height: .9rem; background: var(--surface); border: 2px solid var(--brand); border-radius: 50%; }
.roadmap-item:nth-child(even)::after { right: auto; left: -.45rem; }
.roadmap-number { color: var(--brand); font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; line-height: 1; }
.roadmap-item h3 { margin-top: .8rem; }
.paths-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-m); gap: 1px; }
.path-item { min-width: 0; min-height: 255px; padding: 2rem; background: var(--surface); }
.path-item span { color: var(--brand); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.path-item h3 { margin-top: 2.5rem; font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; letter-spacing: -.025em; }

/* Parceiros */
.partner-hero-art { height: 430px; display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1fr 1fr; gap: .8rem; }
.partner-hero-art .tile { overflow: hidden; background: var(--paper); border-radius: var(--radius-m); }
.partner-hero-art .tile:first-child { grid-row: span 2; }
.partner-hero-art img { width: 100%; height: 100%; object-fit: cover; }
.partner-profile { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.partner-profile article { min-width: 0; min-height: 205px; padding: 1.7rem; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--brand); border-radius: 0 0 var(--radius-m) var(--radius-m); }
.partner-profile h3 { font-family: var(--font-display); font-size: 1.06rem; font-weight: 800; letter-spacing: -.025em; }

/* Contato e formulários */
.contact-layout { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); align-items: start; gap: clamp(2.7rem, 7vw, 7rem); }
.contact-card { padding: 2rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-m); }
.contact-list { margin: 2rem 0 0; padding: 0; list-style: none; }
.contact-list li { padding: 1.05rem 0; border-top: 1px solid var(--line); }
.contact-list span { display: block; color: var(--muted); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a, .contact-list address { font-weight: 700; }
.form-shell { min-width: 0; padding: clamp(1.6rem, 4vw, 3rem); background: var(--surface-strong); border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow-soft); }
.form-shell h2 { font-size: clamp(2.25rem, 3.8vw, 3.6rem); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label:not(.checkbox) { display: block; margin-bottom: .42rem; color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 3.25rem; padding: .82rem .9rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xs); outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--white); border-color: var(--brand); box-shadow: 0 0 0 4px rgba(143,77,18,.1); }
.field [aria-invalid='true'] { border-color: var(--error); box-shadow: 0 0 0 4px rgba(164,60,49,.08); }
.field-error { display: block; min-height: 1.1rem; margin-top: .25rem; color: var(--error); font-size: .7rem; }
.checkbox { display: flex; align-items: flex-start; gap: .75rem; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.checkbox input { width: 1.1rem; min-height: 1.1rem; margin-top: .15rem; padding: 0; flex: 0 0 auto; }
.checkbox a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.form-status { min-height: 1.5rem; margin-top: 1rem; font-size: .84rem; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--error); }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.map-panel { position: relative; min-height: 380px; overflow: hidden; display: grid; place-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l); }
.map-panel::before { content: ''; position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 42px 42px; }
.map-marker { position: relative; z-index: 2; width: 4.3rem; height: 4.3rem; display: grid; place-items: center; color: var(--white); background: var(--brand); border-radius: 50% 50% 50% 12%; box-shadow: var(--shadow-elevated); transform: rotate(-45deg); }
.map-marker svg { width: 1.9rem; transform: rotate(45deg); }

/* Rodapé */
.site-footer { padding: 4.7rem 0 1.5rem; color: var(--white); background: #171512; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr)); gap: 3rem; }
.footer-brand p { max-width: 26rem; color: rgba(255,255,255,.58); }
.site-footer .brand-mark { color: var(--gold); }
.site-footer .brand-name { color: var(--white); }
.footer-title { color: var(--gold-soft); font-size: .67rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { margin: 1rem 0 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .84rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-top: 1.3rem; color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.12); font-size: .7rem; }
.whatsapp-float { position: fixed; right: 1.15rem; bottom: 1.15rem; z-index: 900; width: 3.35rem; height: 3.35rem; display: grid; place-items: center; color: var(--white); background: #226342; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 14px 32px rgba(25,67,48,.28); transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(25,67,48,.34); }
.whatsapp-float svg { width: 1.4rem; }

/* Painel de revisão */
.review-shell { min-height: 100vh; display: grid; grid-template-columns: 270px 1fr; color: var(--white); background: #171512; }
.review-sidebar { padding: 1.4rem; border-right: 1px solid rgba(255,255,255,.12); }
.review-sidebar h1 { color: var(--white); font-family: var(--font-body); font-size: 1.1rem; letter-spacing: 0; line-height: 1.25; }
.review-pages { display: grid; gap: .4rem; margin-top: 1.5rem; }
.review-pages button { padding: .72rem .8rem; color: rgba(255,255,255,.7); background: transparent; border: 0; border-radius: .45rem; text-align: left; }
.review-pages button.is-active { color: var(--white); background: var(--brand); }
.review-main { min-width: 0; display: grid; grid-template-rows: auto 1fr; }
.review-toolbar { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1rem; background: #211e1a; border-bottom: 1px solid rgba(255,255,255,.1); }
.review-device { display: flex; gap: .4rem; }
.review-device button { padding: .43rem .68rem; color: rgba(255,255,255,.72); background: transparent; border: 1px solid rgba(255,255,255,.16); border-radius: .4rem; }
.review-device button.is-active { color: var(--ink); background: var(--white); }
.review-stage { overflow: auto; display: flex; align-items: flex-start; justify-content: center; padding: 1rem; }
.review-frame-wrap { width: 100%; max-width: 100%; height: calc(100vh - 4.7rem); background: var(--white); box-shadow: 0 20px 70px rgba(0,0,0,.3); transition: width .25s ease; }
.review-frame-wrap[data-device='tablet'] { width: 768px; }
.review-frame-wrap[data-device='mobile'] { width: 390px; }
.review-frame { width: 100%; height: 100%; border: 0; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1120px) {
  .header-actions .button { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr); gap: 3rem; }
  .hero-stage { min-height: 560px; }
  .division-card-copy { width: 72%; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .footer-grid > :last-child { grid-column: 2; }
}

@media (max-width: 960px) {
  :root { --section: clamp(4rem, 9vw, 6rem); }
  .menu-toggle { display: grid; }
  .site-nav { position: fixed; top: 5rem; right: 0; left: 0; visibility: hidden; padding: 1.1rem var(--gutter) 1.6rem; opacity: 0; background: var(--surface); border-bottom: 1px solid var(--line); transform: translateY(-115%); transition: transform .25s var(--ease), opacity .25s ease, visibility .25s ease; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
  .nav-link::after { display: none; }

  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 4.5rem; }
  .hero-copy h1 { max-width: 12ch; }
  .hero-stage { min-height: 590px; }
  .page-hero .container { min-height: auto; grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero::before { display: none; }
  .page-hero-art { min-height: 370px; }

  .signature-strip .container { grid-template-columns: repeat(3, 1fr); }
  .signature-intro { grid-column: 1 / -1; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
  .signature-item:first-of-type { border-left: 0; }

  .editorial-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .editorial-head > p { justify-self: start; padding-left: 1.2rem; }
  .divisions-grid { grid-template-columns: 1fr; }
  .division-card--pet { margin-top: 0; }
  .process-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .process-sticky, .category-nav { position: static; }
  .structure-grid { grid-template-columns: 1fr 1fr; }
  .structure-media--tall { grid-column: 1 / -1; min-height: 500px; }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band .container { grid-template-columns: 1fr; align-items: start; }
  .values-list { grid-template-columns: 1fr; }
  .value-item { min-height: auto; }
  .value-item h3 { margin-top: 1.7rem; }
  .category-index { grid-template-columns: 1fr; }
  .category-nav { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .3rem; border: 0; border-radius: 0; }
  .category-nav button { width: auto; min-width: max-content; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 999px; }
  .category-nav button::after { display: none; }
  .category-panel.is-active { grid-template-columns: 1fr; }
  .category-panel-image { min-height: 390px; }
  .partner-profile { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .review-shell { grid-template-columns: 1fr; }
  .review-sidebar { display: none; }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(3rem, 13vw, 4.35rem); }
  h2 { font-size: clamp(2.2rem, 9.5vw, 3.2rem); }
  .header-inner { min-height: 4.55rem; }
  .site-nav { top: 4.55rem; }
  .brand-tag { display: none; }

  .hero-grid { padding-top: 3.4rem; }
  .hero-copy h1 { font-size: clamp(3.1rem, 13.7vw, 4.45rem); }
  .hero-meta { grid-template-columns: 1fr; gap: .7rem; }
  .hero-meta > div { padding-bottom: .7rem; border-bottom: 1px solid var(--line); }
  .hero-stage { min-height: 470px; }
  .hero-panel--main { inset: 1.4rem .8rem 1rem .2rem; }
  .hero-product-cos { left: -2%; width: 76%; }
  .hero-product-pet { right: -5%; width: 51%; }
  .hero-note { width: 9.7rem; padding: .85rem; }
  .hero-note strong { font-size: 1rem; }
  .hero-lab { width: 6.8rem; height: 8.5rem; border-width: .32rem; }

  .page-hero .container { padding-top: 3rem; }
  .page-hero h1 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .page-hero-art { min-height: 300px; }
  .page-hero-art--company img { width: 92%; }

  .signature-strip .container { grid-template-columns: 1fr; }
  .signature-item { padding-inline: 0; border-top: 1px solid var(--line); border-left: 0; }

  .division-card { min-height: 610px; }
  .division-card-copy { width: 100%; padding: 1.6rem; }
  .division-card-visual { right: -7%; width: 75%; }
  .division-card--pet .division-card-visual { width: 79%; }
  .process-step { grid-template-columns: 3.4rem 1fr; padding: 1.5rem 1.35rem; }
  .structure-grid { grid-template-columns: 1fr; }
  .structure-media--tall { grid-column: auto; min-height: 410px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-item { min-height: 165px; }
  .quote-panel { border-radius: var(--radius-m); }

  .category-panel-image { min-height: 330px; }
  .product-list { columns: 1; }
  .pet-categories { grid-template-columns: 1fr; }
  .pet-category:nth-child(3) { grid-column: auto; }
  .pet-category-copy { max-width: 70%; }
  .process-roadmap::before { left: .45rem; }
  .roadmap-item, .roadmap-item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 3rem 3rem; }
  .roadmap-item::after, .roadmap-item:nth-child(even)::after { right: auto; left: 0; }
  .paths-grid { grid-template-columns: 1fr; }
  .partner-hero-art { height: 330px; }
  .partner-profile { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .whatsapp-float { width: 3.05rem; height: 3.05rem; }
}

@media (max-width: 400px) {
  :root { --gutter: 1rem; }
  .page-hero h1 { font-size: clamp(2.62rem, 12vw, 3.8rem); }
  .brand-name { font-size: 1.4rem; }
  .hero-stage { min-height: 430px; }
  .division-card { min-height: 580px; }
  .audience-item { padding: 1.4rem; }
  .audience-item::before { left: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto; transition-duration: .01ms; animation-duration: .01ms; animation-iteration-count: 1; }
  .reveal { opacity: 1; transform: none; }
}

