@import url("../fonts/local.css");

:root {
  --ink: #121212;
  --paper: #f4f4f0;
  --paper-2: #e8e8e2;
  --white: #fafaf6;
  --safety: #ff7900;
  --safety-deep: #c45a00;
  --asphalt: #1a1c1f;
  --marking: #f5e642;
  --destac-blue: #0009ba;
  --brand: #ff7900;
  --brand-deep: #c45a00;
  --brand-text: #9a4600;
  --accent: #ff7900;
  --accent-deep: #c45a00;
  --blue: var(--brand);
  --blue-deep: var(--asphalt);
  --yellow: var(--brand);
  --yellow-deep: var(--brand-deep);
  --line: #d4d4cc;
  --muted: #4a4a44;
  --danger: #8b1e1e;
  --ok: #1c4a32;
  --wa: #25d366;
  --wa-deep: #1da851;
  --max: 72rem;
  --display: "Chivo", "Helvetica Neue", Arial, sans-serif;
  --ui: "Archivo", "Arial Narrow", "Franklin Gothic Medium", "Segoe UI", sans-serif;
  --serif: "Chivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Chivo", "Helvetica Neue", Arial, sans-serif;
  --radius: 0;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --surface: var(--paper);
  --surface-2: var(--paper-2);
  --surface-raised: var(--white);
  --surface-inverse: var(--asphalt);
  --text: var(--ink);
  --text-muted: var(--muted);
  --text-kicker: 0.8125rem;
  --text-ui: 0.875rem;
  --text-small: 1rem;
  --text-body: 1.125rem;
  --text-lede: 1.25rem;
  --text-h3: 1.25rem;
  --text-h2: clamp(1.5rem, 2.4vw, 2rem);
  --text-h1: clamp(1.75rem, 3vw, 2.5rem);
  --text-hero: clamp(2rem, 4vw, 3rem);
  --state-ok: var(--ok);
  --state-warn: #9a4600;
  --state-danger: var(--danger);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--body);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0.01em;
}

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

a {
  color: var(--brand-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue-deep);
}

h1,
h2,
h3,
h4,
.display {
  font-family: var(--display);
  letter-spacing: -0.012em;
  line-height: 1.16;
  font-weight: 600;
  font-synthesis: none;
  text-wrap: balance;
  margin: 0;
}

h1 {
  font-size: var(--text-h1);
}

h2 {
  font-size: var(--text-h2);
}

h3 {
  font-size: var(--text-h3);
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

[x-cloak] {
  display: none !important;
}

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

.ico.is-fill {
  fill: currentColor;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(42rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 80;
  padding: 0.5rem 0.85rem;
  background: var(--marking);
  color: var(--asphalt);
  font-family: var(--ui);
  font-weight: 700;
}

.skip-link:focus {
  top: 0.75rem;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  align-items: start;
}

.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: 1 / -1; }

.lede,
.lede-sm {
  font-size: var(--text-lede);
  color: var(--muted);
  max-width: 38rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-ghost-light {
  border-color: #fff;
  color: #fff;
}

.topbar-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-meta {
  font-family: var(--ui);
  font-size: var(--text-kicker);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat dt {
  font-family: var(--display);
  font-size: var(--text-hero);
  line-height: 1;
}

.stat dd {
  margin: 0.35rem 0 0;
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.process-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.process-list li {
  counter-increment: step;
}

.process-list h3::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.12em;
  color: var(--brand-text);
  margin-bottom: 0.4rem;
}

.notice {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.notice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice[data-severity="critical"] .notice-badge { color: var(--state-danger); }
.notice[data-severity="warn"] .notice-badge { color: var(--state-warn); }
.notice[data-severity="info"] .notice-badge { color: var(--brand-text); }

.sector-list,
.coverage-list,
.notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sector-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.brazil-map {
  width: 100%;
  height: auto;
}

.brazil-map [data-uf] {
  fill: var(--paper-2);
  stroke: var(--line);
  stroke-width: 0.6;
}

.brazil-map [data-uf].is-on {
  fill: var(--brand);
}

.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.pillars h3 {
  font-size: var(--text-h3);
  margin: 0.35rem 0 0.4rem;
}

.pillars p {
  color: var(--muted);
  font-size: var(--text-small);
}

.pillar-ico,
.sector-ico {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--brand);
}

.client-logos {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  align-items: center;
}

.client-logos img {
  height: 2rem;
  width: auto;
  filter: grayscale(1);
}

.case-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

.case-card h3,
.case-card h2 {
  font-size: var(--text-h3);
}

.case-facts {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
}

.case-facts dt {
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.case-facts dd {
  margin: 0;
}

.encaixe ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.encaixe li {
  counter-increment: step;
}

.encaixe h3::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.12em;
  color: var(--brand-text);
  margin-bottom: 0.4rem;
}

.topbar {
  background: var(--asphalt);
  color: var(--paper);
  font-family: var(--ui);
  font-size: var(--text-ui);
  letter-spacing: 0.08em;
  font-weight: 600;
  border-bottom: 3px solid var(--marking);
}

.topbar a {
  color: var(--paper);
  text-decoration: none;
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 0.55rem 0;
}

.topbar-contacts,
.topbar-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--asphalt);
  border-bottom: 1px solid #2c2e32;
  transition: box-shadow 0.3s var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.75rem;
  padding: 0.6rem 0;
}

.logo {
  flex: 0 1 auto;
  min-width: 0;
  line-height: 0;
}

.logo img {
  height: 2.15rem;
  width: auto;
  max-width: min(15.5rem, 48vw);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-family: var(--ui);
  font-size: var(--text-ui);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  position: relative;
  padding-bottom: 0.2rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ui);
  font-size: var(--text-ui);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.btn-yellow {
  background: var(--brand);
  color: var(--asphalt);
}

.btn-yellow:hover {
  background: var(--brand-text);
  color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.45rem;
  cursor: pointer;
}

.menu-toggle .ico {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.25rem;
}

.mobile-nav a {
  display: block;
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--text-ui);
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  padding: 0.55rem 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  height: auto;
  min-height: 0;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  grid-area: 1 / 1;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.55s var(--ease-out);
}

.hero-media img.is-on {
  position: relative;
  opacity: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(26, 28, 31, 0.36);
  pointer-events: none;
}

.hero-copy {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  justify-self: center;
  align-self: center;
  padding: 2.25rem 0 2.5rem;
  text-align: left;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 14px rgba(0, 0, 0, 0.55);
}

.caption-kicker {
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.hero h1,
.hero .h1 {
  font-size: var(--text-hero);
  color: var(--white);
  margin: 0 0 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.hero .lede {
  font-size: var(--text-lede);
  color: #efe8d8;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-copy-slides {
  display: grid;
}

.hero-copy-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s var(--ease-out), visibility 0.55s var(--ease-out);
}

.hero-copy-slide:first-child {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-copy .btn-yellow,
.hero-copy .btn-blue {
  text-shadow: none;
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-nav-btn:focus-visible,
.hero-dot:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.hero-nav-prev {
  display: inline-flex;
  transform: scaleX(-1);
}

.hero-dots {
  display: flex;
  gap: 0.4rem;
}

.hero-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border-radius: var(--radius);
}

.hero-dot.is-on {
  background: var(--yellow);
}

.proof {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  padding: 1.1rem 0;
  font-family: var(--ui);
  font-size: var(--text-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-text);
}

.proof-line span + span::before {
  content: "·";
  margin: 0 0.7rem;
  color: var(--yellow-deep);
}

.proof-line a {
  color: inherit;
  text-decoration: none;
}

.proof-line a:hover {
  text-decoration: underline;
}

.section {
  padding: 4.5rem 0;
}

#servicos-home > .wrap {
  overflow: hidden;
}

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

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

.kicker {
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-text);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.kicker-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.text-link {
  font-family: var(--ui);
  font-size: var(--text-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: var(--brand-text);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.text-link:hover {
  color: var(--asphalt);
}

.section-ink .kicker {
  color: var(--yellow);
}

.section h2 {
  font-size: var(--text-h2);
  margin-bottom: 1rem;
}

.anchor-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.anchor-service > * {
  min-width: 0;
  max-width: 100%;
}

.anchor-service > .anchor-photo {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.measure {
  display: flex;
  gap: 1.5rem;
  margin: 1.75rem 0 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.measure dt {
  font-family: var(--ui);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--brand-text);
}

.measure dd {
  margin: 0.15rem 0 0;
  font-size: var(--text-kicker);
  color: var(--muted);
  font-family: var(--ui);
  letter-spacing: 0.04em;
}

.sibling-services {
  display: grid;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.sibling-link {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s var(--ease-out), color 0.28s var(--ease-out);
}

.sibling-link:hover,
.sibling-link:focus-visible {
  color: var(--brand-text);
  transform: translateX(4px);
}

.sibling-link strong {
  font-family: var(--display);
  font-size: var(--text-h3);
  font-weight: 600;
}

.sibling-link span {
  color: var(--muted);
  font-size: var(--text-small);
}

.sibling-link:hover span,
.sibling-link:focus-visible span {
  color: inherit;
}

.sibling-link > span:last-child,
.op-row > span:last-child {
  opacity: 0.4;
  transition: opacity 0.28s var(--ease-out), color 0.28s var(--ease-out);
}

.sibling-link:hover > span:last-child,
.sibling-link:focus-visible > span:last-child,
.op-row:hover > span:last-child,
.op-row:focus-visible > span:last-child {
  opacity: 1;
}

.sibling-link:focus-visible,
.op-row:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.75rem;
}

.service-grid + .section-more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-card .media-clip {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-card .media-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.4rem;
}

.service-card-body h2 {
  font-size: var(--text-h3);
  line-height: 1.2;
  margin: 0 0 0.45rem;
}

.service-card-body h2 a {
  color: inherit;
  text-decoration: none;
}

.service-card-body h2 a:hover,
.service-card-body h2 a:focus-visible {
  color: var(--brand-text);
}

.service-card-body > p:not(.kicker) {
  color: var(--muted);
  font-size: var(--text-small);
  margin: 0 0 0.9rem;
  flex: 1;
}

.service-card .text-link {
  margin-top: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.news-grid > .empty-state {
  grid-column: 1 / -1;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  min-width: 0;
}

.news-card .media-clip {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-card.is-event {
  max-width: 22rem;
  width: 100%;
}

.news-card.is-event .media-clip {
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
}

.news-card .media-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card.is-event .media-clip img {
  object-fit: contain;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.4rem;
}

.news-card-body h2,
.news-card-body h3 {
  font-size: var(--text-h3);
  line-height: 1.2;
  margin: 0 0 0.45rem;
}

.news-card-body h2 a,
.news-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.news-card-body h2 a:hover,
.news-card-body h2 a:focus-visible,
.news-card-body h3 a:hover,
.news-card-body h3 a:focus-visible {
  color: var(--blue);
}

.news-card-body > p:not(.kicker) {
  color: var(--muted);
  font-size: var(--text-small);
  margin: 0;
}

.news-card.is-lead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.news-card.is-lead .media-clip {
  height: 100%;
  min-height: 14rem;
}

.news-card.is-lead .news-card-body {
  justify-content: center;
}

.service-flag {
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--asphalt);
  border: 1px solid var(--yellow);
  padding: 0.15rem 0.45rem;
  margin-left: 0.5rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

.service-detail .article-body {
  max-width: none;
}

.media-wide .media-clip {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.media-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame {
  position: relative;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
  transition: transform 0.32s var(--ease-out);
}

.anchor-photo {
  margin: 0;
  width: 100%;
  min-width: 0;
}

.anchor-photo-clip {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-2);
}

.anchor-photo-sizer {
  display: block;
  width: 100%;
  box-sizing: content-box;
  padding-top: 100%;
}

.anchor-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.04) saturate(0.92);
}

.photo-frame:hover img {
  transform: scale(1.04);
}

.photo-frame figcaption {
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.7rem;
  color: var(--muted);
}

.process ol {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}

.process ol::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
}

.process li {
  position: relative;
  padding-top: 2rem;
}

.process li::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--ui);
  font-weight: 600;
  font-size: var(--text-kicker);
  letter-spacing: 0.08em;
  background: var(--paper);
  color: var(--brand-text);
  padding-right: 0.6rem;
  position: absolute;
  top: 0;
}

.process h3 {
  font-size: var(--text-h3);
  margin-bottom: 0.4rem;
}

.process p {
  font-size: var(--text-small);
  color: var(--muted);
}

.company-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.company-page .portrait {
  width: 80%;
}

.company-page .article-body {
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.75;
}

.company-page .article-body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0 0 0.7rem;
  padding-top: 1.85rem;
  border-top: 1px solid rgba(244, 244, 240, 0.14);
  color: var(--paper);
}

.company-page .article-body h2:first-child {
  padding-top: 0;
  border-top: none;
}

.company-page .article-body p,
.company-page .article-body li {
  font-size: 1rem;
  color: #d4d4cc;
}

.company-page .article-body p {
  margin-bottom: 1rem;
}

.company-page .article-meta {
  margin-top: 1.5rem;
  color: #c4c4bc;
}

.company-home-photo {
  margin: 1.75rem 0 0;
}

.company-home-photo .media-clip {
  aspect-ratio: auto;
  overflow: hidden;
}

.company-home-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.company-home-photo figcaption,
.company-sede figcaption {
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.55rem;
  color: #c4c4bc;
}

.company-sede {
  margin-top: 3rem;
  align-items: start;
}

.company-sede figure {
  margin: 0;
}

.company-sede.is-single {
  grid-template-columns: 1fr;
}

.company-sede .main {
  aspect-ratio: auto;
}

.company-sede .media-clip,
.company-sede .side .media-clip {
  aspect-ratio: auto;
  overflow: hidden;
}

.company-sede img,
.company-sede .media-clip img,
.company-sede .side img,
.company-sede .main img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.company-sede .media-clip:hover img,
.company-home-photo .media-clip:hover img {
  transform: none;
}

.director-asphalt .portrait span {
  color: #c4c4bc;
}

.media-clip {
  display: block;
  overflow: hidden;
}

.media-clip img {
  width: 100%;
  display: block;
  transition: transform 0.32s var(--ease-out);
}

.photo-frame:hover .media-clip img,
.portrait:hover .media-clip img,
.portrait:hover > img,
.vehicle-card:hover .media-clip img,
.vehicle-card:hover > img,
.news-card:hover .media-clip img,
.sede .media-clip:hover img,
.stills .media-clip:hover img,
.media-clip:hover img {
  transform: scale(1.04);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  transition: transform 0.32s var(--ease-out);
}

.portrait figcaption {
  margin-top: 0.85rem;
}

.portrait strong {
  display: block;
  font-family: var(--display);
  font-size: var(--text-small);
}

.portrait span {
  color: var(--muted);
  font-size: var(--text-small);
}

.sede {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.sede img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.32s var(--ease-out);
}

.sede .main {
  aspect-ratio: 16 / 10;
}

.sede .main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sede .side {
  display: grid;
  gap: 0.75rem;
}

.sede .side .media-clip,
.sede .side img {
  aspect-ratio: 16 / 10;
  height: 100%;
}

.sede.company-sede,
.sede.company-sede .main {
  aspect-ratio: auto;
}

.sede.company-sede .media-clip,
.sede.company-sede .side .media-clip {
  aspect-ratio: auto;
  overflow: hidden;
}

.sede.company-sede img,
.sede.company-sede .main img,
.sede.company-sede .side img,
.sede.company-sede .media-clip img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.sede.company-sede .media-clip:hover img,
.company-home-photo .media-clip:hover img {
  transform: none;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.vehicle-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.vehicle-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.32s var(--ease-out);
}

.vehicle-card h3 {
  font-size: var(--text-h3);
  margin: 0.7rem 0 0.2rem;
}

.vehicle-card p {
  font-size: var(--text-small);
  color: var(--muted);
  font-family: var(--ui);
  letter-spacing: 0.04em;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.filters button {
  font-family: var(--ui);
  font-size: var(--text-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.filter-chip {
  font-size: var(--text-ui);
}

.filters button.is-on {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--blue-deep);
}

.partner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

.partner img {
  height: 2.4rem;
  width: auto;
}

.partner-card img {
  height: 2.4rem;
  width: auto;
  max-width: min(15.5rem, 80%);
  margin-bottom: 1.25rem;
}

.editorial {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.news-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 1rem;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.news-list time {
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-text);
}

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

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.75rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--text-h3);
  cursor: pointer;
  list-style: none;
  color: inherit;
  transition: color 0.2s var(--ease-out);
}

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

.faq summary .ico {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-text);
  transition: transform 0.28s var(--ease-out), color 0.2s var(--ease-out);
}

.faq summary:hover {
  color: var(--brand-text);
}

.faq summary:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

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

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}

.faq details[open] .faq-body {
  grid-template-rows: 1fr;
}

.faq-body > * {
  overflow: hidden;
  min-height: 0;
}

.faq details p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form label {
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  font: inherit;
  font-size: var(--text-small);
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--yellow);
  border-color: var(--yellow);
}

.alert {
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--blue);
  background: var(--white);
  font-size: var(--text-small);
}

.alert-ok {
  border-color: var(--ok);
}

.alert-err {
  border-color: var(--danger);
}

.page-hero {
  padding: 2.5rem 0 1rem;
  border-bottom: 1px solid var(--line);
}

.page-hero + .section {
  padding-top: 2rem;
}

.page-hero h1 {
  font-size: var(--text-h1);
  max-width: 20ch;
  line-height: 1.14;
}

.page-hero h1 + p {
  margin-top: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-grid h2 a {
  color: inherit;
  text-decoration: none;
}

.contact-grid h2 a:hover,
.contact-grid h2 a:focus-visible {
  color: var(--brand-text);
  text-decoration: underline;
}

.site-footer {
  background: var(--ink);
  color: #cfc8b8;
  padding: 3rem 0 1.5rem;
  font-size: var(--text-ui);
  font-variant-numeric: tabular-nums;
}

.site-footer a {
  color: var(--paper);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer h2 {
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid #2a2a22;
  padding-top: 1rem;
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.04em;
}

.wa-float {
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right));
  bottom: max(2.15rem, calc(env(safe-area-inset-bottom) + 1.1rem));
  z-index: 30;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow:
    0 2px 6px rgba(18, 18, 18, 0.2),
    0 6px 18px rgba(37, 211, 102, 0.4);
  transition:
    background 0.2s var(--ease-out),
    transform 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}

.wa-float:hover,
.wa-float:focus-visible {
  background: var(--wa-deep);
  transform: translateY(-2px);
  box-shadow:
    0 4px 10px rgba(18, 18, 18, 0.22),
    0 10px 24px rgba(37, 211, 102, 0.48);
}

.wa-float:focus-visible {
  outline: 2px solid var(--wa);
  outline-offset: 3px;
}

.wa-float:active {
  transform: translateY(0);
}

.wa-float .ico {
  width: 1.85rem;
  height: 1.85rem;
  fill: currentColor;
}

.wa-float-label {
  position: absolute;
  right: calc(100% + 0.65rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--ui);
  font-size: var(--text-kicker);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.7rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(18, 18, 18, 0.18);
}

.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label {
  opacity: 1;
  visibility: visible;
}

.article-body {
  max-width: 42rem;
}

.article-figure {
  margin: 0 0 1.1rem;
}

.article-body p {
  margin-bottom: 1.1rem;
}

.article-body h3 {
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-text);
  margin: 1.75rem 0 0.55rem;
}

.article-body h3:first-child {
  margin-top: 0;
}

.article-body ul {
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
}

.article-body li {
  margin-bottom: 0.35rem;
}

.crumbs {
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--muted);
}

.crumbs a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

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

  .span-4,
  .span-5,
  .span-7,
  .span-8 {
    grid-column: auto;
  }

  .stats,
  .process-list {
    grid-template-columns: 1fr;
  }

  .anchor-service,
  .service-grid,
  .news-grid,
  .news-card.is-lead,
  .service-detail,
  .company-grid,
  .editorial,
  .contact-grid,
  .partner,
  .footer-grid,
  .process ol,
  .catalog {
    grid-template-columns: 1fr;
  }

  .sibling-link {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

  .process ol::before {
    display: none;
  }

  .hero-copy {
    padding: 1.75rem 0 2rem;
  }

  .logo img {
    height: 1.85rem;
    max-width: min(12.5rem, 52vw);
  }
}

@media (max-width: 600px) {
  body {
    font-size: var(--text-small);
  }

  .wrap {
    width: min(var(--max), calc(100% - 1.6rem));
  }

  .catalog {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

.menu-toggle {
  color: var(--paper);
  border-color: #3a3c40;
}

.mobile-nav a {
  color: var(--paper);
}

.mobile-nav {
  border-top-color: #2c2e32;
}

.btn-yellow {
  background: var(--brand);
  color: var(--asphalt);
}

.btn-yellow:hover {
  background: var(--brand-text);
  color: var(--white);
}

.hero .btn-ghost,
.director-asphalt .btn-ghost,
.site-header .btn-ghost {
  color: var(--paper);
  border-color: var(--paper);
}

.op-row {
  display: grid;
  grid-template-columns: 10rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s var(--ease-out);
}

.op-row:hover {
  transform: translateX(4px);
}

.op-row strong {
  font-family: var(--display);
  font-size: var(--text-h3);
}

.stills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 1rem;
}

.stills figure {
  margin: 0;
}

.stills .media-clip {
  aspect-ratio: 16 / 10;
}

.stills .media-clip img,
.stills img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.32s var(--ease-out);
}

.stills figcaption {
  margin-top: 0.45rem;
  font-family: var(--ui);
  font-size: var(--text-kicker);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.photo-zoom {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  color: inherit;
}

.photo-zoom-ico {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.72);
  color: var(--white);
  pointer-events: none;
}

.photo-zoom-ico .ico {
  width: 1.05rem;
  height: 1.05rem;
}

.photo-lightbox {
  padding: 0;
  border: 0;
  background: transparent;
  max-width: min(52rem, calc(100vw - 2rem));
}

.photo-lightbox::backdrop {
  background: rgba(10, 14, 26, 0.72);
}

.photo-lightbox-panel {
  position: relative;
  background: var(--white);
  padding: 1.5rem 1.5rem 1.35rem;
  max-height: calc(100vh - 3rem);
  overflow: auto;
}

.photo-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.photo-lightbox-close .ico {
  width: 1.15rem;
  height: 1.15rem;
}

.photo-lightbox h2 {
  font-size: var(--text-h3);
  margin: 0 2.5rem 1rem 0;
}

.photo-lightbox h2[hidden] {
  display: none;
}

.photo-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 70vh;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.operations-stage {
  margin: 0 0 0.35rem;
}

#operacoes-home h3 {
  margin: 1.5rem 0 0.7rem;
}

#operacoes-home .section-more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

#eventos-home .news-grid,
.events-grid {
  grid-template-columns: repeat(auto-fill, minmax(16rem, 22rem));
}

#eventos-home .section-more {
  margin-top: 1.25rem;
}

.video-stage {
  position: relative;
  width: min(100%, 48rem);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--asphalt);
}

.video-stage iframe,
.video-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-facade {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--asphalt);
  cursor: pointer;
}

.video-facade:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.video-play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.5rem;
  height: 3.5rem;
  transform: translate(-50%, -50%);
  background: var(--brand);
  pointer-events: none;
}

.video-play-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 0.7rem 0 0.7rem 1.15rem;
  border-color: transparent transparent transparent var(--asphalt);
}

.video-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

.video-list.is-many {
  grid-template-columns: 1fr 1fr;
}

.video-list-item .kicker {
  margin-top: 0.65rem;
}

.op-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.op-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  font-family: var(--display);
  font-size: var(--text-h3);
  font-weight: 600;
}

.op-cards {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 2.5rem;
}

.op-card h2 {
  font-size: var(--text-h2);
  margin: 0.85rem 0 0.6rem;
}

.director-asphalt {
  background: var(--asphalt);
  color: var(--paper);
}

.director-asphalt .kicker {
  color: var(--marking);
}

.partner-destac {
  background: var(--destac-blue);
  color: #f6f1e6;
}

.partner-destac .kicker {
  color: #ffc100;
}

.partner-destac a.btn {
  background: #ffc100;
  color: #00056e;
}

.giroflex {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--safety);
  box-shadow: 0 0 0 0 rgba(255, 121, 0, 0.6);
  animation: giro 2.4s ease-out infinite;
  margin-right: 0.45rem;
}

@keyframes giro {
  0% { box-shadow: 0 0 0 0 rgba(255, 121, 0, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 121, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 121, 0, 0); }
}

@media (max-width: 900px) {
  .op-row,
  .stills,
  .video-list.is-many {
    grid-template-columns: 1fr;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

html.js-motion .hero-copy > *,
html.js-motion .page-hero .wrap > * {
  opacity: 0;
  animation: rise-in 0.62s var(--ease-out) both;
}

html.js-motion .page-hero .wrap > * {
  animation-duration: 0.5s;
}

html.js-motion .hero-copy > *:nth-child(1),
html.js-motion .page-hero .wrap > *:nth-child(1) {
  animation-delay: 0ms;
}

html.js-motion .hero-copy > *:nth-child(2),
html.js-motion .page-hero .wrap > *:nth-child(2) {
  animation-delay: 70ms;
}

html.js-motion .hero-copy > *:nth-child(3),
html.js-motion .page-hero .wrap > *:nth-child(3) {
  animation-delay: 140ms;
}

html.js-motion .hero-copy > *:nth-child(4) {
  animation-delay: 210ms;
}

html.js-motion .proof-line span {
  opacity: 0;
  animation: rise-in 0.45s var(--ease-out) both;
}

html.js-motion .proof-line span:nth-child(1) { animation-delay: 0ms; }
html.js-motion .proof-line span:nth-child(2) { animation-delay: 40ms; }
html.js-motion .proof-line span:nth-child(3) { animation-delay: 80ms; }
html.js-motion .proof-line span:nth-child(4) { animation-delay: 120ms; }
html.js-motion .proof-line span:nth-child(5) { animation-delay: 160ms; }
html.js-motion .proof-line span:nth-child(6) { animation-delay: 200ms; }
html.js-motion .proof-line span:nth-child(7) { animation-delay: 240ms; }
html.js-motion .proof-line span:nth-child(8) { animation-delay: 280ms; }

html.js-motion .hero-media img {
  opacity: 0;
}

html.js-motion .hero-media img.is-on {
  opacity: 1;
}

html.js-motion .hero-copy-slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html.js-motion .hero-copy-slide.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.js-motion [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
}

html.js-motion [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

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

  html.js-motion .hero-copy > *,
  html.js-motion .page-hero .wrap > *,
  html.js-motion .proof-line span,
  html.js-motion [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .giroflex {
    animation: none;
  }

  .wa-float,
  .wa-float:hover,
  .wa-float:focus-visible {
    transition: none;
    transform: none;
  }

  .hero-media img,
  .hero-copy-slide {
    transition: none;
  }

  .faq summary,
  .faq summary .ico {
    transition: none;
  }

  .btn:hover,
  .sibling-link:hover,
  .op-row:hover,
  .media-clip:hover img,
  .photo-frame:hover img,
  .photo-frame:hover .media-clip img,
  .portrait:hover .media-clip img,
  .vehicle-card:hover .media-clip img,
  .stills .media-clip:hover img {
    transform: none;
  }
}
