:root {
  --navy: #0f172a;
  --navy-2: #1e293b;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --white: #ffffff;
  --ease: 0.3s ease;
}

/* Única adaptação solicitada: conteúdo ligeiramente mais estreito. */
body .container { width: min(100% - 40px, 1260px); }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--slate-50);
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(234, 88, 12, 0.4);
  outline-offset: 3px;
}

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

.container {
  width: min(100% - 40px, 1440px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 80px;
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.brand b {
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 3px;
  padding: 7px;
  background: var(--navy);
  border-radius: 5px;
  transform: skewX(-6deg);
}

.brand-mark i {
  display: block;
  width: 100%;
  height: 19px;
  background: var(--orange);
  transform: scaleY(0.55);
}

.brand-mark i:nth-child(2) {
  transform: scaleY(0.82);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a,
.nav-dropdown summary {
  position: relative;
  padding-block: 30px;
  cursor: pointer;
  list-style: none;
  transition: color var(--ease);
}

.main-nav > a::after,
.nav-dropdown summary::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.main-nav > a:hover,
.nav-dropdown summary:hover,
.nav-dropdown[open] summary {
  color: var(--navy);
}

.main-nav > a:hover::after,
.nav-dropdown summary:hover::after,
.nav-dropdown[open] summary::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

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

.nav-dropdown summary span {
  margin-left: 4px;
  color: var(--orange);
}

.nav-dropdown > div {
  position: absolute;
  top: 64px;
  left: 50%;
  width: 158px;
  display: grid;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  transform: translateX(-50%);
}

.nav-dropdown > div a {
  padding: 11px 13px;
  border-radius: 6px;
  transition: background var(--ease), color var(--ease);
}

.nav-dropdown > div a:hover {
  color: var(--orange);
  background: var(--slate-50);
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.button:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.2);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 13px;
}

.button-secondary {
  color: var(--navy);
  background: transparent;
  border-color: var(--slate-200);
}

.button-secondary:hover {
  color: var(--orange);
  background: var(--white);
  border-color: var(--orange);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 37%, rgba(234, 88, 12, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(248, 250, 252, 0.25));
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px rgba(15, 23, 42, 0.018), inset 0 0 0 140px rgba(15, 23, 42, 0.018);
}

.hero-grid {
  min-height: 600px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(42px, 5vw, 80px);
  padding-block: 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--slate-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  display: inline-block;
  background: var(--orange);
}

.eyebrow.light {
  color: var(--slate-400);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(43px, 4.2vw, 72px);
  font-weight: 850;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

h1 em {
  position: relative;
  color: var(--orange);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 5px;
  content: "";
  opacity: 0.25;
  background: var(--orange);
  transform: skewX(-24deg);
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--slate-600);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.wa-dot {
  width: 10px;
  height: 10px;
  background: #16a34a;
  border: 2px solid #bbf7d0;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.hero-note {
  margin: 22px 0 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.6;
}

.hero-note b {
  color: var(--navy);
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 42px 34px 38px 28px;
}

.image-frame {
  position: relative;
  z-index: 2;
  min-height: 440px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  box-shadow: 0 32px 72px rgba(15, 23, 42, 0.19);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.08), transparent 55%, rgba(234, 88, 12, 0.08));
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 440px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.scan-line {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 25%;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(234, 88, 12, 0.8), transparent);
  box-shadow: 0 0 16px rgba(234, 88, 12, 0.6);
}

.machine-label {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 5px;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.86);
  border-left: 3px solid var(--orange);
  backdrop-filter: blur(8px);
}

.machine-label span {
  color: #fdba74;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.machine-label b {
  font-size: 12px;
}

.measurement {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 2px;
  color: var(--slate-500);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.measurement span {
  color: var(--navy);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.measurement.top {
  top: 0;
  right: 68px;
}

.measurement.side {
  right: -6px;
  bottom: 62px;
  padding-left: 13px;
  border-left: 2px solid var(--orange);
}

.dimension-line {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
}

.dimension-line.horizontal {
  right: 34px;
  bottom: 17px;
  left: 28px;
  height: 12px;
  border-right: 1px solid var(--slate-400);
  border-bottom: 1px solid var(--slate-400);
  border-left: 1px solid var(--slate-400);
}

.dimension-line.vertical {
  top: 42px;
  right: 11px;
  bottom: 38px;
  width: 12px;
  border-top: 1px solid var(--slate-400);
  border-right: 1px solid var(--slate-400);
  border-bottom: 1px solid var(--slate-400);
}

.stats {
  position: relative;
  z-index: 4;
  background: var(--white);
  border-block: 1px solid var(--slate-200);
}

.stats-grid {
  min-height: 114px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px clamp(14px, 2.2vw, 32px);
  border-right: 1px solid var(--slate-200);
}

.stats article:first-child {
  border-left: 1px solid var(--slate-200);
}

.stats strong {
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stats p {
  margin: 0;
  color: var(--slate-500);
  font-size: 11px;
  line-height: 1.5;
}

.section {
  padding-block: 110px;
}

.section-heading h2,
.authority h2,
.testimonial-heading h2,
.contact h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 3.6vw, 58px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.split-heading,
.catalog-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.split-heading > p,
.catalog-heading > p {
  margin: 0 0 3px;
  color: var(--slate-500);
  font-size: 15px;
  line-height: 1.7;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar-card {
  position: relative;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.035);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.pillar-card:hover {
  border-color: rgba(234, 88, 12, 0.3);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  transform: translateY(-5px);
}

.pillar-card.featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.card-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--slate-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.featured .card-number {
  color: var(--slate-500);
}

.card-symbol {
  width: 78px;
  height: 78px;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 9px;
}

.featured .card-symbol {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.machine-symbol {
  grid-template-columns: repeat(3, 11px);
  gap: 5px;
}

.machine-symbol i {
  width: 11px;
  height: 35px;
  display: block;
  background: var(--navy);
  border-radius: 2px 2px 5px 5px;
}

.machine-symbol i:nth-child(2) {
  height: 49px;
  background: var(--orange);
}

.gauge-symbol i {
  width: 44px;
  height: 44px;
  position: relative;
  display: block;
  border: 5px solid rgba(255, 255, 255, 0.85);
  border-top-color: var(--orange);
  border-radius: 50%;
}

.gauge-symbol i::after {
  position: absolute;
  top: 16px;
  left: 17px;
  width: 2px;
  height: 15px;
  content: "";
  background: var(--orange);
  transform: rotate(45deg);
  transform-origin: top;
}

.ribbon-symbol {
  gap: 4px;
  align-content: center;
}

.ribbon-symbol i {
  width: 45px;
  height: 6px;
  display: block;
  background: var(--navy);
  transform: skewX(-22deg);
}

.ribbon-symbol i:nth-child(2) {
  margin-left: 14px;
  background: var(--orange);
}

.pillar-card h3 {
  max-width: 320px;
  margin: 0;
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.pillar-card > p {
  margin: 18px 0 0;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.72;
}

.featured > p {
  color: var(--slate-400);
}

.pillar-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
}

.pillar-card li {
  position: relative;
  padding-left: 18px;
  color: var(--slate-600);
  font-size: 12px;
}

.featured li {
  color: var(--slate-200);
}

.pillar-card li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.pillar-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid var(--slate-200);
  font-size: 12px;
  font-weight: 800;
  transition: color var(--ease);
}

.featured > a {
  border-color: rgba(255, 255, 255, 0.13);
}

.pillar-card > a:hover {
  color: var(--orange);
}

.catalog {
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    var(--navy);
  background-size: 36px 36px;
}

.catalog-heading > p {
  color: var(--slate-400);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 30px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.filter-tabs button {
  min-height: 40px;
  padding: 9px 15px;
  color: var(--slate-400);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.filter-tabs button:hover,
.filter-tabs button.active {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-width: 0;
  min-height: 495px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.product-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  height: 215px;
  display: block;
  flex: 0 0 215px;
  overflow: hidden;
  background: var(--slate-100);
}

.product-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.14));
}

.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-image > span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  color: var(--white);
  background: var(--navy);
  border-left: 2px solid var(--orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-body h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.product-body > p {
  min-height: 69px;
  margin: 12px 0 20px;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.65;
}

.product-body dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 14px;
  margin: auto 0 0;
  border-block: 1px solid var(--slate-200);
}

.product-body dl div {
  min-width: 0;
  padding-inline: 10px;
  border-right: 1px solid var(--slate-200);
}

.product-body dl div:first-child {
  padding-left: 0;
}

.product-body dl div:last-child {
  padding-right: 0;
  border-right: 0;
}

.product-body dt {
  color: var(--slate-400);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-body dd {
  margin: 5px 0 0;
  overflow: hidden;
  font-size: 10px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: 0;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
}

.authority {
  background: var(--white);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.authority-lead {
  max-width: 670px;
  margin: 28px 0 38px;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.75;
}

.authority-list {
  display: grid;
}

.authority-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding-block: 20px;
  border-top: 1px solid var(--slate-200);
}

.authority-list article:last-child {
  border-bottom: 1px solid var(--slate-200);
}

.authority-list article > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
}

.authority-list h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.authority-list p {
  margin: 0;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.55;
}

.service-board {
  position: relative;
  padding: 26px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  box-shadow: 18px 18px 0 var(--slate-100);
}

.service-board::before,
.service-board::after {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  border: 2px solid var(--orange);
}

.service-board::before {
  top: -6px;
  left: -6px;
  border-right: 0;
  border-bottom: 0;
}

.service-board::after {
  right: -6px;
  bottom: -6px;
  border-top: 0;
  border-left: 0;
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--slate-200);
}

.board-header span {
  color: var(--slate-400);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.board-header b {
  font-size: 12px;
}

.board-track {
  display: grid;
  gap: 8px;
  padding-block: 18px;
}

.board-track article {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
}

.board-track article.active {
  border-color: var(--orange);
  box-shadow: inset 3px 0 var(--orange);
}

.board-track article > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--slate-500);
  background: var(--slate-100);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 850;
}

.board-track .done > span,
.board-track .active > span {
  color: var(--white);
  background: var(--navy);
}

.board-track article div {
  display: grid;
  gap: 3px;
}

.board-track article b {
  font-size: 11px;
}

.board-track article small {
  color: var(--slate-500);
  font-size: 9px;
}

.board-track article > i {
  color: var(--slate-400);
  font-size: 13px;
  font-style: normal;
}

.board-track .done > i,
.board-track .active > i {
  color: var(--orange);
}

.board-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--slate-200);
}

.board-footer span {
  color: var(--slate-400);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.board-footer b {
  color: var(--orange);
  font-size: 11px;
}

.testimonials {
  background: var(--slate-100);
}

.testimonial-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

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

.carousel-controls button {
  width: 45px;
  height: 45px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  cursor: pointer;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.carousel-controls button:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.testimonial-track {
  display: grid;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track article {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  scroll-snap-align: start;
}

.quote-mark {
  height: 50px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1;
}

.testimonial-track blockquote {
  margin: 18px 0 32px;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.65;
  letter-spacing: -0.015em;
}

.testimonial-track footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid var(--slate-200);
}

.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 850;
}

.testimonial-track footer div {
  display: grid;
  gap: 3px;
}

.testimonial-track footer b {
  font-size: 11px;
}

.testimonial-track footer small {
  color: var(--slate-500);
  font-size: 9px;
}

.contact {
  color: var(--white);
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(55px, 8vw, 130px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--slate-400);
  font-size: 15px;
  line-height: 1.75;
}

.contact-direct {
  display: grid;
  gap: 9px;
  margin-top: 36px;
}

.contact-direct > a {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  transition: color var(--ease);
}

.contact-direct > a:hover {
  color: #fdba74;
}

.contact-direct > a > span:first-child {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-direct > a div {
  display: grid;
  gap: 4px;
}

.contact-direct small {
  color: var(--slate-400);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct b {
  font-size: 13px;
}

.contact-form {
  padding: 30px;
  color: var(--navy);
  background: var(--white);
  border-radius: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--slate-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form > label {
  margin-top: 19px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--navy);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.11);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--slate-400);
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  height: 0;
  margin: 0;
  overflow: hidden;
  color: #15803d;
  font-size: 11px;
  text-align: center;
  transition: height var(--ease), margin var(--ease);
}

.form-status.visible {
  height: auto;
  margin-top: 14px;
}

.map-wrap {
  position: relative;
  margin-top: 70px;
  overflow: hidden;
  background: var(--slate-200);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  display: block;
  border: 0;
  filter: grayscale(1) contrast(1.08);
}

.map-wrap > a {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: var(--navy);
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.18);
  font-size: 11px;
  font-weight: 800;
}

.site-footer {
  padding-top: 70px;
  color: var(--white);
  background: #090f1e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 50px;
  padding-bottom: 58px;
}

.brand-light .brand-mark {
  background: var(--white);
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--slate-400);
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-grid nav b,
.footer-contact > b {
  margin-bottom: 8px;
  color: var(--slate-400);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid nav a,
.footer-contact p {
  margin: 0;
  color: var(--slate-200);
  font-size: 12px;
  transition: color var(--ease);
}

.footer-grid nav a:hover {
  color: #fdba74;
}

.footer-contact .cnpj {
  margin-top: 7px;
  color: var(--slate-500);
  font-size: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  color: var(--slate-500);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #16a34a;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.24);
  font-size: 25px;
  transition: background var(--ease), transform var(--ease);
  animation: pulse 2.4s infinite;
}

.floating-whatsapp:hover {
  background: #15803d;
  transform: translateY(-3px) scale(1.03);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(15, 23, 42, 0.24), 0 0 0 0 rgba(22, 163, 74, 0.36); }
  50% { box-shadow: 0 12px 30px rgba(15, 23, 42, 0.24), 0 0 0 12px rgba(22, 163, 74, 0); }
}

@media (max-width: 1180px) {
  .main-nav { gap: 17px; font-size: 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-body > p { min-height: 0; }
}

@media (max-width: 1020px) {
  .site-header { height: 72px; }
  .header-inner { grid-template-columns: auto auto 1fr; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 6px;
    font-size: 25px;
    cursor: pointer;
  }
  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 18px 20px 26px;
    background: rgba(248, 250, 252, 0.98);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.1);
  }
  .main-nav.is-open { display: grid; }
  .main-nav > a,
  .nav-dropdown summary { padding: 11px 4px; }
  .main-nav > a::after,
  .nav-dropdown summary::after { bottom: 5px; }
  .nav-dropdown > div {
    position: static;
    width: 100%;
    margin-top: 4px;
    background: var(--slate-100);
    box-shadow: none;
    transform: none;
  }
  .header-cta { justify-self: end; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 70px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { width: min(100%, 820px); justify-self: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats article:first-child { border-left: 0; }
  .stats article:nth-child(2) { border-right: 0; }
  .stats article:nth-child(-n+2) { border-bottom: 1px solid var(--slate-200); }
  .split-heading,
  .catalog-heading { grid-template-columns: 1fr; gap: 20px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 460px; }
  .authority-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .service-board { width: min(100%, 680px); }
  .testimonial-track { grid-auto-columns: calc((100% - 16px) / 2); }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 0.8fr); }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1440px); }
  .site-header { height: 66px; }
  .header-inner { gap: 10px; }
  .brand { gap: 8px; font-size: 13px; }
  .brand-mark { width: 31px; height: 31px; }
  .main-nav { top: 66px; }
  .header-cta { min-height: 40px; padding: 9px 12px; font-size: 0; gap: 0; }
  .header-cta::before { content: "Orçamento"; font-size: 11px; }
  .header-cta span { display: none; }
  .menu-toggle { width: 39px; height: 39px; }
  .hero-grid { padding-block: 56px; }
  h1 { font-size: clamp(39px, 12vw, 58px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-visual { padding: 38px 20px 34px 10px; }
  .image-frame,
  .image-frame img { height: 340px; min-height: 340px; }
  .measurement.top { right: 34px; }
  .measurement.side { right: -5px; bottom: 50px; }
  .measurement span { font-size: 19px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats article { min-height: 93px; border-right: 0; border-bottom: 1px solid var(--slate-200); }
  .stats article:nth-child(2) { border-bottom: 1px solid var(--slate-200); }
  .section { padding-block: 78px; }
  .section-heading h2,
  .authority h2,
  .testimonial-heading h2,
  .contact h2 { font-size: clamp(34px, 10vw, 47px); }
  .pillar-card { min-height: 0; padding: 25px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { height: 240px; }
  .service-board { padding: 17px; box-shadow: 10px 10px 0 var(--slate-100); }
  .board-track article { grid-template-columns: 32px 1fr auto; padding: 11px; }
  .testimonial-heading { align-items: flex-start; }
  .testimonial-track { grid-auto-columns: 88%; }
  .testimonial-track article { min-height: 330px; padding: 24px; }
  .contact-form { padding: 21px; }
  .form-grid { grid-template-columns: 1fr; }
  .map-wrap { width: 100%; border-radius: 0; }
  .map-wrap iframe { height: 300px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .floating-whatsapp { right: 15px; bottom: 15px; width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Engenharia Humana — direção visual selecionada */
:root {
  --warm: #fffaf4;
  --warm-2: #fff4e8;
}

body {
  background: var(--warm);
}

body::before {
  background-image:
    linear-gradient(rgba(234, 88, 12, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
}

.container {
  width: min(100% - 40px, 1320px);
}

.site-header {
  height: 78px;
  background: rgba(255, 250, 244, 0.9);
}

.brand-mark {
  border-radius: 10px;
}

.nav-dropdown > div {
  top: 62px;
}

.button {
  border-radius: 14px;
}

.hero {
  min-height: 655px;
  background:
    repeating-linear-gradient(35deg, rgba(234, 88, 12, 0.018) 0 7px, transparent 7px 14px),
    repeating-linear-gradient(-35deg, rgba(15, 23, 42, 0.015) 0 7px, transparent 7px 14px),
    radial-gradient(circle at 83% 37%, rgba(234, 88, 12, 0.09), transparent 28%),
    linear-gradient(135deg, var(--warm) 0%, #ffffff 68%);
}

.hero-grid {
  min-height: 655px;
  gap: clamp(48px, 5.5vw, 72px);
  padding-block: 60px;
}

h1 {
  line-height: 1.02;
}

.hero-visual {
  padding: 48px 42px 56px 30px;
}

.image-frame {
  min-height: 455px;
  border-radius: 30px;
  box-shadow: 0 32px 72px rgba(92, 50, 20, 0.17);
}

.image-frame img {
  height: 455px;
}

.machine-label {
  border-radius: 10px;
}

.expert-chip {
  position: absolute;
  z-index: 6;
  left: 2px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 17px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #fed7aa;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(92, 50, 20, 0.13);
  backdrop-filter: blur(10px);
}

.expert-avatars {
  display: flex;
  padding-left: 18px;
}

.expert-avatars i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -18px;
  color: var(--white);
  background: var(--navy);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
}

.expert-avatars i:nth-child(2) { background: var(--orange); }
.expert-avatars i:nth-child(3) { color: var(--navy); background: #fed7aa; }

.expert-chip > span:last-child,
.training-note p {
  display: grid;
  gap: 3px;
}

.expert-chip b,
.training-note b {
  font-size: 11px;
}

.expert-chip small,
.training-note small {
  color: var(--slate-500);
  font-size: 8px;
}

.training-note {
  position: absolute;
  z-index: 6;
  top: 27px;
  right: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--warm);
  border: 1px solid #fed7aa;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(92, 50, 20, 0.1);
}

.training-note > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 11px;
}

.training-note p { margin: 0; }

.stats {
  background: #fffdf9;
}

.services {
  background: linear-gradient(180deg, var(--warm) 0%, #ffffff 100%);
}

.pillar-card {
  border-radius: 22px;
}

.pillar-card.featured {
  color: var(--navy);
  background: var(--warm-2);
  border-color: #fed7aa;
}

.featured .card-number {
  color: var(--orange);
}

.featured .card-symbol {
  background: var(--white);
  border-color: #fed7aa;
}

.gauge-symbol i {
  border-color: var(--navy);
  border-top-color: var(--orange);
}

.featured > p { color: var(--slate-500); }
.featured li { color: var(--slate-600); }
.featured > a { border-color: #fed7aa; }

.product-card,
.service-board {
  border-radius: 20px;
}

.testimonials {
  background: var(--warm-2);
}

.testimonial-track article {
  border-radius: 22px;
}

.contact-form {
  border-radius: 24px;
}

@media (max-width: 1020px) {
  .site-header { height: 72px; }
  .hero-grid { min-height: auto; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1320px); }
  .site-header { height: 66px; }
  .hero-grid { padding-block: 56px; }
  .hero-visual { padding: 46px 14px 72px 8px; }
  .image-frame,
  .image-frame img { height: 340px; min-height: 340px; }
  .expert-chip { left: 0; bottom: 17px; }
  .training-note { top: 4px; right: 0; }
  .training-note small { display: none; }
}
