:root {
  --green: #00ACAE;
  --green-dark: #007f81;
  --green-soft: #e6f7f7;
  --ink: #151515;
  --slate: #5f6368;
  --line: #d9dde0;
  --paper: #f5f6f6;
  --white: #ffffff;
  --max-width: 1180px;
  --section-space: 90px;
  --radius: 0;
}

* { box-sizing: border-box; }

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

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 17px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 102, 48, 0.26);
  transition: translate 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-whatsapp img { width: 24px; height: 24px; }

.floating-whatsapp span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-whatsapp:hover {
  background: #1fbd59;
  box-shadow: 0 18px 42px rgba(15, 102, 48, 0.34);
  translate: 0 -2px;
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.3);
  outline-offset: 3px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.scrollbar-thin { scrollbar-width: thin; scrollbar-gutter: stable; }
.scrollbar-none { scrollbar-width: none; }
.scroll-fade-reveal-b { mask-image: linear-gradient(to bottom, transparent, black 18%, black); }
.tw-shimmer { mask-image: linear-gradient(110deg, transparent 25%, black 45%, transparent 65%); }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.header-contact-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  min-height: 28px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  color: #697278;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 28px;
}

.header-contact-bar a { white-space: nowrap; transition: color 180ms ease; }
.header-contact-bar a:hover, .header-contact-bar a:focus-visible { color: var(--green-dark); }

.brand img, .footer-brand img {
  display: block;
  width: 122px;
  height: auto;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #5f6368;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 24px 0;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 50% 14px;
  height: 2px;
  background: var(--green);
  transform: translateX(-50%) scaleX(0);
  transition: transform 240ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-current { color: var(--ink); }

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-current::after { transform: translateX(-50%) scaleX(1); }

.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: clamp(620px, calc(100vh - 110px), 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f3f5f4;
  color: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  overflow: hidden;
  background: #f3f5f4;
}

.hero-image, .hero-shade, .hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.78;
  mix-blend-mode: multiply;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 39%, rgba(255, 255, 255, 0.38) 70%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(0deg, rgba(240, 242, 241, 0.72), transparent 42%);
}

.hero-grid {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 64px;
  padding-top: 92px;
  padding-bottom: 34px;
}

.hero-copy { max-width: 810px; }

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 720;
}

.hero-description {
  max-width: 690px;
  margin: 22px 0 0;
  color: #5f6368;
  font-size: 17px;
  line-height: 1.7;
  text-align: left;
  text-justify: auto;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--green); color: var(--white); }
.button.primary:hover { background: #007f81; }

.button.ghost {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.button.ghost:hover {
  border-color: rgba(0, 0, 0, 0.42);
  background: var(--white);
}

.hero-proof {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
}

.hero-proof div { padding: 16px 19px; background: rgba(255, 255, 255, 0.84); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 14px; }

.hero-proof span {
  margin-top: 5px;
  color: #6f7376;
  font-size: 12px;
  line-height: 1.5;
}

.client-strip {
  padding: 20px 0 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.client-strip p {
  margin: 0 0 12px;
  color: #84909b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 18px;
}

.client-logos img {
  width: 100%;
  height: 44px;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.64;
  transition: filter 180ms ease, opacity 180ms ease;
}

.client-logos img:hover { filter: grayscale(0); opacity: 1; }

.indicator-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.indicator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.indicator {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.indicator:first-child { border-left: 1px solid var(--line); }
.indicator strong { color: var(--green); font-size: 30px; letter-spacing: -0.04em; }
.indicator span { color: var(--slate); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.section { padding: 90px 0; }

[data-scroll-section] {
  position: relative;
  overflow: hidden;
}

.section-heading h2, .company-copy h2, .faq-layout h2, .contact-card h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 720;
}

.section-heading > p, .split-heading > p, .company-copy > p, .contact-card > div > p:last-child {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 44px;
}

.split-heading > p { margin: 0; }
.split-heading.compact { margin-bottom: 48px; }
.expertise-section { background: var(--paper); }

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

.expertise-card {
  position: relative;
  min-height: 285px;
  padding: 30px 28px;
  border: 1px solid #cfd9df;
  background: rgba(255, 255, 255, 0.72);
  transition: background 200ms ease, transform 200ms ease;
}

.expertise-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(22, 45, 62, 0.08);
}

.expertise-card > svg {
  width: 48px;
  height: 48px;
  color: var(--green);
}

.expertise-card h3, .solution-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.expertise-card p, .solution-card p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  text-justify: auto;
}

.split-heading > p,
.centered-heading > p:last-child,
.partner-intro p,
.responsibility-card p,
.mechanical-capabilities p,
  .process-step p,
  .company-copy > p,
.timeline-item p,
.faq-content,
.contact-card > div > p:last-child,
.marketplace-copy > p {
  text-align: left;
  text-justify: auto;
}

.solutions-section { background: var(--white); }

.centered-heading {
  max-width: 1020px;
  margin: 0 auto 38px;
  text-align: center;
}

.solutions-section .centered-heading h2,
.solutions-section .centered-heading > p:last-child { white-space: nowrap; }
.centered-heading > p:last-child { max-width: 820px; margin: 18px auto 0; }

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

.solution-card {
  min-height: 220px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.solution-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.solution-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
}

.solution-icon svg { width: 37px; height: 37px; }

.solution-card h3 { margin-top: 24px; }

.featured-section {
  padding: 90px 0;
  background: var(--paper);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.featured-card {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 260ms ease, box-shadow 260ms ease;
}

.featured-card:hover {
  border-color: var(--green);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.13);
}

.featured-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--green);
}

.featured-card.orange::before { background: var(--green); }

.featured-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px 24px 32px 34px;
}

.solution-origin {
  align-self: flex-start;
  margin-top: 22px;
  padding: 8px 0 0;
  border: 0;
  border-top: 1px solid rgba(20, 121, 169, 0.22);
  background: transparent;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-product .solution-origin {
  border-color: rgba(0, 172, 174, 0.24);
  background: var(--green-soft);
  color: var(--green-dark);
}

.featured-copy h3 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.featured-copy > p:last-child {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.68;
  text-align: left;
  text-justify: auto;
}

.featured-image-wrap {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 0;
  background: linear-gradient(135deg, #f0f2f1, #e1e5e3);
}

.featured-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.products-section { background: var(--white); }

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

.product-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.product-panel-copy { display: flex; flex-direction: column; padding: 34px 24px 32px 34px; }
.product-panel-copy h3 { margin: 0 0 16px; font-size: 30px; line-height: 1.05; letter-spacing: -0.04em; }
.product-panel-copy > p:not(.eyebrow) { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.68; text-align: left; }
.product-panel-copy ul { display: grid; gap: 7px; margin: 18px 0 22px; padding-left: 18px; color: var(--slate); font-size: 13px; line-height: 1.5; }
.product-panel-copy li::marker { color: var(--green); }
.outline-button { min-height: 44px; margin-top: auto; padding-inline: 15px; border-color: var(--green); color: var(--ink); font-size: 12px; }
.outline-button:hover { background: var(--green-soft); }
.product-origin { display: block; margin-top: 16px; color: var(--green-dark); font-size: 10px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.product-panel-image { display: flex; align-items: center; justify-content: center; padding: 22px; background: #ecefed; }
.product-panel-image img { width: 100%; max-height: 280px; object-fit: contain; }
.partner-product-panel .product-panel-image { background: #e7ece9; }

.mechanical-section {
  background: var(--white);
}

.mechanical-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: end;
  gap: 100px;
  margin-bottom: 64px;
}

.mechanical-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 720;
}

.partner-intro {
  padding-left: 28px;
  border-left: 3px solid var(--green);
}

.usin-logo-window {
  position: relative;
  width: min(330px, 100%);
  height: 116px;
  margin: 0 0 12px;
  overflow: hidden;
  background: var(--white);
}

.usin-logo-window img {
  position: absolute;
  top: -103px;
  left: 0;
  width: 330px;
  max-width: none;
  height: auto;
}

.partner-intro span { display: block; }

.partner-intro span {
  color: #707477;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-intro p {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.72;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
  margin-bottom: 24px;
}

.responsibility-card {
  min-height: 260px;
  padding: 38px;
  border: 1px solid var(--line);
  background: #f8fafb;
  transition: border-color 220ms ease, box-shadow 240ms ease;
}

.responsibility-card:hover {
  border-color: rgba(0, 172, 174, 0.42);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.1);
}

.responsibility-card.usin-role {
  background: var(--green-soft);
}

.role-label {
  display: inline-flex;
  padding: 7px 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.usin-role .role-label {
  background: var(--green);
}

.responsibility-card h3 {
  margin: 38px 0 12px;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

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

.integration-symbol {
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 34px;
  font-weight: 300;
}

.mechanical-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mechanical-capabilities article {
  min-height: 230px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: background 220ms ease, translate 220ms ease, box-shadow 220ms ease;
}

.mechanical-capabilities article:hover {
  z-index: 2;
  background: #f5fbfc;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
  translate: 0 -5px;
}

.mechanical-capabilities svg {
  width: 44px;
  height: 44px;
  color: var(--green);
}

.mechanical-capabilities h3 {
  margin: 28px 0 10px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.mechanical-capabilities p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.7;
}

.process-section { background: #f0f2f1; color: var(--ink); }
.process-section .split-heading > p { color: var(--slate); }

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.process-step {
  position: relative;
  min-height: 270px;
  padding: 30px 26px;
  border: 1px solid #cbd8df;
  background: rgba(255, 255, 255, 0.72);
}

.process-step::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green));
  transition: width 320ms ease;
}

.process-step:hover::after { width: 100%; }
.process-step:hover > span { color: var(--green); }

.process-step:not(:last-child) {
  margin-right: 0;
}

.process-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -29px;
  color: var(--green);
  transform: translateY(-50%);
}

.process-step > span {
  color: var(--green);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.process-step h3 {
  margin: 36px 0 12px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.process-step p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}

.benefits-section { background: var(--paper); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-card { min-height: 220px; padding: 28px 24px; border: 1px solid var(--line); background: var(--white); transition: transform 180ms ease, box-shadow 180ms ease; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08); }
.benefit-card svg { color: var(--green); fill: var(--green-soft); }
.benefit-card h3 { margin: 24px 0 10px; font-size: 19px; line-height: 1.15; }
.benefit-card p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.68; text-align: left; }

.company-section {
  overflow: hidden;
  background: #f7f9fb;
  color: var(--ink);
}

.company-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 110px;
}

.company-copy > p { color: var(--slate); margin: 24px 0 0; }

.company-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.company-story p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
}

.company-story p + p { margin-top: 18px; }

.company-closing {
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--green);
  color: var(--ink) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  text-align: left;
}

.principles-section { background: var(--white); }

.principles-section .institutional-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.institutional-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 28px; margin-top: 34px; }
.institutional-facts > div { padding-top: 16px; border-top: 1px solid var(--line); }
.institutional-facts strong { display: block; margin-bottom: 7px; color: var(--ink); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.institutional-facts p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.65; text-align: left; }

.timeline { border-left: 1px solid #ccd8df; }

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 5px 0 36px 34px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 172, 174, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.timeline-item:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 0 9px rgba(0, 172, 174, 0.1);
}

.timeline-item strong { color: var(--ink); font-size: 16px; }
.timeline-item h3 { margin: 0 0 7px; font-size: 18px; line-height: 1.15; }

.timeline-item p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

.technology-strip {
  padding: 30px 0 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.technology-strip p {
  margin: 0 0 18px;
  color: #7b8793;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.technology-logos {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  justify-content: space-evenly;
}

.technology-logo {
  min-width: 0;
  height: 58px;
  display: grid;
  place-items: center;
}

.technology-logo img {
  width: auto;
  height: 34px;
  max-width: 92%;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
  transition: filter 180ms ease, opacity 180ms ease;
}

.technology-logo:hover img { filter: grayscale(0); opacity: 1; }

.technology-logo span {
  color: #4f5b68;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.projects-section { background: var(--white); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.project-image { height: 190px; overflow: hidden; background: #eef0ef; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 380ms ease; }
.project-card:hover .project-image img { transform: scale(1.04); }
.project-card-copy { padding: 22px 22px 24px; }
.project-card-copy > span { color: var(--green-dark); font-size: 10px; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.project-card-copy h3 { margin: 12px 0 10px; font-size: 21px; line-height: 1.1; letter-spacing: -0.03em; }
.project-card-copy p { margin: 0 0 16px; color: var(--slate); font-size: 13px; line-height: 1.68; text-align: left; }
.project-card-copy small { color: #7e858b; font-size: 11px; }

/* Galeria reutilizável para projetos documentados */
.project-card-gallery {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.project-card-gallery .project-gallery {
  min-width: 0;
  padding: 18px;
  background: #eef0ef;
}

.project-card-gallery .project-image {
  position: relative;
  height: 420px;
  display: grid;
  place-items: center;
  background: #e5e9e8;
}

.project-card-gallery .project-image img { object-fit: contain; }

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.7);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-arrow:hover { background: var(--green); transform: translateY(-50%) scale(1.04); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }

.gallery-counter { color: var(--green-dark); font-size: 11px; font-weight: 800; white-space: nowrap; }

.project-card-gallery .project-card-copy { display: flex; flex-direction: column; padding: 34px; }
.project-card-gallery .project-card-copy p { margin-bottom: 0; }

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
}

.project-meta span + span::before { content: "•"; margin-right: 8px; color: var(--line); }

.project-scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.45;
}

.project-scope-column {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-scope li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 900; }

@media (max-width: 780px) {
  .project-card-gallery { grid-template-columns: 1fr; }
  .project-card-gallery .project-gallery { padding: 12px; }
  .project-card-gallery .project-image { height: min(90vw, 360px); }
  .project-card-gallery .project-card-copy { padding: 26px 22px 28px; }
}

.marketplace-section {
  background: var(--white);
}

.marketplace-card {
  display: block;
  overflow: hidden;
  border: 1px solid #d8e1e6;
  background: #f8fafb;
  box-shadow: 0 28px 75px rgba(31, 55, 70, 0.1);
}

.marketplace-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow button"
    "title button"
    "description button"
    "benefits button";
  align-items: start;
  gap: 8px 42px;
  padding: 38px 46px;
}

.marketplace-copy > .eyebrow { grid-area: eyebrow; margin-bottom: 4px; }

.marketplace-copy h2 {
  grid-area: title;
  max-width: 670px;
  margin: 0;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 720;
}

.marketplace-copy > p:not(.eyebrow) {
  grid-area: description;
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}

.marketplace-benefits {
  grid-area: benefits;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 8px;
}

.marketplace-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #5b6063;
  font-size: 14px;
  font-weight: 700;
}

.marketplace-benefits svg { color: var(--green); }

.marketplace-button {
  grid-area: button;
  margin-top: 0;
  align-self: center;
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.marketplace-button:hover { background: var(--green-dark); }

.faq-section { background: var(--paper); }

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-list { border-top: 1px solid #cbd5dc; }
.faq-item { border-bottom: 1px solid #cbd5dc; }
.faq-item:last-child { border-bottom: 0; }

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 23px 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.45;
  text-decoration: none !important;
}
.faq-trigger:focus-visible { outline: 3px solid rgba(0, 172, 174, .24); outline-offset: 3px; }
.faq-trigger > svg { flex: 0 0 auto; width: 16px; height: 16px; color: #7b8793; transition: transform 180ms ease; }

.faq-content {
  overflow: hidden;
  max-width: 720px;
  padding-bottom: 24px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--ink) 0%, #303030 100%);
  color: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.contact-card > div { max-width: 780px; }

.contact-card > div > p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section .eyebrow.light { color: #85e1e4; }
.contact-section .button.primary { background: var(--green); }
.contact-button { min-height: 58px; padding-inline: 26px; white-space: nowrap; }
.contact-alternatives { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px 22px; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700; }
footer {
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
  padding-top: 62px;
  padding-bottom: 48px;
}

.social-links { display: flex; gap: 8px; }

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #ccd7de;
  color: var(--ink);
  transition: color 180ms ease, border 180ms ease;
}

.social-links a:hover { border-color: var(--green); color: var(--green); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line);
  color: #8a94a2;
  font-size: 11px;
}

.indicator-strip {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.indicator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.indicator {
  display: grid;
  gap: 5px;
  padding: 25px 24px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.indicator:first-child { border-left: 1px solid rgba(255, 255, 255, 0.16); }
.indicator strong { color: var(--green); font-size: 32px; line-height: 1; letter-spacing: -0.04em; }
.indicator span { color: rgba(255, 255, 255, 0.72); font-size: 11px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }

.products-section { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.product-panel-copy { display: flex; flex-direction: column; padding: 34px 30px; }
.product-panel-copy h3 { margin: 0 0 16px; font-size: 32px; line-height: 1.02; letter-spacing: -0.045em; }
.product-panel-copy > p:not(.eyebrow) { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.72; text-align: left; }
.product-panel-copy ul { display: grid; gap: 9px; margin: 22px 0; padding: 0; list-style: none; color: var(--ink); font-size: 13px; line-height: 1.45; }
.product-panel-copy li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 900; }
.outline-button { min-height: 44px; margin-top: auto; padding: 0 14px; border-color: var(--green); color: var(--ink); font-size: 12px; }
.outline-button:hover { background: var(--green-soft); }
.product-origin { display: block; margin-top: 16px; color: var(--green-dark); font-size: 10px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.mechanical-mark { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 0 14px; background: var(--green); color: var(--white); font-size: 24px; font-weight: 850; }
.product-panel-image { display: grid; place-items: center; padding: 24px 10px; background: #ecefed; }
.product-panel-image img { width: 100%; max-height: 330px; object-fit: contain; }

.benefits-section { background: var(--paper); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit-card { min-height: 220px; padding: 28px 24px; border: 1px solid var(--line); background: var(--white); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.benefit-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 18px 40px rgba(21, 21, 21, 0.08); }
.benefit-card svg { color: var(--green); fill: rgba(0, 172, 174, 0.12); }
.benefit-card h3 { margin: 24px 0 10px; font-size: 18px; line-height: 1.15; }
.benefit-card p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.65; text-align: left; }

.institutional-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 26px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.institutional-facts strong { display: block; margin-bottom: 8px; color: var(--green-dark); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.institutional-facts p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.65; text-align: left; }

.projects-section { background: var(--white); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { overflow: hidden; border: 1px solid var(--line); background: var(--white); transition: transform 180ms ease, box-shadow 180ms ease; }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(21, 21, 21, 0.1); }
.project-image { height: 190px; display: grid; place-items: center; overflow: hidden; background: #eef0ef; }
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-card-copy { padding: 22px; }
.project-card-copy > span { color: var(--green-dark); font-size: 10px; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.project-card-copy h3 { margin: 12px 0 10px; font-size: 21px; line-height: 1.1; }
.project-card-copy p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.65; text-align: left; }
.project-card-copy small { display: block; margin-top: 18px; color: #85898c; font-size: 11px; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto; }
  .desktop-nav { display: none; }

  .menu-button {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: var(--white);
    color: var(--ink);
  }

  .mobile-nav {
    position: absolute;
    top: 104px;
    right: 20px;
    width: min(340px, calc(100vw - 40px));
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  }

  .mobile-nav.is-open { display: grid; }

  .mobile-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    color: #5f6368;
    font-size: 14px;
    font-weight: 650;
  }

  .mobile-nav a:last-child {
    margin-top: 8px;
    border: 0;
    background: var(--green);
    color: var(--white);
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 42px;
    padding-top: 135px;
    padding-bottom: 80px;
  }

  .hero-media { width: 100%; }

  .hero-proof { grid-template-columns: repeat(3, 1fr); }
  .expertise-grid, .process-list { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-template-columns: 1fr; }
  .featured-image-wrap { min-height: 230px; }
  .featured-copy { min-height: 260px; }
  .products-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .company-layout, .faq-layout, .mechanical-heading { gap: 60px; }
  .company-story { gap: 22px; }
  .principles-section .institutional-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .mechanical-capabilities { grid-template-columns: repeat(2, 1fr); }
  .technology-logos { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .marketplace-copy {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "eyebrow eyebrow"
      "title title"
      "description description"
      "benefits button";
  }
}

@media (max-width: 780px) {
  .container { width: min(100% - 32px, 1180px); }

  .floating-whatsapp {
    right: 16px;
    bottom: 18px;
    width: 46px;
    min-height: 46px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span { display: none; }

  .site-header {
    height: 104px;
    padding: 28px 16px 0;
    gap: 10px;
  }

  .brand img { width: 108px; }
  .mobile-nav { top: 104px; right: 16px; }
  .header-contact-bar {
    justify-content: flex-start;
    gap: 10px;
    padding: 0 16px;
    font-size: 9px;
  }
  .header-contact-bar a:last-child { overflow: hidden; text-overflow: ellipsis; }
  .hero { min-height: 760px; }

  .hero-shade {
    background: rgba(255, 255, 255, 0.88);
  }

  .hero-content { padding-top: 120px; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(46px, 14vw, 64px); }
  .hero-description { font-size: 16px; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .client-logos { grid-template-columns: repeat(3, 1fr); }
  .indicator-grid { grid-template-columns: repeat(2, 1fr); }
  .indicator { border-bottom: 1px solid var(--line); }
  .section, .featured-section { padding: 82px 0; }

  .solutions-section .centered-heading h2,
  .solutions-section .centered-heading > p:last-child { white-space: normal; }

  .split-heading, .company-layout, .faq-layout, .contact-card, .mechanical-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .company-story { grid-template-columns: 1fr; gap: 18px; }

  .split-heading { margin-bottom: 42px; }

  .expertise-grid, .solutions-grid, .featured-grid, .process-list, .mechanical-capabilities {
    grid-template-columns: 1fr;
  }

  .products-grid, .benefits-grid, .projects-grid, .institutional-facts { grid-template-columns: 1fr; }
  .product-panel { grid-template-columns: 1fr; }
  .product-panel-image { min-height: 190px; }

  .responsibility-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .integration-symbol {
    min-height: 44px;
  }

  .featured-card { min-height: 0; }

  .usin-logo-window { width: 280px; height: 100px; }
  .usin-logo-window img { top: -87px; width: 280px; }

  .process-step, .process-step:not(:last-child) {
    min-height: 235px;
    padding: 28px 0;
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid #cbd8df;
    background: transparent;
  }

  .process-arrow {
    top: auto;
    right: 50%;
    bottom: -30px;
    transform: translateX(50%) rotate(90deg);
  }

  .process-step h3 { margin-top: 25px; }
  .timeline-item { grid-template-columns: 65px 1fr; gap: 15px; }
  .contact-section { padding: 72px 0; }
  .contact-button { width: 100%; }
  .technology-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .technology-logo { height: 48px; }
  .technology-logo img { max-height: 34px; }
  .indicator-grid { grid-template-columns: repeat(2, 1fr); }
  .indicator { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .indicator:nth-child(odd) { border-left: 1px solid rgba(255, 255, 255, 0.16); }
  .benefits-grid, .projects-grid { grid-template-columns: 1fr; }
  .product-panel { grid-template-columns: 1fr; }
  .product-panel-image { min-height: 220px; }
  .institutional-facts { grid-template-columns: 1fr; }
  .marketplace-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "description"
      "benefits"
      "button";
    gap: 10px;
    padding: 36px 26px;
  }
  .marketplace-benefits { display: grid; }
  .marketplace-button { width: 100%; margin-top: 16px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
}

@media (min-width: 1051px) {
  .mechanical-capabilities { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.centered-heading > p:last-child { text-align: center; }

.expertise-card > svg,
.solution-icon svg,
.mechanical-capabilities svg,
.benefit-card svg {
  fill: color-mix(in srgb, var(--green) 16%, transparent);
  stroke: var(--green);
}

@media (min-width: 781px) {
  .product-panel { min-height: 500px; }
  .product-panel-copy { min-height: 500px; }
}

@media (max-width: 780px) {
  .hero-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 63% center;
    opacity: 0.28;
  }

  .hero-media { width: 100%; }
}

/* Ajustes finais de princípios, ícones e apresentações */
.principles-section .institutional-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
  padding-top: 0;
  border-top: 0;
}

.principles-section .institutional-facts > div {
  min-height: 0;
  padding: 8px 12px;
  border: 0;
  background: transparent;
}

.principle-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: var(--green);
}

.principles-section .institutional-facts strong {
  margin-bottom: 10px;
  font-size: 13px;
}

.principles-section .institutional-facts p {
  font-size: 14px;
  line-height: 1.7;
}

.product-panel-copy .product-capabilities {
  margin-top: auto;
  margin-bottom: 18px;
}

.product-panel-copy .outline-button { margin-top: 0; }

.solution-icon svg {
  color: var(--green);
}

.solution-icon svg path,
.solution-icon svg rect,
.solution-icon svg circle {
  stroke: none;
}

@media (max-width: 1050px) {
  .principles-section .institutional-facts { grid-template-columns: 1fr; }
}

/* Ajustes finais de produtos e princípios */
.product-panel-copy .product-capabilities {
  margin-top: 30px;
  margin-bottom: 18px;
}

.product-panel-copy .outline-button { margin-top: auto; }

.principles-section .principles-heading {
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

.principles-section .principles-heading .eyebrow { margin-bottom: 12px; }
.principles-section .principles-heading h2 { margin: 0; }

.principles-section .institutional-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
  align-items: stretch;
}

.principles-section .institutional-facts > div {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 28px 26px;
  border: 1px solid #e4e8ea;
  background: #f7f9fa;
}

.principles-section .institutional-facts strong {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
}

.principles-section .institutional-facts p {
  font-size: 14px;
  line-height: 1.7;
}

.principles-section .values-list { display: grid; gap: 6px; }
.principles-section .values-list span { display: block; }

@media (min-width: 781px) and (max-width: 1050px) {
  .principles-section .institutional-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .principles-section .institutional-facts > div:last-child { grid-column: 1 / -1; }
}

/* Movimento discreto e composição horizontal dos produtos */
.products-grid { grid-template-columns: 1fr; gap: 24px; }
.product-panel {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 420px;
}
.product-panel-copy { min-height: 0; }
.product-panel-image { min-height: 420px; padding: 34px; }
.product-panel-image img { max-height: 380px; }

.js .motion-card {
  opacity: 0;
  transform: translateY(16px);
}

.js .motion-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--motion-delay, 0ms);
}

.js [data-scroll-section] > .container > .section-heading,
.js [data-scroll-section] > .container > .mechanical-heading {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js [data-scroll-section].is-visible > .container > .section-heading,
.js [data-scroll-section].is-visible > .container > .mechanical-heading {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-image {
  transform: scale(1.01);
  transition: transform 1100ms cubic-bezier(.2,.7,.2,1);
}

.js .hero.hero-ready .hero-image { transform: scale(1); }

.js .hero-copy > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .hero.hero-ready .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.js .hero.hero-ready .hero-copy > *:nth-child(2) { transition-delay: 80ms; }
.js .hero.hero-ready .hero-copy > *:nth-child(3) { transition-delay: 150ms; }
.js .hero.hero-ready .hero-copy > *:nth-child(4) { transition-delay: 220ms; }

.js .process-list .process-step {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.js .process-list.is-visible .process-step {
  opacity: 1;
  transform: translateY(0);
}

.js .process-list.is-visible .process-step:nth-child(1) { transition-delay: 0ms; }
.js .process-list.is-visible .process-step:nth-child(2) { transition-delay: 90ms; }
.js .process-list.is-visible .process-step:nth-child(3) { transition-delay: 180ms; }
.js .process-list.is-visible .process-step:nth-child(4) { transition-delay: 270ms; }

.js .process-arrow { opacity: 0; transition: opacity 360ms ease 220ms; }
.js .process-list.is-visible .process-arrow { opacity: 1; }

.solution-card .solution-icon,
.expertise-card > svg,
.mechanical-capabilities svg,
.benefit-card svg {
  transition: transform 220ms ease, opacity 220ms ease;
}

.solution-card:hover .solution-icon,
.expertise-card:hover > svg,
.mechanical-capabilities article:hover svg,
.benefit-card:hover svg {
  transform: translateY(-2px) scale(1.04);
  opacity: .9;
}

.project-card:hover .project-image img { transform: scale(1.03); }

.pulse-once { animation: whatsapp-pulse 900ms ease-out 1; }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(15, 102, 48, 0.26); }
  45% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0.18), 0 18px 42px rgba(15, 102, 48, 0.3); }
}

html.reduced-motion .motion-card,
html.reduced-motion [data-scroll-section] > .container > .section-heading,
html.reduced-motion [data-scroll-section] > .container > .mechanical-heading,
html.reduced-motion .hero-copy > *,
html.reduced-motion .process-list .process-step {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html.reduced-motion .hero-image { transform: none !important; transition: none !important; }

@media (max-width: 780px) {
  .product-panel { grid-template-columns: 1fr; min-height: 0; }
  .product-panel-image { min-height: 240px; padding: 24px; }
  .product-panel-image img { max-height: 260px; }
  .principles-section .principles-heading { margin-bottom: 24px; }
  .principles-section .institutional-facts { gap: 14px; }
  .principles-section .institutional-facts > div { min-height: 0; padding: 24px 22px; }
}

/* Refinos finais da galeria e da composição institucional */
.project-card-gallery .gallery-main img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease;
}
.project-card-gallery .project-image { height: clamp(460px, 42vw, 580px); }
.project-card-gallery:hover .project-image img { transform: none; }

.principles-section .institutional-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  padding: 0;
  border: 1px solid #e1e6e8;
  background: #f7f9fa;
}

.principles-section .institutional-facts > div {
  position: relative;
  min-height: 0;
  padding: 28px 30px 26px;
  border: 0;
  background: transparent;
}

.principles-section .institutional-facts > div + div::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 0;
  width: 1px;
  background: #dfe5e7;
  content: "";
}

.principles-section .values-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 7px;
}

@media (min-width: 781px) and (max-width: 1050px) {
  .principles-section .institutional-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .principles-section .institutional-facts > div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid #dfe5e7;
  }
  .principles-section .institutional-facts > div:last-child::before { display: none; }
}

@media (max-width: 780px) {
  .principles-section .institutional-facts { grid-template-columns: 1fr; }
  .principles-section .institutional-facts > div + div {
    border-top: 1px solid #dfe5e7;
  }
  .principles-section .institutional-facts > div + div::before { display: none; }
  .principles-section .values-list { grid-template-columns: 1fr; }
}

/* Galeria limpa com ampliação */
.gallery-expand {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(21,21,21,.68);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}
.gallery-expand:hover { background: var(--green); transform: scale(1.04); }
.gallery-expand { top: 14px; bottom: auto; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: rgba(8,12,16,.88);
  overflow: hidden;
}
.gallery-lightbox.is-open { display: flex; }
.gallery-lightbox > img { max-width: min(92vw, 1300px); max-height: 88vh; object-fit: contain; }
.gallery-lightbox .gallery-arrow { position: absolute; }
.gallery-lightbox .gallery-prev { left: 24px; }
.gallery-lightbox .gallery-next { right: 24px; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  color: var(--white);
  cursor: pointer;
}
.gallery-lightbox .gallery-counter { position: absolute; bottom: 20px; color: var(--white); }
body.lightbox-open { overflow: hidden; }

/* Princípios como seleção institucional */
.principles-tabs { margin-top: 0; }
.principles-tablist {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 7vw, 96px);
  border-bottom: 1px solid #e1e6e8;
}
.principles-tab {
  position: relative;
  padding: 0 4px 14px;
  border: 0;
  background: transparent;
  color: #7c858c;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease;
}
.principles-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity 180ms ease, transform 180ms ease;
}
.principles-tab.is-active { color: var(--green); }
.principles-tab.is-active::after { opacity: 1; transform: scaleX(1); }
.principles-content { max-width: 860px; min-height: 170px; margin: 30px auto 0; }
.principle-panel { animation: principle-fade 220ms ease both; }
.principle-panel strong { display: block; margin-bottom: 12px; color: var(--green); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.principle-panel p { margin: 0; color: var(--slate); font-size: 15px; line-height: 1.75; }
.principle-panel .values-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px 28px; }
@keyframes principle-fade { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
html.reduced-motion .principle-panel { animation: none; }
.principles-section { padding-bottom: 54px; }
.principles-content { min-height: 0; }
.location-section { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.location-block { padding: 28px; border: 1px solid var(--line); background: var(--white); }
.location-block h3 { margin: 0 0 14px; color: var(--green-dark); font-size: 18px; }
.location-block p { margin: 4px 0; color: var(--slate); font-size: 14px; }
.location-block .text-link { display: inline-block; margin-top: 16px; color: var(--green-dark); font-size: 13px; font-weight: 800; }
@media (max-width: 780px) {
  .gallery-lightbox { padding: 34px 18px; }
  .project-card-gallery .project-image { height: min(120vw, 520px); min-height: 420px; }
  .gallery-lightbox .gallery-prev { left: 8px; }
  .gallery-lightbox .gallery-next { right: 8px; }
  .principles-tablist { justify-content: space-between; gap: 8px; }
  .principles-tab { flex: 1; font-size: 13px; }
  .principles-content { min-height: 220px; margin-top: 24px; }
  .location-grid { grid-template-columns: 1fr; }
  .principle-panel .values-list { grid-template-columns: 1fr; }
}

/* Um projeto por visualização, em formato horizontal no desktop. */
.projects-carousel-horizontal { --project-columns: 1; }
.projects-carousel-horizontal .projects-grid > .project-card { flex-basis: 100%; }
.projects-carousel-horizontal .project-card-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
}
.projects-carousel-horizontal .project-card-gallery .project-image {
  height: clamp(360px, 34vw, 500px);
}
.projects-carousel-horizontal .project-card-gallery .project-card-copy {
  min-width: 0;
  padding: 32px 34px;
}
.projects-carousel-horizontal .project-card-gallery .project-scope {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Especialidades completas em uma grade estável, sem carrossel. */
.specialties-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (min-width: 781px) and (max-width: 1050px) {
  .specialties-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .specialties-grid { grid-template-columns: 1fr; }
  .projects-carousel-horizontal .project-card-gallery { grid-template-columns: 1fr; }
  .projects-carousel-horizontal .project-card-gallery .project-image { height: min(105vw, 460px); }
  .projects-carousel-horizontal .project-card-gallery .project-card-copy { padding: 24px 22px 28px; }
  .projects-carousel-horizontal .project-card-gallery .project-scope { grid-template-columns: 1fr; }
}

/* Cards de projetos em grade vertical, com mídia centralizada */
.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
  gap: 24px;
  align-items: stretch;
}
.project-card-gallery {
  display: flex;
  grid-column: auto;
  flex-direction: column;
  height: 100%;
}
.project-card-gallery .project-gallery {
  padding: 14px;
  background: #eef0ef;
}
.project-card-gallery .project-image {
  height: clamp(390px, 38vw, 500px);
  min-height: 0;
  background: #e5e9e8;
}
.project-card-gallery .gallery-main {
  display: grid;
  place-items: center;
}
.project-card-gallery .gallery-main img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.project-card-gallery .project-card-copy {
  flex: 1;
  padding: 26px 26px 28px;
}
@media (max-width: 780px) {
  .projects-grid { grid-template-columns: 1fr; gap: 20px; }
  .project-card-gallery .project-image { height: min(118vw, 500px); }
  .project-card-gallery .project-card-copy { padding: 24px 22px 26px; }
}

/* Mídia dos projetos sempre centralizada e contador sobreposto */
.project-card-gallery .project-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card-gallery .gallery-main img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.project-card-gallery .gallery-counter-overlay {
  position: absolute;
  right: auto;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  width: auto;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(21, 21, 21, .7);
  color: var(--white);
  font-size: 11px;
  line-height: 1;
}
.principle-panel .values-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 22px; }
@media (min-width: 781px) and (max-width: 1050px) {
  .principle-panel .values-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .principle-panel .values-list { grid-template-columns: 1fr; }
}

/* Navegação paginada dos projetos: três cards no desktop, sem crescimento vertical. */
.projects-carousel {
  --project-columns: 3;
  --project-gap: 24px;
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 14px;
}

.projects-carousel-viewport {
  min-width: 0;
  overflow: hidden;
}

.projects-carousel .projects-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--project-gap);
  transition: transform 320ms ease;
  will-change: transform;
}

.projects-carousel .projects-grid > .project-card {
  flex: 0 0 calc((100% - (var(--project-columns) - 1) * var(--project-gap)) / var(--project-columns));
  min-width: 0;
}

.projects-carousel-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.projects-carousel-arrow:hover:not(:disabled) {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.projects-carousel-arrow:disabled {
  cursor: default;
  opacity: .35;
}

.projects-carousel-page {
  grid-column: 1 / -1;
  justify-self: center;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

html.reduced-motion .projects-carousel .projects-grid { transition: none; }

@media (min-width: 781px) and (max-width: 1050px) {
  .projects-carousel { --project-columns: 2; }
}

@media (max-width: 780px) {
  .projects-carousel {
    --project-columns: 1;
    --project-gap: 20px;
    display: block;
  }

  .projects-carousel-arrow {
    position: absolute;
    top: clamp(180px, 29vw, 250px);
    z-index: 4;
    transform: translateY(-50%);
  }

  .projects-carousel-arrow:hover:not(:disabled) { transform: translateY(-50%); }
  .projects-carousel-prev { left: 10px; }
  .projects-carousel-next { right: 10px; }
  .projects-carousel-page { display: block; margin-top: 12px; text-align: center; }
}

/* Regra final: um único projeto por visualização em qualquer viewport. */
.projects-carousel-horizontal { --project-columns: 1; }
.projects-carousel-horizontal .projects-grid > .project-card { flex-basis: 100%; }
.projects-carousel-horizontal .project-card-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
}
.projects-carousel-horizontal .project-card-gallery .project-image { height: clamp(360px, 34vw, 500px); }
.projects-carousel-horizontal .project-card-gallery .project-card-copy { min-width: 0; padding: 32px 34px; }
.projects-carousel-horizontal .project-card-gallery .project-scope { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 780px) {
  .projects-carousel-horizontal { --project-columns: 1; }
  .projects-carousel-horizontal .project-card-gallery { grid-template-columns: 1fr; }
  .projects-carousel-horizontal .project-card-gallery .project-image { height: min(105vw, 460px); }
  .projects-carousel-horizontal .project-card-gallery .project-card-copy { padding: 24px 22px 28px; }
  .projects-carousel-horizontal .project-card-gallery .project-scope { grid-template-columns: 1fr; }
}

.gallery-expand { top: 14px; right: 14px; bottom: auto; }
.principles-section { padding-bottom: 54px; }
.principles-content { min-height: 0; }
.contact-alternatives { grid-column: 1 / -1; }

/* Navegação externa de projetos com linguagem própria. */
.projects-carousel-arrow {
  width: auto;
  min-width: 40px;
  height: 38px;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.projects-carousel-arrow:hover:not(:disabled) { border-color: var(--green-dark); background: var(--green-dark); color: var(--white); }
.projects-carousel-arrow:disabled { background: #dce4e5; border-color: #dce4e5; color: #7f8a8d; }

@media (max-width: 780px) {
  .projects-carousel-arrow { padding: 0 9px; font-size: 10px; }
}

/* Consolidação visual desta revisão */
.site-header {
  height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 28px 76px;
  gap: 0;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
}

.header-contact-bar {
  position: static;
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 28px;
  padding: 0;
  line-height: 28px;
}
.header-contact-bar a + a {
  padding-left: 12px;
  border-left: 1px solid rgba(20, 30, 35, 0.16);
}

.brand { grid-column: 1; grid-row: 2; justify-self: start; }
.desktop-nav { grid-column: 2; grid-row: 2; justify-self: end; }

.mobile-contact-links { display: none; }

/* Ícones principais sem blocos ou fundos decorativos. */
.solution-icon,
.specialty-icon,
.mechanical-mark {
  width: auto !important;
  height: auto !important;
  min-height: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--green) !important;
}

.solution-icon,
.specialty-icon { display: inline-flex; align-items: center; justify-content: center; }
.solution-icon { margin-bottom: 22px; }
.specialty-icon { margin-bottom: 22px; }
.mechanical-mark { display: block; margin: 0 0 14px; font-size: 24px; font-weight: 850; }
.mechanical-mark { display: inline-flex; align-items: center; margin: 0 0 14px; color: var(--green); }

.solution-icon svg,
.specialty-icon svg,
.expertise-card > svg,
.mechanical-capabilities svg,
.benefit-card svg,
.mechanical-mark svg {
  color: var(--green) !important;
  background: transparent !important;
  filter: none !important;
}

/* Navegação de projetos em barra própria, sem círculos laterais. */
.projects-carousel {
  display: block !important;
  position: relative;
}

.projects-carousel-viewport { width: 100%; }
.projects-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.projects-carousel-controls .projects-carousel-arrow {
  position: static !important;
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  height: 40px;
  transform: none !important;
  border-radius: 3px;
  background: var(--green);
  color: var(--white);
  white-space: nowrap;
}

.projects-carousel-controls .projects-carousel-arrow:hover:not(:disabled) {
  transform: translateY(-1px) !important;
  background: var(--green-dark);
}

.projects-carousel-controls .projects-carousel-arrow:disabled {
  background: #dce4e5;
  border-color: #dce4e5;
  color: #7f8a8d;
  opacity: .72;
}

.projects-carousel-controls .projects-carousel-page {
  flex: 0 0 auto;
  grid-column: auto;
  color: var(--green-dark);
  font-size: 12px;
  letter-spacing: .08em;
}

/* Lightbox único e global, fora dos cards de projeto. */
.gallery-lightbox-global {
  position: fixed !important;
  inset: 0 !important;
  z-index: 200 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100dvh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: rgba(8, 12, 16, .9);
  overflow: hidden;
}

.gallery-lightbox-global.is-open { display: flex !important; }
.gallery-lightbox-global > img {
  display: block;
  width: auto;
  height: auto;
  max-width: 94vw;
  max-height: 90vh;
  object-fit: contain;
  object-position: center;
}

.gallery-lightbox-global .gallery-arrow { z-index: 2; }
.gallery-lightbox-global .gallery-counter { bottom: 22px; color: var(--white); }
.gallery-lightbox-global .lightbox-close { z-index: 3; }

/* Campos da Localização sempre alinhados entre os três blocos. */
.location-grid { align-items: stretch; }
.location-block { display: flex; min-height: 100%; flex-direction: column; }
.location-fields { display: grid; gap: 12px; margin: 0; }
.location-fields > div { display: grid; gap: 3px; }
.location-fields dt {
  color: #7b8793;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.location-fields dd { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.45; }
.location-block .text-link { margin-top: auto; align-self: flex-start; }
.timeline-item.timeline-future strong { color: var(--green); font-size: 13px; letter-spacing: .1em; }

@media (max-width: 780px) {
  .site-header {
    height: 104px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 28px 76px;
    padding: 0 16px;
  }

  .header-contact-bar { display: none; }
  .brand { grid-column: 1; grid-row: 2; }
  .menu-button { grid-column: 2; grid-row: 2; justify-self: end; }
  .mobile-nav { top: 104px; right: 16px; }
  .mobile-contact-links {
    display: grid;
    gap: 0;
    margin: 0 0 4px;
    padding: 2px 12px 8px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-contact-links a {
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    color: #697278;
    font-size: 11px;
    font-weight: 700;
  }
  .mobile-contact-links a:last-child { border-bottom: 0; }
  .projects-carousel-controls { gap: 8px; }
  .projects-carousel-controls .projects-carousel-arrow { padding: 0 9px; font-size: 10px; }
  .projects-carousel-controls .projects-carousel-page { font-size: 11px; }
  .gallery-lightbox-global { padding: 38px 18px; }
  .gallery-lightbox-global > img { max-width: 92vw; max-height: 84vh; }
  .gallery-lightbox-global .gallery-prev { left: 8px; }
  .gallery-lightbox-global .gallery-next { right: 8px; }
}

/* O menu móvel só existe no estado aberto, inclusive no pacote estático. */
@media (max-width: 1050px) {
  .mobile-nav { display: none; }
  .mobile-nav.is-open { display: grid; }
}

/* Linguagem única para os ícones principais: traço monolinear, sem fundos. */
.expertise-card > svg,
.solution-icon svg,
.specialty-icon svg,
.mechanical-capabilities svg,
.benefit-card svg,
.mechanical-mark svg {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.85 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.expertise-card > svg *,
.solution-icon svg *,
.specialty-icon svg *,
.mechanical-capabilities svg *,
.benefit-card svg *,
.mechanical-mark svg * {
  fill: none !important;
  stroke: currentColor !important;
}

@media (min-width: 781px) {
  .site-header { padding-inline: max(24px, calc((100% - var(--max-width)) / 2)); }
}

/* Revisão de ícones e hierarquia de Especialidades. */
.solution-icon,
.specialty-icon,
.mechanical-mark,
.expertise-card > svg,
.mechanical-capabilities svg,
.benefit-card svg {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--green) !important;
}

.solution-icon,
.specialty-icon {
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.solution-icon svg,
.specialty-icon svg,
.expertise-card > svg,
.mechanical-capabilities svg,
.benefit-card svg {
  width: 38px;
  height: 38px;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.85 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.solution-icon svg *,
.specialty-icon svg *,
.expertise-card > svg *,
.mechanical-capabilities svg *,
.benefit-card svg * {
  fill: none !important;
  stroke: currentColor !important;
}

.specialties-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.specialty-card {
  min-height: 0 !important;
  display: block !important;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.specialty-card::before {
  inset: auto 28px 0;
  width: auto;
  height: 2px;
  background: transparent;
  transition: background 180ms ease;
}

.specialty-card:hover {
  border-color: rgba(0, 172, 174, .52);
  box-shadow: none;
  transform: translateY(-2px);
}

.specialty-card:hover::before,
.specialty-card:focus-within::before {
  background: var(--green);
}

/* O acento legado do estado orange também permanece invisível em repouso. */
.specialty-card.orange::before { background: transparent; }
.specialty-card.orange:hover::before,
.specialty-card.orange:focus-within::before { background: var(--green); }

.specialty-card .featured-copy {
  min-height: 0 !important;
  height: 100%;
  padding: 28px 28px 30px;
}

.specialty-primary .featured-copy {
  padding: 34px 30px 36px;
}

.specialty-card .specialty-icon {
  margin-bottom: 20px;
}

.specialty-primary .specialty-icon svg {
  width: 42px;
  height: 42px;
}

.specialty-card .eyebrow {
  margin: 0 0 10px;
  color: #7b8793;
  font-size: 10px;
  letter-spacing: .11em;
}

.specialty-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.specialty-secondary h3 { font-size: 18px; }
.specialty-card .featured-copy > p:last-of-type {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.65;
}

.specialty-card .solution-origin { display: none; }

.project-scope li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.project-scope li::before { display: none; }
.project-scope li svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
  stroke: currentColor;
}

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

@media (max-width: 780px) {
  .specialties-grid { grid-template-columns: 1fr; }
  .specialty-primary .featured-copy,
  .specialty-card .featured-copy { padding: 26px 22px 28px; }
  .projects-carousel-horizontal .project-card-gallery .project-scope {
    grid-template-columns: 1fr;
  }
}

/* Lapidação final: superfícies leves, hierarquia clara e ritmo consistente. */
.expertise-card,
.solution-card,
.benefit-card,
.mechanical-capabilities article,
.specialty-card,
.project-card-gallery {
  border-color: #e2e7e9;
}

.expertise-card:hover,
.solution-card:hover,
.benefit-card:hover,
.mechanical-capabilities article:hover {
  border-color: rgba(0, 172, 174, .48);
  box-shadow: 0 12px 28px rgba(21, 21, 21, .055) !important;
  transform: translateY(-2px);
}

.mechanical-capabilities article:hover {
  translate: 0 -2px;
  transform: none;
}

.specialties-grid {
  row-gap: 22px;
}

.specialty-secondary {
  background: #fcfdfd;
}

.specialty-primary {
  border-color: #dce5e7;
}

.specialty-primary .featured-copy {
  padding-bottom: 37px;
}

.project-card-gallery {
  box-shadow: none;
}

.project-card-gallery .project-gallery {
  background: #f0f3f3;
}

.project-card-gallery .project-card-copy {
  padding-block: 34px;
}

.button,
.projects-carousel-controls .projects-carousel-arrow {
  border-radius: 2px;
}

@media (max-width: 780px) {
  .specialties-grid { row-gap: 16px; }
  .project-card-gallery .project-card-copy { padding-block: 26px 28px; }
}

/* Contraste reforçado para textos pequenos sobre fundo claro. */
.eyebrow:not(.light),
.principles-tab.is-active,
.project-meta,
.projects-carousel-controls .projects-carousel-page,
.location-block .text-link {
  color: var(--green-dark);
}

@media (max-width: 1050px) {
  .mobile-nav > a:last-of-type {
    margin-top: 0;
    border: 0;
    background: transparent;
    color: #5f6368;
    text-align: left;
  }

  .mobile-contact-links a:last-child {
    margin-top: 0;
    border: 0;
    background: transparent;
    color: #697278;
    text-align: left;
  }
}

/* Static package interaction helpers */
.mobile-nav.is-open { display: grid; }
.mobile-nav > a:last-of-type { margin-top: 0; border: 0; background: transparent; color: #5f6368; text-align: left; }
.mobile-contact-links a:last-child { margin-top: 0; border: 0; background: transparent; color: #697278; text-align: left; }
.faq-content[hidden] { display: none; }
.faq-trigger[aria-expanded="true"] > svg { transform: rotate(180deg); }
.expertise-card > svg, .solution-icon svg, .specialty-icon svg,
.mechanical-capabilities svg, .benefit-card svg {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.85 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.expertise-card > svg *, .solution-icon svg *, .specialty-icon svg *,
.mechanical-capabilities svg *, .benefit-card svg * {
  fill: none !important;
  stroke: currentColor !important;
}
