:root {
  --orange: #e69d12;
  --orange-strong: #cf8200;
  --orange-soft: #f4d79d;
  --graphite: #5a545d;
  --graphite-dark: #29272b;
  --ink: #272529;
  --muted: #6f6b70;
  --steel: #c7c9c9;
  --steel-light: #eef0ef;
  --cream: #f6f2e9;
  --cream-deep: #ece5d7;
  --white: #fff;
  --line: rgba(39, 37, 41, .13);
  --shadow-sm: 0 10px 30px rgba(39, 37, 41, .09);
  --shadow-lg: 0 28px 70px rgba(39, 37, 41, .16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: min(1180px, calc(100% - 40px));
  --font-display: "Trebuchet MS", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section-cream { background: var(--cream); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--graphite-dark);
  color: var(--white);
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-strong);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.7rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.25rem, 4vw, 4.2rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.3rem, 2vw, 1.8rem); }
p { color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.round-button:focus-visible,
.menu-button:focus-visible,
.menu-close:focus-visible,
.modal-close:focus-visible,
.accordion-button:focus-visible,
.product-tab:focus-visible,
.gallery-item:focus-visible,
.floating-quote:focus-visible {
  outline: 3px solid rgba(230, 157, 18, .42);
  outline-offset: 3px;
}
.button-primary {
  background: var(--orange);
  color: var(--graphite-dark);
  box-shadow: 0 12px 28px rgba(207, 130, 0, .22);
}
.button-primary:hover { background: #f0aa22; box-shadow: 0 16px 34px rgba(207, 130, 0, .29); }
.button-ghost {
  border-color: rgba(255,255,255,.46);
  color: var(--white);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.button-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.7); }
.button-ghost-dark {
  border-color: var(--line);
  background: rgba(255,255,255,.65);
  color: var(--graphite-dark);
}
.button-ghost-dark:hover { background: var(--white); border-color: rgba(39,37,41,.25); }
.button-outline {
  border-color: rgba(39,37,41,.22);
  background: transparent;
  color: var(--graphite-dark);
}
.button-outline:hover { border-color: var(--orange); color: var(--orange-strong); }
.button-small { min-height: 44px; padding: 11px 18px; font-size: .88rem; }
.button-full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--graphite-dark);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.text-link span { color: var(--orange-strong); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-color: rgba(39,37,41,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 28px rgba(39,37,41,.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}
.brand { flex: 0 0 auto; width: 190px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  color: var(--graphite-dark);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-button {
  display: none;
  width: 45px;
  height: 45px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  cursor: pointer;
}
.menu-button span { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--graphite-dark); }

.mobile-menu {
  position: fixed;
  z-index: 210;
  top: 0;
  right: 0;
  width: min(420px, 91vw);
  height: 100dvh;
  padding: 26px;
  background: var(--cream);
  box-shadow: -20px 0 50px rgba(39,37,41,.2);
  transform: translateX(105%);
  transition: transform .28s ease;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.menu-backdrop,
.modal-backdrop {
  position: fixed;
  z-index: 200;
  inset: 0;
  background: rgba(28,27,29,.58);
  backdrop-filter: blur(4px);
}
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.mobile-menu-top img { width: 180px; }
.menu-close,
.modal-close,
.lightbox-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--graphite-dark);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}
.mobile-menu nav { display: grid; padding: 24px 0; }
.mobile-menu nav a { padding: 13px 0; border-bottom: 1px solid rgba(39,37,41,.08); font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; text-decoration: none; }
.mobile-menu-footer { margin-top: auto; padding-top: 20px; }
.mobile-menu-footer p { margin-bottom: 18px; }

.hero {
  position: relative;
  min-height: 840px;
  padding: 146px 0 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(230,157,18,.22), transparent 28%),
    linear-gradient(135deg, #6a646d 0%, #4e4951 46%, #29272b 100%);
  color: var(--white);
}
.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -28vw;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero-wheat {
  position: absolute;
  top: 55px;
  right: -60px;
  width: 360px;
  opacity: .08;
  transform: rotate(7deg);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr); align-items: center; gap: 70px; }
.hero-copy { padding-top: 22px; }
.hero .eyebrow { color: #ffc75a; }
.hero h1 { max-width: 760px; }
.hero-lead { max-width: 670px; margin-bottom: 30px; color: rgba(255,255,255,.78); font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 34px; color: rgba(255,255,255,.77); font-size: .89rem; font-weight: 700; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { color: var(--orange); font-style: normal; }
.hero-media { position: relative; min-height: 580px; }
.hero-product-card {
  position: absolute;
  inset: 0 28px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 42px;
  background: #ddd;
  box-shadow: 0 35px 90px rgba(0,0,0,.3);
  transform: rotate(1.7deg);
}
.hero-product-card::before {
  position: absolute;
  z-index: 2;
  top: -50%;
  left: -35%;
  width: 34%;
  height: 210%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  content: "";
  transform: rotate(14deg);
  animation: metalShine 7s ease-in-out infinite;
}
.hero-product-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero-product-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(25,24,27,.72), transparent 48%); }
.hero-product-caption { position: absolute; z-index: 3; right: 30px; bottom: 28px; left: 30px; display: grid; gap: 3px; }
.hero-product-caption span { color: #ffc75a; font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero-product-caption strong { font-family: var(--font-display); font-size: clamp(1.45rem, 2.5vw, 2.25rem); }
.hero-badge {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 145px;
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.93);
  color: var(--graphite-dark);
  box-shadow: var(--shadow-lg);
}
.hero-badge strong { color: var(--orange-strong); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-badge span { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; }
.hero-badge-top { top: 44px; left: -30px; transform: rotate(-4deg); }
.hero-badge-bottom { right: -5px; bottom: 52px; transform: rotate(3deg); }
.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(14px);
}
.hero-stats article { display: grid; gap: 3px; padding: 22px 24px; border-right: 1px solid rgba(255,255,255,.13); }
.hero-stats article:last-child { border-right: 0; }
.hero-stats strong { color: #ffc75a; font-family: var(--font-display); font-size: 1.28rem; }
.hero-stats span { color: rgba(255,255,255,.72); font-size: .82rem; }
@keyframes metalShine { 0%, 22% { transform: translateX(-160%) rotate(14deg); } 50%, 100% { transform: translateX(560%) rotate(14deg); } }

.industry-ribbon { overflow: hidden; background: var(--orange); color: var(--graphite-dark); }
.industry-ribbon-track { display: flex; width: max-content; align-items: center; gap: 25px; padding: 13px 0; font-family: var(--font-display); font-size: .96rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; animation: ribbonMove 30s linear infinite; }
.industry-ribbon-track i { opacity: .55; font-size: .6rem; }
@keyframes ribbonMove { to { transform: translateX(-50%); } }

.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); align-items: center; gap: 90px; }
.about-visual { position: relative; min-height: 630px; }
.about-main-image,
.about-small-image { position: absolute; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: #ddd; box-shadow: var(--shadow-lg); }
.about-main-image { inset: 20px 50px 80px 0; }
.about-main-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-small-image { right: 0; bottom: 0; width: 42%; height: 46%; border: 9px solid var(--cream); border-radius: 28px; }
.about-small-image img { width: 100%; height: 100%; object-fit: cover; }
.about-seal {
  position: absolute;
  top: 0;
  right: 4px;
  display: grid;
  width: 155px;
  height: 155px;
  place-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--graphite-dark);
  text-align: center;
  transform: rotate(7deg);
  box-shadow: var(--shadow-sm);
}
.about-seal span { font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.about-seal strong { font-family: var(--font-display); font-size: 1.55rem; line-height: 1.1; }
.section-lead { color: var(--graphite-dark); font-size: 1.2rem; font-weight: 700; }
.about-copy > p { max-width: 660px; }
.about-points { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid var(--line); }
.about-points article { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.point-number { color: var(--orange-strong); font-family: var(--font-display); font-size: .85rem; font-weight: 800; }
.about-points strong { display: block; margin-bottom: 2px; color: var(--graphite-dark); }
.about-points p { margin: 0; font-size: .9rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.section-heading > div { max-width: 730px; }
.section-heading > p { max-width: 410px; margin-bottom: 4px; }

.products { background: linear-gradient(to bottom, #fff 0%, #fff 76%, var(--cream) 76%, var(--cream) 100%); }
.product-explorer { overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: var(--white); box-shadow: var(--shadow-sm); }
.product-tabs { display: flex; gap: 8px; padding: 14px; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: none; }
.product-tabs::-webkit-scrollbar { display: none; }
.product-tab { flex: 0 0 auto; min-height: 44px; padding: 11px 18px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font-weight: 800; }
.product-tab.is-active { background: var(--graphite); color: var(--white); }
.product-panels { min-height: 520px; }
.product-panel { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); align-items: stretch; min-height: 520px; }
.product-panel-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 58px; }
.panel-kicker { margin-bottom: 13px; color: var(--orange-strong); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-panel-copy h3 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
.product-panel-copy > p { max-width: 570px; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; margin: 18px 0 30px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 20px; color: var(--graphite-dark); font-size: .9rem; font-weight: 650; }
.feature-list li::before { position: absolute; top: .52em; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); content: ""; }
.product-panel-image { position: relative; min-height: 520px; margin: 0; overflow: hidden; background: var(--steel-light); }
.product-panel-image::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,27,29,.7), transparent 50%); content: ""; }
.product-panel-image img { width: 100%; height: 100%; object-fit: cover; }
.product-panel-image figcaption { position: absolute; z-index: 2; right: 28px; bottom: 25px; left: 28px; color: var(--white); font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; }
.product-panel-image-catalog img { object-fit: contain; padding: 36px; background: var(--cream); }
.product-panel-image-wide img { object-fit: cover; object-position: 55% center; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.category-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.88); }
.category-icon { display: grid; width: 48px; height: 48px; margin-bottom: 22px; place-items: center; border-radius: 16px; background: var(--orange); color: var(--graphite-dark); font-size: 1.4rem; font-weight: 900; }
.category-grid h3 { font-size: 1.25rem; }
.category-grid p { margin-bottom: 0; font-size: .9rem; }

/* ===== Seção História / empresa familiar ===== */
.history-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 34px; align-items: start; }
.history-video { margin: 0; }
.history-video video { width: 100%; height: auto; aspect-ratio: 16 / 9; display: block; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); background: var(--graphite-dark); object-fit: cover; }
.history-video figcaption,
.history-family figcaption { margin-top: 14px; color: var(--muted); font-size: 1rem; }
.history-aside { display: flex; flex-direction: column; gap: 24px; }
.history-family { margin: 0; }
.history-family img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.history-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.history-facts > div { padding: 18px 16px; border-radius: var(--radius-sm); background: var(--cream); border: 1px solid var(--line); }
.history-facts strong { display: block; margin-bottom: 2px; color: var(--orange-strong); font-family: var(--font-display); font-size: 1.5rem; line-height: 1.1; }
.history-facts span { color: var(--muted); font-size: .9rem; }
@media (max-width: 880px) { .history-grid { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 520px) { .history-facts { grid-template-columns: 1fr; } }

.section-dark { position: relative; overflow: hidden; background: var(--graphite-dark); color: var(--white); }
.section-dark::before { position: absolute; top: -220px; right: -180px; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.02); }
.section-heading-light { position: relative; }
.section-heading-light h2 { color: var(--white); }
.section-heading-light > p { color: rgba(255,255,255,.63); }
.section-heading-light .eyebrow { color: #ffc75a; }
.benefit-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit-card { min-height: 300px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); transition: transform .25s ease, background .25s ease; }
.benefit-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.benefit-card > span { display: inline-flex; margin-bottom: 60px; color: #ffc75a; font-family: var(--font-display); font-weight: 800; }
.benefit-card h3 { color: var(--white); font-size: 1.55rem; }
.benefit-card p { margin-bottom: 0; color: rgba(255,255,255,.62); font-size: .92rem; }

.gallery-section { overflow: hidden; }
.gallery-controls { display: flex; gap: 10px; }
.round-button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; font-size: 1.25rem; transition: background .2s ease, color .2s ease, transform .2s ease; }
.round-button:hover { background: var(--graphite); color: var(--white); transform: translateY(-2px); }
.gallery-track { display: flex; gap: 16px; padding: 4px 2px 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item { position: relative; flex: 0 0 clamp(250px, 29vw, 380px); height: 500px; padding: 0; overflow: hidden; border: 0; border-radius: 28px; background: var(--steel-light); cursor: zoom-in; scroll-snap-align: start; box-shadow: var(--shadow-sm); }
.gallery-item-wide { flex-basis: clamp(380px, 46vw, 620px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gallery-item-wide img { object-position: center; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(25,24,27,.78), transparent 55%); content: ""; }
.gallery-item > span { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; display: grid; color: var(--white); text-align: left; }
.gallery-item strong { font-family: var(--font-display); font-size: 1.35rem; }
.gallery-item small { color: rgba(255,255,255,.7); }
.gallery-progress { height: 3px; overflow: hidden; border-radius: 3px; background: var(--cream-deep); }
.gallery-progress span { display: block; width: 100%; height: 100%; background: var(--orange); transform: scaleX(.2); transform-origin: left; transition: transform .2s ease; }

.process-section { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 90px; }
.process-intro { position: sticky; top: 130px; align-self: start; }
.process-intro p { max-width: 500px; }
.process-steps { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-steps li { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-steps li > span { color: var(--orange-strong); font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }
.process-steps strong { display: block; margin-bottom: 7px; font-family: var(--font-display); font-size: 1.6rem; }
.process-steps p { margin: 0; }

.catalog-section { background: linear-gradient(135deg, #efebe2, #fff 72%); }
.catalog-card { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); align-items: center; gap: 70px; padding: 48px; border: 1px solid var(--line); border-radius: 36px; background: rgba(255,255,255,.8); box-shadow: var(--shadow-lg); }
.catalog-cover { position: relative; min-height: 390px; padding: 26px; overflow: hidden; border-radius: 26px; background: var(--graphite); }
.catalog-cover img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,.25)); }
.catalog-file-label { position: absolute; right: 20px; bottom: 18px; padding: 8px 13px; border-radius: 999px; background: var(--orange); color: var(--graphite-dark); font-size: .72rem; font-weight: 800; }
.catalog-copy p { max-width: 630px; }
.catalog-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 14px; }
.catalog-copy small { color: var(--muted); }

.faq-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 90px; }
.faq-intro p { max-width: 460px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { display: grid; grid-template-columns: 1fr 36px; width: 100%; align-items: center; gap: 18px; padding: 22px 0; border: 0; background: transparent; cursor: pointer; color: var(--graphite-dark); text-align: left; }
.accordion-button span { font-family: var(--font-display); font-size: 1.18rem; font-weight: 800; }
.accordion-button i { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--orange-strong); font-style: normal; font-size: 1.25rem; transition: transform .22s ease, background .22s ease; }
.accordion-button[aria-expanded="true"] i { background: var(--orange); color: var(--graphite-dark); transform: rotate(45deg); }
.accordion-panel { padding: 0 52px 22px 0; }
.accordion-panel p { margin: 0; }

.contact-section { position: relative; overflow: hidden; padding: 105px 0; background: var(--graphite); color: var(--white); }
.contact-section::before { position: absolute; top: -40px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(230,157,18,.24), transparent 68%); content: ""; }
.contact-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: 80px; }
.contact-copy h2 { color: var(--white); }
.contact-copy p { max-width: 600px; color: rgba(255,255,255,.68); }
.contact-copy .eyebrow { color: #ffc75a; }
.contact-cards { display: grid; gap: 12px; }
.contact-card { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.06); color: var(--white); text-decoration: none; transition: transform .2s ease, background .2s ease; }
.contact-card:hover { transform: translateX(5px); background: rgba(255,255,255,.1); }
.contact-card-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 16px; background: var(--orange); color: var(--graphite-dark); font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; }
.contact-card strong { display: block; }
.contact-card p { margin: 2px 0 0; color: rgba(255,255,255,.62); font-size: .88rem; }
.contact-card > i { color: #ffc75a; font-style: normal; font-size: 1.2rem; }
.contact-card-whatsapp { border-color: rgba(37,211,102,.4); background: rgba(37,211,102,.1); }
.contact-card-whatsapp:hover { background: rgba(37,211,102,.16); }
.contact-card-whatsapp .contact-card-icon { background: #25d366; color: #0b3d24; }

.site-footer { padding: 66px 0 22px; background: #1f1e21; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .8fr .8fr 1fr; gap: 58px; padding-bottom: 48px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 9px; }
.footer-grid strong { margin-bottom: 6px; color: var(--orange); }
.footer-grid a { color: rgba(255,255,255,.68); font-size: .9rem; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-grid p { margin: 0; color: rgba(255,255,255,.57); font-size: .9rem; }
.footer-brand img { width: 220px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { max-width: 310px; margin-top: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.5); font-size: .78rem; text-decoration: none; }

.floating-quote { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 8px; min-height: 52px; padding: 13px 18px; border: 0; border-radius: 999px; background: var(--orange); color: var(--graphite-dark); box-shadow: 0 16px 40px rgba(39,37,41,.24); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.floating-quote:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(39,37,41,.3); }
.floating-quote span { font-size: 1.1rem; }

.quote-modal {
  position: fixed;
  z-index: 220;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  padding: 30px;
  overflow-y: auto;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
  opacity: 0;
  transform: translate(-50%, -46%) scale(.98);
  transition: opacity .22s ease, transform .22s ease;
}
.quote-modal.is-open { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.modal-top { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.modal-top h2 { margin-bottom: 0; font-size: clamp(2rem, 5vw, 3.1rem); }
.quote-modal form { display: grid; gap: 17px; padding-top: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.quote-modal label { display: grid; gap: 7px; color: var(--graphite-dark); font-size: .82rem; font-weight: 800; }
.quote-modal input,
.quote-modal select,
.quote-modal textarea,
.quote-result textarea {
  width: 100%;
  border: 1px solid rgba(39,37,41,.16);
  border-radius: 13px;
  background: #fbfaf7;
  color: var(--ink);
  outline: 0;
}
.quote-modal input,
.quote-modal select { min-height: 48px; padding: 10px 13px; }
.quote-modal textarea,
.quote-result textarea { padding: 12px 13px; resize: vertical; }
.quote-modal input:focus,
.quote-modal select:focus,
.quote-modal textarea:focus,
.quote-result textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(230,157,18,.15); }
.quote-result { padding-top: 24px; }
.quote-result > strong { display: block; margin-bottom: 4px; font-family: var(--font-display); font-size: 1.45rem; }
.quote-result p { font-size: .9rem; }
.quote-result textarea { background: var(--cream); }
.quote-result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.copy-status { display: block; min-height: 24px; margin-top: 8px; color: var(--orange-strong); font-size: .86rem; font-weight: 800; }

.lightbox { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 60px 22px 22px; background: rgba(15,14,16,.92); opacity: 0; transition: opacity .2s ease; }
.lightbox.is-open { opacity: 1; }
.lightbox img { max-width: min(1200px, 96vw); max-height: 86vh; border-radius: 18px; object-fit: contain; box-shadow: 0 25px 80px rgba(0,0,0,.46); }
.lightbox-close { position: absolute; top: 16px; right: 20px; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.12); color: var(--white); }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: .83rem; }
  .hero-grid { gap: 42px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats article:nth-child(2) { border-right: 0; }
  .hero-stats article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .about-grid, .contact-grid { gap: 55px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-card { gap: 40px; }
}

@media (max-width: 920px) {
  :root { --container: min(100% - 30px, 760px); }
  .section { padding: 82px 0; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .header-actions .button { display: none; }
  .brand { width: 170px; }
  .hero { min-height: auto; padding-top: 126px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-media { min-height: 620px; }
  .hero-product-card { inset: 0 48px 0 48px; }
  .hero-badge-top { left: 14px; }
  .hero-badge-bottom { right: 10px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 600px; }
  .section-heading { align-items: start; flex-direction: column; gap: 12px; }
  .section-heading > p { max-width: 650px; }
  .product-panel { grid-template-columns: 1fr; }
  .product-panel-copy { padding: 42px; }
  .product-panel-image { min-height: 440px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .faq-grid { grid-template-columns: 1fr; gap: 52px; }
  .process-intro { position: static; }
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-cover { min-height: 330px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 24px); }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.3rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3.3rem); }
  .header-inner { min-height: 72px; }
  .brand { width: 150px; }
  .hero { padding-top: 112px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 8px; }
  .hero-media { min-height: 500px; }
  .hero-product-card { inset: 0 15px; border-radius: 28px; }
  .hero-product-caption { right: 20px; bottom: 20px; left: 20px; }
  .hero-badge { min-width: 126px; padding: 13px 15px; }
  .hero-badge-top { top: 24px; left: 0; }
  .hero-badge-bottom { right: 0; bottom: 24px; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 38px; }
  .hero-stats article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero-stats article:last-child { border-bottom: 0; }
  .about-visual { min-height: 500px; }
  .about-main-image { inset: 10px 20px 68px 0; }
  .about-small-image { width: 44%; height: 40%; border-width: 6px; }
  .about-seal { right: -4px; width: 125px; height: 125px; }
  .about-seal strong { font-size: 1.25rem; }
  .product-tabs { padding: 10px; }
  .product-panel-copy { padding: 30px 22px; }
  .product-panel-image { min-height: 390px; }
  .feature-list { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .benefit-card > span { margin-bottom: 34px; }
  .gallery-item { flex-basis: 82vw; height: 430px; }
  .gallery-item-wide { flex-basis: 88vw; }
  .gallery-controls { display: none; }
  .process-steps li { grid-template-columns: 50px 1fr; }
  .catalog-card { gap: 30px; padding: 20px; border-radius: 26px; }
  .catalog-cover { min-height: 250px; padding: 16px; }
  .catalog-actions { display: grid; }
  .catalog-actions .button { width: 100%; }
  .faq-grid { gap: 36px; }
  .contact-section { padding: 76px 0; }
  .contact-card { grid-template-columns: 46px 1fr auto; padding: 15px; }
  .contact-card-icon { width: 42px; height: 42px; border-radius: 13px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-quote { right: 12px; bottom: 12px; min-height: 48px; padding: 12px 15px; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-modal { padding: 22px; }
  .quote-result-actions { display: grid; }
  .quote-result-actions .button { width: 100%; }
}

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

/* Internal pages */
.internal-page { background: var(--cream); }
.internal-header { position: relative; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); }
.internal-header .header-inner { min-height: 82px; }
.internal-main { padding: 140px 0 90px; }
.legal-card { max-width: 880px; margin-inline: auto; padding: clamp(28px, 5vw, 64px); border: 1px solid var(--line); border-radius: 32px; background: var(--white); box-shadow: var(--shadow-sm); }
.legal-card h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.legal-card h2 { margin-top: 34px; font-size: 1.55rem; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card a { color: var(--orange-strong); font-weight: 800; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.error-card { min-height: 58vh; display: grid; place-content: center; text-align: center; }
.error-code { color: var(--orange); font-family: var(--font-display); font-size: clamp(5rem, 20vw, 11rem); font-weight: 900; line-height: .8; }
@media (max-width: 640px) { .internal-main { padding-top: 110px; } .legal-card { border-radius: 22px; } }

/* =========================================================
   FARNESE 2.0 — ajustes de conteúdo, ritmo e responsividade
   ========================================================= */
:root { --orange-strong: #9b5f00; }

.section { padding: 76px 0; }
.section-heading { margin-bottom: 34px; }
h1 { font-size: clamp(3rem, 5.35vw, 5.15rem); }
h2 { font-size: clamp(2.2rem, 3.6vw, 3.75rem); }

.site-header:not(.is-scrolled) .brand img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,.18));
}
.site-header:not(.is-scrolled) .desktop-nav a { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.2); }
.site-header:not(.is-scrolled) .menu-button { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.1); }
.site-header:not(.is-scrolled) .menu-button span { background: #fff; }
.brand img { transition: filter .25s ease; }

.hero { min-height: 760px; padding: 132px 0 32px; }
.hero-grid { gap: 58px; }
.hero-media { min-height: 535px; }
.hero-stats { margin-top: 38px; }
.hero-stats article { padding: 18px 20px; }
.hero-stats strong { font-size: 1.12rem; }
.industry-ribbon-track { padding: 10px 0; }

.about-grid { gap: 68px; }
.about-visual { min-height: 545px; }
.about-main-image { inset: 15px 44px 66px 0; }
.about-copy .about-points { margin-top: 22px; }
.about-points article { padding: 14px 0; }

.product-panels,
.product-panel { min-height: 480px; }
.product-panel-copy { padding: 44px 48px; }
.product-panel-image { min-height: 480px; }
.product-panel-copy h3 { font-size: clamp(1.9rem, 3vw, 3rem); }
.feature-list { margin: 14px 0 24px; }
.panel-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
.category-grid { margin-top: 20px; }
.category-grid article { padding: 23px; }
.category-icon { margin-bottom: 16px; }

.product-panel-image-layered .product-inset {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 72px;
  width: 34%;
  height: 34%;
  padding: 13px;
  border: 7px solid rgba(255,255,255,.9);
  border-radius: 20px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 16px 38px rgba(0,0,0,.2);
}

.product-panel-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 480px;
  margin: 0;
  padding: 28px 28px 68px;
  overflow: hidden;
  background: linear-gradient(135deg, #ede9df, #f9f7f1);
}
.product-panel-mosaic span {
  display: grid;
  min-height: 150px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(39,37,41,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
}
.product-panel-mosaic img { width: 100%; height: 100%; padding: 15px; object-fit: contain; }
.product-panel-mosaic figcaption {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  color: var(--graphite-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.history-section { background: #fff; }
.history-videos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.history-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.history-video-card video { display: block; width: 100%; aspect-ratio: 16 / 9; background: var(--graphite-dark); object-fit: cover; }
.history-video-copy { padding: 22px 24px 24px; }
.history-video-copy > span { display: block; margin-bottom: 8px; color: var(--orange-strong); font-size: .74rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.history-video-copy h3 { margin-bottom: 8px; font-size: 1.45rem; }
.history-video-copy p { margin-bottom: 0; font-size: .92rem; }
.history-facts { margin-top: 20px; }
.history-facts > div { padding: 17px 18px; }
.history-facts strong { font-size: 1.28rem; }

.benefit-card { min-height: 255px; padding: 26px; }
.benefit-card > span { margin-bottom: 38px; }


.gallery-item { height: 440px; }
.gallery-item-product { background: #fff; }
.gallery-item-product img { padding: 46px; object-fit: contain; }
.gallery-item-product::after { background: linear-gradient(to top, rgba(25,24,27,.78), transparent 48%); }

.process-grid,
.faq-grid { gap: 68px; }
.process-steps li { padding: 24px 0; }
.catalog-card { gap: 48px; padding: 38px; }
.catalog-cover { min-height: 340px; }
.contact-section { padding: 76px 0; }
.contact-grid { gap: 62px; }
.site-footer { padding: 52px 0 20px; }
.footer-grid { padding-bottom: 38px; }

.floating-quote { transition: opacity .22s ease, visibility .22s ease, transform .22s ease, box-shadow .2s ease; }
.floating-quote.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(16px); }

@media (max-width: 1100px) {
  .hero { padding-top: 124px; }
  .hero-media { min-height: 510px; }
}

@media (max-width: 920px) {
  .section { padding: 58px 0; }
  .hero { padding-top: 112px; }
  .hero-media { min-height: 570px; }
  .about-grid { gap: 42px; }
  .about-visual { min-height: 550px; }
  .product-panel-copy { padding: 36px; }
  .product-panel-image,
  .product-panel-mosaic { min-height: 420px; }
  .history-videos { grid-template-columns: 1fr; }
  .process-grid,
  .faq-grid { gap: 38px; }
  .contact-section { padding: 60px 0; }
}

@media (max-width: 640px) {
  .section { padding: 46px 0; }
  .section-heading { margin-bottom: 26px; }
  h1 { font-size: clamp(2.55rem, 12vw, 3.75rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.9rem); }
  .hero { padding-top: 104px; padding-bottom: 24px; }
  .hero-media { min-height: 470px; }
  .hero-badge-bottom { display: none; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
  .hero-stats article { min-height: 112px; padding: 15px 13px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero-stats article:nth-child(2n) { border-right: 0; }
  .hero-stats article:nth-last-child(-n+2) { border-bottom: 0; }
  .hero-stats strong { font-size: 1rem; }
  .hero-stats span { font-size: .75rem; line-height: 1.4; }
  .about-visual { min-height: 455px; }
  .about-main-image { inset: 8px 12px 60px 0; }
  .about-small-image { width: 41%; height: 38%; }
  .about-seal { width: 112px; height: 112px; }
  .product-tabs { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; overflow: visible; }
  .product-tab { width: 100%; padding: 10px 9px; font-size: .83rem; }
  .product-panel-copy { padding: 28px 21px; }
  .product-panel-image,
  .product-panel-mosaic { min-height: 360px; }
  .product-panel-mosaic { gap: 8px; padding: 16px 16px 58px; }
  .product-panel-mosaic span { min-height: 110px; }
  .product-panel-mosaic img { padding: 8px; }
  .product-panel-mosaic figcaption { right: 16px; bottom: 17px; left: 16px; font-size: .87rem; }
  .product-panel-image-layered .product-inset { right: 12px; bottom: 63px; width: 38%; height: 30%; border-width: 5px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .category-grid article { padding: 18px; }
  .category-icon { width: 42px; height: 42px; margin-bottom: 12px; }
  .category-grid h3 { font-size: 1.08rem; }
  .category-grid p { font-size: .82rem; }
  .history-video-copy { padding: 18px; }
  .history-facts { grid-template-columns: 1fr; gap: 8px; }
  .history-facts > div { padding: 14px 16px; }
  .benefit-card > span { margin-bottom: 24px; }

  .gallery-item { height: 400px; }
  .gallery-item-product img { padding: 42px; }
  .process-steps li { padding: 20px 0; }
  .catalog-card { padding: 18px; }
  .catalog-cover { min-height: 230px; }
  .contact-section { padding: 52px 0; }
  .floating-quote strong { display: none; }
  .floating-quote { width: 50px; height: 50px; justify-content: center; padding: 0; }
}

/* =========================================================
   FARNESE 2.1 — ritmo mais compacto, catálogo limpo e clientes
   ========================================================= */
.section {
  padding: 44px 0;
}

.section-heading {
  margin-bottom: 24px;
}

/* Clientes: logomarcas individuais em carrossel responsivo. */
.clients-section {
  overflow: hidden;
  background: var(--cream);
}

.clients-section .section-heading {
  margin-bottom: 18px;
}

.clients-carousel {
  position: relative;
}

.clients-carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.clients-carousel-toolbar > p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.clients-carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.clients-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.clients-viewport::-webkit-scrollbar {
  display: none;
}

.clients-viewport:focus-visible {
  outline: 3px solid rgba(230, 157, 18, .35);
  outline-offset: 5px;
  border-radius: var(--radius-md);
}

.clients-track {
  display: grid;
  grid-auto-columns: clamp(205px, 21vw, 250px);
  grid-auto-flow: column;
  gap: 14px;
  width: max-content;
  margin: 0;
  padding: 4px 2px 16px;
  list-style: none;
}

.client-logo-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(39, 37, 41, .09);
  border-radius: 20px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 12px 34px rgba(39, 37, 41, .07);
  scroll-snap-align: start;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.client-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 157, 18, .32);
  box-shadow: 0 18px 42px rgba(39, 37, 41, .11);
}

.client-logo-card img {
  width: 100%;
  height: 112px;
  object-fit: contain;
}

.clients-progress {
  height: 3px;
  margin-top: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(39, 37, 41, .10);
}

.clients-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transform: scaleX(.18);
  transform-origin: left center;
  transition: transform .2s ease;
}

/* Catálogo sem imagem de capa: conteúdo centralizado e mais direto. */
.catalog-card {
  display: block;
  padding: 42px 50px;
}

.catalog-copy {
  max-width: 930px;
  margin-inline: auto;
  text-align: center;
}

.catalog-copy h2,
.catalog-copy > p:not(.eyebrow) {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}

.catalog-actions {
  justify-content: center;
  margin: 22px 0 12px;
}

.catalog-copy small {
  display: block;
}

.contact-section {
  padding: 54px 0;
}

@media (max-width: 920px) {
  .section {
    padding: 36px 0;
  }

  .section-heading {
    margin-bottom: 21px;
  }

  .catalog-card {
    padding: 34px 30px;
  }

  .contact-section {
    padding: 46px 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 30px 0;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .clients-section .section-heading {
    margin-bottom: 14px;
  }


  .catalog-card {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .catalog-actions {
    display: grid;
    margin-top: 18px;
  }

  .catalog-actions .button {
    width: 100%;
  }

  .contact-section {
    padding: 40px 0;
  }
}


/* FARNESE 2.2 — carrossel de clientes individualizado */
@media (max-width: 920px) {
  .clients-track { grid-auto-columns: minmax(190px, 34vw); }
}

@media (max-width: 640px) {
  .clients-carousel-toolbar { align-items: flex-end; }
  .clients-carousel-toolbar > p { max-width: 220px; font-size: .82rem; line-height: 1.45; }
  .clients-track { grid-auto-columns: minmax(210px, 72vw); gap: 10px; }
  .client-logo-card { min-height: 132px; padding: 14px; border-radius: 16px; }
  .client-logo-card img { height: 98px; }
}

@media (prefers-reduced-motion: reduce) {
  .clients-viewport { scroll-behavior: auto; }
  .client-logo-card { transition: none; }
}
