:root {
  color-scheme: light;
  --asphalt: #0b1b2b;
  --cab-blue: #164c7e;
  --reflective-orange: #e66a19;
  --sheet-white: #f7f8f5;
  --concrete: #d7dce0;
  --panel-graphite: #26343e;
  --headline: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Source Sans 3", system-ui, sans-serif;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 76px;
  font-family: var(--body);
  color: var(--panel-graphite);
  background: var(--sheet-white);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--sheet-white); color: var(--panel-graphite); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
::selection { color: #fff; background: var(--cab-blue); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: -80px;
  left: 20px;
  padding: 11px 16px;
  background: var(--asphalt);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.solution-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(247,248,245,.97);
  border-bottom: 1px solid rgba(38,52,62,.14);
  transition: box-shadow .18s;
}
.solution-header.scrolled { box-shadow: 0 8px 28px rgba(11,27,43,.08); }
.header-inner {
  width: min(1320px, calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 142px; height: auto; }
.solution-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.solution-nav a,
.login-link { color: var(--panel-graphite); font-size: .85rem; font-weight: 700; text-decoration: none; text-underline-offset: 6px; }
.solution-nav a:hover,
.solution-nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible { color: var(--cab-blue); text-decoration: underline; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.menu-toggle,
.mobile-menu { display: none; }

.button {
  min-height: 48px;
  padding: 12px 21px;
  border: 2px solid var(--reflective-orange);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--reflective-orange);
  color: var(--asphalt);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color .16s, border-color .16s, color .16s;
}
.button:hover { border-color: var(--asphalt); background: var(--asphalt); color: #fff; }
.button-small { min-height: 40px; padding: 9px 16px; font-size: .84rem; }
.button-outline { border-color: var(--cab-blue); background: transparent; color: var(--cab-blue); }
.button-outline:hover { border-color: var(--asphalt); color: #fff; }
.button-light { border-color: #fff; background: #fff; color: var(--asphalt); }
.button-light:hover { border-color: var(--reflective-orange); background: var(--reflective-orange); color: var(--asphalt); }
.final-cta .button-outline { border-color: rgba(255,255,255,.78); color: #fff; }
.final-cta .button-outline:hover { border-color: var(--reflective-orange); background: var(--reflective-orange); color: var(--asphalt); }
.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible { outline: 3px solid var(--reflective-orange); outline-offset: 3px; }

.breadcrumbs {
  width: var(--container);
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 18px);
  color: rgba(38,52,62,.76);
  font-size: .78rem;
}
.breadcrumbs ol { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: var(--concrete); }
.breadcrumbs a { color: var(--cab-blue); font-weight: 700; }

.solution-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 56px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  column-gap: clamp(38px, 6vw, 85px);
  align-items: center;
}
.hero-copy { padding: 25px 0 65px; }
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cab-blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 6px;
  flex: 0 0 auto;
  border-left: 12px solid var(--reflective-orange);
  border-right: 12px solid var(--concrete);
}
.eyebrow.light { color: rgba(255,255,255,.76); }
.eyebrow.light::before { border-right-color: rgba(255,255,255,.42); }
h1, h2, h3 { font-family: var(--headline); }
h1, h2 { margin: 0; color: var(--asphalt); font-weight: 700; letter-spacing: -.027em; line-height: .96; }
h1 { max-width: 720px; font-size: clamp(3.7rem, 6.2vw, 6.65rem); }
h2 { font-size: clamp(2.8rem, 5.4vw, 5.15rem); }
.lead { max-width: 660px; margin: 26px 0 0; color: rgba(38,52,62,.78); font-size: 1.08rem; line-height: 1.65; }
.actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin: 13px 0 0; color: rgba(38,52,62,.76); font-size: .78rem; }
.hero-media { position: relative; min-height: 590px; border-left: 8px solid var(--reflective-orange); background: var(--concrete); overflow: hidden; }
.hero-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.solution-hero[data-solution="guincho"] .hero-media > img { object-position: 58% center; }
.solution-hero[data-solution="cegonha"] .hero-media > img { object-position: 46% center; }
.solution-hero[data-solution="caminhoes"] .hero-media > img { object-position: 63% center; }
.operation-slip {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(370px, calc(100% - 40px));
  background: var(--sheet-white);
  border-top: 5px solid var(--reflective-orange);
  box-shadow: 0 18px 55px rgba(11,27,43,.24);
}
.operation-slip header { padding: 15px 17px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--concrete); }
.operation-slip header span { color: var(--cab-blue); font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.operation-slip header strong { color: var(--asphalt); font-size: .78rem; }
.operation-slip dl { margin: 0; }
.operation-slip dl > div { padding: 11px 17px; display: grid; grid-template-columns: 82px 1fr; gap: 10px; border-bottom: 1px solid var(--concrete); }
.operation-slip dl > div:last-child { border-bottom: 0; }
.operation-slip dt { color: rgba(38,52,62,.78); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.operation-slip dd { margin: 0; color: var(--asphalt); font-size: .83rem; font-weight: 700; }

.fact-strip {
  margin-top: 0;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  min-height: 105px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: var(--asphalt);
  color: #fff;
}
.fact-strip p { margin: 0; padding: 0 32px; display: grid; gap: 4px; border-left: 1px solid rgba(255,255,255,.16); }
.fact-strip p:first-child { padding-left: 0; border-left: 0; }
.fact-strip strong { color: var(--reflective-orange); font-family: var(--headline); font-size: 1.75rem; line-height: 1; }
.fact-strip span { color: rgba(255,255,255,.72); font-size: .77rem; }

.content-section { padding: clamp(85px, 9vw, 140px) max(20px, calc((100vw - 1180px) / 2)); }
.content-section.white { background: #fff; }
.section-heading { max-width: 850px; }
.section-heading > p:last-child { max-width: 680px; margin: 25px 0 0; color: rgba(38,52,62,.76); font-size: 1rem; line-height: 1.65; }

.problem-ledger { margin-top: 64px; border-top: 3px solid var(--asphalt); }
.problem-ledger article {
  min-height: 155px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--concrete);
}
.problem-ledger article:nth-child(2) { margin-left: 5%; }
.problem-ledger article:nth-child(3) { margin-left: 10%; }
.problem-ledger article:nth-child(4) { margin-left: 15%; }
.ledger-label { width: max-content; padding: 5px 9px; border: 1px solid var(--cab-blue); color: var(--cab-blue); font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.problem-ledger h3 { margin: 0; color: var(--asphalt); font-size: clamp(1.65rem, 2.8vw, 2.35rem); line-height: 1.05; }
.problem-ledger p { max-width: 720px; margin: 9px 0 0; color: rgba(38,52,62,.76); line-height: 1.6; }
.problem-ledger article > strong { color: var(--cab-blue); font-family: var(--headline); font-size: 4.3rem; line-height: 1; }

.workflow-section {
  padding: clamp(85px, 9vw, 140px) max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 36% 64%;
  gap: clamp(40px, 6vw, 75px);
  background: var(--asphalt);
  color: #fff;
}
.workflow-intro { position: sticky; top: calc(var(--header-height) + 35px); align-self: start; }
.workflow-intro h2 { color: #fff; }
.workflow-intro > p:last-child { max-width: 380px; color: rgba(255,255,255,.65); }
.workflow-list { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.24); list-style: none; }
.workflow-list li { min-height: 180px; padding: 27px 0; display: grid; grid-template-columns: 45px 1fr; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.18); }
.workflow-list > li > span { color: var(--reflective-orange); font-family: var(--headline); font-size: 2rem; line-height: 1; }
.workflow-list small { color: rgba(255,255,255,.68); font-size: .64rem; font-weight: 800; letter-spacing: .1em; }
.workflow-list h3 { margin: 6px 0 9px; color: #fff; font-size: 1.9rem; line-height: 1; }
.workflow-list p { max-width: 650px; margin: 0; color: rgba(255,255,255,.66); line-height: 1.55; }

.product-section { padding: clamp(85px, 9vw, 140px) max(20px, calc((100vw - 1180px) / 2)); overflow: hidden; background: #fff; }
.product-layout { margin-top: 58px; display: grid; grid-template-columns: 1fr 330px; gap: 28px; align-items: center; }
.desktop-capture { margin: 0; background: var(--sheet-white); border: 1px solid var(--concrete); box-shadow: 0 22px 60px rgba(11,27,43,.13); }
.browser-bar { height: 36px; padding: 0 12px; display: flex; align-items: center; gap: 7px; background: #edf0f1; border-bottom: 1px solid var(--concrete); }
.browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(38,52,62,.42); }
.browser-bar span:first-child { background: var(--reflective-orange); }
.browser-bar small { margin-left: 9px; color: rgba(38,52,62,.82); font-size: .62rem; }
.desktop-capture img { width: 100%; height: auto; }
.capture-caption { padding: 13px 16px; display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--concrete); font-size: .75rem; }
.capture-caption strong { color: var(--asphalt); }
.capture-caption span { color: rgba(38,52,62,.72); }
.mobile-capture { margin: 0; padding: 8px 8px 0; border: 6px solid var(--asphalt); border-radius: 30px; background: var(--asphalt); box-shadow: 0 24px 55px rgba(11,27,43,.24); }
.phone-speaker { width: 50px; height: 5px; margin: 0 auto 8px; border-radius: 8px; background: rgba(255,255,255,.28); }
.mobile-capture img { width: 100%; height: auto; aspect-ratio: 390 / 844; object-fit: contain; border-radius: 17px 17px 0 0; }
.mobile-capture .capture-caption { margin: 0 -8px; padding: 13px 12px 15px; display: grid; background: #fff; border-radius: 0 0 23px 23px; }

.control-table { margin-top: 65px; border-top: 3px solid var(--asphalt); }
.control-row { min-height: 105px; padding: 22px 0; display: grid; grid-template-columns: 26% 35% 1fr; gap: 30px; align-items: center; border-bottom: 1px solid var(--concrete); }
.control-row > span { color: var(--cab-blue); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.control-row h3 { margin: 0; color: var(--asphalt); font-size: 1.65rem; line-height: 1; }
.control-row p { margin: 0; color: rgba(38,52,62,.75); line-height: 1.55; }

.scope-section {
  padding: clamp(80px, 8vw, 120px) max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--concrete);
}
.scope-panel { padding: clamp(38px, 5vw, 65px); background: var(--sheet-white); }
.scope-panel.dark { background: var(--cab-blue); color: #fff; }
.scope-panel h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.scope-panel.dark h2 { color: #fff; }
.scope-panel p { color: rgba(38,52,62,.76); line-height: 1.65; }
.scope-panel.dark p { color: rgba(255,255,255,.72); }
.scope-panel ul { margin: 26px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.scope-panel li { position: relative; padding-left: 19px; }
.scope-panel li::before { content: ""; position: absolute; top: .68em; left: 0; width: 7px; height: 3px; border-left: 2px solid var(--reflective-orange); border-bottom: 2px solid var(--reflective-orange); transform: rotate(-45deg); }

.faq-section { padding: clamp(85px, 9vw, 140px) max(20px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 35% 65%; gap: clamp(40px, 6vw, 75px); }
.faq-intro { position: sticky; top: calc(var(--header-height) + 35px); align-self: start; }
.faq-intro h2 { font-size: clamp(2.75rem, 4.8vw, 4.75rem); }
.faq-intro > p:last-child { max-width: 340px; color: rgba(38,52,62,.74); }
.faq-list { border-top: 3px solid var(--asphalt); }
.faq-list details { border-bottom: 1px solid var(--concrete); }
.faq-list summary { min-height: 78px; padding: 22px 2px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--asphalt); cursor: pointer; font-family: var(--headline); font-size: 1.38rem; line-height: 1.08; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--reflective-orange); font-family: var(--body); font-size: 1.35rem; font-weight: 400; transition: transform .15s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -5px 0 25px; color: rgba(38,52,62,.76); line-height: 1.65; }

.related-section { padding: clamp(75px, 8vw, 115px) max(20px, calc((100vw - 1180px) / 2)); background: #fff; }
.related-links { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 3px solid var(--asphalt); border-left: 1px solid var(--concrete); }
.related-links a { min-height: 180px; padding: 25px; display: flex; flex-direction: column; border-right: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); text-decoration: none; }
.related-links a[aria-current="page"] { background: var(--sheet-white); }
.related-links small { color: var(--cab-blue); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.related-links strong { margin: 25px 0 10px; color: var(--asphalt); font-family: var(--headline); font-size: 2rem; line-height: 1; }
.related-links span { color: rgba(38,52,62,.72); font-size: .82rem; }
.related-links a:not([aria-current="page"]):hover { background: var(--asphalt); }
.related-links a:not([aria-current="page"]):hover strong,
.related-links a:not([aria-current="page"]):hover span,
.related-links a:not([aria-current="page"]):hover small { color: #fff; }

.final-cta { padding: clamp(95px, 11vw, 155px) 20px; background: var(--asphalt); color: #fff; text-align: center; border-top: 8px solid var(--reflective-orange); }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { max-width: 900px; margin: auto; color: #fff; font-size: clamp(3.6rem, 7vw, 7.5rem); }
.final-cta > p:not(.eyebrow) { max-width: 620px; margin: 26px auto 31px; color: rgba(255,255,255,.67); }
.final-cta .actions { justify-content: center; }

.site-footer { padding: 54px max(20px, calc((100vw - 1180px) / 2)) 28px; background: #06111b; color: rgba(255,255,255,.65); }
.footer-main { display: grid; grid-template-columns: 190px 1fr auto; gap: 42px; align-items: center; }
.footer-main p { margin: 0; }
.footer-main nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.footer-main nav a { color: #fff; font-size: .78rem; font-weight: 700; text-decoration: none; }
.footer-main nav a:hover { color: var(--reflective-orange); }
.footer-bottom { margin-top: 38px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: .7rem; }
.mobile-whatsapp { display: none; }

@media (max-width: 1050px) {
  .solution-nav { display: none; }
  .header-actions { margin-left: auto; }
  .solution-hero { grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr); gap: 35px; }
  .product-layout { grid-template-columns: 1fr 270px; }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; --container: min(680px, calc(100% - 32px)); }
  .header-inner { width: calc(100% - 32px); }
  .header-actions { display: none; }
  .menu-toggle { width: 44px; height: 44px; margin-left: auto; padding: 0; border: 1px solid var(--concrete); display: grid; place-content: center; gap: 6px; background: var(--sheet-white); cursor: pointer; }
  .menu-toggle span { width: 19px; height: 2px; background: var(--asphalt); transition: transform .16s; }
  .solution-header.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .solution-header.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: var(--header-height) 0 auto; padding: 15px 20px 24px; display: none; background: var(--sheet-white); border-bottom: 1px solid var(--concrete); box-shadow: 0 24px 48px rgba(11,27,43,.15); }
  .solution-header.menu-open .mobile-menu { display: grid; }
  .mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--concrete); color: var(--asphalt); font-family: var(--headline); font-size: 1.4rem; text-decoration: none; }
  .mobile-menu a:last-child { border-bottom: 0; color: var(--reflective-orange); }
  .solution-hero { padding-top: 42px; grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 15px; }
  .hero-media { min-height: 520px; border-top: 7px solid var(--reflective-orange); border-left: 0; }
  .fact-strip { grid-template-columns: repeat(3, 1fr); padding: 28px 20px; }
  .fact-strip p { padding: 0 20px; }
  .workflow-section { grid-template-columns: 1fr; }
  .workflow-intro,
  .faq-intro { position: static; }
  .product-layout { grid-template-columns: 1fr; }
  .mobile-capture { width: 270px; margin: -210px 20px 0 auto; position: relative; }
  .control-row { grid-template-columns: 22% 34% 1fr; gap: 20px; }
  .scope-section { grid-template-columns: 1fr; }
  .faq-section { grid-template-columns: 1fr; }
  .related-links { grid-template-columns: 1fr; }
  .related-links a { min-height: 145px; }
  .footer-main { grid-template-columns: 1fr; gap: 23px; }
  .footer-main nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(3.25rem, 16vw, 4.55rem); line-height: .91; }
  h2 { font-size: 3.1rem; }
  .brand img { width: 124px; }
  .breadcrumbs { padding-top: calc(var(--header-height) + 14px); }
  .solution-hero { width: calc(100% - 32px); padding-top: 34px; }
  .lead { font-size: 1rem; }
  .actions { align-items: stretch; flex-direction: column; }
  .actions .button { width: 100%; }
  .hero-media { min-height: 420px; }
  .operation-slip { right: 14px; bottom: 14px; width: calc(100% - 28px); }
  .fact-strip { padding: 0; grid-template-columns: 1fr; }
  .fact-strip p { min-height: 78px; padding: 0 16px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .fact-strip p:first-child { padding-left: 16px; }
  .content-section,
  .workflow-section,
  .product-section,
  .faq-section,
  .related-section { padding: 75px 16px; }
  .problem-ledger { margin-top: 45px; }
  .problem-ledger article,
  .problem-ledger article:nth-child(2),
  .problem-ledger article:nth-child(3),
  .problem-ledger article:nth-child(4) { min-height: 0; margin-left: 0; padding: 27px 0; display: block; }
  .problem-ledger .ledger-label { margin-bottom: 17px; }
  .problem-ledger article > strong { display: none; }
  .workflow-list li { min-height: 0; }
  .workflow-list h3 { font-size: 1.65rem; }
  .desktop-capture { width: 148%; transform: translateX(-2%); }
  .desktop-capture .capture-caption { display: none; }
  .mobile-capture { width: 205px; margin: -125px 4px 0 auto; border-width: 5px; }
  .mobile-capture .capture-caption span { display: none; }
  .control-table { margin-top: 48px; }
  .control-row { padding: 24px 0; display: block; }
  .control-row > span { display: block; margin-bottom: 12px; }
  .control-row h3 { margin-bottom: 9px; }
  .scope-section { padding: 1px 0; }
  .scope-panel { padding: 55px 16px; }
  .faq-list summary { font-size: 1.22rem; }
  .footer-main nav { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding-bottom: 65px; display: grid; }
  .mobile-whatsapp {
    position: fixed;
    z-index: 95;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 48px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 2px solid #fff;
    border-radius: 3px;
    background: var(--reflective-orange);
    color: var(--asphalt);
    box-shadow: 0 8px 24px rgba(11,27,43,.25);
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
}

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