/*
  Junior Sal - direção editorial-industrial.
  Este arquivo sobrescreve a primeira exploração visual sem alterar a estrutura,
  os IDs de navegação ou o fluxo de cotação já existente.
*/

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("font-archivo-700.woff2") format("woff2");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("font-archivo-800.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("font-plexsans-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("font-plexsans-600.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("font-plexmono-400.woff2") format("woff2");
}

:root {
  --paper: #f2f3ef;
  --card: #e8ebe5;
  --slate: #142722;
  --slate-2: #0e1e1a;
  --oxide: #a93821;
  --amber: #a93821;
  --sage: #7b857d;
  --wa: #142722;
  --wa-dark: #0b1714;
  --ink: #14201d;
  --ink-soft: #52605a;
  --line: #cbd0ca;
  --paper-on-dark: #eef2ed;
  --sh-1: 0 1px 1px rgba(20, 39, 34, .06);
  --sh-2: 0 12px 34px rgba(20, 39, 34, .08);
  --sh-3: 0 24px 64px rgba(20, 39, 34, .14);
  --step-0: 1rem;
  --step-1: clamp(1.05rem, 1.5vw, 1.22rem);
  --step-2: clamp(1.5rem, 2.3vw, 2.15rem);
  --step-3: clamp(2rem, 3.6vw, 3.4rem);
  --step-4: clamp(2.4rem, 5vw, 4.6rem);
  --step-5: clamp(3.25rem, 6.7vw, 6.6rem);
  --pad: clamp(1.25rem, 4.4vw, 4rem);
  --maxw: 1340px;
  --f-display: "Archivo", system-ui, sans-serif;
  --f-body: "IBM Plex Sans", system-ui, sans-serif;
  --f-mono: "IBM Plex Sans", system-ui, sans-serif; /* unificado com o corpo; use IBM Plex Mono se a direção mudar */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  scrollbar-color: var(--oxide) var(--slate);
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--slate);
}

html::-webkit-scrollbar-thumb {
  min-height: 64px;
  background: var(--oxide);
  border: 3px solid var(--slate);
  border-radius: 2px;
}

html::-webkit-scrollbar-thumb:hover {
  background: #b91017;
}

html::-webkit-scrollbar-button {
  display: none;
}

html::-webkit-scrollbar-corner {
  background: var(--slate);
}

@media (hover: hover) and (pointer: fine) {
  html,
  body {
    cursor: url("cursor-default.svg?v=2026072401") 4 3, auto;
  }

  a,
  button,
  summary,
  select,
  video,
  label[for],
  input[type="button"],
  input[type="checkbox"],
  input[type="radio"],
  input[type="submit"] {
    cursor: url("cursor-action.svg") 12 12, pointer;
  }

  input:not([type="button"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
  textarea {
    cursor: text;
  }

  button:disabled,
  input:disabled,
  select:disabled {
    cursor: not-allowed;
  }
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  opacity: 0;
  filter: saturate(.9) contrast(1.06) brightness(.94);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1);
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__bg::after {
  z-index: 2;
}

.hero__bg.has-video img {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--step-0);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 160px 160px;
  mix-blend-mode: soft-light;
  opacity: .025;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.045em;
  text-wrap: balance;
}

h2 {
  max-width: 14ch;
}

p {
  margin: 0;
  text-wrap: pretty;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--oxide);
  outline-offset: 3px;
}

::selection {
  color: #f5f7f3;
  background: var(--oxide);
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.mono {
  font-family: var(--f-mono);
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: currentColor;
  font-family: var(--f-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
}

.ico {
  display: inline-block;
  flex: none;
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  vertical-align: middle;
}

.skip {
  position: absolute;
  top: -100px;
  left: .5rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: #f5f7f3;
  background: var(--slate);
  text-decoration: none;
  font-weight: 600;
}

.skip:focus {
  top: .5rem;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 243, 239, .94);
  border-bottom: 1px solid rgba(20, 39, 34, .14);
  box-shadow: none;
  backdrop-filter: saturate(1.2) blur(12px);
}

.nav__in {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.03rem;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand__mark {
  width: 18px;
  height: 18px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  margin-left: auto;
}

.nav__links a:not(.btn) {
  position: relative;
  padding: .3rem 0;
  color: var(--ink);
  font-weight: 500;
  font-size: .86rem;
  text-decoration: none;
  white-space: nowrap;
}

.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  right: 100%;
  left: 0;
  bottom: -8px;
  height: 1px;
  background: var(--oxide);
  transition: right .2s ease;
}

.nav__links a:not(.btn):hover::after {
  right: 0;
}

.nav__cta {
  margin-left: .2rem;
}

.nav__toggle {
  display: none;
  margin-left: auto;
  padding: .5rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  line-height: 0;
}

.nav__toggle .ico {
  width: 1.5rem;
  height: 1.5rem;
}

.nav__toggle .ico-x {
  display: none;
}

.nav[data-open="true"] .nav__toggle .ico-list {
  display: none;
}

.nav[data-open="true"] .nav__toggle .ico-x {
  display: inline-block;
}

/* Shared controls */
.btn {
  --bg: var(--oxide);
  --fg: #f5f7f3;
  --bg-h: var(--oxide);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 48px;
  padding: .86rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--fg);
  background: var(--bg);
  box-shadow: none;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .94rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s cubic-bezier(.16, 1, .3, 1);
  white-space: nowrap;
}

.btn:hover {
  background: var(--bg-h);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(.98);
}

.btn--wa {
  --bg: var(--slate);
  --bg-h: var(--oxide);
}

.btn--ghost {
  --bg: transparent;
  --fg: currentColor;
  --bg-h: rgba(255, 255, 255, .1);
  border-color: currentColor;
  box-shadow: none !important;
}

.btn--ghost:hover {
  border-color: currentColor;
  box-shadow: none;
}

.btn--lg {
  padding: 1rem 1.45rem;
  font-size: .98rem;
}

/* Section rhythm */
section {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.sec-head {
  max-width: 720px;
}

.sec-head .eyebrow {
  display: none;
}

.sec-head h2 {
  margin-top: 0;
  color: var(--ink);
  font-size: var(--step-4);
  line-height: .98;
}

.sec-head p {
  margin-top: 1.35rem;
  color: var(--ink-soft);
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: 52ch;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100dvh - 68px);
  max-height: 850px;
  padding-block: 0;
  display: flex;
  align-items: center;
  color: var(--paper-on-dark);
  background: var(--slate);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  transform: none !important;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.75) contrast(1.03);
}

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 22, 18, .92) 0%, rgba(8, 22, 18, .78) 34%, rgba(8, 22, 18, .32) 62%, rgba(8, 22, 18, .08) 100%),
    linear-gradient(0deg, rgba(8, 22, 18, .34), transparent 45%);
}

.hero__grid {
  display: block;
  width: 100%;
}

.hero__col {
  max-width: 890px;
  padding-block: clamp(4rem, 9vh, 7rem);
}

.hero .eyebrow {
  color: #d9dfd9;
}

.hero h1 {
  max-width: 17ch;
  margin-top: 1.15rem;
  color: #f5f7f3;
  font-size: clamp(3.25rem, 6.1vw, 6.1rem);
  line-height: .91;
  letter-spacing: -.06em;
}

.hero__sub {
  max-width: 42ch;
  margin-top: 1.5rem;
  color: #dfe5df;
  font-size: clamp(1.06rem, 1.55vw, 1.26rem);
  line-height: 1.45;
  text-shadow: none;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: .75rem;
}

.hero .btn--wa {
  --bg: #f0f3ee;
  --fg: var(--slate);
  --bg-h: #ffffff;
}

/* Facts as a specification rail, not a card strip */
.proof {
  padding-block: 0 !important;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.proof__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto;
  list-style: none;
}

.proof__list li {
  min-height: 102px;
  padding: 1.4rem clamp(.8rem, 2.4vw, 2rem);
  border-right: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.proof__list li:first-child {
  padding-left: 0;
}

.proof__list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof__list .ico {
  display: none;
}

.proof__list strong {
  color: var(--ink);
  font-weight: 500;
}

/* Product catalogue */
.insumos {
  background: var(--paper);
}

.trip {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: none;
  gap: 0;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid var(--ink);
}

.icard,
.icard--sal,
.icard--ureia,
.icard--fosfato {
  grid-area: auto;
  display: grid;
  grid-template-columns: minmax(220px, .82fr) minmax(0, 1.4fr);
  min-height: 300px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transition: background-color .25s ease;
}

.icard:hover {
  transform: none;
  background: var(--card);
  box-shadow: none;
}

.icard__media,
.icard--sal .icard__media,
.icard--ureia .icard__media,
.icard--fosfato .icard__media {
  aspect-ratio: auto;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background: #d9ddd7;
}

.icard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.03);
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .25s ease;
}

.icard:hover .icard__media img {
  transform: scale(1.025);
  filter: saturate(.85) contrast(1.05);
}

.icard__media::after,
.icard__badge {
  display: none;
}

.icard__body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, .65fr) 1fr;
  grid-template-rows: auto 1fr;
  align-content: center;
  gap: .75rem clamp(1.5rem, 5vw, 5rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 0 !important;
}

.icard__role {
  grid-column: 1;
  grid-row: 1;
  margin: .25rem 0 0;
  color: var(--oxide);
  font-size: .7rem;
  letter-spacing: .1em;
}

.icard__body h3,
.icard--sal .icard__body h3 {
  grid-column: 1;
  grid-row: 2;
  color: var(--ink);
  font-size: var(--step-3);
  line-height: .96;
}

.icard__body p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 30ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

/* Trust */
.why {
  background: var(--card);
}

.why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .78fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.ledger {
  margin-top: 3rem;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.ledger li {
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.ledger li:last-child {
  border-bottom: 0;
}

.ledger__mark {
  display: none;
}

.ledger h3 {
  font-size: 1.08rem;
  letter-spacing: -.025em;
}

.ledger p {
  margin-top: 0;
  font-size: .98rem;
}

.why__card {
  position: sticky;
  top: 100px;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-radius: 0;
  box-shadow: none;
}

.why__face {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.5;
  margin: 0;
  object-fit: cover;
  object-position: 50% 7%;
  background: #d5dad4;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.why__card > .eyebrow,
.why__card > p,
.why__card > .btn {
  margin-inline: 1.5rem;
}

.why__card > .eyebrow {
  margin-top: 1.6rem;
  margin-bottom: .8rem;
  color: var(--oxide);
}

.why__card > p {
  color: var(--ink);
  font-size: 1rem;
}

.why__card > .btn {
  width: calc(100% - 3rem);
  margin-top: 1.4rem;
  margin-bottom: 1.5rem;
}

/* Audience as a type-led index */
.icp {
  background: var(--paper);
}

.icp__grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-areas: "feat sec1" "feat sec2" "feat sec3";
  gap: 0 clamp(2rem, 7vw, 7rem);
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--ink);
  padding: 0;
  list-style: none;
}

.icp__card,
.icp__card--feat {
  display: block;
  min-height: auto;
  padding: 1.5rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transition: color .2s ease, transform .2s ease;
}

.icp__card:hover {
  color: var(--oxide);
  transform: translateX(4px);
  box-shadow: none;
}

.icp__card--feat {
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-bottom-color: var(--ink);
}

.icp__k {
  margin: 0 0 .75rem;
  color: var(--ink-soft) !important;
  font-size: .67rem;
}

.icp__k::before {
  display: none;
}

.icp__card h3,
.icp__card--feat h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.02;
}

.icp__card--feat h3 {
  max-width: 12ch;
  font-size: var(--step-4);
}

.icp__card p,
.icp__card--feat p {
  max-width: 38ch;
  margin-top: 1rem;
  color: var(--ink-soft);
}

.icp__tag {
  display: block;
  max-width: 42ch;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

/* Source argument */
.risk {
  color: var(--ink);
  background: #e4e8e3;
}

.risk .sec-head h2 {
  color: var(--ink);
}

.risk .sec-head p {
  color: var(--ink-soft);
}

.risk__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(3rem, 6vw, 5rem);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.risk__col,
.risk__col--bad,
.risk__col--good {
  min-height: 270px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  background: var(--paper);
  color: var(--ink);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.risk__col--good {
  background: var(--slate);
  color: var(--paper-on-dark);
}

.risk__tag,
.risk__col--bad .risk__tag,
.risk__col--good .risk__tag {
  color: var(--oxide);
  font-size: .69rem;
}

.risk__tag .ico {
  display: none;
}

.risk__col p,
.risk__col--bad p {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.45;
}

.risk__col--good p {
  color: var(--paper-on-dark);
}

.risk__col--good .risk__tag {
  color: #f2b5a5;
}

/* FAQ */
.faq {
  background: var(--paper);
}

.faq__list {
  max-width: 920px;
  margin-top: 3rem;
  border-top: 1px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary .caret {
  flex: none;
  margin-left: auto;
  color: var(--ink-soft);
  transition: transform .22s ease;
}

.faq details[open] summary .caret {
  transform: rotate(180deg);
}

.faq summary .q-mark {
  display: none;
}

.faq__a {
  padding: 0 3rem 1.5rem 0;
}

.faq details[open] summary {
  color: var(--ink);
}

/* Contact */
.contact {
  background: var(--card);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(400px, 1.12fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact__pitch > p {
  max-width: 34ch;
  font-size: var(--step-1);
}

.contact__direct {
  margin-top: 3rem;
  padding: 1.5rem 0 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact__direct .eyebrow {
  color: var(--oxide);
}

.form {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.form__row + .form__row {
  margin-top: 1.1rem;
}

.form__row {
  display: grid;
  gap: 1.1rem;
}

.form__2 {
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.field label {
  color: var(--ink);
  font-size: .7rem;
  font-family: var(--f-mono);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.field .opt {
  color: var(--ink-soft);
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  min-height: 48px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9fa8a1;
  border-radius: 0;
  padding: .72rem 0;
  width: 100%;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field textarea {
  min-height: 88px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #68736d;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--oxide);
  box-shadow: 0 2px 0 var(--oxide);
}

.field [aria-invalid="true"] {
  border-color: var(--oxide);
}

.field__error {
  display: none;
  color: #9e2f1c;
  font-size: .8rem;
  line-height: 1.35;
}

.field__error[data-visible="true"] {
  display: block;
}

.form__note {
  color: var(--ink-soft);
  margin-top: 1rem;
  font-family: var(--f-mono);
  font-size: .75rem;
}

.form__note .ico {
  display: none;
}

.form .btn {
  width: 100%;
  margin-top: 1.3rem;
}

/* Footer keeps the light theme */
.foot {
  padding-block: 4rem 2rem;
  color: var(--ink);
  background: #dce1db;
  border-top: 1px solid var(--line);
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.foot .brand {
  color: var(--ink);
}

.foot__grid p,
.foot ul a {
  color: var(--ink-soft);
}

.foot__grid p {
  max-width: 34ch;
  margin-top: 1rem;
  font-size: .94rem;
}

.foot h3 {
  margin: 0 0 .9rem;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.foot ul {
  display: grid;
  gap: .6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot ul a {
  font-size: .95rem;
  text-decoration: none;
}

.foot ul a:hover {
  color: var(--oxide);
}

.foot__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-color: var(--line);
  border-top: 1px solid var(--line);
  opacity: 1;
  color: var(--ink-soft);
  font-size: .85rem;
}

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 3px;
  color: #f5f7f3;
  background: var(--slate);
  box-shadow: var(--sh-2);
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.wa-float:hover {
  background: var(--oxide);
}

/* Content is never hidden. Motion is reserved for the first reading moment. */
.js .reveal,
.js .reveal.in {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__col > * {
    animation: hero-enter .72s cubic-bezier(.16, 1, .3, 1) both;
  }

  .hero__col > :nth-child(2) {
    animation-delay: .06s;
  }

  .hero__col > :nth-child(3) {
    animation-delay: .12s;
  }

  .hero__col > :nth-child(4) {
    animation-delay: .18s;
  }

  @keyframes hero-enter {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}

/* Dark mode keeps the same mineral palette and hierarchy. */
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #111a17;
    --card: #18231f;
    --slate: #edf1ec;
    --slate-2: #f4f6f2;
    --ink: #edf1ec;
    --ink-soft: #aeb9b2;
    --line: #34413b;
    --paper-on-dark: #eff3ee;
    --wa: #edf1ec;
    --wa-dark: #ffffff;
    --oxide: #f08d73;
    --amber: #f08d73;
  }

  body::before {
    opacity: .018;
  }

  .nav {
    background: rgba(17, 26, 23, .94);
  }

  .brand__mark path:first-child {
    fill: #edf1ec;
  }

  .btn--wa {
    --fg: #111a17;
  }

  .hero .btn--wa {
    --fg: #142722;
  }

  .icard__media {
    background: #26332d;
  }

  .why__face {
    background: #26332d;
  }

  .risk {
    background: #1c2823;
  }

  .risk__col--bad {
    background: var(--paper);
  }

  .risk__col--good {
    background: #0a1511;
  }

  .field__error {
    color: #ff9a83;
  }

  .foot {
    background: #18231f;
  }

  .wa-float {
    color: #111a17;
  }
}

@media (max-width: 960px) {
  .nav__links {
    gap: .9rem;
  }

  .nav__links a:not(.btn) {
    font-size: .8rem;
  }

  .why__grid,
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .icard__body {
    grid-template-columns: 1fr;
  }

  .icard__body p {
    grid-column: 1;
    grid-row: 3;
    margin-top: .6rem;
  }
}

@media (max-width: 860px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    margin-left: 0;
    padding: 0 var(--pad);
    overflow: hidden;
    visibility: hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-2);
    transition: max-height .28s ease, visibility 0s .28s, padding .28s ease;
  }

  .nav[data-open="true"] .nav__links {
    max-height: 70vh;
    padding-block: .5rem 1rem;
    visibility: visible;
    transition: max-height .28s ease, padding .28s ease;
  }

  .nav__links a {
    padding: .85rem .2rem;
    border-color: var(--line);
    border-bottom: 1px solid var(--line);
  }

  .nav__links a:not(.btn) {
    padding: .85rem .2rem;
  }

  .nav__links a:not(.btn)::after {
    display: none;
  }

  .nav__cta {
    margin: .8rem 0 .2rem;
  }

  .hero {
    min-height: min(760px, calc(100dvh - 68px));
    display: flex;
    padding: 0;
  }

  .hero__col {
    padding-block: 5rem;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero__bg::after {
    background: linear-gradient(90deg, rgba(8, 22, 18, .88), rgba(8, 22, 18, .44));
  }

  .why__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .why__card {
    position: static;
    display: grid;
    grid-template-columns: minmax(190px, .8fr) 1fr;
    align-items: center;
  }

  .why__face {
    grid-row: 1 / span 3;
    height: 100%;
  }

  .why__card > .eyebrow,
  .why__card > p,
  .why__card > .btn {
    margin-inline: 1.5rem;
  }
}

@media (max-width: 720px) {
  section {
    padding-block: 5rem;
  }

  .proof__list {
    grid-template-columns: 1fr 1fr;
  }

  .proof__list li,
  .proof__list li:first-child,
  .proof__list li:last-child {
    min-height: 80px;
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof__list li:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--line);
  }

  .icard,
  .icard--sal,
  .icard--ureia,
  .icard--fosfato {
    grid-template-columns: 1fr;
  }

  .icard__media,
  .icard--sal .icard__media,
  .icard--ureia .icard__media,
  .icard--fosfato .icard__media {
    min-height: 230px;
    aspect-ratio: 16 / 10;
  }

  .icard__body {
    padding: 1.5rem 0 2.2rem;
  }

  .icp__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "feat" "sec1" "sec2" "sec3";
  }

  .risk__split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: calc(100dvh - 68px);
    max-height: none;
  }

  .hero__bg img {
    object-position: 67% center;
  }

  .hero__bg::after {
    background: linear-gradient(180deg, rgba(8, 22, 18, .72), rgba(8, 22, 18, .9));
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .hero__sub {
    max-width: 31ch;
    font-size: 1rem;
  }

  .hero__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .why__card {
    display: block;
  }

  .why__face {
    aspect-ratio: 16 / 12;
    height: auto;
    object-position: 50% 12%;
  }

  .ledger li {
    grid-template-columns: 1fr;
    gap: .55rem;
  }

  .form__2 {
    grid-template-columns: 1fr;
  }

  .foot__grid {
    grid-template-columns: 1fr;
  }

  .wa-float {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .icard__media img,
  .icp__card {
    transition: none !important;
  }
}

/* ================================================================
   SAL POTIGUAR × JUNIOR GONZAGA
   A marca entra como recomendação; o Junior permanece como a pessoa
   que dá contexto, atende e conduz o lead até o WhatsApp.
   ================================================================ */
:root {
  --paper: #f5f4f0;
  --card: #e9edf3;
  --slate: #0d1b4c;
  --slate-2: #07112f;
  --oxide: #e31c23;
  --red-ink: #c9141b;
  --amber: #e31c23;
  --wa: #e31c23;
  --wa-dark: #b91017;
  --ink: #111b38;
  --ink-soft: #596177;
  --line: #cbd0dc;
  --paper-on-dark: #ffffff;
  --sh-1: 0 1px 1px rgba(13, 27, 76, .06);
  --sh-2: 0 14px 36px rgba(13, 27, 76, .13);
  --sh-3: 0 28px 68px rgba(13, 27, 76, .2);
}

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

.nav {
  background: rgba(245, 244, 240, .96);
  border-color: rgba(13, 27, 76, .14);
}

.brand {
  gap: .65rem;
  color: var(--slate);
  letter-spacing: -.025em;
}

.brand strong {
  color: var(--red-ink);
  font-weight: 800;
}

.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  color: #fff;
  background: var(--slate);
  border-radius: 2px;
  font-family: var(--f-mono);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: -.06em;
}

.brand__mark::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 18px;
  height: 18px;
  background: var(--oxide);
  transform: rotate(45deg);
}

.btn--wa {
  --bg: var(--oxide);
  --fg: #fff;
  --bg-h: var(--wa-dark);
}

.nav__cta {
  min-height: 44px;
}

.sec-head h2 {
  color: var(--slate);
}

/* Hero: personal endorsement on the left, human proof on the right. */
.hero {
  min-height: calc(100svh - 68px);
  max-height: 820px;
  align-items: stretch;
  color: #fff;
  background: var(--slate);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, .86fr);
  width: 100%;
  min-height: calc(100svh - 68px);
  max-height: 820px;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.hero__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  padding-block: clamp(3.5rem, 7vh, 6rem);
}

.hero__endorsement {
  order: -1;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  width: fit-content;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.btn__label--mobile {
  display: none;
}

.hero__endorsement .eyebrow {
  max-width: 15ch;
  color: #fff;
  line-height: 1.45;
}

.hero__endorsement img {
  width: 124px;
  height: 66px;
  object-fit: contain;
}

.hero h1 {
  max-width: 12ch;
  margin-top: clamp(1.7rem, 3.5vh, 2.7rem);
  color: #fff;
  font-size: clamp(3.1rem, 5.35vw, 5.55rem);
  line-height: .92;
  letter-spacing: -.058em;
}

.hero__sub {
  max-width: 52ch;
  margin-top: 1.45rem;
  color: #dfe4f0;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.52;
}

.hero__cta {
  margin-top: 1.8rem;
}

.hero .btn--wa {
  --bg: var(--oxide);
  --fg: #fff;
  --bg-h: #b91017;
}

.hero .btn--ghost {
  color: #fff;
}

.hero__note {
  margin-top: 1rem;
  color: #aeb8d2;
  font-family: var(--f-mono);
  font-size: .85rem;
  letter-spacing: .035em;
}

.hero__portrait {
  position: relative;
  align-self: stretch;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #737780;
  border-left: 6px solid var(--oxide);
}

.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 20px 0 55px rgba(7, 17, 47, .14);
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  filter: saturate(.9) contrast(1.02);
}

.hero__portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: .2rem;
  padding: 1.15rem 1.4rem 1.25rem;
  color: #fff;
  background: rgba(7, 17, 47, .94);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero__portrait figcaption strong {
  font-family: var(--f-display);
  font-size: 1.06rem;
  letter-spacing: -.02em;
}

.hero__portrait figcaption span {
  color: #c5cde0;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.proof {
  border-top: 5px solid var(--oxide);
}

.proof__list li:first-child strong {
  color: var(--red-ink);
}

/* Every product becomes a contextual conversion point. */
.icard__body {
  grid-template-rows: auto 1fr auto;
}

.icard__role {
  color: var(--red-ink);
}

.risk__col--bad .risk__tag {
  color: var(--red-ink);
}

.icard__cta {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  width: fit-content;
  margin-top: 1.4rem;
  color: var(--slate);
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .025em;
  text-decoration-color: rgba(227, 28, 35, .4);
  text-underline-offset: .35rem;
}

.icard__cta span {
  display: inline-block;
  color: var(--oxide);
  transition: transform .2s ease;
}

.icard__cta:hover span {
  transform: translateX(4px);
}

/* Recommendation lockup: deliberately separate brand from spokesperson. */
.why {
  background: var(--card);
}

.why__card {
  overflow: hidden;
  color: #fff;
  background: var(--slate);
  border-top: 7px solid var(--oxide);
}

.why__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.6rem;
  color: var(--slate);
  background: #fff;
  border-bottom: 1px solid #d8dce5;
}

.why__brand .eyebrow {
  max-width: 12ch;
  color: var(--slate);
  line-height: 1.45;
}

.why__brand img {
  width: 118px;
  height: 68px;
  object-fit: contain;
}

.why__card > .why__statement {
  margin: 0;
  padding: 2rem 1.6rem 0;
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.why__card > .why__clarifier {
  margin: 0;
  padding: 1.2rem 1.6rem 0;
  color: #c5cde0;
  font-size: .92rem;
  line-height: 1.5;
}

.why__clarifier strong {
  color: #fff;
}

.why__card > .btn {
  width: calc(100% - 3.2rem);
  margin: 1.7rem 1.6rem 1.6rem;
}

.risk__col--good {
  background: var(--slate-2);
}

/* Close on WhatsApp with the strongest brand contrast on the page. */
.contact {
  color: #fff;
  background: var(--slate);
  border-top: 7px solid var(--oxide);
}

.contact .sec-head h2 {
  color: #fff;
}

.contact__pitch > p,
.contact__direct > p {
  color: #c5cde0;
}

.contact__direct {
  border-color: rgba(255, 255, 255, .2);
}

.contact__direct .eyebrow {
  color: #ff5b61;
}

.form {
  background: #fff;
}

.foot {
  background: #e6e9ef;
}

.foot__recommended {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.foot__recommended .eyebrow {
  max-width: 12ch;
  color: var(--slate);
  line-height: 1.4;
}

.foot__recommended img {
  width: 92px;
  height: 54px;
  object-fit: contain;
}

.wa-float {
  display: inline-flex;
  gap: .6rem;
  width: auto;
  height: 54px;
  padding-inline: 1rem;
  color: #fff;
  background: var(--oxide);
  border-radius: 2px;
  font-weight: 600;
  font-size: .86rem;
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.wa-float:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
}

.js .wa-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.js .wa-float[data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__portrait {
    animation: portrait-enter .85s .12s cubic-bezier(.16, 1, .3, 1) both;
  }

  @keyframes portrait-enter {
    from { opacity: 0; transform: translateX(18px); }
    to { opacity: 1; transform: none; }
  }
}

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.4vw, 4.55rem);
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    max-height: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
    gap: 0;
  }

  .hero__col {
    max-width: 680px;
    padding-block: 4rem 3.5rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.25rem, 9.5vw, 5rem);
  }

  .hero__portrait {
    min-height: 500px;
    border-top: 6px solid var(--oxide);
    border-left: 0;
  }

  .why__card {
    display: block;
  }
}

@media (max-width: 720px) {
  .icard__body {
    grid-template-rows: auto;
  }

  .icard__cta {
    grid-column: 1;
    grid-row: 4;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: .92rem;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
  }

  .hero__endorsement {
    width: 100%;
    justify-content: space-between;
  }

  .hero__endorsement img {
    width: 110px;
    height: 62px;
  }

  .hero__col {
    padding-block: 3.2rem 2rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.85rem, 13.4vw, 4rem);
  }

  .hero__portrait {
    min-height: 355px;
  }

  .hero__portrait img {
    object-position: 50% 4%;
  }

  .hero__portrait figcaption {
    padding: .9rem 1rem 1rem;
  }

  .why__brand {
    padding: 1.2rem;
  }

  .why__card > .why__statement {
    padding: 1.6rem 1.2rem 0;
  }

  .why__card > .why__clarifier {
    padding: 1rem 1.2rem 0;
  }

  .why__card > .btn {
    width: calc(100% - 2.4rem);
    margin: 1.5rem 1.2rem 1.2rem;
  }

  .wa-float {
    display: grid;
    width: 54px;
    padding: 0;
  }

  .wa-float span {
    display: none;
  }
}

/* ================================================================
   B2B DENSITY PASS
   Reintroduces the salina as operational context and tightens the
   reading rhythm for buyers, formulators and production teams.
   ================================================================ */
section:not(.hero):not(.proof) {
  padding-block: clamp(3.8rem, 6.2vw, 6.25rem);
}

.sec-head p {
  margin-top: 1rem;
}

.hero {
  min-height: min(760px, calc(100svh - 68px));
  max-height: 760px;
  background: var(--slate-2);
}

.hero__bg {
  display: block;
  z-index: -2;
}

.hero__bg img {
  filter: saturate(.86) contrast(1.07) brightness(.94);
  object-position: center center;
  transform-origin: 62% 48%;
}

.hero__bg::after {
  background:
    linear-gradient(90deg, rgba(7, 17, 47, .92) 0%, rgba(7, 17, 47, .86) 40%, rgba(7, 17, 47, .56) 68%, rgba(7, 17, 47, .24) 100%),
    linear-gradient(0deg, rgba(7, 17, 47, .42), rgba(7, 17, 47, .04) 64%);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__bg img {
    will-change: transform;
    animation: hero-salina-drift 18s cubic-bezier(.45, 0, .55, 1) infinite alternate;
  }

  @keyframes hero-salina-drift {
    from {
      transform: scale(1.025) translate3d(0, 0, 0);
    }
    to {
      transform: scale(1.075) translate3d(-.7%, -.35%, 0);
    }
  }
}

.hero::before {
  background: rgba(255, 255, 255, .16);
}

.hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 370px);
  min-height: min(760px, calc(100svh - 68px));
  max-height: none;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.hero__col {
  max-width: 760px;
  padding-block: clamp(2.75rem, 5.5vh, 4.5rem);
}

.hero__endorsement {
  padding-bottom: .8rem;
  border-color: rgba(255, 255, 255, .32);
}

.hero__endorsement img {
  width: 116px;
  height: 62px;
}

.hero h1 {
  max-width: 17ch;
  margin-top: clamp(1.35rem, 2.7vh, 2rem);
  font-size: clamp(2.6rem, 3.9vw, 4.1rem);
}

.hero__sub {
  max-width: 61ch;
  margin-top: 1.15rem;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
}

.hero__cta {
  margin-top: 1.45rem;
}

.hero__note {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .65rem;
  margin-top: .8rem;
  color: #c7cede;
  font-size: .85rem;
}

.hero__note strong {
  color: #fff;
  font-weight: 500;
}

.hero__note i {
  color: #ff5b61;
  font-style: normal;
}

.hero__portrait {
  align-self: center;
  justify-self: end;
  width: min(100%, 350px);
  height: min(67vh, 545px);
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-bottom: 6px solid var(--oxide);
  box-shadow: 0 28px 70px rgba(7, 17, 47, .42);
}

.hero__portrait::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.hero__portrait img {
  object-position: 50% 8%;
}

.hero__portrait figcaption {
  padding: .9rem 1.05rem 1rem;
}

.proof__list li {
  min-height: 86px;
  padding-block: 1.1rem;
}

.trip {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.icard,
.icard--sal,
.icard--ureia,
.icard--fosfato {
  min-height: 248px;
}

.icard__media,
.icard--sal .icard__media,
.icard--ureia .icard__media,
.icard--fosfato .icard__media {
  min-height: 248px;
}

.icard__body {
  padding: clamp(1.7rem, 3.6vw, 3.25rem);
}

.why__grid {
  gap: clamp(2.5rem, 6vw, 6rem);
}

.ledger {
  margin-top: 2rem;
}

.ledger li {
  padding-block: 1.15rem;
}

.why__card {
  top: 88px;
}

.icp__grid {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  gap: 0 clamp(2rem, 5vw, 5rem);
}

.icp__card--feat {
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
}

.risk__split {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.risk__col,
.risk__col--bad,
.risk__col--good {
  min-height: 220px;
  padding: clamp(1.6rem, 3vw, 2.5rem);
}

.faq .wrap {
  display: grid;
  grid-template-columns: minmax(250px, .42fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.faq__list {
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.faq summary {
  padding-block: 1.15rem;
}

.faq__a {
  padding-bottom: 1.15rem;
}

.contact__grid {
  gap: clamp(2.5rem, 6vw, 6rem);
}

.contact__direct {
  margin-top: 2rem;
}

.form {
  padding: clamp(1.35rem, 2.5vw, 2rem);
}

.foot {
  padding-block: 3rem 1.5rem;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    max-height: none;
  }

  .hero__bg img {
    object-position: center center;
  }

  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(7, 17, 47, .92) 0%, rgba(7, 17, 47, .87) 58%, rgba(7, 17, 47, .72) 100%),
      linear-gradient(90deg, rgba(7, 17, 47, .76), rgba(7, 17, 47, .34));
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
  }

  .hero__col {
    max-width: 680px;
    padding-block: 3.25rem 2.5rem;
  }

  .hero__portrait {
    justify-self: stretch;
    width: 100%;
    height: 360px;
    min-height: 0;
    border-top: 1px solid rgba(255, 255, 255, .34);
    border-left: 1px solid rgba(255, 255, 255, .34);
  }

  .hero__portrait img {
    object-position: 50% 16%;
  }

  .faq .wrap {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

@media (max-width: 720px) {
  section:not(.hero):not(.proof) {
    padding-block: 3.6rem;
  }

  .icard__media,
  .icard--sal .icard__media,
  .icard--ureia .icard__media,
  .icard--fosfato .icard__media {
    min-height: 205px;
  }

  .icard__body {
    padding-block: 1.35rem 1.8rem;
  }
}

@media (max-width: 560px) {
  .hero__col {
    padding-block: 2.75rem 2rem;
  }

  .hero__endorsement img {
    width: 102px;
    height: 56px;
  }

  .hero h1 {
    max-width: 10ch;
    margin-top: 1.25rem;
    font-size: clamp(2.8rem, 12.6vw, 3.7rem);
  }

  .hero__sub {
    font-size: .96rem;
    line-height: 1.48;
  }

  .hero__note {
    display: block;
    line-height: 1.55;
  }

  .hero__note i {
    display: none;
  }

  .hero__note strong:nth-of-type(2)::before {
    content: " / ";
    color: #ff5b61;
  }

  .hero__portrait {
    height: 400px;
  }

  .hero__portrait img {
    object-position: 50% 8%;
  }
}

/* Official Sal Potiguar material, presented as brand evidence. */
.brand-evidence {
  color: #fff;
  background: var(--slate);
  border-top: 6px solid var(--oxide);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.brand-evidence__head {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
}

.brand-evidence .eyebrow {
  gap: .7rem;
  color: #ff7c80;
  font-family: var(--f-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.3;
  text-transform: none;
}

.brand-evidence .eyebrow::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: currentColor;
}

.brand-evidence h2 {
  max-width: 14ch;
  margin-top: .8rem;
  color: #fff;
  font-size: var(--step-4);
}

.brand-evidence__intro {
  display: grid;
  gap: 1.2rem;
  padding-bottom: .35rem;
}

.brand-evidence__intro p {
  max-width: 58ch;
  color: #c5cde0;
  font-size: 1.03rem;
}

.brand-evidence__intro a {
  width: fit-content;
  color: #fff;
  font-family: var(--f-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.35;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 91, 97, .65);
  text-underline-offset: .38rem;
}

.brand-evidence__intro a span {
  display: inline-block;
  color: #ff5b61;
  transition: transform .2s ease;
}

.brand-evidence__intro a:hover span {
  transform: translateX(4px);
}

.brand-evidence__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  height: 640px;
  gap: 1px;
  margin-top: clamp(2.4rem, 4.5vw, 4rem);
  overflow: hidden;
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .22);
}

.evidence-media {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--slate-2);
}

.evidence-media > img,
.evidence-media > video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: #07112f;
}

.evidence-media--field > img {
  object-position: 50% 38%;
}

.evidence-media--video > video {
  object-position: center center;
}

.evidence-media--catalog > img {
  object-fit: cover;
  object-position: 50% 42%;
}

.evidence-media figcaption {
  display: grid;
  gap: .42rem;
  padding: 1.05rem 1.15rem 1.15rem;
  color: #fff;
  background: rgba(7, 17, 47, .97);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.evidence-media figcaption span,
.campaign-strip figcaption span {
  color: #ff8d91;
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.evidence-media figcaption strong {
  font-family: var(--f-display);
  font-size: 1.12rem;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.evidence-media figcaption p {
  margin-top: .25rem;
  color: #b9c2d8;
  font-size: .82rem;
  line-height: 1.45;
}

.campaign-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.campaign-head p {
  max-width: 54ch;
  color: #b9c2d8;
  font-size: .96rem;
  text-align: right;
}

.brand-evidence .campaign-head .eyebrow {
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.025em;
}

.brand-evidence .campaign-head .eyebrow::before {
  color: #ff7c80;
}

.campaign-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.15rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .2);
}

.campaign-strip figure {
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--slate-2);
}

.campaign-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .25s ease;
}

.campaign-strip figure:hover img {
  transform: scale(1.02);
  filter: saturate(1.04);
}

.campaign-strip figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  color: #fff;
}

.campaign-strip figcaption strong {
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: -.02em;
}

.brand-evidence__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.brand-evidence__note p {
  max-width: 67ch;
  color: #c5cde0;
  font-family: var(--f-body);
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .brand-evidence__head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Sem carrossel lateral: vira grade (mesma lógica do ≤560px) já a partir de 960px */
  .brand-evidence__stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "field field"
      "video video";
    height: auto;
    gap: 1px;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .evidence-media--field { grid-area: field; }
  .evidence-media--video { grid-area: video; }
  .evidence-media--catalog { grid-area: catalog; }

  .evidence-media {
    grid-template-rows: auto auto;
    width: 100%;
    height: auto;
    border: 0;
  }

  .evidence-media > img,
  .evidence-media > video {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .evidence-media--field > img {
    aspect-ratio: 4 / 5;
    object-position: 50% 50%;
  }

  .campaign-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .campaign-strip figure {
    border: 0;
  }

  .campaign-head {
    align-items: start;
    flex-direction: column;
    gap: .7rem;
  }

  .campaign-head p {
    max-width: 60ch;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand-evidence h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .brand-evidence__stage {
    margin-top: 2rem;
  }

  .evidence-media {
    flex-basis: 82vw;
    height: auto;
  }

  .campaign-strip figure {
    flex-basis: 79vw;
  }

  .brand-evidence__note {
    align-items: stretch;
    flex-direction: column;
    gap: 1.2rem;
  }

  .brand-evidence__note .btn {
    width: 100%;
  }
}

/* ================================================================
   CONTACT FINISH PASS
   A conversa imediata e a cotação guiada recebem hierarquia própria.
   ================================================================ */
.contact__kicker,
.contact__route,
.form__route,
.form__time {
  font-family: var(--f-mono);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.contact__kicker {
  display: block;
  margin-bottom: .9rem;
  color: #ff7479;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact__pitch > p {
  max-width: 39ch;
  margin-top: 1.25rem;
  color: #d8deeb;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.contact__direct {
  margin-top: 2.25rem;
  padding: 1.5rem 1.6rem 1.6rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .18);
  border-left: 4px solid var(--oxide);
}

.contact__route,
.form__route {
  display: block;
  color: #ff8589;
  font-size: .72rem;
  letter-spacing: .075em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact__direct h3 {
  margin-top: .6rem;
  color: #fff;
  font-size: clamp(1.55rem, 2.35vw, 2rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.contact__direct > p {
  max-width: 38ch;
  margin-top: .75rem;
  color: #d8deeb;
  font-size: .98rem;
  line-height: 1.5;
}

.contact__direct .btn {
  min-height: 52px;
  margin-top: 1.2rem;
  padding-inline: 1.25rem;
  font-size: .94rem;
}

.form {
  padding: clamp(1.5rem, 2.7vw, 2.15rem);
  border: 0;
  border-top: 6px solid var(--oxide);
  box-shadow: 0 24px 64px rgba(4, 10, 31, .22);
}

.form__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.form__head h3 {
  margin-top: .55rem;
  color: var(--slate);
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.form__route {
  color: var(--red-ink);
}

.form__time {
  flex: none;
  margin-top: .05rem;
  padding: .4rem .55rem;
  color: var(--slate);
  background: #edf0f5;
  font-size: .68rem;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

.form__intro {
  max-width: 58ch;
  margin: 1rem 0 1.4rem;
  color: var(--ink-soft);
  font-size: .93rem;
  line-height: 1.5;
}

.field {
  gap: .5rem;
}

.field label {
  color: var(--slate);
  font-family: var(--f-body);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.25;
  text-transform: none;
}

.field .opt {
  margin-left: .18rem;
  color: #737b8e;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  border-bottom-color: #aeb5c4;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #747c8d;
}

.form__note {
  color: #596177;
  font-size: .78rem;
  line-height: 1.45;
}

@media (max-width: 560px) {
  .contact__direct {
    padding: 1.25rem;
  }

  .contact__direct .btn {
    width: 100%;
  }

  .form__head {
    display: block;
  }

  .form__time {
    display: inline-block;
    margin-top: .9rem;
  }

  .form__intro {
    margin-bottom: 1.25rem;
  }
}

/* ================================================================
   PROOF MARQUEE
   Diferenciais em uma esteira editorial contínua para a direita.
   ================================================================ */
.proof {
  position: relative;
  overflow: hidden;
  background: #f7f6f2;
  border-bottom: 1px solid var(--line);
}

.proof::before,
.proof::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(1.25rem, 4vw, 4rem);
  pointer-events: none;
}

.proof::before {
  left: 0;
  background: linear-gradient(90deg, #f7f6f2, rgba(247, 246, 242, 0));
}

.proof::after {
  right: 0;
  background: linear-gradient(270deg, #f7f6f2, rgba(247, 246, 242, 0));
}

.proof__list {
  display: flex;
  grid-template-columns: none;
  align-items: stretch;
  width: max-content;
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof__list li,
.proof__list li:first-child,
.proof__list li:last-child,
.proof__list li:nth-child(odd) {
  display: flex;
  flex: 0 0 max(25vw, 20rem);
  align-items: center;
  gap: .9rem;
  min-height: 92px;
  padding: 1.15rem clamp(1.4rem, 2.5vw, 2.25rem);
  color: var(--slate);
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  font-family: var(--f-body);
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: -.012em;
  line-height: 1.25;
  text-transform: none;
}

.proof__list .ico {
  display: block;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--red-ink);
  background: rgba(227, 28, 35, .07);
  border: 1px solid rgba(227, 28, 35, .2);
}

.proof__list strong,
.proof__list li:first-child strong {
  color: var(--slate);
  font-weight: 600;
}

.proof--marquee .proof__list {
  will-change: transform;
  animation: proof-slide-right 26s linear infinite;
}

.proof--marquee:hover .proof__list {
  animation-play-state: paused;
}

@keyframes proof-slide-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 560px) {
  .proof__list li,
  .proof__list li:first-child,
  .proof__list li:last-child,
  .proof__list li:nth-child(odd) {
    flex-basis: 18rem;
    min-height: 82px;
    padding: 1rem 1.25rem;
    font-size: .88rem;
  }

  .proof__list .ico {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .proof--marquee .proof__list {
    animation-duration: 23s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof::before,
  .proof::after {
    display: none;
  }

  .proof__list {
    width: 100%;
    flex-wrap: wrap;
    animation: none !important;
    transform: none !important;
  }

  .proof__list li,
  .proof__list li:first-child,
  .proof__list li:last-child,
  .proof__list li:nth-child(odd) {
    flex: 1 1 18rem;
  }

  .proof__clone {
    display: none !important;
  }
}

/* ================================================================
   AUDIENCE PROFILES
   Quatro cenários visuais para o lead reconhecer a própria operação.
   ================================================================ */
.icp {
  background: #eef0f4;
}

.icp__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
}

.icp__eyebrow {
  display: inline-block;
  width: fit-content;
  margin: 0 0 1.1rem;
  color: var(--oxide);
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.icp__eyebrow-line {
  display: block;
  overflow: hidden;
  padding-inline: .08em;
}

.icp__eyebrow-text {
  display: block;
}

.icp__eyebrow-line--accent {
  color: var(--oxide);
}

.icp__eyebrow-cursor {
  display: inline-block;
  width: .13em;
  height: .13em;
  margin-left: .12em;
  background: currentColor;
  vertical-align: .08em;
}

.icp__head h2 {
  max-width: 20ch;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: var(--step-4);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
}

.icp__intro {
  padding-bottom: .2rem;
}

.icp__intro p {
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}

.icp__helper {
  display: none;
}

.icp__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas: none;
  gap: 1px;
  margin-top: clamp(2.5rem, 4.5vw, 4rem);
  padding: 1px;
  overflow: visible;
  background: #c8cedb;
  border: 0;
}

.icp__item {
  min-width: 0;
  list-style: none;
  background: var(--paper);
}

.icp__item:nth-child(1),
.icp__item:nth-child(4) {
  grid-column: span 7;
}

.icp__item:nth-child(2),
.icp__item:nth-child(3) {
  grid-column: span 5;
}

.icp__item .icp__card,
.icp__item .icp__card--feat {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: var(--slate);
  background: var(--paper);
  border: 0;
  text-decoration: none;
  transform: none;
  transition: background-color .25s ease;
}

.icp__media {
  position: relative;
  height: clamp(250px, 22vw, 335px);
  overflow: hidden;
  background: #ccd2dc;
}

.icp__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -60px 80px rgba(7, 17, 47, .16);
}

.icp__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.84) contrast(1.04);
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .25s ease;
}

.icp__item:nth-child(2) .icp__media img {
  object-position: 58% center;
}

.icp__item:nth-child(3) .icp__media img {
  object-position: 56% center;
}

.icp__index {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 46px;
  color: #fff;
  background: rgba(7, 17, 47, .94);
  border-bottom: 3px solid var(--oxide);
  font-family: var(--f-display);
  font-size: .83rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.icp__body {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: clamp(1.35rem, 2.7vw, 2.2rem);
  transition: background-color .25s ease;
}

.icp__item .icp__k {
  margin: 0 0 .65rem;
  color: var(--red-ink) !important;
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.icp__item .icp__card h3 {
  max-width: 17ch;
  color: var(--slate);
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.icp__item .icp__card p {
  max-width: 47ch;
  margin-top: .9rem;
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.5;
}

.icp__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.35rem;
  color: var(--slate);
  border-top: 1px solid var(--line);
  font-size: .91rem;
  font-weight: 600;
}

.icp__cta span {
  color: var(--oxide);
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.icp__item .icp__card:hover,
.icp__item .icp__card:focus-visible {
  color: var(--slate);
  background: #fff;
  transform: none;
}

.icp__item .icp__card:hover .icp__body {
  background: #fff;
}

.icp__item .icp__card:hover .icp__media img {
  filter: saturate(.96) contrast(1.05);
  transform: scale(1.025);
}

.icp__item .icp__card:hover .icp__cta span,
.icp__item .icp__card:focus-visible .icp__cta span {
  transform: translateX(4px);
}

@media (max-width: 860px) {
  .icp__head {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .icp__head h2 {
    max-width: 24ch;
  }

  .icp__helper {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    color: var(--red-ink);
    font-size: .84rem;
    font-weight: 600;
  }

  /* Sem carrossel lateral: pilha vertical de 1 coluna */
  .icp__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .icp__item,
  .icp__item:nth-child(1),
  .icp__item:nth-child(2),
  .icp__item:nth-child(3),
  .icp__item:nth-child(4) {
    grid-column: auto;
    border: 1px solid #c8cedb;
  }

  .icp__media {
    height: 245px;
  }

  .icp__body {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .icp__head {
    text-align: center;
  }

  .icp__helper {
    justify-content: center;
  }

  .icp__eyebrow {
    display: inline-block;
    width: auto;
    margin: 0 0 1rem;
    color: var(--oxide);
    font-family: var(--f-body);
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-align: center;
  }

  .icp__eyebrow-line {
    display: block;
    overflow: hidden;
    padding-inline: .08em;
  }

  .icp__eyebrow-text {
    display: block;
  }

  .icp__eyebrow-line--accent {
    color: var(--oxide);
  }

  .icp__eyebrow-cursor {
    display: inline-block;
    width: .13em;
    height: .13em;
    margin-left: .12em;
    background: currentColor;
    vertical-align: .08em;
  }

  .icp__head h2 {
    max-width: 18ch;
    margin-inline: auto;
    color: var(--ink);
    font-family: var(--f-display);
    font-size: clamp(2.1rem, 9vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
  }

  .icp__intro p {
    margin-inline: auto;
  }

  .icp__grid {
    padding-inline: 0;
  }

  .icp__item,
  .icp__item:nth-child(1),
  .icp__item:nth-child(2),
  .icp__item:nth-child(3),
  .icp__item:nth-child(4) {
    flex-basis: 84vw;
  }

  .icp__media {
    height: 225px;
  }

  .icp__body {
    align-items: center;
    min-height: 250px;
    padding: 1.35rem;
    text-align: center;
  }

  .icp__index {
    left: 0;
    transform: none;
  }

  .icp__item .icp__card h3 {
    margin-inline: auto;
    font-size: 1.65rem;
  }

  .icp__item .icp__card p {
    margin-inline: auto;
  }

  .icp__cta {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js .icp__head .icp__eyebrow,
  .js .icp__head h2,
  .js .icp__head .icp__intro {
    opacity: 0;
    transform: translate3d(0, 1.1rem, 0);
    transition:
      opacity .7s cubic-bezier(.16, 1, .3, 1),
      transform .85s cubic-bezier(.16, 1, .3, 1);
  }

  .js .icp__head .icp__eyebrow-text {
    transform: translate3d(0, 115%, 0);
  }

  .js .icp__head.in .icp__eyebrow,
  .js .icp__head.in h2,
  .js .icp__head.in .icp__intro {
    opacity: 1;
    transform: none;
  }

  .js .icp__head .icp__eyebrow-line:nth-child(2) .icp__eyebrow-text {
    transition-delay: .11s;
  }

  .js .icp__head h2 {
    transition-delay: .2s;
  }

  .js .icp__head .icp__intro {
    transition-delay: .29s;
  }

  .js .icp__head.in .icp__eyebrow-cursor {
    animation: icp-cursor-pulse 1.15s .9s cubic-bezier(.16, 1, .3, 1) infinite;
  }

  @keyframes icp-cursor-pulse {
    0%, 42% { opacity: 1; }
    43%, 100% { opacity: .12; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .icp__media img,
  .icp__cta span {
    transition: none !important;
  }
}

/* ================================================================
   MOBILE HERO CINEMATIC COMPOSITION
   Reúne marca, especialista, proposta e conversão na primeira tela.
   ================================================================ */
@media (max-width: 560px) {
  .wa-float {
    display: none !important;
  }

  .hero::before {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 68px);
    max-height: none;
    overflow: hidden;
  }

  .hero__bg {
    bottom: 0;
  }

  .hero__bg img {
    object-position: 50% 50%;
    filter: saturate(1.04) contrast(1.06) brightness(1.08);
  }

  .hero__video {
    object-position: 50% 50%;
    filter: saturate(1.03) contrast(1.06) brightness(1.06);
  }

  .hero__bg::after {
    background: linear-gradient(180deg, rgba(7, 17, 47, .48) 0%, rgba(7, 17, 47, .78) 34%, rgba(7, 17, 47, .9) 70%, rgba(7, 17, 47, .95) 100%);
  }

  .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(9rem, 39vw, 9.5rem);
    grid-template-areas:
      "title title"
      "sub sub"
      "cta cta"
      "note note"
      "endorsement portrait";
    align-content: center;
    min-height: calc(100svh - 68px);
    max-height: none;
    gap: 0 .875rem;
    padding-block: 1.35rem 1.5rem;
  }

  .hero__kicker {
    grid-area: kicker;
    justify-self: center;
    margin: 0 0 1.15rem;
    text-align: center;
  }

  .hero__note {
    grid-area: note;
    justify-self: center;
    margin: 1.1rem 0 0;
    font-size: .8rem;
    text-align: center;
  }

  .hero__col {
    display: contents;
  }

  .hero__endorsement {
    grid-area: endorsement;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: clamp(11.5rem, 49vw, 12rem);
    margin-top: 3.5rem;
    padding: 1rem;
    background: rgba(7, 17, 47, .42);
    border: 1px solid rgba(255, 255, 255, .38);
    border-bottom: 4px solid var(--oxide);
  }

  .hero__endorsement img {
    width: clamp(7.75rem, 34vw, 8.25rem);
    height: auto;
    transform: translateX(-.45rem);
  }

  .hero h1 {
    grid-area: title;
    max-width: none;
    margin: 0;
    font-size: clamp(2.25rem, 10vw, 2.625rem);
    line-height: .92;
    letter-spacing: -.05em;
    text-align: center;
    text-wrap: balance;
  }

  .hero__sub {
    grid-area: sub;
    max-width: 35ch;
    margin: 2rem auto 0;
    color: #f0f3f8;
    font-size: .91rem;
    line-height: 1.43;
    text-align: center;
    text-shadow: 0 1px 18px rgba(7, 17, 47, .5);
    text-wrap: pretty;
  }

  .hero__cta {
    grid-area: cta;
    display: grid;
    grid-template-columns: 1fr;
    gap: .55rem;
    width: 100%;
    margin: 2.75rem 0 0;
  }

  .hero__cta .btn {
    width: 100%;
    min-height: 48px;
    padding-block: .72rem;
    font-size: .88rem;
  }

  .btn__label--desktop {
    display: none;
  }

  .btn__label--mobile {
    display: inline;
  }

  .hero__portrait {
    grid-area: portrait;
    align-self: start;
    justify-self: end;
    width: 100%;
    height: clamp(11.5rem, 49vw, 12rem);
    min-height: 0;
    margin: 3.5rem 0 0;
    border: 1px solid rgba(255, 255, 255, .5);
    border-bottom: 4px solid var(--oxide);
    box-shadow: 0 18px 45px rgba(4, 10, 29, .48);
  }

  .hero__portrait img {
    object-position: 50% 8%;
  }

  .hero__portrait figcaption {
    gap: .08rem;
    min-height: 3.25rem;
    padding: .52rem .62rem .56rem;
    text-align: left;
  }

  .hero__portrait figcaption strong {
    font-size: .8rem;
    line-height: 1.05;
  }

  .hero__portrait figcaption span {
    font-size: .58rem;
    line-height: 1.24;
    letter-spacing: .035em;
  }

  .brand-evidence__head,
  .campaign-head {
    text-align: center;
  }

  .brand-evidence .eyebrow {
    justify-content: center;
    gap: 0;
  }

  .brand-evidence .eyebrow::before,
  .brand-evidence .campaign-head .eyebrow::before {
    display: none;
    content: none;
  }

  .brand-evidence h2,
  .brand-evidence__intro p,
  .brand-evidence__intro a {
    margin-inline: auto;
  }

  .brand-evidence__intro {
    gap: 1rem;
  }

  .brand-evidence__intro a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: .8rem 1rem;
    color: #fff;
    background: var(--oxide);
    text-decoration: none;
  }

  .brand-evidence__stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "field field"
      "video video";
    height: auto;
    gap: 1px;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .2);
    scroll-snap-type: none;
  }

  .evidence-media {
    display: grid;
    grid-template-rows: auto auto;
    width: 100%;
    height: auto;
    border: 0;
    scroll-snap-align: none;
  }

  .evidence-media--field {
    grid-area: field;
  }

  .evidence-media--video {
    grid-area: video;
  }

  .evidence-media--catalog {
    grid-area: catalog;
  }

  .evidence-media > img,
  .evidence-media > video {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .evidence-media--field > img {
    aspect-ratio: 4 / 5;
    object-position: 50% 50%;
  }

  .evidence-media figcaption {
    min-width: 0;
    padding: .85rem .8rem .95rem;
    text-align: center;
  }

  .evidence-media--video figcaption,
  .evidence-media--catalog figcaption {
    gap: .3rem;
    padding: .75rem .55rem .85rem;
  }

  .evidence-media--video figcaption span,
  .evidence-media--catalog figcaption span {
    font-size: .72rem;
  }

  .evidence-media--video figcaption strong,
  .evidence-media--catalog figcaption strong {
    font-size: .9rem;
  }

  .evidence-media--catalog figcaption p {
    display: none;
  }

  .campaign-head {
    align-items: center;
    gap: .45rem;
    margin-top: 2.2rem;
    padding-top: 0;
    border-top: 0;
  }

  .campaign-head h3 {
    color: #fff;
    font-family: var(--f-display);
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: -.03em;
  }

  .campaign-head p {
    margin-inline: auto;
    text-align: center;
  }

  .campaign-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .2);
    scroll-snap-type: none;
  }

  .campaign-strip figure {
    flex: none;
    min-width: 0;
    border: 0;
    scroll-snap-align: none;
  }

  .campaign-strip img {
    aspect-ratio: 3 / 4;
  }

  .campaign-strip figcaption {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    min-height: 38px;
    padding: .55rem .2rem;
    text-align: center;
  }

  .campaign-strip figcaption span {
    display: none;
  }

  .campaign-strip figcaption strong {
    font-size: .78rem;
  }

  .brand-evidence__note {
    gap: 1rem;
    margin-top: 1.4rem;
    padding-top: 1.25rem;
    text-align: center;
  }

  .brand-evidence__note p {
    margin-inline: auto;
  }
}

@media (max-width: 560px) and (prefers-reduced-motion: no-preference) {
  .hero__portrait {
    animation: mobile-portrait-reveal .95s .08s cubic-bezier(.16, 1, .3, 1) both;
  }

  .hero__portrait img {
    animation: mobile-portrait-image 1.35s .08s cubic-bezier(.16, 1, .3, 1) both;
  }

  @keyframes mobile-portrait-reveal {
    from {
      opacity: 0;
      clip-path: inset(0 0 100% 0);
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      clip-path: inset(0);
      transform: none;
    }
  }

  @keyframes mobile-portrait-image {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
  }
}

/* ================================================================
   ATENDIMENTO COMERCIAL GUIADO
   Fluxo determinístico que organiza a solicitação antes do WhatsApp.
   ================================================================ */
.sales-assistant {
  position: fixed;
  right: clamp(1rem, 2.2vw, 1.75rem);
  bottom: clamp(1rem, 2.2vw, 1.75rem);
  z-index: 120;
  width: min(410px, calc(100vw - 2rem));
  pointer-events: none;
}

.sales-assistant button,
.sales-assistant input,
.sales-assistant a {
  font: inherit;
}

.sales-assistant__scrim {
  display: none;
}

.sales-assistant__launcher,
.sales-assistant__panel {
  pointer-events: auto;
}

.sales-assistant__launcher {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: .85rem;
  width: 100%;
  min-height: 74px;
  margin-left: auto;
  padding: .55rem .65rem;
  overflow: hidden;
  color: #fff;
  background: #07112f;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  box-shadow: 0 20px 54px rgba(7, 17, 47, .28);
  text-align: left;
  transition: opacity .25s ease, transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease;
}

.sales-assistant__launcher::before {
  content: "";
  position: absolute;
  top: 0;
  right: 14px;
  left: 14px;
  height: 3px;
  background: var(--oxide);
}

.sales-assistant__launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(7, 17, 47, .34);
}

.sales-assistant__launcher:active {
  transform: translateY(0) scale(.985);
}

.sales-assistant__avatar {
  position: relative;
  display: block;
  flex: none;
  width: 54px;
  height: 54px;
  overflow: hidden;
  background: #edf0f6;
  border-radius: 11px;
}

.sales-assistant__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
}

.sales-assistant__launcher-copy {
  display: grid;
  gap: .16rem;
  min-width: 0;
}

.sales-assistant__launcher-copy strong {
  font-family: var(--f-display);
  font-size: .98rem;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.sales-assistant__launcher-copy small {
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
  line-height: 1.2;
}

.sales-assistant__launcher-action {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding-inline: .8rem;
  color: #fff;
  background: var(--oxide);
  border-radius: 9px;
  font-size: .76rem;
  font-weight: 600;
}

.sales-assistant__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-rows: auto minmax(150px, 1fr) auto auto auto;
  width: 100%;
  max-height: min(690px, calc(100dvh - 6rem));
  padding: 0;
  overflow: hidden;
  visibility: hidden;
  color: var(--ink);
  background: #f5f4f0;
  border: 1px solid rgba(13, 27, 76, .18);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(7, 17, 47, .3);
  opacity: 0;
  transform: translateY(18px) scale(.97);
  transform-origin: 100% 100%;
  transition: visibility .28s, opacity .22s ease, transform .38s cubic-bezier(.16, 1, .3, 1);
}

.sales-assistant[data-open="true"] .sales-assistant__launcher {
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px) scale(.96);
}

.sales-assistant[data-open="true"] .sales-assistant__panel {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.sales-assistant__header {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
  min-height: 76px;
  padding: .75rem .85rem;
  color: #fff;
  background: #07112f;
  border-top: 4px solid var(--oxide);
}

.sales-assistant__header .sales-assistant__avatar {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.sales-assistant__identity {
  display: grid;
  gap: .14rem;
  min-width: 0;
}

.sales-assistant__identity strong {
  font-family: var(--f-display);
  font-size: .94rem;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.sales-assistant__identity small {
  color: rgba(255, 255, 255, .7);
  font-size: .7rem;
  line-height: 1.2;
}

.sales-assistant__close {
  min-height: 36px;
  padding: .45rem .65rem;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 9px;
  font-size: .7rem;
  font-weight: 600;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.sales-assistant__close:hover {
  color: #07112f;
  background: #fff;
}

.sales-assistant__close:active {
  transform: scale(.97);
}

.sales-assistant__conversation {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-height: 0;
  padding: 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 27, 76, .35) transparent;
}

.sales-chat__message {
  width: fit-content;
  max-width: 88%;
  padding: .72rem .82rem;
  border-radius: 12px;
  font-size: .86rem;
  line-height: 1.4;
  animation: sales-chat-message-in .28s cubic-bezier(.16, 1, .3, 1) both;
}

.sales-chat__message--bot {
  align-self: flex-start;
  color: #172141;
  background: #fff;
  border: 1px solid #d8dce5;
  border-bottom-left-radius: 4px;
}

.sales-chat__message--user {
  align-self: flex-end;
  color: #fff;
  background: #0d1b4c;
  border-bottom-right-radius: 4px;
}

.sales-chat__typing {
  display: flex;
  align-items: center;
  gap: .25rem;
  width: fit-content;
  min-height: 36px;
  padding: .65rem .8rem;
  background: #fff;
  border: 1px solid #d8dce5;
  border-radius: 12px 12px 12px 4px;
}

.sales-chat__typing span {
  width: 5px;
  height: 5px;
  background: var(--oxide);
  border-radius: 1px;
  animation: sales-chat-typing .8s ease-in-out infinite alternate;
}

.sales-chat__typing span:nth-child(2) {
  animation-delay: .12s;
}

.sales-chat__typing span:nth-child(3) {
  animation-delay: .24s;
}

.sales-chat__summary {
  align-self: stretch;
  margin-top: .2rem;
  padding: .85rem;
  color: #fff;
  background: #0d1b4c;
  border-left: 4px solid var(--oxide);
  border-radius: 12px;
}

.sales-chat__summary strong {
  display: block;
  font-family: var(--f-display);
  font-size: .88rem;
  letter-spacing: -.015em;
}

.sales-chat__summary p {
  margin-top: .28rem;
  color: rgba(255, 255, 255, .74);
  font-size: .72rem;
  line-height: 1.4;
}

.sales-assistant__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem;
  max-height: 190px;
  padding: 0 1rem .8rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(13, 27, 76, .35) transparent;
  scrollbar-width: thin;
}

.sales-assistant__choices::-webkit-scrollbar {
  width: 4px;
}

.sales-assistant__choices::-webkit-scrollbar-track {
  background: transparent;
}

.sales-assistant__choices::-webkit-scrollbar-thumb {
  background: rgba(13, 27, 76, .28);
  border-radius: 2px;
}

.sales-chat__choice {
  min-height: 43px;
  padding: .58rem .68rem;
  color: #0d1b4c;
  background: transparent;
  border: 1px solid #b9c0cf;
  border-radius: 10px;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.sales-chat__choice:hover {
  color: #fff;
  background: #0d1b4c;
  border-color: #0d1b4c;
  transform: translateY(-1px);
}

.sales-chat__choice:active {
  transform: scale(.98);
}

.sales-chat__whatsapp {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .8rem 1rem;
  color: #fff;
  background: var(--oxide);
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.sales-chat__whatsapp:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}

.sales-chat__ready-note {
  grid-column: 1 / -1;
  color: #586178;
  font-size: .68rem;
  line-height: 1.35;
  text-align: center;
}

.sales-assistant__composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .45rem;
  padding: .8rem 1rem;
  background: #ebeef3;
  border-top: 1px solid #d5d9e2;
}

.sales-assistant__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sales-assistant__composer input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: .68rem .75rem;
  color: #111b38;
  background: #fff;
  border: 1px solid #aeb6c6;
  border-radius: 10px;
  outline: 0;
  font-size: .8rem;
}

.sales-assistant__composer input::placeholder {
  color: #656e82;
  opacity: 1;
}

.sales-assistant__composer input:focus {
  border-color: var(--oxide);
  box-shadow: 0 0 0 3px rgba(227, 28, 35, .14);
}

.sales-assistant__composer input:disabled {
  color: #7a8190;
  background: #e1e4ea;
}

.sales-assistant__composer button {
  min-width: 72px;
  min-height: 44px;
  padding: .65rem .8rem;
  color: #fff;
  background: #0d1b4c;
  border: 1px solid #0d1b4c;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 600;
  transition: background-color .2s ease, transform .2s ease;
}

.sales-assistant__composer button:hover {
  background: var(--oxide);
  border-color: var(--oxide);
}

.sales-assistant__composer button:active {
  transform: scale(.98);
}

.sales-assistant__composer button:disabled {
  color: #5f6676;
  background: #d3d7df;
  border-color: #d3d7df;
}

.sales-assistant__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: 38px;
  padding: .55rem 1rem .65rem;
  color: #60697c;
  background: #f5f4f0;
  font-size: .64rem;
  line-height: 1.25;
}

.sales-assistant__footer button {
  flex: none;
  padding: .28rem 0;
  color: #0d1b4c;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: .66rem;
  font-weight: 600;
}

@keyframes sales-chat-message-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sales-chat-typing {
  from {
    opacity: .28;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media (max-width: 560px) {
  .sales-assistant {
    right: max(.65rem, env(safe-area-inset-right));
    bottom: max(.65rem, env(safe-area-inset-bottom));
    left: max(.65rem, env(safe-area-inset-left));
    width: auto;
  }

  .sales-assistant__scrim {
    position: fixed;
    inset: 68px 0 0;
    z-index: 0;
    display: block;
    padding: 0;
    visibility: hidden;
    background: rgba(7, 17, 47, .34);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: visibility .28s, opacity .28s ease;
  }

  .sales-assistant[data-open="true"] .sales-assistant__scrim {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .sales-assistant__launcher {
    position: relative;
    z-index: 2;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    width: min(20.5rem, calc(100vw - 1.3rem));
    min-height: 68px;
    gap: .7rem;
    padding: .5rem;
  }

  .sales-assistant__launcher .sales-assistant__avatar {
    width: 50px;
    height: 50px;
  }

  .sales-assistant__launcher-copy strong {
    font-size: .94rem;
  }

  .sales-assistant__launcher-action {
    min-height: 39px;
    padding-inline: .65rem;
    font-size: .7rem;
  }

  .sales-assistant__panel {
    position: fixed;
    right: max(.65rem, env(safe-area-inset-right));
    bottom: max(.65rem, env(safe-area-inset-bottom));
    left: max(.65rem, env(safe-area-inset-left));
    z-index: 2;
    width: auto;
    height: min(38rem, 72dvh);
    max-height: calc(100dvh - 5.25rem);
    transform-origin: 50% 100%;
  }

  .sales-assistant__header {
    min-height: 70px;
    padding: .65rem .7rem;
  }

  .sales-assistant__identity strong {
    font-size: .88rem;
  }

  .sales-assistant__close {
    min-height: 44px;
    padding-inline: .55rem;
    font-size: .76rem;
  }

  .sales-assistant__conversation {
    padding: .85rem .85rem .75rem;
  }

  .sales-chat__message {
    font-size: .9rem;
  }

  .sales-assistant__choices {
    grid-template-columns: 1fr;
    max-height: 234px;
    padding: 0 .85rem .75rem;
  }

  .sales-chat__choice {
    min-height: 48px;
    padding: .7rem .8rem;
    font-size: .88rem;
  }

  .sales-chat__choice:focus-visible {
    outline-width: 2px;
    outline-offset: -3px;
  }

  .sales-assistant__composer {
    padding: .72rem .85rem;
  }

  .sales-assistant__composer input {
    min-height: 48px;
    font-size: 1rem;
  }

  .sales-assistant__composer button {
    min-width: 76px;
    min-height: 48px;
    font-size: .82rem;
  }

  .sales-assistant__footer {
    min-height: 42px;
    padding-inline: .85rem;
    font-size: .7rem;
  }

  .sales-assistant__footer button {
    min-height: 32px;
    font-size: .72rem;
  }
}

@media (max-width: 370px) {
  .sales-assistant__launcher-action {
    display: grid;
  }

  .sales-assistant__launcher {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: .6rem;
  }

  .sales-assistant__launcher .sales-assistant__avatar {
    width: 48px;
    height: 48px;
  }

  .sales-assistant__launcher-action {
    min-height: 38px;
    padding-inline: .55rem;
  }

  .sales-assistant__header {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .sales-assistant__header .sales-assistant__avatar {
    width: 44px;
    height: 44px;
  }

  .sales-assistant__identity small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sales-assistant *,
  .sales-assistant *::before,
  .sales-assistant *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

/* Premium icon system
   Phosphor 2.1.1, duotone for meaning and bold for actions. */
.icon-premium {
  display: block;
  overflow: visible;
  color: currentColor;
  fill: currentColor;
}

.btn .icon-premium {
  width: 1.9rem;
  height: 1.9rem;
  padding: .38rem;
  color: currentColor;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: inset 3px 0 0 rgba(255, 255, 255, .2);
}

.hero .btn--wa .icon-premium {
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .2);
  box-shadow: inset 3px 0 0 rgba(255, 255, 255, .22);
}

.nav__toggle .icon-premium {
  width: 1.55rem;
  height: 1.55rem;
}

.proof__list .icon-premium {
  display: block;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #fff;
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  box-shadow: inset 3px 0 0 var(--oxide), 0 0 0 4px rgba(227, 28, 35, .055);
}

.icard__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 3.65rem;
  height: 3.65rem;
  padding: .82rem;
  color: #fff;
  background: rgba(7, 17, 47, .94);
  border: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 3px solid var(--oxide);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(7, 17, 47, .24);
  backdrop-filter: blur(8px);
}

.icard__badge .icon-premium {
  width: 100%;
  height: 100%;
}

.icard__cta .cta-icon,
.icp__cta .cta-icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  color: #fff;
  background: var(--slate);
  border: 1px solid rgba(13, 27, 76, .15);
  border-radius: 9px;
  box-shadow: inset 0 -3px 0 var(--oxide);
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.icard__cta {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}

.icard__cta .cta-icon .icon-premium,
.icp__cta .cta-icon .icon-premium {
  width: .92rem;
  height: .92rem;
  color: inherit;
}

.icard__cta:hover .cta-icon,
.icard__cta:focus-visible .cta-icon,
.icp__card:hover .cta-icon,
.icp__card:focus-visible .cta-icon {
  color: #fff;
  background: var(--oxide);
  transform: translate(3px, -3px);
}

.ledger li {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
}

.ledger__mark {
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  color: #fff;
  background: var(--slate);
  border: 1px solid rgba(13, 27, 76, .15);
  border-radius: 13px;
  box-shadow: inset 0 -3px 0 var(--oxide), 0 9px 24px rgba(13, 27, 76, .1);
}

.ledger__mark .icon-premium {
  width: 1.72rem;
  height: 1.72rem;
}

.faq summary .caret.icon-premium {
  width: 2rem;
  height: 2rem;
  padding: .55rem;
  color: var(--slate);
  background: rgba(13, 27, 76, .06);
  border: 1px solid rgba(13, 27, 76, .1);
  border-radius: 9px;
  transition: color .22s ease, background-color .22s ease, transform .22s ease;
}

.faq details[open] summary .caret.icon-premium {
  color: #fff;
  background: var(--oxide);
  border-color: var(--oxide);
  transform: rotate(180deg);
}

.form__note .icon-premium {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--oxide);
}

.sales-assistant__launcher-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .38rem;
}

.sales-assistant__launcher-action .icon-premium {
  width: 1.05rem;
  height: 1.05rem;
}

.sales-chat__whatsapp {
  gap: .55rem;
}

.sales-chat__whatsapp .icon-premium {
  width: 1.35rem;
  height: 1.35rem;
}

@media (max-width: 720px) {
  .proof__list .icon-premium {
    width: 40px;
    height: 40px;
    padding: 9px;
    border-radius: 11px;
  }

  .icard__badge {
    top: .8rem;
    left: .8rem;
    width: 3.25rem;
    height: 3.25rem;
    padding: .73rem;
    border-radius: 12px;
  }

  .ledger li {
    grid-template-columns: 3.15rem minmax(0, 1fr);
    gap: .9rem;
  }

  .ledger__mark {
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 11px;
  }

  .ledger__mark .icon-premium {
    width: 1.5rem;
    height: 1.5rem;
  }

  .icard__cta .cta-icon,
  .icp__cta .cta-icon {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 370px) {
  .sales-assistant__launcher-action {
    display: inline-flex;
  }

  .sales-assistant__launcher-action .icon-premium {
    display: none;
  }
}


/* ===== Copy B2B (jul/2026): kicker do hero + seções posicionamento e como-funciona ===== */
.hero__kicker {
  display: block;
  margin-bottom: 1.1rem;
  color: #ff8d91;
}

.pitch {
  padding: clamp(2.4rem, 5vw, 4rem) 0;
}

.pitch__in {
  display: grid;
  gap: 1.05rem;
  justify-items: center;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.pitch__in h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.pitch__lead {
  color: var(--oxide);
  font-family: var(--f-display);
  font-size: 1.18rem;
  font-weight: 700;
}

.pitch__in > p:not(.pitch__lead) {
  max-width: 58ch;
  color: var(--ink-soft);
}

.pitch .btn {
  margin-top: .5rem;
}

.steps {
  padding: clamp(3.4rem, 7vw, 5.8rem) 0;
  border-top: 1px solid rgba(13, 27, 76, .08);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem 2rem;
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
}

.steps__grid li {
  display: grid;
  align-content: start;
  gap: .55rem;
}

.steps__num {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 10px;
  background: var(--slate);
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 800;
}

.steps__grid h3 {
  color: var(--ink);
  font-size: 1.06rem;
}

.steps__grid p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.5;
}

.steps__cta {
  margin-top: 2.4rem;
}

@media (max-width: 860px) {
  .steps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .steps__grid { grid-template-columns: 1fr; }
}

/* ===== Avaliações do Google (prova social real: 4,7 · 14 avaliações) ===== */
.reviews {
  padding: clamp(3.4rem, 7vw, 5.8rem) 0;
  border-top: 1px solid rgba(13, 27, 76, .08);
}

.reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2.4rem;
  margin-bottom: 2.2rem;
}

.reviews__score {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .8rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(13, 27, 76, .14);
  border-bottom: 4px solid var(--oxide);
}

.reviews__score strong {
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.reviews__score > div {
  display: grid;
  gap: .15rem;
}

.reviews__stars {
  background: linear-gradient(90deg, #E8A33D 94%, #cbd2e1 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.05rem;
  letter-spacing: .12em;
}

.reviews__count {
  color: var(--ink-soft);
  font-size: .85rem;
}

.reviews__head h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  letter-spacing: -.03em;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reviews__grid li {
  display: grid;
  align-content: start;
  gap: .8rem;
  padding: 1.3rem 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid rgba(13, 27, 76, .12);
}

.reviews__grid blockquote {
  margin: 0;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.55;
}

.reviews__grid cite {
  color: var(--ink-soft);
  font-size: .84rem;
  font-style: normal;
}

.reviews__cta {
  margin-top: 1.6rem;
}

.reviews__cta a {
  color: var(--oxide);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: .22em;
}

@media (max-width: 860px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__head { align-items: start; flex-direction: column; gap: 1.1rem; }
}

/* ==================================================================
   UX FINISH PASS · JUL/2026
   Acabamento final de ritmo, hierarquia, conversao e responsividade.
   ================================================================== */

:root {
  --maxw: 1280px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(4.75rem, 7vw, 6.75rem);
}

body {
  background: #f6f5f1;
}

main {
  overflow: clip;
}

section:not(.hero):not(.proof) {
  padding-block: var(--section-space);
}

h1,
h2,
h3,
.reviews__grid blockquote {
  text-wrap: balance;
}

p,
.faq__a {
  text-wrap: pretty;
}

.btn {
  min-height: 52px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(13, 27, 76, .08);
  transition:
    background-color .22s ease,
    color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s cubic-bezier(.16, 1, .3, 1);
}

.btn:hover {
  box-shadow: 0 14px 30px rgba(13, 27, 76, .14);
}

.btn--ghost {
  box-shadow: none;
}

.nav {
  border-bottom-color: rgba(13, 27, 76, .11);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7);
}

.nav__in {
  min-height: 72px;
}

.nav__links a:not(.btn) {
  color: #233050;
  transition: color .2s ease;
}

.nav__links a:not(.btn):hover,
.nav__links a:not(.btn):focus-visible {
  color: var(--red-ink);
}

/* Hero: proposta legivel, prova humana e contexto operacional. */
.hero {
  min-height: min(760px, calc(100svh - 72px));
  max-height: 780px;
}

.hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 350px);
  min-height: min(760px, calc(100svh - 72px));
  gap: clamp(2.75rem, 5.5vw, 5.75rem);
}

.hero__col {
  max-width: 800px;
  padding-block: clamp(3rem, 6vh, 4.75rem);
}

.hero__kicker {
  margin-bottom: 1rem;
  color: #ff8d91;
  font-size: .72rem;
  letter-spacing: .105em;
}

.hero h1 {
  max-width: 19ch;
  margin-top: 0;
  font-size: clamp(3rem, 4.35vw, 4.35rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.hero__sub {
  max-width: 57ch;
  margin-top: 1.35rem;
  color: #e3e8f1;
  font-size: clamp(1rem, 1.22vw, 1.13rem);
  line-height: 1.55;
}

.hero__cta {
  gap: .7rem;
  margin-top: 1.65rem;
}

.hero__note {
  margin-top: .85rem;
  color: #d5dbea;
  font-size: .8rem;
}

.hero__portrait {
  width: min(100%, 350px);
  height: min(68vh, 550px);
  min-height: 455px;
  box-shadow: 0 30px 80px rgba(4, 10, 29, .46);
}

.hero__portrait figcaption {
  padding: 1rem 1.15rem 1.05rem;
}

/* A esteira funciona como um rail de credibilidade, nao como cards. */
.proof {
  border-top-width: 4px;
}

.proof__list li,
.proof__list li:first-child,
.proof__list li:last-child,
.proof__list li:nth-child(odd) {
  flex-basis: max(25vw, 19.5rem);
  min-height: 88px;
  padding-block: 1rem;
}

.proof__list .icon-premium {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

/* Posicionamento: remove o vazio central e aproxima argumento da acao. */
.pitch {
  position: relative;
  background:
    linear-gradient(90deg, rgba(13, 27, 76, .035) 1px, transparent 1px) 0 0 / 25% 100%,
    #f6f5f1;
}

.pitch__in {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  grid-template-areas:
    "title lead"
    "title copy"
    "title action";
  align-items: start;
  justify-items: start;
  gap: .75rem clamp(3rem, 7vw, 7rem);
  max-width: var(--maxw);
  text-align: left;
}

.pitch__in::after {
  content: "";
  position: absolute;
  top: var(--section-space);
  bottom: var(--section-space);
  left: 56%;
  width: 1px;
  background: rgba(13, 27, 76, .16);
}

.pitch__in h2 {
  grid-area: title;
  max-width: 17ch;
  font-size: clamp(2.8rem, 4.6vw, 4.6rem);
  line-height: .96;
  letter-spacing: -.05em;
}

.pitch__lead {
  grid-area: lead;
  margin-top: .2rem;
  color: var(--red-ink);
  font-size: 1.2rem;
}

.pitch__in > p:not(.pitch__lead) {
  grid-area: copy;
  max-width: 46ch;
  margin-top: .25rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.pitch .btn {
  grid-area: action;
  margin-top: .75rem;
}

/* Produtos: cabecalho editorial e CTAs mais faceis de localizar. */
.insumos .sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  max-width: none;
}

.insumos .sec-head h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
}

.insumos .sec-head p {
  margin: 0 0 .25rem;
  font-size: 1.05rem;
}

.trip {
  border-top-color: rgba(13, 27, 76, .75);
}

.icard,
.icard--sal,
.icard--ureia,
.icard--fosfato {
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.38fr);
  min-height: 300px;
}

.icard__media,
.icard--sal .icard__media,
.icard--ureia .icard__media,
.icard--fosfato .icard__media {
  min-height: 300px;
}

.icard__body {
  gap: .9rem clamp(2rem, 4.6vw, 4.5rem);
  padding: clamp(2rem, 3.75vw, 3.5rem);
}

.icard__body h3,
.icard--sal .icard__body h3 {
  max-width: 8ch;
  font-size: clamp(2.35rem, 3.7vw, 3.8rem);
}

.icard__body p {
  max-width: 36ch;
  line-height: 1.58;
}

.icard__cta {
  min-height: 40px;
  margin-top: 1.1rem;
  color: var(--slate);
  font-family: var(--f-body);
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
}

/* Prova de marca: imagens conduzem, texto explica sem competir. */
.brand-evidence__head {
  align-items: end;
  gap: clamp(2.75rem, 7vw, 7rem);
}

.brand-evidence h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .95;
}

.brand-evidence__intro {
  padding-bottom: .35rem;
}

.brand-evidence__intro p {
  font-size: 1rem;
  line-height: 1.62;
}

.brand-evidence__stage {
  margin-top: clamp(2.5rem, 4vw, 3.75rem);
  box-shadow: 0 28px 70px rgba(4, 10, 29, .24);
}

.evidence-media figcaption {
  min-height: 82px;
}

.brand-evidence__note {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
}

/* Confianca: tipografia controlada e lista com ritmo consistente. */
.why__grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, .72fr);
  gap: clamp(3.5rem, 7vw, 7rem);
}

.why .sec-head {
  max-width: 760px;
}

.why .sec-head h2 {
  max-width: 15ch;
  font-size: clamp(3rem, 4.75vw, 4.8rem);
  line-height: .96;
}

.why .sec-head p {
  max-width: 58ch;
  font-size: 1.05rem;
}

.ledger {
  margin-top: 2.35rem;
  counter-reset: trust-item;
}

.ledger li {
  position: relative;
  counter-increment: trust-item;
  padding-block: 1.2rem;
}

.ledger li::after {
  content: "0" counter(trust-item);
  position: absolute;
  top: 1.25rem;
  right: 0;
  color: #98a1b5;
  font-family: var(--f-mono);
  font-size: .66rem;
  letter-spacing: .08em;
}

.ledger h3 {
  padding-right: 2.2rem;
  font-size: 1.05rem;
}

.ledger p {
  max-width: 60ch;
  padding-right: 2.2rem;
  line-height: 1.5;
}

.why__card {
  top: 96px;
  box-shadow: 0 28px 70px rgba(13, 27, 76, .18);
}

.why__card > .why__statement {
  position: relative;
  z-index: 1;
  font-size: clamp(1.75rem, 2.55vw, 2.55rem);
}

/* Avaliacoes: composicao editorial, sem tres caixas identicas. */
.reviews {
  background: #fff;
}

.reviews__head {
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: 2.5rem;
}

.reviews__score {
  justify-content: space-between;
  min-height: 112px;
  padding: 1.15rem 1.35rem;
  color: #fff;
  background: var(--slate);
  border: 0;
  border-bottom: 5px solid var(--oxide);
}

.reviews__score strong {
  color: #fff;
  font-size: 3.2rem;
}

.reviews__count {
  color: #c8cfdf;
}

.reviews__head h2 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: .96;
}

.reviews__grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  counter-reset: review-item;
  border-top: 1px solid var(--slate);
  border-bottom: 1px solid var(--line);
}

.reviews__grid li {
  position: relative;
  counter-increment: review-item;
  align-content: space-between;
  min-height: 250px;
  padding: 2rem clamp(1.5rem, 2.8vw, 2.5rem);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
}

.reviews__grid li:nth-child(1) { grid-column: span 4; }
.reviews__grid li:nth-child(2) { grid-column: span 5; }
.reviews__grid li:nth-child(3) {
  grid-column: span 3;
  border-right: 0;
}

.reviews__grid li::before {
  content: "0" counter(review-item);
  color: var(--red-ink);
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .1em;
}

.reviews__grid blockquote {
  margin-top: 1.5rem;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.55;
}

.reviews__cta a {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}

.reviews__cta .cta-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
  background: var(--slate);
  border-radius: 8px;
  box-shadow: inset 0 -3px 0 var(--oxide);
}

.reviews__cta .icon-premium {
  width: 1rem;
  height: 1rem;
}

/* Processo: uma linha continua conecta as quatro informacoes. */
.steps {
  background: #f6f5f1;
}

.steps .sec-head {
  max-width: 650px;
}

.steps .sec-head h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 4.7vw, 4.7rem);
}

.steps__grid {
  position: relative;
  gap: 0;
  margin-top: 3rem;
}

.steps__grid::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 12.5%;
  left: 2.5%;
  height: 1px;
  background: #aeb6c8;
}

.steps__grid li {
  position: relative;
  min-height: 190px;
  padding: 0 clamp(1rem, 2.3vw, 2.25rem) 1.25rem 0;
}

.steps__num {
  position: relative;
  z-index: 1;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 9px;
  box-shadow: inset 0 -3px 0 var(--oxide), 0 0 0 8px #f6f5f1;
}

.steps__grid h3 {
  margin-top: 1.2rem;
  font-size: 1.1rem;
}

.steps__grid p {
  max-width: 27ch;
  margin-top: .55rem;
}

.steps__cta {
  margin-top: .75rem;
}

/* Perfis: garante leitura imediata, inclusive antes da animacao. */
.js .icp__head .icp__eyebrow,
.js .icp__head h2,
.js .icp__head .icp__intro,
.js .icp__head .icp__eyebrow-text {
  opacity: 1;
  transform: none;
}

.icp__head {
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .7fr);
  gap: clamp(2.75rem, 7vw, 7rem);
}

.icp__head h2 {
  max-width: 17ch;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  line-height: .96;
}

.icp__grid {
  margin-top: clamp(2.75rem, 4.5vw, 4.25rem);
}

.icp__media {
  height: clamp(260px, 22vw, 345px);
}

.icp__body {
  min-height: 260px;
}

/* FAQ: numeracao ajuda o escaneamento e preserva a resposta progressiva. */
.faq .wrap {
  grid-template-columns: minmax(260px, .4fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq .sec-head h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 4.7vw, 4.7rem);
}

.faq__list {
  counter-reset: faq-item;
}

.faq details {
  counter-increment: faq-item;
}

.faq summary {
  min-height: 72px;
  padding-block: 1rem;
}

.faq summary::before {
  content: "0" counter(faq-item);
  flex: none;
  width: 2.2rem;
  color: #8f98aa;
  font-family: var(--f-mono);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.faq__a {
  max-width: 68ch;
  padding: 0 4rem 1.4rem 3.2rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Conversao final e formulario. */
.contact__grid {
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1fr);
  gap: clamp(3.5rem, 7vw, 7rem);
}

.contact .sec-head h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 4.7vw, 4.8rem);
  line-height: .95;
}

.contact__direct {
  max-width: 500px;
  border-left-width: 3px;
}

.form {
  border-top-width: 5px;
  box-shadow: 0 30px 76px rgba(4, 10, 31, .28);
}

.field input,
.field select,
.field textarea {
  min-height: 52px;
}

.form__note {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}

.foot__grid {
  align-items: start;
}

.foot ul a {
  display: inline-block;
  padding-block: .15rem;
}

/* O assistente chama atencao sem abrir e bloquear o conteudo sozinho. */
.sales-assistant[data-attention="true"] .sales-assistant__launcher {
  animation: assistant-attention 1.15s cubic-bezier(.16, 1, .3, 1) 2;
}

.sales-assistant[data-attention="true"] .sales-assistant__launcher-action {
  background: #f4252c;
}

.sales-assistant[data-hero-visible="true"] .sales-assistant__launcher {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.97);
}

.sales-assistant[data-contact-visible="true"][data-open="false"] .sales-assistant__launcher {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.97);
}

@keyframes assistant-attention {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-7px); box-shadow: 0 30px 72px rgba(7, 17, 47, .38); }
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 330px);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 5.5vw, 4rem);
  }

  .why__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .why__card,
  .contact__direct {
    max-width: 660px;
  }
}

@media (max-width: 860px) {
  :root {
    --section-space: 4.75rem;
  }

  .hero {
    min-height: auto;
    max-height: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }

  .hero__col {
    max-width: 700px;
    padding-block: 4.25rem 3rem;
  }

  .hero__portrait {
    justify-self: stretch;
    width: 100%;
    height: 430px;
    min-height: 0;
  }

  .pitch__in {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "lead" "copy" "action";
    gap: .8rem;
    max-width: 760px;
    text-align: center;
  }

  .pitch__in::after {
    display: none;
  }

  .pitch__in > * {
    justify-self: center;
  }

  .pitch__in h2 {
    max-width: 18ch;
  }

  .insumos .sec-head,
  .icp__head {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .insumos .sec-head p {
    margin-top: 0;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .reviews__grid li:nth-child(1),
  .reviews__grid li:nth-child(2),
  .reviews__grid li:nth-child(3) {
    grid-column: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reviews__grid li:last-child {
    border-bottom: 0;
  }

  .faq .wrap {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 1.25rem;
    --section-space: 4rem;
  }

  .nav__in {
    min-height: 68px;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) clamp(8.75rem, 39vw, 9.5rem);
    min-height: calc(100svh - 68px);
    padding-block: 1.5rem 1.35rem;
    gap: 0 .8rem;
  }

  .hero__kicker {
    max-width: 32ch;
    margin-bottom: 1rem;
    font-size: .66rem;
    line-height: 1.4;
  }

  .hero h1 {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(2rem, 8.5vw, 2.2rem);
    line-height: .94;
  }

  .hero__sub {
    max-width: 38ch;
    margin-top: 1.2rem;
    font-size: .87rem;
    line-height: 1.48;
  }

  .hero__cta {
    margin-top: 1.4rem;
  }

  .hero__cta .btn {
    min-height: 50px;
  }

  .hero__note {
    margin-top: 1.75rem;
    font-size: .72rem;
    line-height: 1.5;
    text-align: center;
  }

  .hero__portrait {
    height: clamp(10.5rem, 45vw, 11rem);
    margin-top: 1.75rem;
  }

  .hero__portrait figcaption {
    padding: .48rem .58rem .52rem;
  }

  .proof__list li,
  .proof__list li:first-child,
  .proof__list li:last-child,
  .proof__list li:nth-child(odd) {
    flex-basis: 17.5rem;
    min-height: 82px;
  }

  .pitch {
    background: #f6f5f1;
  }

  .pitch__in h2 {
    max-width: 14ch;
    font-size: clamp(2.15rem, 9.3vw, 2.75rem);
  }

  .pitch__lead {
    margin-top: .35rem;
    font-size: 1.08rem;
  }

  .pitch__in > p:not(.pitch__lead) {
    max-width: 34ch;
    margin-top: .35rem;
    font-size: .96rem;
  }

  .pitch .btn {
    width: min(100%, 19rem);
    margin-top: .65rem;
  }

  .insumos .sec-head,
  .icp__head {
    text-align: center;
  }

  .insumos .sec-head h2,
  .insumos .sec-head p,
  .icp__head h2,
  .icp__intro p {
    margin-inline: auto;
  }

  .insumos .sec-head h2 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 10.5vw, 3rem);
  }

  .insumos .sec-head p {
    max-width: 35ch;
    font-size: .98rem;
  }

  .trip {
    margin-top: 2.25rem;
  }

  .icard,
  .icard--sal,
  .icard--ureia,
  .icard--fosfato {
    grid-template-columns: 1fr;
  }

  .icard__body {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1.55rem .35rem 2.25rem;
    text-align: center;
  }

  .icard__role {
    max-width: 30ch;
    margin-inline: auto;
  }

  .icard__body h3,
  .icard--sal .icard__body h3 {
    max-width: 11ch;
    margin-top: .2rem;
    font-size: 2rem;
  }

  .icard__body p {
    max-width: 34ch;
    margin-top: .5rem;
    font-size: .98rem;
  }

  .icard__cta {
    margin-top: 1.15rem;
  }

  .brand-evidence h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(2.4rem, 10.8vw, 3.05rem);
  }

  .brand-evidence__intro p {
    max-width: 35ch;
  }

  .evidence-media figcaption {
    min-height: 78px;
  }

  .why .sec-head {
    text-align: center;
  }

  .why .sec-head h2,
  .why .sec-head p {
    margin-inline: auto;
  }

  .why .sec-head h2 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 10.5vw, 3rem);
  }

  .why .sec-head p {
    max-width: 35ch;
  }

  .ledger li {
    grid-template-columns: 3.15rem minmax(0, 1fr);
    gap: .95rem;
    text-align: left;
  }

  .ledger li::after {
    top: 1.15rem;
  }

  .why__card > .why__statement {
    font-size: clamp(1.7rem, 7.8vw, 2rem);
  }

  .reviews__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    text-align: center;
  }

  .reviews__score {
    width: 100%;
  }

  .reviews__head h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: 2.3rem;
  }

  .reviews__grid li {
    padding: 1.65rem 1.25rem;
    text-align: left;
  }

  .reviews__cta {
    display: flex;
    justify-content: center;
  }

  .steps .sec-head {
    text-align: center;
  }

  .steps .sec-head h2,
  .steps .sec-head p {
    margin-inline: auto;
  }

  .steps .sec-head h2 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 10.5vw, 3rem);
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 2.5rem 0 0;
  }

  .steps__grid::before {
    top: 1.3rem;
    bottom: 2.75rem;
    left: 1.3rem;
    width: 1px;
    height: auto;
  }

  .steps__grid li {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    grid-template-areas: "num title" "num copy";
    gap: .25rem 1rem;
    min-height: 0;
    padding: 0 0 1.85rem;
    text-align: left;
  }

  .steps__num {
    grid-area: num;
  }

  .steps__grid h3 {
    grid-area: title;
    margin-top: .15rem;
  }

  .steps__grid p {
    grid-area: copy;
    max-width: none;
    margin-top: .1rem;
  }

  .steps__cta {
    display: flex;
    justify-content: center;
    margin-top: .4rem;
  }

  .steps__cta .btn {
    width: 100%;
  }

  .icp__head h2 {
    max-width: 13ch;
    font-size: clamp(2.35rem, 10.5vw, 3rem);
  }

  .icp__grid {
    margin-top: 2.5rem;
  }

  .icp__body {
    min-height: 245px;
  }

  .faq .sec-head {
    text-align: center;
  }

  .faq .sec-head h2 {
    max-width: 10ch;
    margin-inline: auto;
    font-size: clamp(2.35rem, 10.5vw, 3rem);
  }

  .faq summary {
    gap: .7rem;
    min-height: 68px;
    font-size: 1rem;
  }

  .faq summary::before {
    width: 1.8rem;
  }

  .faq__a {
    padding: 0 0 1.3rem 2.5rem;
  }

  .contact__pitch > .sec-head,
  .contact__pitch > p {
    text-align: center;
  }

  .contact .sec-head h2,
  .contact__pitch > p {
    margin-inline: auto;
  }

  .contact .sec-head h2 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 10.5vw, 3rem);
  }

  .contact__direct {
    text-align: center;
  }

  .contact__direct > p {
    margin-inline: auto;
  }

  .form {
    padding: 1.45rem 1.25rem 1.4rem;
  }

  .sales-assistant__launcher {
    width: min(19.5rem, calc(100vw - 1.3rem));
    min-height: 64px;
  }

  .sales-assistant__launcher .sales-assistant__avatar {
    width: 46px;
    height: 46px;
  }

  .sales-assistant__launcher-copy strong {
    font-size: .88rem;
  }

  .sales-assistant__launcher-copy small {
    font-size: .68rem;
  }

  .sales-assistant__launcher-action {
    min-height: 38px;
  }
}

@media (max-width: 370px) {
  .hero__portrait figcaption {
    min-height: 2.5rem;
  }

  .hero__portrait figcaption span {
    display: none;
  }

  .sales-assistant__launcher-action span {
    display: none;
  }

  .sales-assistant__launcher-action {
    width: 40px;
    padding-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sales-assistant[data-attention="true"] .sales-assistant__launcher {
    animation: none;
  }
}

/* Alinha a caixa da logo com a foto no mobile: mesma margem e altura da linha (estica junto) */
@media (max-width: 560px) {
  .hero__endorsement {
    align-self: stretch;
    height: auto;
    margin-top: 1.75rem;
  }
}

/* Mobile: a foto do card deriva ALTURA da largura (nunca o contrário).
   min-height alto + aspect-ratio fazia width=480px estourar o card pela direita. */
@media (max-width: 720px) {
  .icard__media,
  .icard--sal .icard__media,
  .icard--ureia .icard__media,
  .icard--fosfato .icard__media {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

/* ===== acabamento mobile-first (21/jul/2026) ===== */
/* Alvo de toque confortável (~44px) nos links de rodapé e avaliações. */
.foot ul a{display:inline-block;padding-block:10px}
.reviews__cta a{padding-block:6px}

@media (max-width: 960px){
  /* Coluna única sem piso de min-content: mata o estouro lateral em telas <=360px. */
  .contact__grid{grid-template-columns:minmax(0,1fr)}
  .contact__grid>*{min-width:0}
  .form .btn--block{white-space:normal}
}

@media (max-width: 960px) and (min-width: 561px){
  .form__2{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}
}

@media (max-width: 720px){
  /* Piso de legibilidade ~12px nos textos auxiliares. */
  .hero__note{font-size:13px}
  .hero__portrait figcaption span{font-size:11.5px}
  .icard__role{font-size:12px}
  .evidence-media figcaption span{font-size:12px}
  .contact__route,.form__route,.form__time{font-size:12px}
  .foot h3{font-size:12px}
}

/* Hero desktop: a marca recomendada ganha presença sem competir com a proposta comercial. */
@media (min-width: 861px) {
  .hero__endorsement {
    padding-bottom: .35rem;
    border-bottom: 0;
  }

  .hero__endorsement img {
    width: clamp(11rem, 13vw, 12.75rem);
    height: auto;
  }
}

/* O conjunto mistura origem, operação em vídeo e extração: três escalas da mesma cadeia. */
@media (min-width: 961px) {
  .brand-evidence__stage {
    grid-template-columns: minmax(0, 1.16fr) minmax(250px, .78fr) minmax(178px, .44fr);
  }

  .evidence-media--catalog > img {
    object-position: 50% 58%;
  }

  .evidence-media--catalog figcaption {
    padding-inline: .9rem;
  }

  .evidence-media--catalog figcaption strong {
    font-size: .94rem;
  }
}

@media (max-width: 960px) {
  .brand-evidence__stage {
    grid-template-areas:
      "field field"
      "video video"
      "catalog catalog";
  }

  .evidence-media--catalog > img {
    aspect-ratio: 16 / 10;
    object-position: 50% 56%;
  }
}

/* ==================================================================
   LINHA AGROPECUÁRIA
   Uma aplicação própria, separada do portfólio de varejo e food service.
   ================================================================== */
.agro-focus {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 27, 76, .035) 1px, transparent 1px) 0 0 / 25% 100%,
    #e7eaf0;
  border-bottom: 1px solid rgba(13, 27, 76, .12);
}

.agro-focus__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(390px, .93fr);
  min-height: clamp(560px, 52vw, 680px);
  overflow: hidden;
  background: var(--slate);
  box-shadow: 0 30px 78px rgba(4, 10, 29, .2);
}

.agro-focus__visuals {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  align-items: start;
  gap: clamp(.75rem, 1.7vw, 1.4rem);
  padding: clamp(1rem, 2vw, 1.8rem);
  background: #cbd3df;
}

.agro-focus__media {
  position: relative;
  margin: 0;
  min-width: 0;
  background: #f5f6f5;
  box-shadow: 0 18px 38px rgba(4, 10, 29, .18);
}

.agro-focus__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.agro-focus__media--bag {
  justify-self: start;
  width: min(100%, clamp(13rem, 21vw, 19rem));
}

.agro-focus__media--block {
  justify-self: end;
  width: min(100%, clamp(19rem, 37vw, 33rem));
}

.agro-focus__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  color: #fff;
}

.agro-focus__content::before {
  position: absolute;
  top: clamp(2rem, 4vw, 3.5rem);
  right: clamp(2rem, 4vw, 3.5rem);
  width: 3.75rem;
  height: 3px;
  content: "";
  background: var(--oxide);
}

.agro-focus__label {
  margin-bottom: 1.25rem;
  color: #ff9699;
  font-family: var(--f-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.agro-focus h2 {
  max-width: 14ch;
  color: #fff;
  font-size: clamp(2.75rem, 3.6vw, 3.7rem);
  line-height: .95;
  letter-spacing: -.052em;
}

.agro-focus__content p {
  max-width: 43ch;
  margin-top: 1.6rem;
  color: #d4dbea;
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
  line-height: 1.62;
}

.agro-focus__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: .7rem;
  min-height: 50px;
  margin-top: 2rem;
  color: #fff;
  font-family: var(--f-body);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
}

.agro-focus__cta .cta-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #fff;
  background: var(--oxide);
  border-radius: 9px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .16);
  transition: transform .2s ease, background-color .2s ease;
}

.agro-focus__cta .ico {
  width: 1rem;
  height: 1rem;
}

.agro-focus__cta:hover .cta-icon,
.agro-focus__cta:focus-visible .cta-icon {
  background: #fff;
  color: var(--slate);
  transform: translate(3px, -3px);
}

/* ==================================================================
   LINHA SAL POTIGUAR — três produtos com a mesma hierarquia visual.
   Fotos de origem autorizada preservadas sem geração de embalagem/texto.
   ================================================================== */
.sal-showcase__eyebrow {
  display: inline-block;
  margin-bottom: .85rem;
  color: var(--oxide);
  font-family: var(--f-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.retail-showcase {
  position: relative;
  padding-block: clamp(5rem, 8vw, 8rem) clamp(5.5rem, 9vw, 9rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(194, 30, 40, .055), transparent 24rem),
    #f7f5f0;
}

.retail-showcase::before {
  position: absolute;
  top: 0;
  left: max(var(--pad), calc((100% - var(--wrap)) / 2));
  width: clamp(5rem, 10vw, 9rem);
  height: 4px;
  content: "";
  background: var(--oxide);
}

.sal-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: clamp(2.3rem, 4.2vw, 4.5rem);
  overflow: hidden;
  background: var(--slate);
  box-shadow: 0 25px 64px rgba(20, 39, 34, .14);
}

.sal-product {
  position: relative;
  display: grid;
  aspect-ratio: 3 / 4;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--slate);
  isolation: isolate;
}

.sal-product::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 36%, rgba(7, 17, 47, .14) 56%, rgba(7, 17, 47, .9) 100%);
  pointer-events: none;
}

.sal-product img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform .75s cubic-bezier(.16, 1, .3, 1), filter .45s ease;
}

.sal-product:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.035);
}

.sal-product:nth-child(1) img { object-position: 50% 50%; }
.sal-product:nth-child(2) img { object-position: 50% 50%; }
.sal-product:nth-child(3) img { object-position: 50% 50%; }

.sal-product__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(1.15rem, 2.35vw, 2rem);
  color: #fff;
}

.secondary-products__head > span,
.secondary-products article span {
  display: block;
  margin-bottom: .38rem;
  color: #ff8d91;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.sal-product__body h3 {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 2.15rem);
  letter-spacing: -.035em;
}

.sal-product__body p {
  max-width: 30ch;
  margin-top: .55rem;
  color: rgba(255, 255, 255, .82);
  font-size: .94rem;
  line-height: 1.45;
}

.sal-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 50px;
  margin-top: 1.35rem;
  color: var(--slate);
  font-family: var(--f-body);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
}

.sal-showcase__cta .cta-icon {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  color: #fff;
  background: var(--oxide);
  border-radius: 9px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .16);
  transition: transform .2s ease, background-color .2s ease;
}

.sal-showcase__cta .ico { width: .95rem; height: .95rem; }
.sal-showcase__cta:hover .cta-icon,
.sal-showcase__cta:focus-visible .cta-icon { background: var(--slate); transform: translate(3px, -3px); }

.secondary-products {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background: #dfe4dc;
  border-top: 1px solid rgba(20, 39, 34, .12);
}

.secondary-products__head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .65fr);
  gap: 1rem clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.secondary-products__head > span { grid-column: 1; margin-bottom: 0; color: var(--oxide); }

.secondary-products__head h2 {
  grid-column: 1;
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
}

.secondary-products__head p {
  max-width: 38ch;
  margin-bottom: .45rem;
  color: var(--ink-soft);
}

.secondary-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 4vw, 3.75rem);
  background: rgba(20, 39, 34, .25);
  border: 1px solid rgba(20, 39, 34, .25);
}

.secondary-products article {
  display: grid;
  grid-template-columns: minmax(180px, .85fr) minmax(0, 1fr);
  min-width: 0;
  background: var(--paper);
}

.secondary-products article img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
}

.secondary-products article > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 3vw, 2.5rem);
}

.secondary-products article span { color: var(--oxide); }
.secondary-products article h3 { font-size: clamp(1.55rem, 2.2vw, 2.35rem); }

.secondary-products article a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 1.3rem;
  color: var(--slate);
  font-size: .88rem;
  font-weight: 600;
  text-decoration-color: var(--oxide);
  text-decoration-thickness: 2px;
  text-underline-offset: .35rem;
}

@media (max-width: 900px) {
  .agro-focus__panel {
    grid-template-columns: minmax(0, 1.02fr) minmax(330px, .98fr);
    min-height: 540px;
  }

  .agro-focus__content {
    padding: clamp(2.25rem, 5vw, 3.5rem);
  }

  .agro-focus h2 {
    font-size: clamp(2.5rem, 5.5vw, 3.6rem);
  }

  .secondary-products__head { grid-template-columns: 1fr; }
  .secondary-products__head p { margin-top: .4rem; }
  .secondary-products article { grid-template-columns: minmax(145px, .72fr) minmax(0, 1fr); }
}

@media (max-width: 620px) {
  .agro-focus {
    padding-block: 4.25rem;
  }

  .agro-focus__panel {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-inline: calc(var(--pad) * -1);
    box-shadow: 0 22px 55px rgba(4, 10, 29, .18);
  }

  .agro-focus__visuals {
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    align-content: center;
    align-items: end;
    gap: .45rem;
    padding: .75rem var(--pad);
  }

  .agro-focus__media--bag,
  .agro-focus__media--block {
    width: auto;
  }

  .agro-focus__content {
    align-items: center;
    padding: 2.5rem var(--pad) 2.75rem;
    text-align: center;
  }

  .agro-focus__content::before {
    top: 0;
    right: 50%;
    width: 3.5rem;
    transform: translateX(50%);
  }

  .agro-focus__label {
    margin-bottom: 1rem;
  }

  .agro-focus h2 {
    max-width: 17ch;
    margin-inline: auto;
    font-size: clamp(2.15rem, 9vw, 2.5rem);
  }

  .agro-focus__content p {
    max-width: 35ch;
    margin-top: 1.25rem;
    font-size: .96rem;
  }

  .agro-focus__cta {
    align-self: center;
    margin-top: 1.65rem;
  }

  .retail-showcase {
    padding-block: 4.5rem 5rem;
  }

  .retail-showcase::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .retail-showcase .sec-head {
    text-align: center;
  }

  .retail-showcase .sec-head h2,
  .retail-showcase .sec-head p {
    margin-inline: auto;
  }

  .sal-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    margin-inline: calc(var(--pad) * -1);
  }

  .sal-product {
    aspect-ratio: 3 / 4;
  }

  .sal-product:first-child { grid-column: 1 / -1; }

  .sal-product__body { padding: .85rem .65rem; }
  .sal-product__body h3 {
    margin-inline: auto;
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
    text-align: center;
  }

  .sal-product:first-child .sal-product__body { padding: 1.1rem; }
  .sal-product:first-child .sal-product__body h3 { font-size: clamp(1.65rem, 7vw, 2.15rem); }
  .sal-product__body p { display: none; }
  .sal-showcase__cta { display: flex; justify-content: center; width: 100%; margin-top: 1.1rem; }

  .secondary-products { padding: 4.25rem 0; }
  .secondary-products__head { text-align: center; }
  .secondary-products__head h2,
  .secondary-products__head p { margin-inline: auto; }
  .secondary-products__grid { grid-template-columns: 1fr; }
  .secondary-products article { grid-template-columns: 42% minmax(0, 1fr); }
  .secondary-products article img { min-height: 210px; }
  .secondary-products article > div { padding: 1.15rem; }
  .secondary-products article h3 { font-size: 1.5rem; }
  .secondary-products article a { margin-top: .8rem; font-size: .82rem; }
}

/* A imagem de origem é uma salina panorâmica, não uma embalagem em pé. */
.evidence-media--field > img { object-position: 50% 58%; }

@media (max-width: 960px) {
  .evidence-media--field > img {
    aspect-ratio: 16 / 10;
    object-position: 50% 58%;
  }
}

/* ==================================================================
   HERO 03 — composição editorial industrial
   Corrige o alinhamento óptico da marca e transforma o rodapé mobile
   em uma assinatura visual, sem dois cards concorrentes.
   ================================================================== */
@media (min-width: 861px) {
  .hero__endorsement {
    margin-left: -1.45rem;
  }

  .hero__endorsement img {
    width: clamp(11rem, 13vw, 12.75rem);
    height: auto;
    transform: none;
  }

  .hero h1 {
    text-wrap: balance;
  }

  .hero__portrait {
    border: 1px solid rgba(255, 255, 255, .42);
    border-bottom: 4px solid var(--oxide);
    box-shadow: 0 26px 72px rgba(4, 10, 29, .38);
  }

  .hero__portrait figcaption {
    background: rgba(7, 17, 47, .96);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(7, 17, 47, .56) 0%, rgba(7, 17, 47, .76) 35%, rgba(7, 17, 47, .93) 67%, rgba(7, 17, 47, .98) 100%);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) clamp(9.25rem, 44vw, 9.75rem);
    grid-template-areas:
      "title title"
      "sub sub"
      "cta cta"
      "endorsement portrait";
    align-content: start;
    min-height: calc(100svh - 68px);
    gap: 0 .9rem;
    padding-block: clamp(2.8rem, 7vh, 3.6rem) 1.65rem;
  }

  .hero h1 {
    max-width: 13ch;
    margin-inline: auto;
    font-size: clamp(2.15rem, 9.4vw, 2.45rem);
    line-height: .91;
    letter-spacing: -.052em;
  }

  .hero__sub {
    max-width: 35ch;
    margin-top: 1.35rem;
    font-size: .9rem;
    line-height: 1.48;
  }

  .hero__cta {
    gap: .65rem;
    margin-top: 1.6rem;
  }

  .hero__cta .btn {
    min-height: 52px;
    padding-block: .78rem;
    font-size: .9rem;
  }

  .hero__endorsement {
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    height: 13rem;
    margin: 2rem 0 0;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .hero__endorsement img {
    width: clamp(8.6rem, 40vw, 9.8rem);
    height: auto;
    transform: translateX(-.45rem);
  }

  .hero__portrait {
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    height: 13rem;
    min-height: 0;
    margin: 2rem 0 0;
    border: 1px solid rgba(255, 255, 255, .48);
    border-bottom: 4px solid var(--oxide);
    box-shadow: 0 18px 44px rgba(4, 10, 29, .42);
  }

  .hero__portrait img {
    object-position: 50% 7%;
  }

  .hero__portrait figcaption {
    min-height: 3.35rem;
    padding: .55rem .62rem .6rem;
    background: rgba(7, 17, 47, .96);
  }

  .hero__portrait figcaption strong {
    font-size: .82rem;
  }

  .hero__portrait figcaption span {
    display: block;
    font-size: .59rem;
    line-height: 1.22;
  }
}

@media (max-width: 370px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 9.1rem;
    gap: 0 .7rem;
    padding-top: 2.35rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.7vw, 2.2rem);
  }

  .hero__endorsement,
  .hero__portrait {
    height: 12rem;
  }

  .hero__endorsement img {
    width: 8.35rem;
  }
}

/* ==================================================================
   LOGÍSTICA — recorte fotográfico sem contatos impressos na arte.
   O material de campanha vira evidência operacional dentro da página.
   ================================================================== */
.logistics-proof {
  padding-block: clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  color: var(--ink);
  background: #e4e8e4;
  border-block: 1px solid rgba(20, 39, 34, .14);
}

.logistics-proof__head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: end;
  gap: 2rem clamp(3rem, 8vw, 8rem);
}

.logistics-proof__head h2 {
  max-width: 13ch;
  color: var(--slate);
  font-family: var(--f-display);
  font-size: var(--step-4);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.logistics-proof__copy {
  display: grid;
  justify-items: start;
  gap: 1.45rem;
}

.logistics-proof__copy p {
  max-width: 55ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.58;
}

.logistics-proof__copy a {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 44px;
  color: var(--slate);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--oxide);
  text-decoration-thickness: 2px;
  text-underline-offset: .38rem;
}

.logistics-proof__copy a .cta-icon {
  color: #fff;
  background: var(--oxide);
  transition: transform .24s cubic-bezier(.16, 1, .3, 1), background-color .2s ease;
}

.logistics-proof__copy a:hover .cta-icon,
.logistics-proof__copy a:focus-visible .cta-icon {
  background: var(--slate);
  transform: translate(3px, -3px);
}

.logistics-proof__media {
  position: relative;
  margin: clamp(2.5rem, 4.5vw, 4.25rem) 0 0;
  overflow: hidden;
  background: var(--slate);
  box-shadow: 0 26px 68px rgba(20, 39, 34, .17);
}

.logistics-proof__media img {
  display: block;
  width: 100%;
  height: clamp(310px, 31vw, 440px);
  object-fit: cover;
  object-position: 50% 64%;
  filter: saturate(.82) contrast(1.04);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}

.logistics-proof__media:hover img {
  transform: scale(1.018);
}

.logistics-proof__media figcaption {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 64px;
  color: #f2f4f8;
  background: var(--slate);
  border-bottom: 4px solid var(--oxide);
}

.logistics-proof__media figcaption span {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  font-family: var(--f-mono);
  font-size: .73rem;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.logistics-proof__media figcaption span + span {
  justify-content: flex-end;
  border-left: 1px solid rgba(255, 255, 255, .18);
  text-align: right;
}

.logistics-proof__media .logistics-proof__coverage {
  grid-template-columns: 1fr;
}

.logistics-proof__media .logistics-proof__coverage span {
  justify-content: center;
  gap: .7rem;
  text-align: center;
}

.logistics-proof__coverage img {
  flex: none;
  width: 28px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 3px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .24);
}

@media (max-width: 760px) {
  .logistics-proof {
    padding-block: 4.5rem;
  }

  .logistics-proof__head {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    text-align: center;
  }

  .logistics-proof__head h2,
  .logistics-proof__copy p {
    margin-inline: auto;
  }

  .logistics-proof__head h2 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 11vw, 3.2rem);
  }

  .logistics-proof__copy {
    justify-items: center;
  }

  .logistics-proof__copy p {
    max-width: 35ch;
    font-size: .96rem;
  }

  .logistics-proof__media {
    margin-top: 2.25rem;
  }

  .logistics-proof__media img {
    height: auto;
    aspect-ratio: 2.4 / 1;
    object-position: 50% 65%;
  }

  .logistics-proof__media figcaption {
    min-height: 0;
  }

  .logistics-proof__media figcaption span {
    min-height: 58px;
    padding: .8rem .7rem;
    font-size: .64rem;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logistics-proof__media img {
    transition: none;
  }
}

/* ==================================================================
   ARQUITETURA EDITORIAL 04
   Uma seção, uma função: marca, produtos, logística, autoridade,
   avaliações, complementares, perfis e captação.
   ================================================================== */
.section-label {
  display: block;
  margin-bottom: .85rem;
  color: var(--oxide);
  font-family: var(--f-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.brand-evidence .section-label {
  color: #ff9699;
}

.brand-evidence__stage {
  display: block;
  height: auto;
  background: transparent;
}

.brand-evidence__stage .evidence-media--field {
  display: block;
}

.brand-evidence__stage .evidence-media--field > picture {
  display: block;
}

.brand-evidence__stage .evidence-media--field > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 622;
  object-fit: cover;
  object-position: 50% 50%;
}

.brand-evidence__stage .evidence-media--field > picture > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 622;
  object-fit: cover;
  object-position: 50% 50%;
}

.why__profile {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(221, 227, 237, .96)),
    #e8ebf0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.why__grid > div {
  display: contents;
}

.why .sec-head {
  grid-column: 1;
  grid-row: 1;
}

.why .ledger {
  grid-column: 1;
  grid-row: 2;
}

.why__card {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.why__profile::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 47%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 17, 47, .9));
  pointer-events: none;
}

.why__profile > img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: auto;
  height: 96%;
  object-fit: contain;
  transform: translateX(-50%);
}

.why__profile > div {
  position: absolute;
  right: 1.5rem;
  bottom: 1.3rem;
  left: 1.5rem;
  z-index: 1;
  display: grid;
  gap: .2rem;
}

.why__profile span {
  color: #d0d7e6;
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.why__profile strong {
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.secondary-products article p {
  max-width: 29ch;
  margin-top: .65rem;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.5;
}

.foot__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
}

@media (max-width: 960px) {
  .brand-evidence__stage {
    display: block;
  }

  .brand-evidence__stage .evidence-media--field > img {
    aspect-ratio: 16 / 7;
  }

  .brand-evidence__stage .evidence-media--field > picture > img {
    aspect-ratio: 16 / 7;
  }

  .why__card {
    width: min(100%, 620px);
  }

  .why__grid {
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }

  .why .sec-head {
    order: 1;
  }

  .why__card {
    position: relative;
    top: auto;
    order: 2;
    margin-inline: auto;
  }

  .why .ledger {
    order: 3;
    width: 100%;
    margin-top: 2rem;
  }
}

@media (max-width: 620px) {
  .brand-evidence__head {
    text-align: center;
  }

  .brand-evidence__head h2,
  .brand-evidence__intro p {
    margin-inline: auto;
  }

  .brand-evidence__stage {
    margin-inline: calc(var(--pad) * -1);
    border-inline: 0;
  }

  .brand-evidence__stage .evidence-media--field > img {
    aspect-ratio: 16 / 8.5;
    object-position: 58% 50%;
  }

  .brand-evidence__stage .evidence-media--field > picture > img {
    aspect-ratio: 4 / 5;
    object-position: 50% 50%;
  }

  .why .section-label {
    text-align: center;
  }

  .why .sec-head h2 {
    max-width: 16ch;
    font-size: clamp(2.15rem, 9vw, 2.5rem);
  }

  .why__profile {
    min-height: 300px;
  }

  .secondary-products article p {
    font-size: .82rem;
  }

  .foot__grid {
    grid-template-columns: 1fr;
  }

  .sales-assistant {
    right: max(.65rem, env(safe-area-inset-right));
    left: auto;
    width: auto;
  }

  .sales-assistant__launcher {
    grid-template-columns: 42px minmax(0, 1fr) 40px;
    width: min(16rem, calc(100vw - 1.3rem));
    min-height: 58px;
    gap: .5rem;
    padding: .45rem;
  }

  .sales-assistant__launcher .sales-assistant__avatar {
    width: 42px;
    height: 42px;
  }

  .sales-assistant__launcher-copy strong {
    font-size: .82rem;
    white-space: nowrap;
  }

  .sales-assistant__launcher-copy small,
  .sales-assistant__launcher-action span {
    display: none;
  }

  .sales-assistant__launcher-action {
    width: 40px;
    min-height: 40px;
    padding: 0;
  }
}

/* ==================================================================
   HERO 05
   Aplicação, continuidade operacional e prova real de expedição.
   ================================================================== */
.hero {
  display: block;
  min-height: auto;
  max-height: none;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 79% 45%, rgba(52, 84, 148, .17), transparent 36%),
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px),
    #07112f;
  background-repeat: no-repeat, repeat, repeat, no-repeat;
  background-size: 100% 100%, 72px 72px, 72px 72px, auto;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  display: block;
  height: 5px;
  content: "";
  background: #ed1c24;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  align-items: center;
  width: 100%;
  min-height: 760px;
  max-height: none;
  gap: clamp(3rem, 6vw, 6.5rem);
  padding-block: clamp(3.5rem, 6vw, 5.75rem);
}

.hero__col {
  max-width: 750px;
  padding: 0;
}

.hero__kicker {
  display: block;
  max-width: 60ch;
  margin: 0;
  color: #ff7e84;
  font-family: var(--f-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .075em;
  line-height: 1.45;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 14ch;
  margin-top: 0;
  color: #fff;
  font-size: clamp(3.4rem, 5.25vw, 5.4rem);
  line-height: .93;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.hero__sub {
  max-width: 49ch;
  margin-top: 1.45rem;
  color: #d4dbea;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.52;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.85rem;
}

.hero__cta .btn {
  min-height: 58px;
  transition:
    color .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s cubic-bezier(.16, 1, .3, 1);
}

.hero__cta .btn--wa {
  --bg: #ed1c24;
  --fg: #fff;
  --bg-h: #c8141b;
  box-shadow:
    0 15px 38px rgba(237, 28, 36, .22),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.hero__cta .btn--ghost {
  color: #fff;
  background: rgba(7, 17, 47, .52);
  border-color: rgba(255, 255, 255, .48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero__cta .btn:hover,
.hero__cta .btn:focus-visible {
  transform: translateY(-2px);
}

.hero__cta .btn--ghost:hover,
.hero__cta .btn--ghost:focus-visible {
  color: #07112f;
  background: #fff;
  border-color: #fff;
}

.hero__cta .btn:active {
  transform: translateY(0) scale(.985);
}

.hero__proofs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 660px;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid rgba(255, 255, 255, .17);
}

.hero__proofs li {
  position: relative;
  min-height: 48px;
  padding: .92rem 1rem .88rem 1.25rem;
  color: #e0e5ef;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .018em;
  line-height: 1.35;
}

.hero__proofs li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, .17);
}

.hero__proofs li:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.hero__proofs li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 13px;
  content: "";
  background: #ed1c24;
  box-shadow: 0 0 12px rgba(237, 28, 36, .38);
  transform: translateY(-50%);
}

.hero__media {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  min-height: 650px;
}

.hero__operation {
  position: absolute;
  inset: 0 74px 0 0;
  overflow: hidden;
  background: #111a35 url("video-operacao-poster.jpg?v=2026072463") 50% 42% / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .34);
  border-bottom: 5px solid #ed1c24;
  box-shadow:
    0 42px 110px rgba(1, 6, 22, .54),
    0 0 0 1px rgba(113, 143, 201, .08);
}

.hero__operation::before {
  position: absolute;
  inset: 10px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(255, 255, 255, .12);
  pointer-events: none;
}

.hero__operation::after {
  position: absolute;
  inset: 63% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 17, 47, .9));
  pointer-events: none;
}

.hero__operation-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0;
  filter: saturate(1.01) contrast(1.015);
  transition: opacity .35s ease;
}

.hero__operation-video.is-ready {
  opacity: 1;
}

.hero__media-label {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  z-index: 1;
  display: grid;
  gap: .24rem;
}

.hero__media-label span,
.hero__advisor figcaption span {
  color: #ff8f94;
  font-family: var(--f-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.hero__media-label strong {
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.22rem;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.hero__advisor {
  position: absolute;
  right: 0;
  bottom: 2.25rem;
  z-index: 2;
  width: 184px;
  margin: 0;
  overflow: hidden;
  background: #07112f;
  border: 1px solid rgba(255, 255, 255, .4);
  border-bottom: 3px solid #ed1c24;
  box-shadow:
    0 28px 70px rgba(1, 6, 22, .5),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero__advisor img {
  width: 100%;
  height: 216px;
  object-fit: cover;
  object-position: 50% 8%;
  filter: saturate(.94) contrast(1.035);
}

.hero__advisor figcaption {
  display: grid;
  gap: .22rem;
  min-height: 74px;
  padding: .85rem .9rem;
  background: #091538;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero__advisor figcaption strong {
  color: #fff;
  font-family: var(--f-display);
  font-size: .95rem;
  line-height: 1.1;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.hero__advisor figcaption span {
  color: #c6cfdf;
  font-size: .58rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__kicker,
  .hero h1,
  .hero__sub,
  .hero__cta,
  .hero__proofs {
    animation: hero-detail-rise .68s cubic-bezier(.16, 1, .3, 1) both;
  }

  .hero h1 { animation-delay: .06s; }
  .hero__sub { animation-delay: .12s; }
  .hero__cta { animation-delay: .18s; }
  .hero__proofs { animation-delay: .24s; }

  .hero__operation {
    animation: hero-detail-media .9s .1s cubic-bezier(.16, 1, .3, 1) both;
  }

  .hero__advisor {
    animation: hero-detail-advisor .8s .28s cubic-bezier(.16, 1, .3, 1) both;
  }
}

@keyframes hero-detail-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-detail-media {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0) scale(.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-detail-advisor {
  from {
    opacity: 0;
    transform: translate3d(12px, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.retail-proof {
  padding-block: clamp(4.5rem, 8vw, 8rem);
  overflow: hidden;
  background: #07112f;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.retail-proof__media {
  position: relative;
  width: min(100%, 720px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: 0 34px 86px rgba(0, 0, 0, .34);
}

.retail-proof__media::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  left: 16px;
  z-index: -1;
  height: 16px;
  content: "";
  background: #ed1c24;
}

.retail-proof__media img {
  width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
    min-height: 700px;
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.5vw, 4.5rem);
  }

  .hero__media {
    min-height: 580px;
  }

  .hero__operation {
    right: 56px;
  }

  .hero__advisor {
    width: 158px;
  }

  .hero__advisor img {
    height: 184px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    max-height: none;
  }

  .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: none;
    align-content: start;
    min-height: 0;
    gap: 2.25rem;
    padding-block: 2.65rem 3rem;
  }

  .hero__col {
    display: block;
    grid-area: auto;
    max-width: none;
    padding: 0;
    text-align: center;
  }

  .hero__kicker,
  .hero h1,
  .hero__sub,
  .hero__cta,
  .hero__proofs,
  .hero__media {
    grid-area: auto;
  }

  .hero__kicker {
    max-width: 34ch;
    margin-inline: auto;
    font-size: .67rem;
    line-height: 1.5;
  }

  .hero h1 {
    max-width: 13ch;
    margin: 0 auto;
    font-size: clamp(2.55rem, 11vw, 3.35rem);
    line-height: .94;
  }

  .hero__sub {
    max-width: 34ch;
    margin: 1.25rem auto 0;
    font-size: .94rem;
  }

  .hero__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
    margin-top: 1.55rem;
  }

  .hero__cta .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero__proofs {
    width: 100%;
    margin-top: 1.5rem;
    text-align: left;
  }

  .hero__proofs li {
    min-height: 52px;
    padding: .9rem .6rem .85rem 1rem;
    font-size: .7rem;
  }

  .hero__proofs li::before {
    top: 50%;
  }

  .hero__media {
    justify-self: center;
    width: min(100%, 350px);
    min-height: 440px;
  }

  .hero__operation {
    inset: 0 48px 0 0;
  }

  .hero__media-label {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    text-align: left;
  }

  .hero__media-label strong {
    max-width: 10ch;
    font-size: 1rem;
  }

  .hero__advisor {
    right: 0;
    bottom: 1.4rem;
    width: 142px;
  }

  .hero__advisor img {
    height: 158px;
  }

  .hero__advisor figcaption {
    min-height: 68px;
    padding: .72rem .75rem;
    text-align: left;
  }

  .hero__advisor figcaption strong {
    font-size: .82rem;
  }

  .retail-proof {
    padding-block: 3.5rem;
  }

  .retail-proof__media {
    width: min(100%, 520px);
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 2.35rem;
  }

  .hero__proofs li {
    font-size: .66rem;
  }

  .hero__media {
    min-height: 410px;
  }
}

/* Assinatura de marca no hero: a logo substitui texto e mantém o peso visual. */
.hero__endorsement {
  display: flex;
  align-items: center;
  width: fit-content;
  height: auto;
  margin: 0 0 1.4rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.hero__endorsement img {
  display: block;
  width: clamp(11rem, 15vw, 14rem);
  height: auto;
  object-fit: contain;
  transform: none;
}

@media (max-width: 720px) {
  .hero__endorsement {
    justify-content: center;
    width: 100%;
    margin: 0 0 1.2rem;
  }

  .hero__endorsement img {
    width: min(55vw, 12.5rem);
  }
}

/* ==================================================================
   OPERAÇÕES EM VOLUME
   A identificação do comprador vem antes do detalhamento de marca.
   ================================================================== */
.operation-paths {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 8rem) clamp(5.5rem, 9vw, 9rem);
  background:
    radial-gradient(circle at 88% 9%, rgba(194, 30, 40, .07), transparent 25rem),
    linear-gradient(90deg, rgba(13, 27, 76, .045) 1px, transparent 1px) 0 0 / 25% 100%,
    #eceff3;
}

.operation-paths::before {
  position: absolute;
  top: 0;
  right: max(var(--pad), calc((100% - var(--wrap)) / 2));
  width: clamp(5rem, 10vw, 9rem);
  height: 4px;
  content: "";
  background: var(--oxide);
}

.operation-paths .wrap { position: relative; }

.operation-paths__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .52fr);
  gap: 1.5rem clamp(3rem, 10vw, 10rem);
  align-items: center;
}

.operation-paths__head > div { min-width: 0; }

.operation-paths__head .section-label {
  width: fit-content;
  margin: 0 0 1.15rem;
  color: #c9141b;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
}

.operation-paths__head h2 {
  max-width: 18ch;
  color: var(--slate);
  font-size: clamp(3rem, 4.6vw, 4.75rem);
  line-height: .94;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.operation-paths__head > p {
  max-width: 34ch;
  margin: 0;
  color: #68738b;
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.operation-paths__head > p strong {
  display: block;
  margin-top: .42rem;
  color: var(--slate);
  font-size: 1.06em;
  font-weight: 600;
  line-height: 1.4;
}

.operation-paths__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(.75rem, 1.3vw, 1.25rem);
  margin-top: clamp(2.4rem, 4.5vw, 4.5rem);
  background: transparent;
}

.operation-path {
  position: relative;
  grid-column: span 6;
  aspect-ratio: 16 / 9;
  min-width: 0;
  overflow: hidden;
  background: var(--slate);
  border: 1px solid rgba(7, 17, 47, .14);
  box-shadow: 0 24px 58px rgba(7, 17, 47, .1);
  isolation: isolate;
}

.operation-path__media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #d8dee6;
}

.operation-path--livestock .operation-path__media { background: #dfe4d8; }

.operation-path--livestock .operation-path__media img {
  object-position: 50% 62%;
}

.operation-path__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), filter .25s ease;
}

.operation-path__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  padding: clamp(1.55rem, 2.6vw, 2.65rem);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(4, 10, 29, .03) 24%, rgba(4, 10, 29, .34) 53%, rgba(4, 10, 29, .97) 100%);
}

.operation-path__kicker {
  position: absolute;
  top: clamp(1rem, 1.7vw, 1.5rem);
  left: clamp(1rem, 1.7vw, 1.5rem);
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  margin: 0;
  padding: .42rem .68rem .38rem;
  color: #fff;
  background: rgba(194, 30, 40, .94);
  box-shadow: 0 8px 24px rgba(4, 10, 29, .22);
  font-family: var(--f-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .075em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.operation-path__body h3 {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(2.25rem, 3.15vw, 3.45rem);
  line-height: .91;
  letter-spacing: -.06em;
  text-shadow: 0 3px 20px rgba(1, 5, 18, .45);
  text-wrap: balance;
}

.operation-path__body p {
  max-width: 43ch;
  margin-top: .72rem;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(.96rem, 1.02vw, 1rem);
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(1, 5, 18, .5);
  text-wrap: pretty;
}

.operation-path:hover .operation-path__media img {
  filter: saturate(1.03) contrast(1.03);
  transform: scale(1.015);
}

.operation-paths__retail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(.9rem, 1.5vw, 1.25rem);
  padding: clamp(1.8rem, 3.25vw, 2.9rem);
  color: #fff;
  background:
    radial-gradient(circle at 4% 0, rgba(194, 30, 40, .18), transparent 19rem),
    var(--slate);
  box-shadow: 0 18px 45px rgba(7, 17, 47, .12);
}

.operation-paths__retail span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin-bottom: .75rem;
  padding: .42rem .68rem .38rem;
  color: #fff;
  background: rgba(194, 30, 40, .94);
  font-family: var(--f-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .075em;
  line-height: 1;
  text-transform: uppercase;
}

.operation-paths__retail h3 {
  max-width: 16ch;
  color: #fff;
  font-size: clamp(2rem, 2.75vw, 3rem);
  line-height: .94;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.operation-paths__retail > div:last-child {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.operation-paths__retail p {
  max-width: 42ch;
  color: rgba(255, 255, 255, .8);
  font-size: .98rem;
  line-height: 1.5;
}

.operation-paths__retail a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  text-decoration-color: var(--oxide);
  text-decoration-thickness: 2px;
  text-underline-offset: .35rem;
}

.operation-paths__retail a span {
  display: inline;
  min-height: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  font-size: 1rem;
  transform: translateY(-1px);
}

.operation-paths__action {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(1.5rem, 2.6vw, 2.35rem);
}

.operation-paths__action .btn {
  min-height: 58px;
  color: #fff;
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 14px 30px rgba(22, 132, 66, .2);
}

.operation-paths__action .btn:hover,
.operation-paths__action .btn:focus-visible {
  color: #fff;
  background: #1db657;
  border-color: #1db657;
  box-shadow: 0 18px 34px rgba(22, 132, 66, .28);
  transform: translateY(-2px);
}

.operation-paths__action .btn:active { transform: scale(.985); }

/* O quarto perfil foi absorvido na seção de entrada. */
#paraquem .icp__item:nth-child(3) { grid-column: span 12; }

@media (max-width: 860px) {
  .operation-paths__head { grid-template-columns: 1fr; }

  .operation-paths__head h2 { max-width: 20ch; }

  .operation-paths__grid {
    grid-template-columns: 1fr;
  }

  .operation-path {
    grid-column: auto;
    aspect-ratio: auto;
  }

  .operation-path__media {
    position: relative;
    inset: auto;
  }

  .operation-path__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .operation-path__body {
    position: relative;
    inset: auto;
    min-height: 12.5rem;
    background: var(--slate);
  }

  .operation-path__kicker {
    position: static;
    margin-bottom: .85rem;
  }

  #paraquem .icp__item:nth-child(3) { grid-column: auto; }
}

@media (min-width: 861px) {
  .operation-path__body p {
    min-height: 4.5em;
  }
}

@media (max-width: 620px) {
  .operation-paths {
    padding-block: 4.25rem 4.75rem;
    background: #e8ebf0;
  }

  .operation-paths::before { right: 50%; transform: translateX(50%); }

  .operation-paths__head {
    gap: 1.25rem;
    text-align: center;
  }

  .operation-paths__head .section-label { justify-self: center; }

  .operation-paths__head h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(2.55rem, 11.5vw, 3.05rem);
  }

  .operation-paths__head > p {
    max-width: 34ch;
    margin-inline: auto;
    font-size: .97rem;
    line-height: 1.55;
  }

  .operation-paths__grid {
    grid-template-columns: 1fr;
    gap: .9rem;
    margin-inline: calc(var(--pad) * -.35);
  }

  .operation-path--industry,
  .operation-path--livestock {
    grid-column: auto;
  }

  .operation-path {
    aspect-ratio: auto;
    background: var(--slate);
  }

  .operation-path__media {
    position: relative;
    inset: auto;
  }

  .operation-path__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .operation-path__body {
    position: relative;
    inset: auto;
    align-items: center;
    min-height: 12.5rem;
    padding: 1.55rem var(--pad) 1.9rem;
    text-align: center;
    background: var(--slate);
  }

  .operation-path__kicker {
    position: static;
    margin-bottom: .85rem;
  }

  .operation-path__body h3 { max-width: none; }
  .operation-path__body p { margin-top: .7rem; }
  .operation-path__body p { font-size: 1rem; }

  .operation-paths__retail {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-inline: calc(var(--pad) * -.35);
    padding: 2rem var(--pad);
    text-align: center;
  }

  .operation-paths__retail h3,
  .operation-paths__retail p { margin-inline: auto; }

  .operation-paths__retail > div:last-child {
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 0;
  }

  .operation-paths__retail a { justify-content: center; }

  .operation-paths__action { justify-content: center; }

  .operation-paths__action .btn {
    width: 100%;
    min-height: 64px;
    padding: .8rem 1rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .operation-paths__action .btn .ico { flex: 0 0 auto; }
}

/* ==================================================================
   ORIGEM DA MARCA EM PARALLAX
   A salina ocupa toda a seção; o texto permanece dentro da fotografia.
   ================================================================== */
.brand-evidence {
  position: relative;
  isolation: isolate;
  display: grid;
  height: clamp(580px, 68dvh, 700px);
  min-height: 580px;
  padding: 0 !important;
  overflow: hidden;
  background: #07112f;
  place-items: stretch;
}

.brand-evidence__parallax {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.brand-evidence__parallax picture,
.brand-evidence__parallax img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-evidence__parallax img {
  --brand-parallax-scale: 1.025;
  --brand-parallax-start: -7%;
  --brand-parallax-end: 7%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.03) brightness(.94);
  transform: translate3d(0, var(--brand-parallax-y, 0px), 0) scale(var(--brand-parallax-scale));
  will-change: transform;
}

.brand-evidence__logo {
  position: absolute;
  top: clamp(2.5rem, 6vh, 4rem);
  right: clamp(4rem, 14vw, 15rem);
  z-index: 1;
  display: block;
  width: clamp(12.5rem, 15vw, 13.5rem);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(7, 17, 47, .35));
  pointer-events: none;
}

.brand-evidence::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 17, 47, .9) 0%, rgba(7, 17, 47, .7) 40%, rgba(7, 17, 47, .08) 72%, rgba(7, 17, 47, .02) 100%),
    linear-gradient(180deg, rgba(7, 17, 47, .06) 0%, rgba(7, 17, 47, .36) 100%);
}

.brand-evidence::after {
  position: absolute;
  right: clamp(1.5rem, 6vw, 6rem);
  bottom: 0;
  width: clamp(7rem, 16vw, 14rem);
  height: 4px;
  content: "";
  background: var(--oxide);
}

.brand-evidence__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 0;
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.brand-evidence .brand-evidence__head {
  position: relative;
  top: 0;
  display: block;
  width: min(100%, 760px);
  margin: 0;
}

.brand-evidence .section-label {
  color: #ff9a9d;
  text-shadow: 0 2px 14px rgba(1, 6, 22, .45);
}

.brand-evidence h2 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(3.4rem, 5.9vw, 6.1rem);
  line-height: .92;
  letter-spacing: -.065em;
  text-shadow: 0 3px 28px rgba(1, 6, 22, .52);
  text-wrap: balance;
}

@keyframes brand-salina-parallax {
  from { transform: translate3d(0, var(--brand-parallax-start), 0) scale(var(--brand-parallax-scale)); }
  to { transform: translate3d(0, var(--brand-parallax-end), 0) scale(var(--brand-parallax-scale)); }
}

@supports (animation-timeline: view()) {
  .brand-evidence {
    view-timeline-name: --brand-salina;
    view-timeline-axis: block;
  }

  .brand-evidence__parallax img {
    animation-name: brand-salina-parallax;
    animation-duration: 1ms;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: --brand-salina;
    animation-range: entry 0% exit 100%;
  }
}

@media (max-width: 720px) {
  section.brand-evidence {
    height: clamp(548px, 63svh, 580px);
    min-height: 548px;
    padding: 0 !important;
  }

  .brand-evidence__parallax { inset: -7% 0; }

  .brand-evidence__parallax img {
    --brand-parallax-scale: 1.05;
    --brand-parallax-start: -3.75%;
    --brand-parallax-end: 3.75%;
    object-position: center top;
    filter: saturate(.96) contrast(1.02) brightness(.92);
    transform-origin: center top;
  }

  .brand-evidence::before {
    background: linear-gradient(180deg, rgba(7, 17, 47, .2) 0%, rgba(7, 17, 47, .58) 64%, rgba(7, 17, 47, .84) 100%);
  }

  .brand-evidence::after { right: 50%; transform: translateX(50%); }

  .brand-evidence__content {
    align-items: flex-start;
    padding-block: clamp(15rem, 30.5svh, 16.25rem) 2rem;
  }

  .brand-evidence .brand-evidence__head {
    top: 0;
    width: 100%;
    text-align: center;
  }

  .brand-evidence__logo {
    top: clamp(.65rem, 1.7svh, 1rem);
    right: 50%;
    width: clamp(10.25rem, 42vw, 11rem);
    transform: translateX(50%);
  }

  .brand-evidence h2 {
    max-width: 10ch;
    margin-inline: auto;
    font-size: clamp(3.1rem, 15vw, 4.75rem);
  }

}

@media (prefers-reduced-motion: reduce) {
  .brand-evidence__parallax img {
    animation: none;
    transform: scale(var(--brand-parallax-scale));
    will-change: auto;
  }
}

/* ==================================================================
   LOGÍSTICA NACIONAL EM PARALLAX
   Uma única prova visual substitui o antigo bloco com arte publicitária.
   ================================================================== */
section.freight-parallax {
  position: relative;
  isolation: isolate;
  display: grid;
  height: clamp(440px, 54dvh, 570px);
  min-height: 440px;
  padding: 0 !important;
  overflow: hidden;
  color: #fff;
  background: #07112f;
  place-items: stretch;
}

.freight-parallax__media {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.freight-parallax__media picture,
.freight-parallax__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.freight-parallax__media img {
  --freight-parallax-scale: 1.035;
  --freight-parallax-start: -6%;
  --freight-parallax-end: 6%;
  object-fit: cover;
  object-position: 50% 54%;
  filter: saturate(.88) contrast(1.06) brightness(.88);
  transform: translate3d(0, var(--freight-parallax-y, 0px), 0) scale(var(--freight-parallax-scale));
  will-change: transform;
}

.freight-parallax::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 17, 47, .91) 0%, rgba(7, 17, 47, .72) 30%, rgba(7, 17, 47, .22) 55%, rgba(7, 17, 47, .03) 76%),
    linear-gradient(180deg, rgba(7, 17, 47, .08), rgba(7, 17, 47, .42));
}

.freight-parallax::after {
  position: absolute;
  bottom: 0;
  left: clamp(1.5rem, 6vw, 6rem);
  width: clamp(7rem, 15vw, 13rem);
  height: 4px;
  content: "";
  background: var(--oxide);
}

.freight-parallax__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.freight-parallax__copy {
  width: min(100%, 650px);
}

.freight-parallax__copy > span {
  display: block;
  margin-bottom: 1.15rem;
  color: #ffadaf;
  font-family: var(--f-mono);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.freight-parallax__copy h2 {
  max-width: 10ch;
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(3.35rem, 6vw, 6rem);
  line-height: .91;
  letter-spacing: -.06em;
  text-wrap: balance;
  text-shadow: 0 4px 32px rgba(1, 6, 22, .5);
}

.freight-parallax__copy p {
  max-width: 43ch;
  margin-top: 1.45rem;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(.98rem, 1.2vw, 1.1rem);
  line-height: 1.58;
}

@keyframes freight-road-parallax {
  from { transform: translate3d(0, var(--freight-parallax-start), 0) scale(var(--freight-parallax-scale)); }
  to { transform: translate3d(0, var(--freight-parallax-end), 0) scale(var(--freight-parallax-scale)); }
}

@supports (animation-timeline: view()) {
  .freight-parallax {
    view-timeline-name: --freight-road;
    view-timeline-axis: block;
  }

  .freight-parallax__media img {
    animation-name: freight-road-parallax;
    animation-duration: 1ms;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: --freight-road;
    animation-range: entry 0% exit 100%;
  }
}

/* ==================================================================
   GONZAGA JUNIOR — PERFIL EDITORIAL
   Retrato integral, prova objetiva e leitura sem cards aninhados.
   ================================================================== */
section.advisor {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .025), transparent 34%),
    #07112f;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.advisor::before {
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 6vw, 6rem);
  width: clamp(7rem, 15vw, 13rem);
  height: 4px;
  content: "";
  background: var(--oxide);
}

.advisor__grid {
  display: grid;
  grid-template-areas:
    "header portrait"
    "details portrait";
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .72fr);
  grid-template-rows: auto 1fr;
  gap: 2rem clamp(4rem, 8vw, 8.5rem);
  align-items: start;
  padding-block: clamp(5.5rem, 10vw, 8.5rem);
}

.advisor__header {
  grid-area: header;
  align-self: end;
}

.advisor__eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  color: #ff9a9d;
  font-family: var(--f-mono);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.advisor__header h2 {
  max-width: 14ch;
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(3rem, 4.5vw, 4.65rem);
  line-height: .94;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.advisor__details {
  grid-area: details;
  align-self: start;
}

.advisor__lead {
  max-width: 58ch;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.advisor__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(2rem, 4vw, 3.2rem) 0 2.25rem;
  border-block: 1px solid rgba(255, 255, 255, .18);
}

.advisor__facts > div {
  min-width: 0;
  padding: 1.35rem 1.25rem 1.45rem 0;
  text-align: left;
}

.advisor__facts > div + div {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.advisor__facts dt {
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1.75vw, 1.55rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.advisor__facts dd {
  margin-top: .55rem;
  color: rgba(255, 255, 255, .56);
  font-size: .78rem;
  line-height: 1.45;
}

.advisor__details .btn {
  min-width: min(100%, 294px);
}

.advisor__portrait {
  position: relative;
  grid-area: portrait;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #dde2e7;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
}

.advisor__portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .22);
}

.advisor__portrait > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
}

.advisor__portrait figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem 1.2rem;
  background: #f4f2ed;
}

.advisor__portrait figcaption span {
  color: #5d6677;
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.advisor__portrait figcaption strong {
  color: var(--slate);
  font-size: .94rem;
}

@media (max-width: 820px) {
  section.freight-parallax {
    height: clamp(600px, 74svh, 640px) !important;
    min-height: 600px !important;
  }

  .freight-parallax__media { inset: -4% 0; }

  .freight-parallax__media img {
    --freight-parallax-scale: 1.02;
    --freight-parallax-start: -2%;
    --freight-parallax-end: 2%;
    object-position: center top;
    transform-origin: center top;
  }

  .freight-parallax::before {
    background:
      linear-gradient(180deg, rgba(7, 17, 47, .82) 0%, rgba(7, 17, 47, .48) 35%, rgba(7, 17, 47, .02) 68%, rgba(7, 17, 47, .18) 100%);
  }

  .freight-parallax::after {
    right: 50%;
    left: auto;
    transform: translateX(50%);
  }

  .freight-parallax__content {
    align-items: flex-start;
    justify-content: center;
    padding-block: clamp(2.25rem, 5.5svh, 3rem) 2rem;
    text-align: center;
  }

  .freight-parallax__copy { width: 100%; }

  .freight-parallax__copy > span { margin-bottom: .8rem; }

  .freight-parallax__copy h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(2.75rem, 12vw, 3.3rem);
    line-height: .92;
  }

  .freight-parallax__copy p {
    max-width: 34ch;
    margin: .85rem auto 0;
    font-size: .86rem;
    line-height: 1.48;
  }

  .advisor__grid {
    grid-template-areas:
      "header"
      "portrait"
      "details";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2.15rem;
    padding-block: 5rem;
  }

  .advisor__header,
  .advisor__details {
    text-align: center;
  }

  .advisor__header h2 {
    max-width: 10ch;
    margin-inline: auto;
    font-size: clamp(2.85rem, 12vw, 4rem);
  }

  .advisor__lead {
    max-width: 38ch;
    margin-inline: auto;
    font-size: .98rem;
  }

  .advisor__portrait {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .advisor__facts {
    grid-template-columns: 1fr;
    width: min(100%, 430px);
    margin: 2rem auto;
  }

  .advisor__facts > div,
  .advisor__facts > div + div {
    padding: 1.15rem 0;
    text-align: center;
    border-left: 0;
  }

  .advisor__facts > div + div {
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .advisor__facts dt { font-size: 1.4rem; }

  .advisor__details .btn {
    width: min(100%, 430px);
    min-height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .freight-parallax__media img {
    animation: none;
    transform: scale(var(--freight-parallax-scale));
    will-change: auto;
  }
}
