:root {
  --navy: #061827;
  --navy-2: #12364f;
  --orange: #d6172f;
  --orange-dark: #af1025;
  --ink: #17212b;
  --muted: #667786;
  --line: #e5e9ed;
  --paper: #ffffff;
  --soft: #f4f4f4;
  --steel: #2d3741;
  --steel-2: #6f7b84;
  --shadow: 0 24px 58px rgba(6, 24, 39, 0.18);
  --soft-shadow: 0 18px 50px rgba(6, 24, 39, 0.1);
  --max: 1140px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  color-scheme: light only;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  color-scheme: light only;
  background:
    radial-gradient(circle at 8% 6%, rgba(214, 23, 47, 0.09), transparent 22%),
    radial-gradient(circle at 92% 14%, rgba(6, 24, 39, 0.08), transparent 26%),
    linear-gradient(180deg, #f8fafb 0%, #eef2f5 58%, #e7edf1 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

.page-shell {
  width: 100%;
  margin: 0 auto;
  background: transparent;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 4px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: var(--scroll-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffb84d);
  box-shadow: 0 0 18px rgba(214, 23, 47, 0.44);
}

.home-shell {
  width: 100%;
}

.site-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 24;
  color: #fff;
  background:
    linear-gradient(90deg, #0b6f93, #075a7a 58%, #064c68),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 18px);
  box-shadow: 0 10px 28px rgba(6, 24, 39, 0.2);
}

.topbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1280px, calc(100% - 48px));
  min-height: 38px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 800;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  white-space: nowrap;
}

.topbar-separator {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.topbar-social {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.topbar-social:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}

.topbar-social svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 52px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  min-height: 76px;
  padding: 12px clamp(28px, 4vw, 56px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(6, 24, 39, 0.18);
  transition: min-height 220ms ease, padding 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 16px 34px rgba(6, 24, 39, 0.22);
}

.overlay-header {
  position: fixed;
  top: 38px;
  right: 24px;
  left: 24px;
  width: min(1220px, calc(100% - 48px));
  margin: 12px auto 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(6, 24, 39, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.97));
  backdrop-filter: blur(16px);
}

.overlay-header.is-scrolled {
  margin-top: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(248, 250, 252, 0.98));
}

.overlay-header::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
}

.overlay-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 23, 47, 0.32), transparent 68%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 56px;
  height: auto;
}

.brand-logo-full {
  width: clamp(205px, 17vw, 250px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
  clip-path: inset(0 0 0 0);
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: clamp(18px, 2.1vw, 34px);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  min-width: 0;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 0;
  color: var(--ink);
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.main-nav a.active {
  color: var(--orange);
}

.pill-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  padding: 12px 26px;
  color: #fff;
  background: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(214, 23, 47, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.pill-button::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -70%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  transition: left 360ms ease;
}

.pill-button:hover::after {
  left: 120%;
}

.pill-button:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 30px rgba(214, 23, 47, 0.28);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.video-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  align-items: center;
  padding: 132px max(24px, calc((100vw - var(--max)) / 2 + 24px)) 118px;
  color: #fff;
  background: #061827;
  --hero-shift: 0px;
}

.hero-video,
.video-fallback,
.video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transform: scale(1.055) translateY(var(--hero-shift));
  transition: transform 600ms ease;
}

.video-fallback {
  z-index: 0;
  background: url("assets/hero-industrial.svg") center / cover no-repeat;
}

.video-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 13, 22, 0.92), rgba(6, 24, 39, 0.68) 52%, rgba(6, 24, 39, 0.22)),
    radial-gradient(circle at 78% 30%, rgba(214, 23, 47, 0.28), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), transparent 44%);
}

.video-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin-bottom: 96px;
}

.home-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
  width: min(var(--max), 100%);
}

.home-hero-layout {
  animation: heroLift 760ms ease both;
}

.home-conversion-hero .video-content {
  margin-bottom: 0;
}

.home-conversion-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 66px);
}

.home-brand-intro {
  display: grid;
  gap: 18px;
  align-content: center;
  max-width: 640px;
  padding: clamp(24px, 3vw, 34px);
  border-left: 4px solid #d6172f;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 12, 18, 0.82), rgba(4, 12, 18, 0.48) 76%, transparent),
    rgba(4, 12, 18, 0.28);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(3px);
}

.hero-brand-mark {
  display: block;
  width: min(320px, 78vw);
  height: auto;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.home-brand-intro .eyebrow {
  margin: 0;
  color: #ff3048;
}

.home-brand-intro h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 0.98;
  text-wrap: balance;
}

.home-brand-intro p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.5;
}

.hero-quote-card {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(0, 14, 26, 0.24);
  backdrop-filter: blur(12px);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.hero-quote-card:hover {
  box-shadow: 0 34px 78px rgba(0, 14, 26, 0.32);
}

.hero-quote-card strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
}

.hero-quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.quote-card-lines {
  display: grid;
  gap: 8px;
  padding-top: 4px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.home-scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  bottom: 34px;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 62px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.home-scroll-cue span {
  width: 6px;
  height: 6px;
  margin-top: 14px;
  border-radius: 50%;
  background: #fff;
  animation: scrollCue 1.6s ease-in-out infinite;
}

.video-content::before {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-bottom: 22px;
  background: var(--orange);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.1;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.video-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.outline-link,
.text-button {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.outline-link.light {
  color: #fff;
  border-bottom: 2px solid var(--orange);
}

.home-fast-path {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 28px;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  margin: -46px auto 0;
  padding: 24px;
  position: relative;
  z-index: 4;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 247, 250, 0.98)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.04) 0 1px, transparent 1px 18px);
  box-shadow: 0 26px 58px rgba(6, 24, 39, 0.14);
}

.home-fast-path h2 {
  margin-bottom: 0;
  font-size: clamp(25px, 2.8vw, 34px);
}

.fast-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fast-path-grid a {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 6px;
  min-height: 118px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(6, 24, 39, 0.11);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f4f8fb);
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.fast-path-grid a:first-child {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 18px 34px rgba(214, 23, 47, 0.24);
}

.fast-path-grid a:hover {
  border-color: rgba(214, 23, 47, 0.32);
  box-shadow: 0 18px 34px rgba(0, 39, 70, 0.1);
  transform: perspective(800px) translateY(-3px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.fast-path-grid strong {
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
}

.fast-path-grid span {
  color: var(--muted);
  font-size: 14px;
}

.fast-path-grid a:first-child span {
  color: rgba(255, 255, 255, 0.82);
}

.home-buying-shortcuts {
  padding-top: 86px;
  padding-bottom: 70px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 245, 248, 0.98)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.04) 0 1px, transparent 1px 20px);
}

.home-buying-shortcuts .home-category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.home-buying-shortcuts .category-tile {
  min-height: 280px;
}

.home-buying-shortcuts .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.product-montage-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: stretch;
  width: min(var(--max), 100%);
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 24, 39, 0.98), rgba(18, 54, 79, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px);
  box-shadow: 0 26px 58px rgba(6, 24, 39, 0.18);
}

.product-montage-photo {
  position: relative;
  min-height: clamp(300px, 34vw, 430px);
  overflow: hidden;
  background: var(--navy);
}

.product-montage-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.06), transparent 52%, rgba(6, 24, 39, 0.38)),
    linear-gradient(180deg, transparent 62%, rgba(6, 24, 39, 0.28));
  pointer-events: none;
}

.product-montage-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.04) contrast(1.04);
}

.product-montage-copy {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: clamp(26px, 4vw, 44px);
}

.product-montage-copy span {
  color: #ffb84d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-montage-copy strong {
  max-width: 420px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
}

.product-montage-copy p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.product-montage-copy .outline-link {
  justify-self: start;
  margin-top: 8px;
}

.home-selling-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 72px;
}

.home-selling-points article {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 39, 70, 0.06);
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.home-selling-points article:hover {
  border-color: rgba(214, 23, 47, 0.24);
  box-shadow: 0 22px 44px rgba(6, 24, 39, 0.12);
  transform: perspective(800px) translateY(-3px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.home-selling-points strong {
  color: var(--navy);
  font-size: 19px;
}

.home-selling-points span {
  color: var(--muted);
}

.home-capability-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 48px));
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6, 24, 39, 0.98), rgba(18, 54, 79, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px);
  box-shadow: 0 26px 58px rgba(6, 24, 39, 0.18);
}

.home-capability-rail article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 170px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.home-capability-rail article:last-child {
  border-right: 0;
}

.home-capability-rail span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.home-capability-rail strong {
  font-size: 18px;
  text-transform: uppercase;
}

.home-capability-rail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.home-company-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(231, 238, 243, 0.98)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.045) 0 1px, transparent 1px 20px);
  border-top: 1px solid rgba(6, 24, 39, 0.08);
}

.home-company-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.home-company-copy h2 {
  max-width: 640px;
}

.home-company-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.home-company-copy .text-button {
  justify-self: start;
  margin-top: 8px;
}

.home-company-panel {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  align-content: end;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 28px 64px rgba(6, 24, 39, 0.16);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 260ms ease, box-shadow 260ms ease;
  will-change: transform;
}

.home-company-panel:hover {
  box-shadow: 0 34px 76px rgba(6, 24, 39, 0.22);
}

.home-company-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 24, 39, 0.02) 8%, rgba(6, 24, 39, 0.16) 46%, rgba(4, 12, 18, 0.9)),
    linear-gradient(90deg, rgba(214, 23, 47, 0.24), transparent 42%);
  pointer-events: none;
}

.home-company-panel img,
.home-company-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% center;
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.015);
  transition: transform 600ms ease;
}

.home-company-panel:hover img,
.home-company-panel:hover video {
  transform: scale(1.08);
}

.home-stat-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.home-stat-grid article {
  display: grid;
  gap: 4px;
  min-height: 104px;
  align-content: center;
  padding: 16px 18px;
  color: #fff;
  background: rgba(6, 24, 39, 0.52);
}

.home-stat-grid strong {
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.home-stat-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-process-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(232, 239, 245, 0.96)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.05) 0 1px, transparent 1px 20px);
  border-block: 1px solid rgba(6, 24, 39, 0.08);
}

.home-process-section .section-heading .pill-button {
  justify-self: start;
  margin-top: 22px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(6, 24, 39, 0.11);
}

.process-track article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 230px;
  padding: 28px 22px;
  border-right: 1px solid rgba(6, 24, 39, 0.1);
  background: linear-gradient(180deg, #fff, #f7fafc);
  transition: background 220ms ease, transform 220ms ease;
}

.process-track article:hover {
  background: linear-gradient(180deg, #fff, #eef4f8);
  transform: translateY(-4px);
}

.process-track article:last-child {
  border-right: 0;
}

.process-track article::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 44px;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(6, 24, 39, 0.1);
  border-right: 1px solid rgba(6, 24, 39, 0.1);
  background: #fff;
  transform: rotate(45deg);
}

.process-track article:last-child::after {
  display: none;
}

.process-track span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  font-weight: 900;
}

.process-track strong {
  color: var(--navy);
  font-size: 18px;
  text-transform: uppercase;
}

.process-track p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 92px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  scroll-margin-top: 112px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.compact {
  margin: 0;
  text-align: left;
}

.section-heading p,
.intro-copy p,
.attendance-copy p,
.quote-info p,
.catalog-hero p {
  color: var(--muted);
  font-size: 18px;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 64px;
  align-items: center;
  border-top: 0;
}

.intro-copy {
  padding: 34px;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f5f8fb);
  box-shadow: 0 18px 40px rgba(6, 24, 39, 0.1);
}

.home-categories {
  background: transparent;
  border-top: 0;
}

.home-category-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-tile {
  position: relative;
  display: grid;
  min-height: 240px;
  overflow: hidden;
  align-items: center;
  justify-items: center;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(6, 24, 39, 0.04), rgba(6, 24, 39, 0.82)),
    var(--tile-bg, linear-gradient(135deg, #73828b, #17212b));
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.22) 48%, transparent 58%);
  opacity: 0;
  transform: translateX(-36%);
  transition: opacity 220ms ease, transform 480ms ease;
}

.category-tile .interactive-shine,
.catalog-product-card .interactive-shine,
.hero-quote-card .interactive-shine,
.home-company-panel .interactive-shine,
.fast-path-grid a .interactive-shine,
.home-selling-points article .interactive-shine {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.24), transparent 34%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.category-tile:hover .interactive-shine,
.catalog-product-card:hover .interactive-shine,
.hero-quote-card:hover .interactive-shine,
.home-company-panel:hover .interactive-shine,
.fast-path-grid a:hover .interactive-shine,
.home-selling-points article:hover .interactive-shine {
  opacity: 1;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
}

.category-tile:hover {
  box-shadow: 0 26px 58px rgba(0, 39, 70, 0.18);
  transform: perspective(900px) translateY(-4px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.category-tile:hover::before {
  opacity: 1;
  transform: translateX(36%);
}

.category-tile span {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.tile-services {
  --tile-bg: url("assets/catalogo-trefilados.png") center / cover no-repeat;
}

.tile-chapas {
  --tile-bg: url("assets/catalogo-chapas.png") center / cover no-repeat;
}

.tile-perfis {
  --tile-bg: url("assets/catalogo-vigas.png") center / cover no-repeat;
}

.tile-tubos {
  --tile-bg: url("assets/catalogo-tubos-redondo-quadrado-retangular.png") center / cover no-repeat;
}

.tile-barras {
  --tile-bg: url("assets/perfis-u-estoque.png") center / cover no-repeat;
}

.tile-laminados {
  --tile-bg: url("assets/catalogo-cantoneiras.png") center / cover no-repeat;
}

.tile-metalons {
  --tile-bg: url("assets/art-metalons.svg") center / cover no-repeat;
}

.tile-second {
  --tile-bg: url("assets/art-segunda.svg") center / cover no-repeat;
}

.attendance-section,
.services-section,
.location-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 248, 0.96)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.045) 0 1px, transparent 1px 20px);
  border-top: 0;
}

.attendance-map {
  display: grid;
  min-height: 310px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 36px;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  background:
    radial-gradient(circle at 42% 44%, rgba(214, 23, 47, 0.95) 0 8px, transparent 9px),
    linear-gradient(135deg, rgba(0, 39, 70, 0.95), rgba(0, 76, 134, 0.82)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.16) 18px 19px);
}

.attendance-map strong {
  font-size: 44px;
}

.attendance-map span {
  max-width: 340px;
}

.location-card {
  padding: 34px;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f6f9fb);
  box-shadow: 0 18px 40px rgba(6, 24, 39, 0.1);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.map-preview {
  display: grid;
  min-height: 340px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 36px;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  background:
    radial-gradient(circle at 52% 46%, rgba(214, 23, 47, 0.95) 0 9px, transparent 10px),
    linear-gradient(135deg, rgba(0, 39, 70, 0.96), rgba(0, 76, 134, 0.74)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.12) 0 1px, transparent 1px 28px);
}

.map-preview strong {
  font-size: 38px;
}

.map-preview span {
  max-width: 360px;
}

.attendance-command-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  margin: -44px auto 0;
  position: relative;
  z-index: 4;
}

.attendance-command-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 251, 0.98)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.035) 0 1px, transparent 1px 18px);
  box-shadow: 0 22px 48px rgba(6, 24, 39, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.attendance-command-card:hover {
  border-color: rgba(214, 23, 47, 0.34);
  box-shadow: 0 28px 58px rgba(6, 24, 39, 0.16);
  transform: translateY(-3px);
}

.attendance-command-card.featured {
  color: #fff;
  border-color: rgba(214, 23, 47, 0.32);
  background:
    linear-gradient(135deg, rgba(214, 23, 47, 0.96), rgba(158, 15, 32, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px);
}

.attendance-command-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.attendance-command-card.featured span {
  color: rgba(255, 255, 255, 0.76);
}

.attendance-command-card strong {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.12;
}

.attendance-command-card.featured strong {
  color: #fff;
}

.attendance-command-card p {
  margin: 0;
  color: var(--muted);
}

.attendance-command-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.attendance-zone-card {
  position: relative;
  overflow: hidden;
}

.attendance-zone-card::after {
  content: "";
  position: absolute;
  inset: auto 26px 26px auto;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.zone-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 430px;
  margin-top: 12px;
}

.zone-tags b {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  text-transform: uppercase;
}

.attendance-check-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(232, 239, 245, 0.96)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.05) 0 1px, transparent 1px 20px);
  border-top: 1px solid rgba(6, 24, 39, 0.08);
}

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

.attendance-check-grid article {
  padding: 24px;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f6f9fb);
  box-shadow: 0 16px 36px rgba(6, 24, 39, 0.09);
}

.attendance-check-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 19px;
  text-transform: uppercase;
}

.attendance-check-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attendance-check-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 700;
}

.attendance-check-grid li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--orange);
}

.regional-coverage-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  gap: 38px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(6, 24, 39, 0.96), rgba(12, 39, 58, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px);
  color: #fff;
  overflow: hidden;
}

.regional-coverage-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.coverage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
}

.regional-coverage-section .text-button {
  color: #fff;
  border-bottom: 2px solid var(--orange);
}

.coverage-panel {
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(210px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.coverage-map-card {
  display: grid;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 72% 20%, rgba(126, 211, 232, 0.25), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.22);
}

.coverage-map-image-card {
  align-items: center;
  max-width: 520px;
  justify-self: center;
}

.coverage-map-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.coverage-region-list {
  display: grid;
  gap: 14px;
  align-content: stretch;
}

.coverage-region-list article {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.coverage-region-list span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.coverage-region-list strong {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}

.coverage-region-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.quote-helper-card {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(6, 24, 39, 0.08);
}

.quote-helper-card strong {
  color: var(--navy);
  text-transform: uppercase;
}

.quote-helper-card span {
  color: var(--muted);
  font-weight: 700;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 56px;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.08), transparent 42%),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.045) 0 1px, transparent 1px 20px),
    #f7fafc;
}

.sales-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 32px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6, 24, 39, 0.98), rgba(18, 54, 79, 0.92) 58%, rgba(214, 23, 47, 0.84)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px),
    url("assets/hero-industrial.svg") center / cover no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sales-cta h2 {
  max-width: 780px;
}

.sales-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-style: normal;
}

.contact-clean-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-clean-list a {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(6, 24, 39, 0.07);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-clean-list a:hover {
  border-color: rgba(214, 23, 47, 0.32);
  box-shadow: 0 18px 34px rgba(6, 24, 39, 0.1);
  transform: translateY(-2px);
}

.contact-clean-list strong {
  color: var(--navy);
  font-size: 15px;
  text-transform: uppercase;
}

.contact-clean-list span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 32px;
  background: linear-gradient(180deg, #fff, #f6f9fb);
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(6, 24, 39, 0.13);
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: rgba(214, 23, 47, 0.72);
  box-shadow: 0 0 0 4px rgba(214, 23, 47, 0.12);
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.full {
  width: 100%;
}

.catalog-hero {
  padding: 132px max(24px, calc((100vw - var(--max)) / 2 + 24px)) 64px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6, 24, 39, 0.96) 0%, rgba(6, 24, 39, 0.9) 42%, rgba(214, 23, 47, 0.72) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px),
    url("assets/catalog-chapas.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 -90px 90px rgba(6, 24, 39, 0.22);
}

.catalog-hero h1 {
  max-width: 820px;
  font-size: clamp(40px, 5vw, 68px);
}

.catalog-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.catalog-actions {
  margin-top: 28px;
}

.catalog-actions .outline-link {
  color: #fff;
  border-bottom: 2px solid var(--orange);
}

.catalog-map-section,
.product-showcase-section,
.service-details-section {
  position: relative;
  display: grid;
  gap: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 247, 0.98)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.055) 0 1px, transparent 1px 20px);
  border-block: 1px solid rgba(6, 24, 39, 0.08);
}

.catalog-map-section::before,
.product-showcase-section::before,
.service-details-section::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 23, 47, 0.36), transparent);
}

.catalog-section-pill {
  position: relative;
  z-index: 1;
  justify-self: center;
  margin: 0;
  padding: 10px 34px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--orange), #9e0f20);
  box-shadow: 0 16px 32px rgba(214, 23, 47, 0.22);
  font-size: 22px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.catalog-map {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: start;
}

.map-node,
.map-group {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
}

.map-label {
  padding: 12px 20px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(180deg, #2b2f33, #111820);
  text-transform: uppercase;
}

.map-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--orange);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.map-node strong {
  color: var(--ink);
  text-transform: uppercase;
}

.map-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.map-items a {
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 39, 70, 0.06);
}

.map-items a:hover {
  color: var(--orange);
  border-color: rgba(214, 23, 47, 0.34);
}

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

.catalog-product-card {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  min-height: 318px;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
  box-shadow: 0 18px 38px rgba(6, 24, 39, 0.1);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.catalog-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.28) 50%, transparent 58%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 220ms ease, transform 500ms ease;
}

.catalog-product-card:hover,
.service-detail-card:hover {
  border-color: rgba(214, 23, 47, 0.34);
  box-shadow: 0 26px 52px rgba(6, 24, 39, 0.16);
  transform: perspective(900px) translateY(-3px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.catalog-product-card:hover::before {
  opacity: 1;
  transform: translateX(42%);
}

.catalog-card-icon {
  display: grid;
  height: 92px;
  place-items: center;
}

.catalog-card-icon svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 4px solid var(--orange);
}

.conversion-table-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 253, 0.98)),
    linear-gradient(135deg, rgba(214, 23, 47, 0.12), rgba(0, 39, 70, 0.1));
}

.conversion-table-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 20px;
  border-bottom: 4px solid var(--orange);
  background:
    linear-gradient(135deg, rgba(0, 39, 70, 0.96), rgba(24, 56, 78, 0.94)),
    #002746;
}

.conversion-table-visual span {
  display: grid;
  min-height: 0;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.conversion-table-visual span:nth-child(-n + 2) {
  background: var(--orange);
  text-transform: uppercase;
}

.metal-calculator-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 253, 0.98)),
    linear-gradient(135deg, rgba(0, 39, 70, 0.12), rgba(214, 23, 47, 0.1));
}

.metal-calculator-visual {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 14px;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 26px;
  border-bottom: 4px solid var(--orange);
  background:
    linear-gradient(135deg, rgba(6, 24, 39, 0.95), rgba(0, 39, 70, 0.9)),
    #061827;
}

.metal-calculator-visual span,
.metal-calculator-visual strong {
  display: grid;
  min-height: 54px;
  align-items: center;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
}

.metal-calculator-visual span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  text-transform: uppercase;
}

.metal-calculator-visual strong {
  min-width: 84px;
  justify-items: center;
  background: var(--orange);
  font-size: 22px;
  text-transform: uppercase;
}

.galvanized-table-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 253, 0.98)),
    linear-gradient(135deg, rgba(173, 184, 193, 0.18), rgba(214, 23, 47, 0.08));
}

.galvanized-table-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 24px;
  border-bottom: 4px solid var(--orange);
  background:
    linear-gradient(135deg, rgba(235, 241, 246, 0.9), rgba(143, 157, 167, 0.95)),
    #d5dde3;
}

.galvanized-table-visual span {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(6, 24, 39, 0.1);
}

.catalog-product-card h3 {
  margin: 18px 18px 8px;
  color: var(--navy);
  font-size: 22px;
  text-align: left;
  text-transform: uppercase;
}

.catalog-product-photo {
  min-height: 128px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 39, 70, 0.58)),
    var(--catalog-photo, linear-gradient(135deg, #cfd6dc, #6b7780));
}

.photo-chapas {
  --catalog-photo: url("assets/art-chapas.svg") center / cover no-repeat;
}

.photo-tubos {
  --catalog-photo: url("assets/art-tubos.svg") center / cover no-repeat;
}

.photo-perfis {
  --catalog-photo: url("assets/art-perfis.svg") center / cover no-repeat;
}

.photo-barras {
  --catalog-photo: url("assets/art-metalons.svg") center / cover no-repeat;
}

.photo-laminados {
  --catalog-photo: url("assets/art-perfis.svg") center / cover no-repeat;
}

.photo-perfis-laminados {
  --catalog-photo: url("assets/art-segunda.svg") center / cover no-repeat;
}

.catalog-product-card p {
  margin: 0;
  padding: 0 18px 22px;
  color: var(--muted);
  font-size: 16px;
  text-align: left;
}

.service-details-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.96), rgba(229, 236, 242, 0.98)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.05) 0 1px, transparent 1px 20px);
}

.catalog-clean-main {
  padding-top: 104px;
  background:
    radial-gradient(circle at 86% 8%, rgba(214, 23, 47, 0.11), transparent 26%),
    radial-gradient(circle at 10% 24%, rgba(6, 24, 39, 0.1), transparent 28%),
    linear-gradient(180deg, #f6f8fa 0%, #e8eef3 56%, #dfe7ed 100%);
}

.catalog-clean-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 36px;
  align-items: end;
  padding: 58px max(24px, calc((100vw - var(--max)) / 2 + 24px)) 34px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6, 24, 39, 0.98), rgba(18, 54, 79, 0.92) 58%, rgba(214, 23, 47, 0.78)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px),
    url("assets/catalog-perfis.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.catalog-clean-hero h1 {
  max-width: 780px;
  font-size: clamp(34px, 4.4vw, 58px);
}

.catalog-clean-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.products-video-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #061827;
}

.catalog-clean-hero.products-panoramic-hero {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  background-color: #080b0d !important;
  background-image: url("assets/hero-catalogo-deposito.png") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  min-height: 430px !important;
  height: auto !important;
  aspect-ratio: 3 / 1;
}

.products-panoramic-hero .products-hero-overlay {
  background: linear-gradient(90deg, rgba(3, 10, 15, 0.78) 0%, rgba(3, 10, 15, 0.56) 48%, rgba(3, 10, 15, 0.18) 100%);
}

.products-hero-video,
.products-hero-overlay {
  position: absolute;
  inset: 0;
}

.products-hero-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: contrast(1.06) brightness(0.76) saturate(0.9);
}

.products-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6, 24, 39, 0.96) 0%, rgba(6, 24, 39, 0.86) 46%, rgba(6, 24, 39, 0.5) 68%, rgba(214, 23, 47, 0.56) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px);
}

.products-panoramic-hero .products-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 13, 22, 0.58) 0%, rgba(6, 24, 39, 0.34) 44%, rgba(6, 24, 39, 0.08) 100%) !important;
}

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

.catalog-clean-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  max-width: 420px;
}

.catalog-clean-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.catalog-clean-actions a:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.catalog-clean-section,
.service-icon-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.service-icon-section {
  position: relative;
  display: grid;
  gap: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(236, 242, 246, 0.96)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.05) 0 1px, transparent 1px 20px);
  border-top: 1px solid rgba(6, 24, 39, 0.08);
}

.service-icon-section::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 23, 47, 0.32), transparent);
}

.service-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(980px, 100%);
  justify-self: center;
}

.service-icon-card {
  min-height: 318px;
}

.category-intro-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  background: #fff;
}

.category-feature-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fbfcfd);
  box-shadow: 0 18px 42px rgba(0, 39, 70, 0.08);
}

.category-feature-icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
}

.category-feature-icon svg {
  width: 78px;
  height: 78px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-feature-card p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.category-list-section,
.category-applications-section {
  position: relative;
  display: grid;
  gap: 28px;
  background: #f7f9fb;
}

.category-list-section::before,
.category-applications-section::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 1px;
  background: rgba(0, 39, 70, 0.08);
}

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

.subcategory-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 39, 70, 0.07);
}

.subcategory-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--orange);
  font-weight: 900;
}

.subcategory-card h3 {
  color: var(--navy);
  font-size: 24px;
}

.subcategory-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.category-cascade-section {
  position: relative;
  display: grid;
  gap: 28px;
  background: #f7f9fb;
}

.category-cascade-section::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 1px;
  background: rgba(0, 39, 70, 0.08);
}

.cascade-list {
  display: grid;
  gap: 14px;
}

.cascade-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 39, 70, 0.06);
}

.cascade-card summary {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 18px 22px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.cascade-card summary::after {
  content: "+";
  margin-left: auto;
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

.cascade-card[open] summary::after {
  content: "-";
}

.cascade-card summary span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--orange);
  font-size: 15px;
  font-weight: 900;
}

.cascade-content {
  display: grid;
  gap: 22px;
  padding: 0 22px 24px 80px;
  color: var(--muted);
}

.cascade-content p {
  margin: 0;
  font-size: 17px;
}

.cascade-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 22px;
}

.cascade-columns h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
  text-transform: uppercase;
}

.chip-list,
.plain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chip-list li,
.plain-list li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.plain-list {
  display: grid;
}

.simple-catalog-section {
  display: grid;
  gap: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 241, 246, 0.98)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.055) 0 1px, transparent 1px 20px);
  border-top: 1px solid rgba(6, 24, 39, 0.08);
  border-bottom: 1px solid rgba(6, 24, 39, 0.08);
}

.quote-dock {
  position: sticky;
  bottom: 18px;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  margin: -34px auto 46px;
  padding: 18px 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(6, 24, 39, 0.96), rgba(18, 54, 79, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 20px);
  box-shadow: 0 22px 48px rgba(6, 24, 39, 0.2);
}

.quote-dock strong {
  display: block;
  font-size: 18px;
}

.quote-dock span {
  color: rgba(255, 255, 255, 0.74);
}

.quote-dock .pill-button {
  min-height: 42px;
  padding: 10px 18px;
}

.page-assist-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  margin: 46px auto 0;
}

.page-assist-strip article {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 156px;
  align-content: start;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(6, 24, 39, 0.11);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f6f9fb);
  box-shadow: 0 16px 34px rgba(6, 24, 39, 0.08);
}

.page-assist-strip article::before {
  content: "";
  width: 36px;
  height: 4px;
  background: var(--orange);
}

.page-assist-strip strong {
  color: var(--navy);
  font-size: 18px;
  text-transform: uppercase;
}

.page-assist-strip p {
  margin: 0;
  color: var(--muted);
}

.simple-catalog-table {
  overflow: hidden;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(6, 24, 39, 0.12);
}

.simple-row {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(6, 24, 39, 0.09);
}

.simple-row:has(> :nth-child(3)) {
  grid-template-columns: 1.05fr 0.95fr 1.1fr;
}

.simple-row:not(.header):hover {
  background: #f4f8fb;
}

.simple-row:last-child {
  border-bottom: 0;
}

.simple-row.header {
  min-height: 52px;
  color: #fff;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.simple-row strong {
  color: var(--navy);
  font-size: 20px;
}

.simple-row span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.catalog-note {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.reference-table-section {
  gap: 24px;
}

.reference-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(6, 24, 39, 0.12);
}

.reference-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.reference-table th,
.reference-table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(6, 24, 39, 0.09);
  text-align: left;
}

.reference-table th {
  color: #fff;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.reference-table td {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.reference-table td:nth-child(odd) {
  color: var(--navy);
}

.reference-table tr:last-child td {
  border-bottom: 0;
}

.reference-table tbody tr:hover {
  background: #f4f8fb;
}

.compact-reference-table {
  min-width: 980px;
}

.calculator-section {
  gap: 24px;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: stretch;
}

.metal-weight-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(6, 24, 39, 0.09);
}

.metal-weight-form label {
  display: grid;
  gap: 8px;
}

.metal-weight-form label[hidden] {
  display: none;
}

.metal-weight-form span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.metal-weight-form input,
.metal-weight-form select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(6, 24, 39, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: #f8fafb;
  font: inherit;
  font-weight: 700;
}

.metal-weight-form .pill-button {
  grid-column: span 2;
  width: 100%;
}

.metal-weight-result {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 260px;
  padding: 28px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 24, 39, 0.98), rgba(0, 39, 70, 0.9)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 20px);
  box-shadow: 0 22px 48px rgba(6, 24, 39, 0.2);
}

.metal-weight-result span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.metal-weight-result strong {
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}

.metal-weight-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.external-reference-section {
  gap: 24px;
}

.external-reference-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 24px;
  align-items: end;
}

.external-reference-heading .catalog-section-pill {
  margin-bottom: 14px;
}

.external-reference-frame {
  overflow: hidden;
  min-height: 720px;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(6, 24, 39, 0.12);
}

.external-reference-frame iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  background: #fff;
}

.catalog-page-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.catalog-page-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(6, 24, 39, 0.08);
}

.catalog-page-nav a:hover {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

.service-hero-photo {
  display: block;
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 39, 70, 0.1);
}

.application-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.application-list span {
  display: grid;
  min-height: 72px;
  align-items: center;
  padding: 18px 18px 18px 44px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 39, 70, 0.05);
}

.application-list span::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--orange);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-detail-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 39, 70, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-photo {
  position: relative;
  min-height: 290px;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(0, 39, 70, 0.12), rgba(214, 23, 47, 0.13)),
    url("assets/art-servicos.svg") center / cover no-repeat;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 39, 70, 0.34));
  pointer-events: none;
}

.service-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.service-detail-copy {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.service-detail-copy h3 {
  color: var(--navy);
  font-size: clamp(22px, 2.2vw, 30px);
}

.service-detail-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-content: center;
}

.page-grid-section {
  display: grid;
  gap: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 248, 0.96)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.045) 0 1px, transparent 1px 20px);
}

.page-grid-section .section-heading.compact {
  max-width: 820px;
}

.about-story-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(118deg, rgba(5, 13, 20, 0.98), rgba(10, 29, 44, 0.94) 58%, rgba(104, 12, 24, 0.9)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 22px);
}

.about-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(214, 23, 47, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0.72;
}

.about-story-visual {
  position: sticky;
  top: 118px;
  display: grid;
  min-height: 560px;
  align-content: end;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.about-history-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  margin: 0;
  overflow: hidden;
}

.about-history-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.76)),
    linear-gradient(90deg, rgba(6, 24, 39, 0.18), transparent 52%);
}

.about-history-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.02);
}

.about-story-visual .section-heading.compact {
  max-width: none;
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  text-align: left;
}

.about-story-visual .eyebrow {
  color: #ff3048;
}

.about-story-visual h1,
.about-story-visual h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 0.98;
  text-wrap: balance;
}

.about-story {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  max-width: 760px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055)),
    rgba(6, 24, 39, 0.44);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  font-size: 17px;
  line-height: 1.72;
}

.about-story::before {
  content: "1980";
  justify-self: start;
  margin-bottom: 4px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(214, 23, 47, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.about-story p {
  margin: 0;
}

.about-purpose-section {
  background:
    linear-gradient(180deg, rgba(246, 249, 251, 0.98), rgba(225, 234, 241, 0.98)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.05) 0 1px, transparent 1px 20px);
}

.about-purpose-section .info-card {
  min-height: 280px;
}

.about-current-structure {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(6, 24, 39, 0.12);
}

.about-current-structure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 46% center;
}

.about-current-structure div {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px) clamp(22px, 4vw, 44px) clamp(24px, 4vw, 42px) 0;
}

.about-current-structure h2 {
  max-width: 520px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.04;
}

.about-current-structure p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.about-values-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 248, 0.96)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.045) 0 1px, transparent 1px 20px);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-list li {
  position: relative;
  min-height: 64px;
  padding: 18px 18px 18px 46px;
  border: 1px solid rgba(6, 24, 39, 0.11);
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #f6f9fb);
  box-shadow: 0 14px 30px rgba(6, 24, 39, 0.08);
  font-weight: 700;
}

.values-list li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--orange);
}

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

.info-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(6, 24, 39, 0.11);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f6f9fb);
  box-shadow: 0 16px 36px rgba(6, 24, 39, 0.09);
}

.info-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--orange);
  font-weight: 900;
}

.info-card h3 {
  color: var(--navy);
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 262px minmax(0, 1fr);
  gap: 42px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 92px;
}

.catalog-sidebar {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.catalog-sidebar details {
  margin-bottom: 10px;
}

.catalog-sidebar summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 8px 12px;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-sidebar summary::after {
  content: "v";
  font-size: 16px;
}

.catalog-sidebar a {
  display: block;
  padding: 7px 8px;
  color: var(--ink);
  font-size: 13px;
}

.catalog-sidebar a:hover {
  color: var(--orange);
}

.catalog-content {
  display: grid;
  gap: 64px;
}

.catalog-grid {
  margin-bottom: 18px;
}

.catalog-group {
  scroll-margin-top: 112px;
}

.group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.group-heading h2 {
  max-width: 780px;
}

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

.item-card {
  display: grid;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 39, 70, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.item-card:hover {
  border-color: rgba(214, 23, 47, 0.28);
  box-shadow: 0 24px 48px rgba(0, 39, 70, 0.12);
  transform: translateY(-3px);
}

.item-art {
  min-height: 110px;
  background:
    linear-gradient(180deg, rgba(0, 39, 70, 0.08), rgba(0, 39, 70, 0.72)),
    var(--item-bg, linear-gradient(135deg, #73828b, #17212b));
}

.item-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.item-body p {
  margin: 0;
  color: var(--muted);
}

.item-body small {
  color: var(--navy);
  font-weight: 900;
}

.quote-link {
  margin-top: 4px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  padding: 54px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(120deg, rgba(6, 24, 39, 0.98), rgba(11, 36, 55, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal-item {
  opacity: 0;
  --reveal-x: 0;
  --reveal-y: 34px;
  translate: var(--reveal-x) var(--reveal-y);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    translate 620ms ease var(--reveal-delay, 0ms);
}

.reveal-from-left {
  --reveal-x: -42px;
  --reveal-y: 0;
}

.reveal-from-right {
  --reveal-x: 42px;
  --reveal-y: 0;
}

.reveal-from-up {
  --reveal-x: 0;
  --reveal-y: -34px;
}

.reveal-item.is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(28px);
  }
}

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

  .reveal-item {
    opacity: 1;
    translate: 0 0;
  }

  .hero-video,
  .category-tile,
  .catalog-product-card,
  .hero-quote-card,
  .home-company-panel,
  .fast-path-grid a {
    transform: none !important;
  }
}

.footer-brand .brand-logo-full {
  width: 240px;
  max-height: 72px;
}

.site-footer .footer-brand {
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
}

.site-footer h2 {
  color: #fff;
  font-size: 28px;
}

.footer-about p {
  max-width: 440px;
  margin-top: 20px;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 24, 39, 0.56);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lead-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-popup-panel {
  position: relative;
  display: grid;
  width: min(720px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  translate: 0 20px;
  transition: translate 240ms ease;
}

.lead-popup.is-open .lead-popup-panel {
  translate: 0 0;
}

.lead-popup-top {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 24px 64px 22px;
  background: #fff;
}

.lead-popup-top img {
  width: min(240px, 76%);
  max-height: 72px;
  object-fit: contain;
}

.lead-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lead-popup-close:hover {
  color: var(--orange);
  background: rgba(6, 24, 39, 0.06);
}

.lead-popup-body {
  display: grid;
  gap: 18px;
  padding: 34px 44px 40px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(6, 110, 147, 0.98), rgba(6, 74, 103, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 20px);
}

.lead-popup-body h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
}

.lead-popup-body p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.lead-popup-form {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.lead-popup-form input,
.lead-popup-form textarea,
.lead-popup-form select {
  border: 0;
  border-radius: 4px;
  min-height: 42px;
  background: #fff;
}

.lead-popup-form textarea {
  min-height: 88px;
}

.lead-popup-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.lead-popup-check input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}

.lead-popup-note {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  text-align: left;
}

.lead-popup-form .pill-button {
  justify-self: center;
  min-width: min(100%, 390px);
  margin-top: 12px;
  color: #075a7a;
  background: #fff;
  box-shadow: none;
}

.lead-popup-form .pill-button:hover {
  color: #fff;
  background: var(--orange);
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 30;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 18px 36px rgba(34, 197, 94, 0.34);
  font-weight: 900;
  animation: whatsappPulse 1.8s ease-in-out infinite;
  transition: transform 180ms ease;
}

.floating-whatsapp img {
  position: relative;
  z-index: 1;
  display: block;
  width: 44px;
  height: 44px;
}

.floating-whatsapp:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp::before,
.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(34, 197, 94, 0.42);
  border-radius: 50%;
  animation: whatsappRing 1.8s ease-out infinite;
}

.floating-whatsapp::after {
  animation-delay: .6s;
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@keyframes whatsappRing {
  0% {
    opacity: .75;
    transform: scale(.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@media (max-width: 1040px) {
  .topbar-shell {
    width: calc(100% - 28px);
  }

  .overlay-header {
    right: 14px;
    left: 14px;
    width: calc(100% - 28px);
    top: 38px;
    margin-top: 10px;
  }

  .site-header {
    flex-wrap: wrap;
    min-height: 70px;
    padding: 10px 18px;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .home-fast-path,
  .home-category-grid,
  .catalog-grid,
  .item-grid,
  .info-grid,
  .info-grid.three,
  .about-story-section,
  .about-values-section {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-conversion-hero .video-content {
    margin-bottom: 0;
  }

  .product-montage-feature {
    grid-template-columns: 1fr;
  }

  .product-montage-photo {
    min-height: 320px;
  }

  .hero-quote-card {
    max-width: 520px;
  }

  .fast-path-grid,
  .home-buying-shortcuts .home-category-grid,
  .home-selling-points,
  .home-capability-rail,
  .home-company-section,
  .process-track,
  .attendance-command-section,
  .attendance-check-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-process-section,
  .home-company-section,
  .about-current-structure,
  .attendance-check-section,
  .regional-coverage-section,
  .coverage-panel {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .catalog-map {
    grid-template-columns: 1fr 1fr;
  }

  .category-intro-section,
  .subcategory-grid,
  .application-list {
    grid-template-columns: 1fr 1fr;
  }

  .map-home {
    grid-column: span 2;
  }

  .product-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .sales-cta,
  .quote-dock,
  .external-reference-heading,
  .calculator-layout,
  .catalog-clean-hero {
    grid-template-columns: 1fr;
  }

  .catalog-clean-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .products-panoramic-hero {
    aspect-ratio: auto;
  }

  .site-topbar {
    min-height: 48px;
  }

  .topbar-shell {
    min-height: 48px;
    gap: 10px;
    font-size: 11px;
  }

  .topbar-left {
    gap: 8px;
  }

  .topbar-left .topbar-link:nth-child(3),
  .topbar-separator {
    display: none;
  }

  .topbar-right {
    gap: 7px;
  }

  .topbar-social {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .site-header {
    gap: 14px;
    min-height: 66px;
    padding: 10px 14px;
  }

  .overlay-header {
    top: 48px;
    margin-top: 10px;
    border-radius: 8px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand-logo {
    width: 52px;
  }

  .brand-logo-full {
    width: min(188px, 54vw);
    max-height: 44px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    padding-top: 8px;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .site-header.nav-open .main-nav {
    flex-direction: column;
    gap: 6px;
  }

  .site-header.nav-open .main-nav a {
    width: 100%;
    justify-content: center;
  }

  .video-hero {
    min-height: 760px;
    padding: 132px 24px 156px;
  }

  .home-conversion-hero {
    min-height: auto;
    padding-bottom: 190px;
  }

  .home-hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .video-content {
    margin-bottom: 0;
  }

  .home-conversion-hero h1 {
    font-size: 38px;
  }

  .hero-quote-card {
    padding: 22px;
  }

  h1 {
    font-size: 38px;
  }

  .home-fast-path,
  .fast-path-grid,
  .home-capability-rail,
  .home-company-section,
  .home-process-section,
  .process-track,
  .quote-dock,
  .page-assist-strip,
  .attendance-command-section,
  .attendance-check-section,
  .attendance-check-grid,
  .regional-coverage-section,
  .coverage-panel,
  .home-selling-points,
  .home-category-grid,
  .home-buying-shortcuts .home-category-grid,
  .catalog-grid,
  .intro-section,
  .attendance-section,
  .location-section,
  .quote-section,
  .site-footer,
  .form-row,
  .catalog-layout,
  .item-grid,
  .info-grid,
  .info-grid.three,
  .about-story-section,
  .about-values-section,
  .values-list {
    grid-template-columns: 1fr;
  }

  .home-fast-path {
    width: calc(100% - 32px);
    margin-top: -64px;
    padding: 18px;
  }

  .home-company-section {
    gap: 28px;
  }

  .home-company-panel {
    min-height: 440px;
  }

  .home-stat-grid {
    grid-template-columns: 1fr;
    margin: 16px;
  }

  .home-stat-grid article {
    min-height: 92px;
  }

  .home-selling-points {
    width: calc(100% - 32px);
    margin-bottom: 48px;
  }

  .home-capability-rail {
    width: calc(100% - 32px);
    margin-top: 24px;
  }

  .attendance-command-section {
    width: calc(100% - 32px);
    margin-top: -32px;
  }

  .quote-dock {
    width: calc(100% - 32px);
    position: static;
    margin: 0 auto 34px;
  }

  .coverage-map-card {
    padding: 14px;
  }

  .home-capability-rail article,
  .process-track article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 24, 39, 0.1);
  }

  .home-capability-rail article {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .home-capability-rail article:last-child,
  .process-track article:last-child {
    border-bottom: 0;
  }

  .process-track article::after {
    display: none;
  }

  .catalog-sidebar {
    position: static;
    padding-right: 0;
  }

  .catalog-hero {
    padding: 132px 24px 52px;
  }

  .catalog-clean-hero {
    padding: 132px 24px 36px;
  }

  .catalog-section-pill {
    width: min(100%, 320px);
    font-size: 18px;
  }

  .catalog-map,
  .map-items,
  .product-card-grid,
  .service-icon-grid,
  .category-intro-section,
  .subcategory-grid,
  .application-list {
    grid-template-columns: 1fr;
  }

  .category-feature-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .cascade-card summary {
    align-items: flex-start;
    min-height: auto;
    padding: 18px;
    font-size: 18px;
  }

  .cascade-content {
    padding: 0 18px 20px;
  }

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

  .simple-row,
  .simple-row.header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .simple-row.header {
    display: none;
  }

  .metal-weight-form {
    grid-template-columns: 1fr;
  }

  .metal-weight-form .pill-button {
    grid-column: auto;
  }

  .map-home {
    grid-column: auto;
  }

  .catalog-card-icon {
    height: 72px;
  }

  .catalog-product-photo {
    min-height: 170px;
  }

  .service-photo,
  .service-photo img {
    min-height: 220px;
  }

  .service-detail-copy {
    padding: 20px;
  }

  .hero-actions,
  .pill-button,
  .outline-link {
    width: 100%;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
  }

  .reveal-from-left {
    --reveal-x: -18px;
  }

  .reveal-from-right {
    --reveal-x: 18px;
  }

  .lead-popup {
    padding: 14px;
  }

  .lead-popup-top {
    min-height: 88px;
    padding: 18px 52px 16px;
  }

  .lead-popup-body {
    padding: 26px 18px 28px;
  }

  .lead-popup-body p {
    font-size: 16px;
  }

}

/* Brand launch theme: light surfaces, steel blue and Trucar red as the base. */
:root {
  color-scheme: light only;
  --navy: #061827;
  --navy-2: #12364f;
  --orange: #d6172f;
  --orange-dark: #af1025;
  --ink: #17212b;
  --muted: #667786;
  --line: #e5e9ed;
  --paper: #ffffff;
  --soft: #f4f4f4;
  --steel: #2d3741;
  --steel-2: #6f7b84;
  --accent-blue: #075a7a;
  --accent-purple: #4b245f;
  --shadow: 0 24px 58px rgba(6, 24, 39, 0.18);
  --soft-shadow: 0 18px 50px rgba(6, 24, 39, 0.1);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f4f4 46%, #ededed 100%);
}

.site-topbar,
.home-capability-rail,
.sales-cta,
.site-footer,
.quote-dock,
.catalog-clean-hero,
.catalog-sidebar summary {
  background:
    linear-gradient(115deg, #061827 0%, #12364f 62%, #d6172f 140%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 22px) !important;
}

.site-header,
.overlay-header,
.hero-quote-card,
.home-fast-path,
.home-selling-points article,
.home-company-panel,
.process-track,
.process-track article,
.intro-copy,
.location-card,
.attendance-command-card,
.contact-clean-list a,
.quote-form,
.catalog-product-card,
.category-feature-card,
.subcategory-card,
.cascade-card,
.simple-catalog-table,
.simple-row,
.service-detail-card,
.info-card,
.values-list li,
.item-card,
.catalog-sidebar,
.quote-dock,
.page-assist-strip article,
.lead-popup-panel,
input,
textarea,
select {
  border-color: #111111 !important;
  border-color: rgba(6, 24, 39, 0.12) !important;
}

.home-capability-rail,
.process-track article,
.home-capability-rail article,
.simple-row,
.site-footer,
.catalog-hero,
.catalog-clean-hero,
.product-showcase-section,
.service-details-section,
.catalog-map-section,
.simple-catalog-section,
.page-grid-section,
.quote-section,
.location-section,
.regional-coverage-section,
.attendance-check-section,
.lead-popup-panel,
.lead-popup-form input,
.lead-popup-form textarea,
.lead-popup-form select {
  border-color: #111111 !important;
  border-color: rgba(6, 24, 39, 0.14) !important;
}

.site-header,
.overlay-header {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.overlay-header::before,
.overlay-header::after {
  background: var(--orange) !important;
}

.video-hero,
.catalog-hero {
  background:
    linear-gradient(105deg, rgba(6, 24, 39, 0.84) 0%, rgba(18, 54, 79, 0.66) 48%, rgba(214, 23, 47, 0.54) 100%),
    url("assets/catalog-chapas.jpg") center / cover no-repeat !important;
}

.video-overlay {
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.84), rgba(18, 54, 79, 0.56) 55%, rgba(214, 23, 47, 0.24)),
    linear-gradient(0deg, rgba(6, 24, 39, 0.38), transparent 45%) !important;
}

.home-scroll-cue {
  border-color: rgba(255, 255, 255, 0.55) !important;
  background: rgba(255, 255, 255, 0.16) !important;
}

.topbar-social {
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: #ffffff !important;
  color: var(--navy) !important;
}

.topbar-social:hover {
  background: var(--orange) !important;
  color: #ffffff !important;
}

.pill-button,
.fast-path-grid a:first-child,
.process-track span,
.info-card span,
.catalog-section-pill {
  background: var(--orange) !important;
  color: #ffffff !important;
}

.pill-button:hover,
.catalog-page-nav a:hover {
  background: var(--orange-dark) !important;
}

.home-buying-shortcuts,
.home-company-section,
.home-process-section,
.page-grid-section,
.about-purpose-section,
.about-values-section,
.product-showcase-section,
.service-details-section,
.catalog-map-section,
.catalog-clean-main,
.simple-catalog-section,
.quote-section,
.location-section,
.attendance-section,
.attendance-check-section {
  background:
    linear-gradient(180deg, #ffffff, #f2f2f2) !important;
  border-color: #111111 !important;
}

.category-tile,
.catalog-card-photo,
.service-photo,
.item-art {
  filter: grayscale(0.82) contrast(1.08);
}

.category-tile:hover,
.catalog-product-card:hover .catalog-card-photo,
.service-detail-card:hover .service-photo {
  filter: grayscale(0.45) contrast(1.12);
}

.category-tile {
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.category-tile::after {
  border-color: rgba(255, 255, 255, 0.42);
}

.category-tile,
.item-art {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.86)),
    var(--tile-bg, linear-gradient(135deg, #202020, #050505)) !important;
}

.home-company-panel::after,
.service-photo::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 25%, rgba(0, 0, 0, 0.86)),
    linear-gradient(90deg, rgba(214, 23, 47, 0.28), transparent 46%) !important;
}

.home-stat-grid article {
  background: rgba(0, 0, 0, 0.7) !important;
}

.map-preview,
.attendance-map,
.coverage-panel {
  background:
    linear-gradient(135deg, #050505, #151515 58%, rgba(214, 23, 47, 0.86)) !important;
}

.regional-coverage-section {
  background:
    linear-gradient(125deg, #050505 0%, #151515 72%, rgba(75, 36, 95, 0.55) 130%) !important;
}

.lead-popup-body {
  background:
    linear-gradient(135deg, #050505 0%, #151515 68%, rgba(214, 23, 47, 0.94) 138%) !important;
}

.lead-popup-form .pill-button {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid #111111;
}

.lead-popup-form .pill-button:hover {
  background: var(--orange) !important;
  color: #ffffff !important;
}

.scroll-progress span {
  background: var(--orange) !important;
  box-shadow: 0 0 16px rgba(214, 23, 47, 0.42);
}

.floating-whatsapp {
  background: #111111;
  border-color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp::before,
.floating-whatsapp::after {
  border-color: rgba(214, 23, 47, 0.42);
}

.eyebrow,
.outline-link,
.text-button,
.main-nav a:hover,
.main-nav a.active,
.quote-link,
.coverage-region-list span,
.attendance-command-card span,
.contact-clean-list strong {
  color: var(--orange) !important;
}

.catalog-clean-actions a {
  border-color: #ffffff !important;
}

.simple-row.header {
  background: #050505 !important;
}

.simple-row:not(.header):hover {
  background: #eeeeee !important;
}

@media (max-width: 760px) {
  .site-topbar {
    background: #050505 !important;
  }
}

/* Fixed launch header: one clean size and behavior on every page. */
.site-header,
.site-header.is-scrolled,
.overlay-header,
.overlay-header.is-scrolled {
  top: 38px !important;
  right: 52px !important;
  left: 52px !important;
  width: auto !important;
  min-height: 80px !important;
  height: 80px !important;
  margin: 12px auto 0 !important;
  padding: 0 40px !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: clamp(20px, 2.4vw, 34px) !important;
  overflow: visible !important;
  border: 1px solid #111111 !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.985) !important;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16) !important;
  transition: box-shadow 180ms ease, background 180ms ease !important;
}

.site-header.is-scrolled,
.overlay-header.is-scrolled {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2) !important;
}

.brand {
  flex: 0 0 226px !important;
  width: 226px !important;
  height: 64px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.brand-logo-full {
  width: 190px !important;
  height: 55px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.main-nav {
  flex: 1 1 auto !important;
  order: 0 !important;
  flex-basis: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  min-width: 0 !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}

.main-nav a {
  min-height: 44px !important;
  height: 44px !important;
  padding: 0 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid transparent !important;
  border-radius: 0 !important;
  color: #111111 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  transform: none !important;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease !important;
}

.main-nav a::after {
  display: none !important;
}

.main-nav a:hover {
  background: #f1f1f1 !important;
  border-color: #111111 !important;
  color: #111111 !important;
  transform: none !important;
}

.main-nav a.active {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
}

.menu-toggle {
  flex: 0 0 44px !important;
  border-radius: 0 !important;
  border-color: #111111 !important;
  background: #ffffff !important;
}

.menu-toggle:hover {
  background: #f1f1f1 !important;
}

@media (max-width: 1120px) {
  .site-header,
  .site-header.is-scrolled,
  .overlay-header,
  .overlay-header.is-scrolled {
    right: 24px !important;
    left: 24px !important;
    width: auto !important;
    padding: 0 20px !important;
    gap: 14px !important;
    flex-wrap: nowrap !important;
  }

  .brand {
    flex-basis: 188px !important;
    width: 188px !important;
  }

  .brand-logo-full {
    width: 168px !important;
    height: 49px !important;
  }

  .main-nav {
    order: 0 !important;
    flex-basis: auto !important;
    gap: 4px !important;
    font-size: 13px !important;
  }

  .main-nav a {
    padding: 0 8px !important;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled,
  .overlay-header,
  .overlay-header.is-scrolled {
    top: 48px !important;
    right: 14px !important;
    left: 14px !important;
    width: auto !important;
    min-height: 68px !important;
    height: auto !important;
    margin-top: 10px !important;
    padding: 10px 12px !important;
    flex-wrap: wrap !important;
    overflow: hidden !important;
  }

  .brand-logo-full {
    width: 152px !important;
    height: 44px !important;
  }

  .brand {
    flex-basis: 166px !important;
    width: 166px !important;
    height: 48px !important;
  }

  .menu-toggle {
    display: block !important;
    margin-left: auto !important;
  }

  .main-nav {
    order: 3 !important;
    flex: 0 0 100% !important;
    flex-basis: 100% !important;
    display: none !important;
    flex-direction: column !important;
    gap: 7px !important;
    padding-top: 10px !important;
  }

  .site-header.nav-open .main-nav {
    display: flex !important;
  }

  .main-nav a,
  .site-header.nav-open .main-nav a {
    width: 100% !important;
    min-height: 42px !important;
    justify-content: center !important;
    border-color: #111111 !important;
    background: #ffffff !important;
  }

  .main-nav a.active,
  .site-header.nav-open .main-nav a.active {
    background: #111111 !important;
    color: #ffffff !important;
  }
}

/* Products page alignment: use the same hero rhythm as the other internal pages. */
.catalog-clean-main {
  padding-top: 0 !important;
}

.catalog-clean-hero {
  min-height: 430px !important;
  align-content: center !important;
  align-items: center !important;
  padding: 132px max(24px, calc((100vw - var(--max)) / 2 + 24px)) 64px !important;
  border-top: 0 !important;
  border-bottom: 1px solid #111111 !important;
  box-shadow: inset 0 -90px 90px rgba(0, 0, 0, 0.22) !important;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.94) 0%, rgba(10, 10, 10, 0.9) 48%, rgba(214, 23, 47, 0.72) 100%),
    url("assets/catalog-chapas.jpg") center / cover no-repeat !important;
}

.catalog-clean-hero h1 {
  max-width: 820px !important;
  font-size: clamp(40px, 5vw, 68px) !important;
}

.catalog-clean-hero p:not(.eyebrow) {
  max-width: 680px !important;
}

@media (max-width: 1040px) {
  .catalog-clean-hero {
    grid-template-columns: 1fr !important;
    align-items: center !important;
  }

  .catalog-clean-actions {
    justify-content: flex-start !important;
  }
}

@media (max-width: 760px) {
  .catalog-clean-hero {
    min-height: 430px !important;
    padding: 132px 24px 52px !important;
  }
}

/* About page legacy header: historical Trucar image blended to the right. */
.about-legacy-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0.97) 39%, rgba(0, 0, 0, 0.78) 51%, rgba(0, 0, 0, 0.24) 66%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.62) 0%, rgba(10, 10, 10, 0.22) 50%, rgba(214, 23, 47, 0.58) 100%),
    url("assets/sobre-trucar-antiga.png") right 34% / auto 112% no-repeat,
    url("assets/catalog-chapas.jpg") center / cover no-repeat !important;
}

.about-anniversary-badge {
  position: absolute;
  right: max(44px, calc((100vw - var(--max)) / 2 - 56px));
  bottom: 54px;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(260px, 21vw);
  min-width: 220px;
  padding: 18px 18px 17px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-left: 5px solid var(--orange);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 5, 0.78);
  color: #ffffff;
  text-align: center;
  backdrop-filter: blur(3px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.about-anniversary-badge strong {
  color: #ffffff;
  font-size: clamp(70px, 6vw, 98px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow:
    4px 0 0 rgba(214, 23, 47, 0.72),
    0 12px 22px rgba(0, 0, 0, 0.38);
}

.about-anniversary-badge span {
  margin-top: 2px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-anniversary-badge small {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 190px);
  min-height: 30px;
  margin-top: 12px;
  padding: 6px 14px;
  color: #ffffff;
  background: var(--orange);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.about-anniversary-badge small::before,
.about-anniversary-badge small::after {
  content: "";
  position: absolute;
  top: 0;
  width: 18px;
  height: 100%;
  background: var(--orange-dark);
}

.about-anniversary-badge small::before {
  right: 100%;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.about-anniversary-badge small::after {
  left: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.about-anniversary-badge em {
  max-width: 220px;
  margin-top: 11px;
  color: #ffffff;
  font-size: clamp(11px, 0.9vw, 13px);
  font-style: normal;
  font-weight: 950;
  line-height: 1.18;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

.about-legacy-hero h1,
.about-legacy-hero p {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.about-legacy-hero h1 {
  max-width: 720px;
}

.about-legacy-hero > p:not(.eyebrow) {
  max-width: 650px;
}

@media (max-width: 900px) {
  .about-legacy-hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 54%, rgba(214, 23, 47, 0.34) 100%),
      url("assets/sobre-trucar-antiga.png") right 34% / auto 112% no-repeat !important;
  }

  .about-anniversary-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 300px);
    min-width: 0;
    margin-top: 26px;
  }
}

/* Attendance page header: current facade blended to the right. */
.attendance-hero {
  min-height: 460px !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0.97) 43%, rgba(0, 0, 0, 0.78) 52%, rgba(0, 0, 0, 0.24) 62%, rgba(0, 0, 0, 0.02) 74%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.66) 0%, rgba(10, 10, 10, 0.2) 54%, rgba(214, 23, 47, 0.62) 100%),
    url("assets/atendimento-fachada-trucar.png") right center / auto 100% no-repeat,
    url("assets/catalog-chapas.jpg") center / cover no-repeat !important;
}

.attendance-hero h1,
.attendance-hero p {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

@media (max-width: 900px) {
  .attendance-hero {
    min-height: 430px !important;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0.92) 64%, rgba(214, 23, 47, 0.34) 100%),
      url("assets/atendimento-fachada-trucar.png") right center / auto 100% no-repeat !important;
  }
}

/* Responsive usability pass: tablets and phones. */
@media (max-width: 1180px) {
  .site-header,
  .site-header.is-scrolled,
  .overlay-header,
  .overlay-header.is-scrolled {
    right: 20px !important;
    left: 20px !important;
    padding-inline: 18px !important;
  }

  .brand {
    flex-basis: 178px !important;
    width: 178px !important;
  }

  .brand-logo-full {
    width: 158px !important;
    height: 48px !important;
  }

  .main-nav {
    gap: 4px !important;
    font-size: 12.5px !important;
  }

  .main-nav a {
    padding-inline: 7px !important;
  }

  .home-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px) !important;
    gap: 28px !important;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .site-header,
  .site-header.is-scrolled,
  .overlay-header,
  .overlay-header.is-scrolled {
    top: 38px !important;
    min-height: 74px !important;
    height: auto !important;
    flex-wrap: wrap !important;
    align-content: center !important;
    overflow: visible !important;
    padding-block: 10px !important;
  }

  .brand {
    flex-basis: 184px !important;
    width: 184px !important;
    height: 52px !important;
  }

  .main-nav {
    order: 3 !important;
    flex: 0 0 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding-top: 6px !important;
  }

  .main-nav a {
    min-height: 40px !important;
    height: auto !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
  }

  .video-hero {
    min-height: 780px !important;
    padding-top: 178px !important;
    padding-bottom: 92px !important;
  }

  .home-hero-layout {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }

  .hero-quote-card {
    max-width: 520px !important;
  }

  .fast-path-grid,
  .home-buying-shortcuts .home-category-grid,
  .product-card-grid,
  .service-icon-grid,
  .info-grid.three,
  .attendance-command-section {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .quote-section,
  .location-section,
  .about-story-section {
    grid-template-columns: 1fr !important;
  }

}

@media (max-width: 760px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }

  .scroll-progress {
    height: 3px !important;
  }

  .site-topbar {
    min-height: 42px !important;
  }

  .topbar-shell {
    width: calc(100% - 24px) !important;
    min-height: 42px !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 12px !important;
  }

  .topbar-left {
    width: 100% !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  .topbar-right,
  .topbar-separator {
    display: none !important;
  }

  .topbar-link {
    min-width: 0 !important;
    min-height: 36px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .site-header,
  .site-header.is-scrolled,
  .overlay-header,
  .overlay-header.is-scrolled {
    top: 42px !important;
    right: 10px !important;
    left: 10px !important;
    min-height: 62px !important;
    padding: 8px 10px !important;
    gap: 8px !important;
    overflow: hidden !important;
  }

  .brand {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: calc(100% - 56px) !important;
    height: 46px !important;
  }

  .brand-logo-full {
    width: min(150px, 100%) !important;
    height: 42px !important;
  }

  .menu-toggle {
    display: grid !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    place-content: center !important;
    margin-left: auto !important;
    padding: 0 !important;
  }

  .menu-toggle span {
    width: 21px !important;
    margin: 3px auto !important;
  }

  .site-header.nav-open,
  .site-header.nav-open.overlay-header {
    max-height: calc(100dvh - 54px) !important;
    overflow-y: auto !important;
  }

  .main-nav {
    order: 3 !important;
    flex: 0 0 100% !important;
    display: none !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding-top: 8px !important;
  }

  .site-header.nav-open .main-nav {
    display: flex !important;
  }

  .main-nav a,
  .site-header.nav-open .main-nav a {
    width: 100% !important;
    min-height: 44px !important;
    height: auto !important;
    padding: 12px 10px !important;
    justify-content: center !important;
    white-space: normal !important;
    line-height: 1.15 !important;
    text-align: center !important;
  }

  h1 {
    font-size: 34px !important;
    line-height: 1.05 !important;
  }

  h2 {
    font-size: 26px !important;
    line-height: 1.1 !important;
  }

  h3 {
    font-size: 20px !important;
  }

  p {
    overflow-wrap: anywhere;
  }

  .section,
  .product-showcase-section,
  .service-icon-section,
  .simple-catalog-section,
  .quote-section,
  .location-section,
  .page-grid-section {
    padding-inline: 16px !important;
  }

  .video-hero {
    min-height: auto !important;
    padding: 132px 16px 84px !important;
    align-items: start !important;
  }

  .home-hero-layout {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
  }

  .home-conversion-hero h1 {
    font-size: 34px !important;
  }

  .video-content p {
    font-size: 17px !important;
  }

  .hero-quote-card {
    width: 100% !important;
    padding: 18px !important;
  }

  .home-scroll-cue {
    display: none !important;
  }

  .home-fast-path {
    width: calc(100% - 24px) !important;
    margin-top: -40px !important;
    padding: 16px !important;
  }

  .fast-path-grid,
  .home-fast-path,
  .home-buying-shortcuts .home-category-grid,
  .home-category-grid,
  .product-card-grid,
  .service-icon-grid,
  .info-grid,
  .info-grid.three,
  .attendance-command-section,
  .quote-section,
  .location-section,
  .site-footer,
  .form-row,
  .fast-path-grid a {
    min-height: 92px !important;
    padding: 16px !important;
  }

  .home-buying-shortcuts {
    padding-top: 56px !important;
    padding-bottom: 46px !important;
  }

  .product-montage-feature {
    margin-bottom: 20px !important;
  }

  .product-montage-photo {
    min-height: 230px !important;
  }

  .product-montage-copy {
    padding: 20px !important;
  }

  .product-montage-copy strong {
    font-size: 24px !important;
  }

  .product-montage-copy .outline-link {
    width: 100% !important;
    justify-content: center !important;
  }

  .home-buying-shortcuts .category-tile,
  .category-tile {
    min-height: 168px !important;
  }

  .about-current-structure img {
    min-height: 220px !important;
  }

  .about-current-structure div {
    padding: 20px !important;
  }

  .catalog-clean-hero,
  .catalog-hero {
    min-height: auto !important;
    padding: 132px 16px 44px !important;
  }

  .catalog-clean-hero h1,
  .catalog-hero h1 {
    font-size: 34px !important;
  }

  .catalog-clean-hero p:not(.eyebrow),
  .catalog-hero p {
    font-size: 16px !important;
  }

  .catalog-clean-actions,
  .hero-actions,
  .location-actions,
  .catalog-actions,
  .catalog-page-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 10px !important;
    justify-content: stretch !important;
  }

  .pill-button,
  .outline-link,
  .text-button,
  .catalog-clean-actions a,
  .catalog-page-nav a {
    width: 100% !important;
    min-height: 46px !important;
    padding: 12px 14px !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.15 !important;
  }

  .catalog-product-card {
    min-height: auto !important;
  }

  .catalog-card-photo {
    min-height: 150px !important;
  }

  .catalog-product-card h3 {
    margin: 14px 14px 6px !important;
  }

  .catalog-product-card p {
    padding: 0 14px 16px !important;
  }

  .product-card-grid .catalog-product-card {
    grid-template-rows: auto auto 1fr auto !important;
    min-height: 300px !important;
  }

  .product-card-grid .catalog-card-action {
    margin: 0 14px 16px !important;
  }

  .simple-catalog-table {
    display: grid !important;
    gap: 10px !important;
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .simple-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    padding: 14px !important;
    border: 1px solid #111111 !important;
    background: #ffffff !important;
  }

  .simple-row.header {
    display: none !important;
  }

  .simple-row strong,
  .simple-row span {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
  }

  .catalog-section-pill {
    width: 100% !important;
    max-width: none !important;
  }

  .quote-form,
  .location-card,
  .quote-info,
  .attendance-command-card,
  .info-card {
    padding: 18px !important;
  }

  input,
  textarea,
  select {
    width: 100% !important;
    min-height: 46px !important;
    font-size: 16px !important;
  }

  textarea {
    min-height: 132px !important;
  }

  .metal-weight-form {
    grid-template-columns: 1fr !important;
  }

  .metal-weight-result {
    padding: 18px !important;
  }

  .map-preview,
  .attendance-zone-card {
    min-height: 240px !important;
    padding: 20px !important;
  }

  .about-anniversary-badge {
    width: min(100%, 240px) !important;
    min-width: 0 !important;
  }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 14px !important;
    width: 56px !important;
    height: 56px !important;
  }

  .lead-popup {
    padding: 10px !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
  }

  .lead-popup-panel {
    width: 100% !important;
    max-height: none !important;
    margin-block: 12px !important;
  }

  .lead-popup-top {
    min-height: 76px !important;
    padding: 14px 50px 12px 18px !important;
  }

  .lead-popup-top img {
    max-width: 150px !important;
  }

  .lead-popup-body {
    padding: 20px 16px 22px !important;
  }

  .lead-popup-body h2 {
    font-size: 24px !important;
  }
}

@media (max-width: 380px) {
  h1,
  .home-conversion-hero h1,
  .catalog-clean-hero h1,
  .catalog-hero h1 {
    font-size: 30px !important;
  }

  .brand-logo-full {
    width: 132px !important;
  }

  .topbar-shell {
    font-size: 11px !important;
  }

  .section,
  .product-showcase-section,
  .service-icon-section,
  .simple-catalog-section,
  .quote-section,
  .location-section,
  .page-grid-section {
    padding-inline: 12px !important;
  }

  .video-hero,
  .catalog-clean-hero,
  .catalog-hero {
    padding-inline: 12px !important;
  }
}

/* Mobile color repair: keep Trucar from rendering as a black forced-dark page. */
.site-topbar {
  background:
    linear-gradient(90deg, #061827, #12364f 62%, #d6172f 130%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px) !important;
}

.site-header,
.site-header.is-scrolled,
.overlay-header,
.overlay-header.is-scrolled {
  color: var(--ink) !important;
  border-color: rgba(6, 24, 39, 0.12) !important;
  background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
  box-shadow: 0 16px 38px rgba(6, 24, 39, 0.18) !important;
}

.menu-toggle {
  border-color: rgba(6, 24, 39, 0.18) !important;
  background: #ffffff !important;
}

.menu-toggle span {
  background: var(--navy) !important;
}

.main-nav a {
  color: var(--ink) !important;
}

.main-nav a.active,
.site-header.nav-open .main-nav a.active {
  border-color: var(--orange) !important;
  background: var(--orange) !important;
  color: #ffffff !important;
}

.home-conversion-hero .video-overlay {
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.78), rgba(18, 54, 79, 0.5) 56%, rgba(214, 23, 47, 0.2)),
    linear-gradient(0deg, rgba(6, 24, 39, 0.34), transparent 45%) !important;
}

.home-brand-intro {
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.78), rgba(18, 54, 79, 0.36) 78%, transparent),
    rgba(6, 24, 39, 0.18) !important;
}

.brand-logo,
.brand-logo-full,
.hero-brand-mark {
  filter: none !important;
  mix-blend-mode: normal !important;
}

.home-buying-shortcuts .section-heading {
  max-width: 760px;
}

.home-buying-shortcuts .section-heading h2 {
  margin-bottom: 10px;
}

.home-buying-shortcuts .section-heading::after {
  content: "Materiais e servicos mais procurados para industria, serralheria e construcao.";
  display: block;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.category-tile {
  align-content: end;
  justify-items: start;
  gap: 8px;
  padding: 28px;
}

.category-tile span,
.category-tile small {
  position: relative;
  z-index: 1;
}

.category-tile span {
  text-align: left;
}

.category-tile small {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.category-tile,
.item-art {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(214, 23, 47, 0.24), transparent 42%),
    var(--tile-bg, linear-gradient(135deg, #202020, #050505)) !important;
}

.category-tile,
.catalog-card-photo,
.service-photo,
.item-art {
  filter: grayscale(0.5) contrast(1.12) saturate(0.92);
}

.category-tile:hover,
.catalog-product-card:hover .catalog-card-photo,
.service-detail-card:hover .service-photo {
  filter: grayscale(0.18) contrast(1.14) saturate(1.02);
}

.home-quote-guide {
  display: grid;
  gap: 28px;
  background:
    linear-gradient(180deg, #ffffff, #f4f6f7) !important;
}

.home-quote-guide .section-heading {
  max-width: 780px;
}

.home-quote-guide .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 10px 0 0;
}

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

.quote-guide-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(6, 24, 39, 0.08);
}

.quote-guide-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.quote-guide-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.quote-guide-grid p {
  margin: 0;
  color: var(--muted);
}

.quote-guide-action {
  display: flex;
  justify-content: flex-start;
}

.home-region-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(115deg, #050505 0%, #141414 58%, rgba(214, 23, 47, 0.88) 138%) !important;
}

.home-region-strip h2 {
  color: #fff;
}

.home-region-strip p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.region-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.region-pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

  .home-region-strip {
    grid-template-columns: 1fr;
  }

  .region-pill-grid {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .home-buying-shortcuts .section-heading::after {
    font-size: 15px;
  }

  .category-tile {
    min-height: 178px !important;
    padding: 22px !important;
  }

  .category-tile small {
    max-width: 100%;
    font-size: 13px;
  }

  .home-quote-guide {
    gap: 22px;
  }

  .quote-guide-grid,
  .home-region-strip {
    grid-template-columns: 1fr !important;
  }

  .quote-guide-grid article {
    min-height: auto;
    padding: 18px;
  }

  .quote-guide-action,
  .quote-guide-action .pill-button {
    width: 100%;
  }

  .region-pill-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .region-pill-grid span {
    justify-content: center;
    text-align: center;
  }

  .floating-whatsapp {
    display: none !important;
  }
}

/* Requested removals: keep remaining layouts balanced after hiding optional CTA blocks. */
.home-conversion-hero .home-hero-layout {
  grid-template-columns: minmax(0, 760px) !important;
}

.home-conversion-hero .video-content {
  max-width: 760px;
}

.contact-info-section {
  grid-template-columns: minmax(0, 760px) !important;
}

.contact-info-section .quote-info h2 {
  margin-bottom: 22px;
}

.contact-info-section .contact-clean-list {
  gap: 14px;
  margin-top: 0;
}

.contact-info-section .contact-clean-list a {
  min-height: 86px;
  padding: 18px 20px;
  border-color: rgba(6, 24, 39, 0.14);
  background: #ffffff;
}

.contact-info-section .contact-clean-list strong {
  color: var(--orange);
}

.catalog-clean-hero {
  grid-template-columns: minmax(0, 780px) !important;
}

@media (max-width: 760px) {
  .home-conversion-hero .home-hero-layout,
  .contact-info-section,
  .catalog-clean-hero {
    grid-template-columns: 1fr !important;
  }
}

/* About cinematic hero inspired by the approved reference. */
.about-cinematic-hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  padding: 185px max(32px, calc((100% - var(--max)) / 2 + 24px)) 74px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 34%, rgba(0, 0, 0, 0.58) 57%, rgba(0, 0, 0, 0.28) 100%),
    radial-gradient(circle at 72% 76%, rgba(214, 23, 47, 0.52), transparent 23%),
    radial-gradient(circle at 58% 58%, rgba(214, 23, 47, 0.18), transparent 18%),
    url("assets/sobre-trucar-antiga.png") center 42% / cover no-repeat;
}

.about-cinematic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 14px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, transparent 38%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0.65;
}

.about-cinematic-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16%;
  z-index: -1;
  width: 68%;
  height: 62%;
  background:
    radial-gradient(ellipse at 62% 68%, rgba(214, 23, 47, 0.55), transparent 34%),
    linear-gradient(115deg, transparent 12%, rgba(214, 23, 47, 0.2) 48%, transparent 76%);
  filter: blur(4px);
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.about-kicker {
  position: relative;
  display: inline-block;
  margin: 0 0 16px;
  padding-bottom: 10px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.about-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(150px, 100%);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.about-hero-copy h1 {
  display: grid;
  gap: 4px;
  margin: 0;
  color: #fff;
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 74px;
  font-style: italic;
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-hero-copy h1 span {
  display: block;
  color: #f4f4f4;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.22),
    0 12px 34px rgba(0, 0, 0, 0.72);
}

.about-hero-copy h1 span:last-child {
  color: var(--orange);
  text-shadow:
    0 0 18px rgba(214, 23, 47, 0.3),
    0 14px 34px rgba(0, 0, 0, 0.78);
}

.about-hero-copy > strong {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-hero-copy > p:not(.about-kicker) {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.about-story-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  margin-top: 24px;
  padding: 10px 22px;
  color: #fff;
  border: 2px solid var(--orange);
  background: rgba(0, 0, 0, 0.28);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transform: skewX(-12deg);
  transition: background 180ms ease, transform 180ms ease;
}

.about-story-link::before {
  content: ">";
  color: var(--orange);
  font-size: 20px;
  line-height: 1;
}

.about-story-link:hover {
  background: var(--orange);
  transform: skewX(-12deg) translateY(-2px);
}

.about-story-link:hover::before {
  color: #fff;
}

.about-hero-years {
  position: absolute;
  right: max(44px, calc((100% - var(--max)) / 2 + 8px));
  bottom: 34px;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 430px;
  min-height: 430px;
  padding: 54px 44px 42px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.22), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.82) 58%, rgba(214, 23, 47, 0.2) 71%, rgba(0, 0, 0, 0.86) 100%),
    conic-gradient(from -30deg, rgba(255, 255, 255, 0.38), rgba(80, 80, 80, 0.08), rgba(214, 23, 47, 0.66), rgba(255, 255, 255, 0.22), rgba(40, 40, 40, 0.24), rgba(255, 255, 255, 0.38));
  box-shadow:
    0 0 0 10px rgba(214, 23, 47, 0.12),
    inset 0 0 0 10px rgba(0, 0, 0, 0.72),
    inset 0 0 0 13px rgba(255, 255, 255, 0.08),
    0 0 34px rgba(214, 23, 47, 0.62),
    0 38px 78px rgba(0, 0, 0, 0.74);
}

.about-hero-years::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(214, 23, 47, 0.8);
  border-radius: 50%;
  box-shadow:
    inset 0 0 26px rgba(214, 23, 47, 0.5),
    0 0 18px rgba(214, 23, 47, 0.5);
  pointer-events: none;
}

.about-hero-years::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: 46px;
  left: -34px;
  height: 74px;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(92, 0, 8, 0.82) 7% 15%, var(--orange) 15% 85%, rgba(92, 0, 8, 0.82) 85% 93%, transparent 93% 100%);
  filter:
    drop-shadow(0 0 18px rgba(214, 23, 47, 0.72))
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.5));
  transform: skewX(-13deg);
}

.about-hero-years em {
  position: absolute;
  top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 38px;
  padding: 8px 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(90deg, rgba(214, 23, 47, 0.9), rgba(110, 5, 15, 0.92));
  font-size: 15px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 0 18px rgba(214, 23, 47, 0.58);
  transform: skewX(-12deg);
}

.about-hero-years strong {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: #f4eee1;
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 190px;
  font-style: italic;
  font-weight: 950;
  line-height: 0.74;
  letter-spacing: 0;
  text-shadow:
    -4px -4px 0 rgba(255, 255, 255, 0.16),
    4px 5px 0 rgba(92, 0, 8, 0.72),
    0 0 8px rgba(255, 255, 255, 0.78),
    0 0 24px rgba(214, 23, 47, 0.9),
    0 0 58px rgba(214, 23, 47, 0.82),
    0 28px 42px rgba(0, 0, 0, 0.86);
}

.about-hero-years span {
  position: relative;
  z-index: 2;
  margin-top: -2px;
  color: #fff;
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.38),
    0 10px 26px rgba(0, 0, 0, 0.78);
}

.about-hero-years small {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 260px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 8px 34px;
  color: #fff;
  background: linear-gradient(90deg, #a50918, var(--orange), #a50918);
  font-size: 23px;
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  box-shadow:
    0 0 18px rgba(214, 23, 47, 0.56),
    0 16px 34px rgba(0, 0, 0, 0.48);
  transform: skewX(-12deg);
}

.about-hero-years b {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-spark-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.about-spark-field::before {
  content: "";
  position: absolute;
  left: 46%;
  right: 0;
  bottom: -18px;
  height: 160px;
  background:
    radial-gradient(circle at 34% 75%, rgba(255, 128, 20, 0.8), transparent 5%),
    radial-gradient(circle at 48% 68%, rgba(214, 23, 47, 0.64), transparent 12%),
    radial-gradient(ellipse at 48% 100%, rgba(255, 80, 0, 0.54), transparent 52%);
  filter: blur(2px);
  animation: emberPulse 2200ms ease-in-out infinite;
}

.about-spark-field span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #ff5a1f;
  box-shadow:
    0 0 8px #ff5a1f,
    0 0 18px rgba(214, 23, 47, 0.86);
  opacity: 0;
  animation: sparkFly 2600ms linear infinite;
}

.about-spark-field span::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 1px;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 120, 30, 0.88));
  transform: rotate(-24deg);
}

.about-spark-field span:nth-child(1) { left: 42%; bottom: 10%; animation-delay: 0ms; }
.about-spark-field span:nth-child(2) { left: 50%; bottom: 16%; animation-delay: 320ms; animation-duration: 2200ms; }
.about-spark-field span:nth-child(3) { left: 58%; bottom: 13%; animation-delay: 680ms; animation-duration: 2900ms; }
.about-spark-field span:nth-child(4) { left: 66%; bottom: 20%; animation-delay: 920ms; }
.about-spark-field span:nth-child(5) { left: 74%; bottom: 17%; animation-delay: 1240ms; animation-duration: 2400ms; }
.about-spark-field span:nth-child(6) { left: 82%; bottom: 11%; animation-delay: 1460ms; }
.about-spark-field span:nth-child(7) { left: 61%; bottom: 36%; animation-delay: 180ms; animation-duration: 3100ms; }
.about-spark-field span:nth-child(8) { left: 48%; bottom: 42%; animation-delay: 740ms; animation-duration: 2500ms; }
.about-spark-field span:nth-child(9) { left: 76%; bottom: 40%; animation-delay: 1120ms; animation-duration: 2800ms; }
.about-spark-field span:nth-child(10) { left: 88%; bottom: 33%; animation-delay: 1620ms; animation-duration: 2300ms; }
.about-spark-field span:nth-child(11) { left: 54%; bottom: 7%; animation-delay: 1900ms; animation-duration: 2600ms; }
.about-spark-field span:nth-child(12) { left: 70%; bottom: 7%; animation-delay: 2100ms; animation-duration: 3000ms; }
.about-spark-field span:nth-child(13) { left: 47%; bottom: 28%; animation-delay: 2400ms; animation-duration: 2350ms; }
.about-spark-field span:nth-child(14) { left: 69%; bottom: 50%; animation-delay: 420ms; animation-duration: 3200ms; }
.about-spark-field span:nth-child(15) { left: 83%; bottom: 48%; animation-delay: 1380ms; animation-duration: 2700ms; }
.about-spark-field span:nth-child(16) { left: 39%; bottom: 24%; animation-delay: 1760ms; animation-duration: 2600ms; }
.about-spark-field span:nth-child(17) { left: 57%; bottom: 3%; animation-delay: 480ms; animation-duration: 2100ms; }
.about-spark-field span:nth-child(18) { left: 90%; bottom: 19%; animation-delay: 860ms; animation-duration: 2500ms; }

@keyframes sparkFly {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.45);
  }
  14% {
    opacity: 1;
  }
  72% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate3d(-150px, -170px, 0) scale(0.08);
  }
}

@keyframes emberPulse {
  0%, 100% {
    opacity: 0.62;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.95;
    transform: scaleX(1.08);
  }
}

@media (max-width: 1180px) {
  .about-cinematic-hero {
    min-height: 690px;
    padding-top: 170px;
  }

  .about-hero-copy h1 {
    font-size: 62px;
  }

  .about-hero-years {
    width: 340px;
    min-height: 340px;
    padding: 48px 34px 36px;
    right: 34px;
  }

  .about-hero-years em {
    top: 26px;
    min-width: 160px;
    min-height: 34px;
    font-size: 13px;
  }

  .about-hero-years strong {
    font-size: 145px;
  }

  .about-hero-years span {
    font-size: 32px;
  }

  .about-hero-years small {
    min-width: 210px;
    min-height: 38px;
    font-size: 18px;
  }

  .about-hero-years b {
    font-size: 11px;
  }
}

@media (max-width: 900px) {
  .about-cinematic-hero {
    display: grid;
    align-content: start;
    min-height: auto;
    padding: 150px 24px 56px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 64%, rgba(0, 0, 0, 0.52) 100%),
      radial-gradient(circle at 74% 76%, rgba(214, 23, 47, 0.42), transparent 26%),
      url("assets/sobre-trucar-antiga.png") center top / cover no-repeat;
  }

  .about-hero-copy {
    max-width: 560px;
  }

  .about-hero-copy h1 {
    font-size: 50px;
  }

  .about-hero-copy > strong {
    font-size: 17px;
  }

  .about-hero-years {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: start;
    width: min(100%, 320px);
    min-height: 320px;
    padding: 48px 30px 34px;
    margin-top: 34px;
  }

  .about-hero-years::after {
    right: -18px;
    left: -18px;
    bottom: 38px;
    height: 58px;
  }

  .about-hero-years em {
    top: 24px;
    min-width: 150px;
    min-height: 32px;
    font-size: 12px;
  }

  .about-hero-years strong {
    font-size: 124px;
  }

  .about-hero-years span {
    font-size: 28px;
  }

  .about-hero-years small {
    min-width: 190px;
    min-height: 36px;
    font-size: 16px;
  }

  .about-hero-years b {
    margin-top: 14px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .about-cinematic-hero {
    padding: 140px 18px 44px;
  }

  .about-kicker {
    font-size: 13px;
  }

  .about-hero-copy h1 {
    font-size: 40px;
  }

  .about-hero-copy > p:not(.about-kicker) {
    font-size: 15px;
  }

  .about-story-link {
    width: 100%;
    justify-content: center;
  }

  .about-hero-years {
    justify-self: center;
    width: min(100%, 292px);
    min-height: 292px;
    padding: 44px 24px 30px;
  }

  .about-hero-years::before {
    inset: 14px;
  }

  .about-hero-years::after {
    right: -12px;
    left: -12px;
    bottom: 34px;
    height: 52px;
  }

  .about-hero-years strong {
    font-size: 108px;
  }

  .about-hero-years span {
    font-size: 24px;
  }

  .about-hero-years small {
    min-width: 170px;
    min-height: 34px;
    font-size: 14px;
  }
}

/* About hero refinement: steel plaque, stronger background depth and cleaner hierarchy. */
.about-cinematic-hero {
  min-height: 735px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.91) 31%, rgba(0, 0, 0, 0.46) 58%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(ellipse at 70% 70%, rgba(214, 23, 47, 0.28), transparent 24%),
    radial-gradient(circle at 63% 55%, rgba(214, 23, 47, 0.16), transparent 7%),
    radial-gradient(circle at 78% 52%, rgba(214, 23, 47, 0.14), transparent 6%),
    url("assets/sobre-trucar-antiga.png") center 39% / cover no-repeat;
}

.about-cinematic-hero::before {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, transparent 34%, rgba(0, 0, 0, 0.22) 100%),
    radial-gradient(ellipse at 54% 82%, rgba(210, 210, 210, 0.1), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 7px);
  opacity: 0.82;
}

.about-cinematic-hero::after {
  right: 15%;
  bottom: -13%;
  width: 52%;
  height: 43%;
  background:
    radial-gradient(ellipse at 52% 84%, rgba(255, 76, 18, 0.52), transparent 12%),
    radial-gradient(ellipse at 58% 48%, rgba(214, 23, 47, 0.34), transparent 30%),
    linear-gradient(105deg, transparent 10%, rgba(214, 23, 47, 0.12) 48%, transparent 82%);
  filter: blur(8px);
}

.about-hero-copy {
  max-width: 560px;
}

.about-hero-copy h1 {
  gap: 2px;
  font-size: 70px;
  line-height: 0.9;
}

.about-hero-copy h1 span:nth-child(2) {
  margin-bottom: 16px;
}

.about-hero-copy h1 span:last-child {
  font-size: 1.14em;
  line-height: 0.82;
  color: var(--orange);
}

.about-story-link {
  position: relative;
  overflow: hidden;
  border-width: 1px;
  background: rgba(0, 0, 0, 0.72);
}

.about-story-link::before {
  content: "▶";
  font-size: 13px;
  transition: transform 180ms ease, color 180ms ease;
}

.about-story-link:hover::before {
  transform: translateX(4px);
}

.about-hero-years {
  right: max(52px, calc((100% - var(--max)) / 2 + 10px));
  bottom: 76px;
  align-content: center;
  width: 390px;
  min-height: 270px;
  padding: 34px 36px 30px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  background:
    radial-gradient(circle at 8% 12%, #c8c8c8 0 4px, #2a2a2a 5px 7px, transparent 8px),
    radial-gradient(circle at 92% 12%, #c8c8c8 0 4px, #2a2a2a 5px 7px, transparent 8px),
    radial-gradient(circle at 10% 88%, #c8c8c8 0 4px, #2a2a2a 5px 7px, transparent 8px),
    radial-gradient(circle at 90% 88%, #c8c8c8 0 4px, #2a2a2a 5px 7px, transparent 8px),
    linear-gradient(115deg, rgba(255, 255, 255, 0.32), transparent 18% 72%, rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, #53575b 0%, #24272a 32%, #a8a9a6 50%, #25282b 68%, #090a0b 100%);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.72),
    inset 0 0 0 8px rgba(255, 255, 255, 0.045),
    0 0 0 1px rgba(214, 23, 47, 0.28),
    0 0 28px rgba(214, 23, 47, 0.34),
    0 34px 68px rgba(0, 0, 0, 0.72);
}

.about-hero-years::before {
  inset: 16px;
  border-radius: 3px;
  border: 1px solid rgba(214, 23, 47, 0.72);
  box-shadow:
    inset 0 0 18px rgba(0, 0, 0, 0.52),
    0 0 18px rgba(214, 23, 47, 0.32);
  clip-path: inherit;
}

.about-hero-years::after {
  right: 14px;
  bottom: 24px;
  left: 14px;
  height: 52px;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(94, 0, 8, 0.84), var(--orange), rgba(94, 0, 8, 0.84));
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  filter:
    drop-shadow(0 0 14px rgba(214, 23, 47, 0.62))
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42));
}

.about-hero-years em {
  position: relative;
  top: auto;
  z-index: 2;
  min-width: 0;
  min-height: 0;
  margin-bottom: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: none;
  transform: none;
}

.about-hero-years strong {
  z-index: 2;
  margin-top: 0;
  color: #f1eee6;
  font-size: 132px;
  line-height: 0.76;
  text-shadow:
    -2px -2px 0 rgba(255, 255, 255, 0.22),
    3px 4px 0 rgba(0, 0, 0, 0.62),
    0 0 12px rgba(255, 255, 255, 0.28),
    0 0 28px rgba(214, 23, 47, 0.52);
}

.about-hero-years span {
  z-index: 2;
  margin-top: -2px;
  font-size: 28px;
}

.about-hero-years small {
  z-index: 2;
  min-width: 190px;
  min-height: 34px;
  margin-top: 10px;
  padding: 7px 20px;
  background: transparent;
  font-size: 17px;
  box-shadow: none;
  transform: skewX(-10deg);
}

.about-hero-years b {
  z-index: 2;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
}

.about-spark-field::before {
  left: 50%;
  height: 128px;
  background:
    radial-gradient(circle at 34% 75%, rgba(255, 128, 20, 0.72), transparent 5%),
    radial-gradient(circle at 52% 70%, rgba(214, 23, 47, 0.54), transparent 10%),
    radial-gradient(ellipse at 48% 100%, rgba(255, 80, 0, 0.42), transparent 48%);
}

@media (max-width: 1180px) {
  .about-hero-copy h1 {
    font-size: 58px;
  }

  .about-hero-years {
    width: 330px;
    min-height: 238px;
    padding: 30px 32px 28px;
    right: 32px;
    bottom: 70px;
  }

  .about-hero-years strong {
    font-size: 108px;
  }

  .about-hero-years span {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .about-cinematic-hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 64%, rgba(0, 0, 0, 0.48) 100%),
      radial-gradient(ellipse at 70% 76%, rgba(214, 23, 47, 0.26), transparent 30%),
      url("assets/sobre-trucar-antiga.png") center top / cover no-repeat;
  }

  .about-hero-copy h1 {
    font-size: 47px;
  }

  .about-hero-years {
    justify-self: start;
    width: min(100%, 310px);
    min-height: 218px;
    padding: 28px 28px 26px;
    margin-top: 34px;
  }

  .about-hero-years::after {
    right: 10px;
    left: 10px;
    bottom: 22px;
    height: 46px;
  }

  .about-hero-years strong {
    font-size: 98px;
  }

  .about-hero-years span {
    font-size: 22px;
  }

  .about-hero-years small {
    min-width: 164px;
    min-height: 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-hero-copy h1 {
    font-size: 38px;
  }

  .about-hero-copy h1 span:nth-child(2) {
    margin-bottom: 10px;
  }

  .about-hero-years {
    justify-self: center;
    width: min(100%, 292px);
    min-height: 204px;
    padding: 26px 24px 24px;
  }

  .about-hero-years strong {
    font-size: 88px;
  }

  .about-hero-years b {
    font-size: 9px;
  }
}

/* About hero final art direction: heavier steel plaque and reference-like composition. */
.about-cinematic-hero {
  min-height: 720px;
  padding-top: 170px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.93) 32%, rgba(0, 0, 0, 0.5) 58%, rgba(0, 0, 0, 0.2) 100%),
    radial-gradient(ellipse at 79% 76%, rgba(238, 46, 30, 0.3), transparent 25%),
    radial-gradient(circle at 62% 63%, rgba(255, 80, 24, 0.16), transparent 8%),
    radial-gradient(circle at 84% 38%, rgba(214, 23, 47, 0.24), transparent 7%),
    url("assets/sobre-trucar-antiga.png") center 36% / cover no-repeat;
}

.about-cinematic-hero::before {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.24) 38%, rgba(0, 0, 0, 0.1) 100%),
    radial-gradient(ellipse at 75% 71%, rgba(255, 255, 255, 0.1), transparent 22%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.038) 0 1px, transparent 1px 15px),
    repeating-linear-gradient(178deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 9px);
  opacity: 0.9;
}

.about-cinematic-hero::after {
  right: 4%;
  bottom: -9%;
  width: 58%;
  height: 46%;
  background:
    radial-gradient(ellipse at 60% 90%, rgba(255, 86, 18, 0.56), transparent 12%),
    radial-gradient(ellipse at 63% 54%, rgba(214, 23, 47, 0.3), transparent 30%),
    linear-gradient(112deg, transparent 14%, rgba(214, 23, 47, 0.14) 50%, transparent 83%);
  filter: blur(9px);
}

.about-hero-copy {
  max-width: 620px;
}

.about-kicker::after {
  width: 178px;
  box-shadow: 0 0 12px rgba(214, 23, 47, 0.76);
}

.about-hero-copy h1 {
  gap: 0;
  font-size: 70px;
  line-height: 0.95;
}

.about-hero-copy h1 span {
  color: transparent;
  background:
    linear-gradient(180deg, #ffffff 0%, #d0d0d0 28%, #5e5e5e 50%, #f8f8f8 72%, #9c9c9c 100%),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.68) 0 1px, rgba(0, 0, 0, 0.28) 1px 4px);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.72));
  text-shadow: none;
}

.about-hero-copy h1 span:nth-child(2) {
  margin-bottom: 6px;
}

.about-hero-copy h1 span:last-child {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  color: transparent;
  background:
    linear-gradient(180deg, #ff4857 0%, #d6172f 28%, #860813 72%, #e21a32 100%),
    repeating-linear-gradient(171deg, rgba(0, 0, 0, 0.42) 0 2px, transparent 2px 9px);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(96, 0, 8, 0.46);
  font-size: 1.12em;
  line-height: 0.82;
  letter-spacing: 0;
  filter:
    drop-shadow(0 0 4px rgba(214, 23, 47, 0.76))
    drop-shadow(0 14px 20px rgba(0, 0, 0, 0.86));
}

.about-hero-copy h1 span:last-child::after {
  content: "";
  position: absolute;
  inset: 10% 0 6%;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(214, 23, 47, 0.18), transparent),
    repeating-linear-gradient(172deg, transparent 0 5px, rgba(0, 0, 0, 0.2) 5px 7px);
  filter: blur(1px);
  transform: skewX(-8deg);
}

.about-hero-copy > strong {
  margin-top: 18px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  letter-spacing: 0;
  border-bottom: 2px solid rgba(214, 23, 47, 0.78);
  width: max-content;
  max-width: 100%;
}

.about-hero-copy > p:not(.about-kicker) {
  max-width: 488px;
  color: rgba(255, 255, 255, 0.84);
}

.about-story-link {
  min-height: 44px;
  padding: 10px 24px;
  border-color: #ff273f;
  box-shadow:
    inset 0 0 20px rgba(214, 23, 47, 0.08),
    0 0 14px rgba(214, 23, 47, 0.22);
}

.about-hero-years {
  right: max(72px, calc((100% - var(--max)) / 2 + 18px));
  bottom: 70px;
  width: 425px;
  min-height: 315px;
  padding: 46px 48px 42px;
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  clip-path: polygon(8% 0, 96% 0, 100% 10%, 92% 100%, 4% 100%, 0 90%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(circle at 8% 11%, #d7d5ce 0 4px, #111 5px 7px, transparent 8px),
    radial-gradient(circle at 92% 11%, #d7d5ce 0 4px, #111 5px 7px, transparent 8px),
    radial-gradient(circle at 9% 89%, #d7d5ce 0 4px, #111 5px 7px, transparent 8px),
    radial-gradient(circle at 91% 89%, #d7d5ce 0 4px, #111 5px 7px, transparent 8px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.3), transparent 18% 76%, rgba(255, 255, 255, 0.12)),
    radial-gradient(ellipse at 58% 42%, rgba(214, 23, 47, 0.14), transparent 40%),
    repeating-linear-gradient(104deg, rgba(255, 255, 255, 0.13) 0 1px, rgba(0, 0, 0, 0.1) 1px 4px, transparent 4px 9px),
    linear-gradient(135deg, #6b6d6d 0%, #202224 25%, #0d0e10 49%, #45484a 72%, #07080a 100%);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.78),
    inset 0 0 0 8px rgba(255, 255, 255, 0.045),
    inset 0 24px 46px rgba(255, 255, 255, 0.09),
    0 0 0 1px rgba(214, 23, 47, 0.34),
    0 0 34px rgba(214, 23, 47, 0.44),
    0 40px 80px rgba(0, 0, 0, 0.8);
}

.about-hero-years::before {
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(214, 23, 47, 0.78);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.07), transparent 44%),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 8px);
  box-shadow:
    inset 0 0 28px rgba(0, 0, 0, 0.76),
    0 0 20px rgba(214, 23, 47, 0.25);
  clip-path: polygon(7% 0, 97% 0, 100% 10%, 93% 100%, 3% 100%, 0 90%);
}

.about-hero-years::after {
  right: 58px;
  bottom: 42px;
  left: 58px;
  z-index: 1;
  height: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(50, 20, 20, 0.9), rgba(0, 0, 0, 0.98));
  border-top: 1px solid rgba(214, 23, 47, 0.74);
  border-bottom: 1px solid rgba(214, 23, 47, 0.5);
  clip-path: none;
  filter:
    drop-shadow(0 0 12px rgba(214, 23, 47, 0.58))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.54));
  transform: skewX(-8deg);
}

.about-hero-years em,
.about-hero-years b {
  display: none;
}

.about-hero-years strong {
  z-index: 2;
  margin-top: 0;
  color: transparent;
  background:
    linear-gradient(180deg, #ff4d55 0%, #c41224 35%, #5d040b 62%, #e32131 100%),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.16) 0 1px, rgba(0, 0, 0, 0.34) 1px 5px);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 2px rgba(32, 5, 7, 0.78);
  font-size: 154px;
  line-height: 0.72;
  text-shadow:
    4px 5px 0 rgba(0, 0, 0, 0.78),
    -2px -2px 0 rgba(255, 255, 255, 0.16),
    0 0 18px rgba(214, 23, 47, 0.72);
}

.about-hero-years span {
  z-index: 2;
  margin-top: 0;
  color: transparent;
  background:
    linear-gradient(180deg, #ffffff 0%, #a8a8a8 44%, #404040 56%, #eeeeee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(12, 12, 12, 0.68);
  font-size: 44px;
  line-height: 0.86;
  text-shadow:
    3px 4px 0 rgba(0, 0, 0, 0.78),
    0 0 14px rgba(255, 255, 255, 0.22);
}

.about-hero-years small {
  z-index: 2;
  min-width: 230px;
  min-height: 34px;
  margin-top: 15px;
  padding: 6px 28px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 6px;
  box-shadow: none;
  transform: skewX(-8deg);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.28),
    0 0 14px rgba(214, 23, 47, 0.45);
}

.about-spark-field::before {
  left: 43%;
  right: 0;
  bottom: -10px;
  height: 180px;
  background:
    radial-gradient(circle at 43% 74%, rgba(255, 124, 24, 0.82), transparent 4%),
    radial-gradient(circle at 56% 65%, rgba(214, 23, 47, 0.7), transparent 10%),
    radial-gradient(ellipse at 66% 100%, rgba(255, 80, 0, 0.5), transparent 48%);
}

.about-spark-field span {
  width: 3px;
  height: 3px;
}

.about-spark-field span::after {
  width: 36px;
  background: linear-gradient(90deg, transparent, rgba(255, 124, 30, 0.96));
}

.about-spark-field span:nth-child(1) { left: 42%; bottom: 9%; animation-delay: 0ms; }
.about-spark-field span:nth-child(2) { left: 48%; bottom: 15%; animation-delay: 220ms; animation-duration: 2100ms; }
.about-spark-field span:nth-child(3) { left: 56%; bottom: 11%; animation-delay: 440ms; animation-duration: 2400ms; }
.about-spark-field span:nth-child(4) { left: 64%; bottom: 18%; animation-delay: 620ms; }
.about-spark-field span:nth-child(5) { left: 74%; bottom: 15%; animation-delay: 840ms; animation-duration: 2300ms; }
.about-spark-field span:nth-child(6) { left: 83%; bottom: 9%; animation-delay: 1080ms; }
.about-spark-field span:nth-child(7) { left: 58%; bottom: 31%; animation-delay: 280ms; animation-duration: 2800ms; }
.about-spark-field span:nth-child(8) { left: 45%; bottom: 36%; animation-delay: 760ms; animation-duration: 2500ms; }
.about-spark-field span:nth-child(9) { left: 77%; bottom: 35%; animation-delay: 1120ms; animation-duration: 2600ms; }
.about-spark-field span:nth-child(10) { left: 88%; bottom: 31%; animation-delay: 1500ms; animation-duration: 2300ms; }
.about-spark-field span:nth-child(11) { left: 54%; bottom: 5%; animation-delay: 1700ms; animation-duration: 2400ms; }
.about-spark-field span:nth-child(12) { left: 71%; bottom: 6%; animation-delay: 1940ms; animation-duration: 2800ms; }
.about-spark-field span:nth-child(13) { left: 47%; bottom: 25%; animation-delay: 2140ms; animation-duration: 2250ms; }
.about-spark-field span:nth-child(14) { left: 69%; bottom: 47%; animation-delay: 360ms; animation-duration: 3000ms; }
.about-spark-field span:nth-child(15) { left: 84%; bottom: 43%; animation-delay: 1180ms; animation-duration: 2500ms; }
.about-spark-field span:nth-child(16) { left: 39%; bottom: 21%; animation-delay: 1560ms; animation-duration: 2600ms; }
.about-spark-field span:nth-child(17) { left: 61%; bottom: 3%; animation-delay: 520ms; animation-duration: 2000ms; }
.about-spark-field span:nth-child(18) { left: 92%; bottom: 17%; animation-delay: 900ms; animation-duration: 2400ms; }

@media (max-width: 1180px) {
  .about-hero-copy h1 {
    font-size: 58px;
  }

  .about-hero-years {
    right: 34px;
    width: 348px;
    min-height: 268px;
    padding: 40px 40px 36px;
  }

  .about-hero-years strong {
    font-size: 124px;
  }

  .about-hero-years span {
    font-size: 36px;
  }

  .about-hero-years small {
    min-width: 205px;
    font-size: 15px;
    letter-spacing: 5px;
  }
}

@media (max-width: 900px) {
  .about-cinematic-hero {
    min-height: auto;
    padding-top: 142px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 66%, rgba(0, 0, 0, 0.52) 100%),
      radial-gradient(ellipse at 70% 80%, rgba(214, 23, 47, 0.26), transparent 30%),
      url("assets/sobre-trucar-antiga.png") center top / cover no-repeat;
  }

  .about-hero-copy h1 {
    font-size: 47px;
  }

  .about-hero-years {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 330px);
    min-height: 248px;
    margin-top: 36px;
    transform: none;
  }

  .about-hero-years strong {
    font-size: 112px;
  }

  .about-hero-years span {
    font-size: 32px;
  }

  .about-hero-years::after {
    right: 42px;
    left: 42px;
    bottom: 36px;
    height: 38px;
  }

  .about-hero-years small {
    min-width: 184px;
    min-height: 30px;
    font-size: 13px;
    letter-spacing: 4px;
  }
}

@media (max-width: 480px) {
  .about-hero-copy h1 {
    font-size: 38px;
  }

  .about-hero-copy > strong {
    width: auto;
  }

  .about-hero-years {
    width: min(100%, 292px);
    min-height: 220px;
    padding: 34px 34px 30px;
  }

  .about-hero-years strong {
    font-size: 94px;
  }

  .about-hero-years span {
    font-size: 28px;
  }

  .about-hero-years::after {
    right: 34px;
    left: 34px;
    bottom: 32px;
  }
}

/* Approved about hero artwork. This page intentionally uses the provided image as-is. */
.about-reference-page .site-topbar,
.about-reference-page .site-header {
  display: none !important;
}

.about-reference-page .scroll-progress {
  display: none;
}

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

.about-reference-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050505;
  line-height: 0;
}

.about-reference-art {
  display: block;
  width: 100%;
  height: auto;
}

.about-reference-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  overflow: hidden;
  color: transparent;
  text-indent: -999px;
  white-space: nowrap;
}

.about-reference-hotspot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  background: rgba(214, 23, 47, 0.2);
}

.about-reference-hotspot.logo {
  left: 1.9%;
  top: 6.1%;
  width: 16.8%;
  height: 10.5%;
}

.about-reference-hotspot.phone {
  left: 2.7%;
  top: 0.9%;
  width: 12.6%;
  height: 3.7%;
}

.about-reference-hotspot.location {
  left: 16%;
  top: 0.9%;
  width: 10.8%;
  height: 3.7%;
}

.about-reference-hotspot.nav-home {
  left: 63.2%;
  top: 8.3%;
  width: 5.4%;
  height: 5.5%;
}

.about-reference-hotspot.nav-products {
  left: 69.8%;
  top: 8.3%;
  width: 12.9%;
  height: 5.5%;
}

.about-reference-hotspot.nav-about {
  left: 81.2%;
  top: 8.1%;
  width: 7.7%;
  height: 6.1%;
}

.about-reference-hotspot.nav-contact {
  left: 90.1%;
  top: 8.3%;
  width: 7%;
  height: 5.5%;
}

.about-reference-hotspot.story {
  left: 4.7%;
  top: 88.5%;
  width: 20.1%;
  height: 6.5%;
}

@media (max-width: 760px) {
  .about-reference-hero {
    min-height: 520px;
  }

  .about-reference-art {
    width: auto;
    max-width: none;
    height: 520px;
    transform: translateX(-39%);
  }

  .about-reference-hotspot:not(.story) {
    display: none;
  }

  .about-reference-hotspot.story {
    left: 7%;
    top: 80%;
    width: 56%;
    height: 8%;
  }
}

/* Internal page headers: keep catalog, about and contact heroes on the same visual size. */
.catalog-clean-main {
  padding-top: 0 !important;
}

.catalog-clean-hero,
.catalog-hero.page-hero {
  box-sizing: border-box !important;
  min-height: 430px !important;
  height: 430px !important;
  align-content: center !important;
  align-items: center !important;
  padding: 124px max(24px, calc((100vw - var(--max)) / 2 + 24px)) 52px !important;
  overflow: hidden !important;
}

.catalog-clean-hero {
  grid-template-columns: minmax(0, 1fr) !important;
}

.catalog-clean-hero h1,
.catalog-hero.page-hero h1 {
  max-width: 1040px !important;
  font-size: clamp(40px, 4.1vw, 62px) !important;
  line-height: 1.06 !important;
}

.catalog-clean-hero p:not(.eyebrow),
.catalog-hero.page-hero p:not(.eyebrow) {
  max-width: 720px !important;
}

.catalog-hero.page-hero .hero-actions {
  margin-top: 28px !important;
}

@media (max-width: 760px) {
  .catalog-clean-hero,
  .catalog-hero.page-hero {
    min-height: 430px !important;
    height: auto !important;
    padding: 132px 24px 52px !important;
    overflow: visible !important;
  }

  .catalog-clean-hero h1,
  .catalog-hero.page-hero h1 {
    font-size: 34px !important;
  }
}

/* About page header: blend the historic aerial photo into the current hero artwork. */
.about-fused-hero {
  position: relative !important;
  isolation: isolate;
}

.about-fused-hero::before,
.about-fused-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-fused-hero::before {
  z-index: -2;
  background: url("assets/sobre-faixa-aerea.png") right center / auto 100% no-repeat;
  opacity: 0.74;
  filter: contrast(1.08) brightness(0.84);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 33%, #000 48%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 33%, #000 48%, #000 86%, transparent 100%);
}

.about-fused-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.98) 0%, rgba(6, 24, 39, 0.94) 36%, rgba(6, 24, 39, 0.72) 50%, rgba(6, 24, 39, 0.28) 68%, rgba(6, 24, 39, 0.16) 100%),
    linear-gradient(100deg, rgba(6, 24, 39, 0.22) 0%, rgba(6, 24, 39, 0.08) 48%, rgba(214, 23, 47, 0.62) 100%);
}

.about-fused-hero > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .about-fused-hero::before {
    background: url("assets/sobre-faixa-aerea.png") center top / cover no-repeat;
    opacity: 0.38;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 56%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 56%, transparent 100%);
  }

  .about-fused-hero::after {
    background:
      linear-gradient(180deg, rgba(6, 24, 39, 0.88), rgba(6, 24, 39, 0.92)),
      linear-gradient(120deg, rgba(6, 24, 39, 0.36), rgba(214, 23, 47, 0.28));
  }
}

/* Professional footer shared by every page. */
.site-footer {
  position: relative;
  display: block !important;
  overflow: hidden;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  background:
    linear-gradient(90deg, rgba(237, 28, 46, 0.78) 0 3px, transparent 3px 100%) left top / 88px 100% no-repeat,
    radial-gradient(circle at 92% 18%, rgba(237, 28, 46, 0.34), transparent 28%),
    radial-gradient(circle at 18% 4%, rgba(255, 255, 255, 0.1), transparent 22%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 22px),
    linear-gradient(118deg, #050505 0%, #0c0d0f 48%, #4f0c16 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.035) 50%, transparent 100%);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(180px, 0.64fr) minmax(320px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 40px;
}

.site-footer .footer-brand {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f5f7 100%);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.34),
    0 0 0 6px rgba(255, 255, 255, 0.035);
}

.site-footer .footer-brand::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(237, 28, 46, 0.58);
}

.footer-brand .brand-logo-full {
  width: 230px;
  max-height: 68px;
}

.footer-company p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.site-footer h2 {
  position: relative;
  margin: 0 0 24px !important;
  padding-bottom: 12px;
  color: #ffffff !important;
  font-size: 20px !important;
  letter-spacing: 0;
}

.site-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.footer-nav,
.footer-contact {
  align-self: start;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a {
  position: relative;
  width: fit-content;
  padding: 4px 0 4px 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.footer-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(237, 28, 46, 0.82);
  transform: translateY(-50%);
}

.footer-nav a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-contact {
  display: grid;
  gap: 13px;
}

.footer-contact-item {
  position: relative;
  display: grid;
  gap: 4px;
  overflow: hidden;
  padding: 15px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: inset 3px 0 0 rgba(237, 28, 46, 0.78);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.footer-contact-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.footer-contact-item:hover {
  border-color: rgba(214, 23, 47, 0.72);
  background:
    linear-gradient(135deg, rgba(214, 23, 47, 0.2), rgba(255, 255, 255, 0.045));
  box-shadow:
    inset 3px 0 0 var(--orange),
    0 16px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.footer-contact-item:hover::after {
  opacity: 1;
}

.footer-contact-item span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact-item strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.45;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.78;
}

.developer-credit img {
  display: block;
  width: 78px;
  height: auto;
  filter: brightness(1.25) drop-shadow(0 0 6px rgba(255, 255, 255, 0.22));
}

.developer-credit:hover {
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
}

@media (max-width: 920px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .viga-table-with-diagram,
  .viga-table-with-diagram-wide {
    grid-template-columns: 1fr;
  }

  .viga-diagram-card {
    position: relative;
    top: auto;
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    width: min(100% - 32px, var(--max));
    padding: 42px 0 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    width: min(100% - 32px, var(--max));
  }

  .developer-credit {
    margin-left: 0;
  }

  .footer-brand .brand-logo-full {
    width: 190px;
  }
}

/* Final responsive video polish for the presentation build. */
.home-conversion-hero.video-hero {
  min-height: 100svh !important;
  height: auto !important;
  align-items: center !important;
  overflow: hidden !important;
}

.hero-video {
  object-position: center center;
  opacity: 0.82;
}

.video-fallback {
  background-image: url("assets/catalog-chapas.jpg");
  background-position: center;
}

.products-video-hero.catalog-clean-hero {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
}

.products-hero-video {
  object-position: center center;
}

.products-hero-video.reveal-item,
.products-hero-overlay.reveal-item {
  opacity: 1 !important;
  translate: 0 0 !important;
}

@media (max-width: 1040px) {
  .hero-video {
    object-position: 54% center;
  }

  .products-hero-video {
    object-position: 52% center;
  }

  .products-panoramic-hero {
    background-position: center;
  }
}

@media (max-width: 760px) {
  .home-conversion-hero.video-hero {
    min-height: 100svh !important;
    padding: 132px 16px 92px !important;
  }

  .hero-video {
    object-position: center center;
    transform: scale(1.02) translateY(var(--hero-shift)) !important;
  }

  .video-overlay {
    background:
      linear-gradient(180deg, rgba(3, 13, 22, 0.82) 0%, rgba(6, 24, 39, 0.7) 48%, rgba(3, 13, 22, 0.9) 100%),
      radial-gradient(circle at 78% 22%, rgba(214, 23, 47, 0.24), transparent 34%);
  }

  .products-video-hero.catalog-clean-hero {
    min-height: 430px !important;
    height: auto !important;
    padding: 132px 20px 58px !important;
  }

  .products-hero-video {
    object-position: center center;
    opacity: 0.66;
  }

  .products-panoramic-hero {
    background-position: 54% center;
  }

  .products-hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 24, 39, 0.9) 0%, rgba(6, 24, 39, 0.78) 48%, rgba(6, 24, 39, 0.94) 100%),
      linear-gradient(120deg, rgba(6, 24, 39, 0.36), rgba(214, 23, 47, 0.32));
  }

  .products-panoramic-hero .products-hero-overlay {
    background: linear-gradient(180deg, rgba(3, 13, 22, 0.7) 0%, rgba(3, 13, 22, 0.42) 48%, rgba(3, 13, 22, 0.72) 100%);
  }
}

@media (max-width: 420px) {
  .home-conversion-hero.video-hero {
    min-height: 680px !important;
  }

  .home-conversion-hero h1 {
    font-size: 32px !important;
  }

  .products-video-hero.catalog-clean-hero {
    min-height: 420px !important;
  }
}

/* Home commercial chat bubble. */
.lead-popup {
  position: fixed !important;
  inset: auto 112px 30px auto !important;
  z-index: 31 !important;
  display: block !important;
  width: min(438px, calc(100vw - 140px)) !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  backdrop-filter: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  translate: 0 18px;
  transition: opacity 240ms ease, translate 240ms ease !important;
}

.lead-popup.is-open {
  opacity: 1 !important;
  pointer-events: auto !important;
  translate: 0 0;
}

.lead-popup-panel {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 122px minmax(0, 1fr) !important;
  gap: 16px !important;
  width: 100% !important;
  margin: 0 !important;
  overflow: visible !important;
  padding: 14px 18px 14px 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
  color: #fff !important;
  background:
    linear-gradient(135deg, rgba(5, 15, 24, 0.98), rgba(9, 32, 50, 0.96) 54%, rgba(76, 13, 22, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.065) 0 1px, transparent 1px 18px) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38) !important;
  translate: 0 0 !important;
  transform: none !important;
  backdrop-filter: blur(14px);
}

.lead-popup-panel::before {
  content: "";
  position: absolute;
  right: -9px;
  bottom: 27px;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: #172637;
  transform: rotate(45deg);
}

.lead-popup-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, #d6172f, #ff7a18);
}

.lead-popup-close {
  position: absolute !important;
  top: -11px !important;
  right: -11px !important;
  z-index: 2 !important;
  display: grid !important;
  width: 30px !important;
  height: 30px !important;
  place-items: center !important;
  border: 1px solid rgba(6, 24, 39, 0.12) !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background: #d6172f !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24) !important;
  font-size: 20px !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.lead-popup-close:hover {
  color: #fff !important;
  background: #a90f23 !important;
}

.lead-popup-brand {
  position: relative;
  display: grid;
  min-height: 124px;
  align-content: space-between;
  justify-items: start;
  overflow: hidden;
  padding: 12px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 241, 245, 0.98)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.06) 0 1px, transparent 1px 16px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 16px 34px rgba(0, 0, 0, 0.22);
}

.lead-popup-brand::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 88px;
  height: 88px;
  border: 14px solid rgba(214, 23, 47, 0.14);
  border-radius: 50%;
}

.lead-popup-brand img {
  position: relative;
  z-index: 1;
  width: 98px;
  height: auto;
}

.lead-popup-brand strong {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-popup-body {
  display: grid !important;
  gap: 7px !important;
  align-content: center !important;
  padding: 0 !important;
  color: #fff !important;
  text-align: left !important;
  background: transparent !important;
}

.lead-popup-body span {
  color: #ff9a3d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-popup-body h2 {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 21px !important;
  line-height: 1.12 !important;
}

.lead-popup-body p {
  max-width: none !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

.lead-popup-action {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  border-radius: 999px;
  padding: 9px 16px;
  color: #fff;
  background: #1fb45a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(31, 180, 90, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lead-popup-action:hover {
  background: #148a43;
  box-shadow: 0 15px 28px rgba(31, 180, 90, 0.32);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .lead-popup {
    right: 14px !important;
    bottom: 82px !important;
    left: 14px !important;
    width: auto !important;
  }

  .lead-popup-panel {
    grid-template-columns: 86px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 12px !important;
  }

  .lead-popup-panel::before {
    right: 24px;
    bottom: -9px;
    border-top: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .lead-popup-brand {
    min-height: 100px;
    padding: 10px;
  }

  .lead-popup-brand img {
    width: 68px;
  }

  .lead-popup-brand strong {
    font-size: 10px;
  }

  .lead-popup-body h2 {
    font-size: 18px !important;
  }

  .lead-popup-body p {
    font-size: 13px !important;
  }
}

@media (max-width: 420px) {
  .lead-popup-action {
    width: 100%;
  }
}

.home-company-panel {
  text-decoration: none;
}

.home-quote-guide .text-button {
  justify-self: start;
  margin-top: 2px;
}

.home-region-strip {
  margin-top: 0;
}

.home-coverage-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  padding-top: 64px;
  padding-bottom: 64px;
  background:
    radial-gradient(circle at 86% 14%, rgba(126, 211, 232, 0.18), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(214, 23, 47, 0.16), transparent 28%),
    linear-gradient(118deg, rgba(6, 24, 39, 0.98), rgba(8, 30, 46, 0.96) 58%, rgba(9, 10, 12, 0.96)),
    #061827 !important;
}

.home-coverage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.32;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.home-coverage-section {
  display: block;
}

.home-coverage-section .coverage-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  align-items: stretch;
  gap: 0;
  max-width: 1120px;
  min-height: 390px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  border-top: 4px solid var(--orange);
  background: #fff;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.16);
}

.home-coverage-section .coverage-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.home-coverage-section .coverage-showcase-copy,
.home-coverage-section .coverage-sc-map {
  position: relative;
  z-index: 1;
}

.home-coverage-section .coverage-showcase-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: clamp(34px, 4vw, 52px);
  background:
    linear-gradient(145deg, rgba(6, 24, 39, 0.98), rgba(17, 45, 64, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 22px);
}

.home-coverage-section .coverage-showcase-copy .eyebrow {
  margin-bottom: 0;
  color: #ff4658;
}

.home-coverage-section .coverage-showcase-copy h2 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
  text-transform: none;
}

.home-coverage-section .coverage-showcase-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.55;
}

.coverage-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 560px;
}

.coverage-city-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.home-coverage-section .coverage-showcase-copy .pill-button {
  width: fit-content;
  margin-top: 2px;
  background: #ed0713;
  box-shadow: none;
}

.home-coverage-section .coverage-sc-map {
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-left: 4px solid var(--orange);
  border-radius: 0;
  background: #fff;
}

.home-coverage-section .coverage-sc-map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
}

@media (max-width: 1040px) {
  .home-coverage-section .coverage-showcase {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .home-coverage-section .coverage-sc-map {
    justify-self: center;
    width: 100%;
    margin: 0;
    border-top: 4px solid var(--orange);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .hero-actions .pill-button,
  .hero-actions .outline-link {
    width: 100%;
  }

  .hero-actions .outline-link {
    justify-content: center;
    min-height: 44px;
  }

  .home-coverage-section .coverage-showcase {
    min-height: 0;
    padding: 0;
  }

  .home-coverage-section .coverage-showcase-copy h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .home-coverage-section .coverage-showcase-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .home-coverage-section .coverage-sc-map img {
    min-height: 260px;
  }

  .home-coverage-section .coverage-showcase-copy .pill-button {
    width: 100%;
    justify-content: center;
  }
}

/* Header dropdown shortcuts for products/services. */
@media (min-width: 761px) {
  .site-header,
  .overlay-header {
    overflow: visible !important;
  }
}

.main-nav .nav-dropdown {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

.main-nav .nav-dropdown-trigger {
  padding-right: 30px !important;
}

.main-nav .nav-dropdown-trigger::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-64%) rotate(45deg);
  transition: transform 180ms ease;
}

.main-nav .nav-dropdown:hover .nav-dropdown-trigger::before,
.main-nav .nav-dropdown:focus-within .nav-dropdown-trigger::before {
  transform: translateY(-36%) rotate(225deg);
}

.main-nav .nav-dropdown-menu {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  z-index: 60 !important;
  display: grid !important;
  min-width: 190px !important;
  padding: 8px !important;
  border: 1px solid #111111 !important;
  background: #ffffff !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16) !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav .nav-dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 10px;
}

.main-nav .nav-dropdown:hover .nav-dropdown-menu,
.main-nav .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav .nav-dropdown-menu a {
  justify-content: flex-start !important;
  width: 100% !important;
  min-height: 38px !important;
  height: 38px !important;
  padding: 0 12px !important;
  font-size: 13px !important;
}

@media (max-width: 760px) {
  .main-nav .nav-dropdown {
    display: grid !important;
    width: 100% !important;
  }

  .main-nav .nav-dropdown-trigger {
    padding-right: 10px !important;
  }

  .main-nav .nav-dropdown-trigger::before {
    display: none;
  }

  .main-nav .nav-dropdown-menu {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 0 0 12px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav .nav-dropdown-menu a {
    min-height: 38px !important;
    height: auto !important;
    font-size: 13px !important;
  }
}

/* About story feature: blend the historic image and narrative into one piece. */
@media (max-width: 1080px) {
  .about-story-section {
    grid-template-columns: 1fr !important;
  }

  .about-story-visual {
    position: relative;
    top: auto;
    min-height: 460px;
  }

  .about-story {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .about-story-section {
    padding-inline: 18px !important;
    gap: 18px !important;
  }

  .about-story-visual {
    min-height: 420px;
  }

  .about-story-visual .section-heading.compact {
    padding: 24px;
  }

  .about-story-visual h1,
  .about-story-visual h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .about-story {
    padding: 22px;
    font-size: 15.5px;
    line-height: 1.64;
  }
}

/* Home hero brand composition. */
@media (max-width: 1040px) {
  .home-conversion-hero .home-hero-layout {
    grid-template-columns: 1fr !important;
    width: min(100%, calc(100vw - 32px)) !important;
  }

  .home-brand-intro {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .home-brand-intro {
    gap: 14px;
    padding: 20px;
    border-left-width: 3px;
  }

  .hero-brand-mark {
    width: min(260px, 84vw);
    padding: 11px 14px;
  }

  .home-brand-intro h1 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .home-brand-intro p:not(.eyebrow) {
    font-size: 16px;
  }
}

/* About story final composition: one immersive photo-led panel. */
.about-story-section {
  position: relative !important;
  isolation: isolate !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.82fr) minmax(360px, 0.88fr) !important;
  gap: clamp(24px, 4vw, 56px) !important;
  align-items: end !important;
  min-height: 820px !important;
  padding-top: 174px !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background: #061827 !important;
}

.about-story-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background:
    linear-gradient(90deg, rgba(4, 10, 16, 0.86) 0%, rgba(4, 10, 16, 0.5) 42%, rgba(4, 10, 16, 0.78) 100%),
    linear-gradient(180deg, rgba(4, 10, 16, 0.14) 0%, rgba(4, 10, 16, 0.72) 100%) !important;
}

.about-story-section::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 23, 47, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}

/* Home final direction: cleaner video copy and a compact WhatsApp prompt. */
.home-brand-intro {
  max-width: 720px !important;
  padding: 0 !important;
  border-left: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.home-brand-intro::before,
.video-content::before {
  display: none !important;
}

.hero-brand-mark {
  width: min(360px, 78vw) !important;
  padding: 13px 16px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

.home-brand-intro .eyebrow {
  width: fit-content;
  margin-top: 6px !important;
  padding: 7px 10px;
  color: #fff !important;
  background: rgba(214, 23, 47, 0.92);
  font-size: 12px !important;
}

.home-brand-intro h1 {
  max-width: 760px !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(42px, 6.4vw, 82px) !important;
  line-height: 0.94 !important;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.48);
}

.hero-solution-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.hero-solution-line span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(5, 15, 24, 0.42);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.home-brand-intro .hero-actions {
  margin-top: 12px !important;
}

.lead-popup {
  right: 96px !important;
  bottom: 28px !important;
  width: min(372px, calc(100vw - 128px)) !important;
  translate: 0 14px;
}

.lead-popup-panel {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 13px !important;
  overflow: hidden !important;
  padding: 14px !important;
  border: 1px solid rgba(6, 24, 39, 0.11) !important;
  border-radius: 8px !important;
  color: var(--ink) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 250, 0.98)),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.035) 0 1px, transparent 1px 18px) !important;
  box-shadow: 0 24px 58px rgba(6, 24, 39, 0.24) !important;
  backdrop-filter: blur(16px) !important;
}

.lead-popup-panel::before {
  right: -8px !important;
  bottom: 26px !important;
  border-color: rgba(6, 24, 39, 0.1) !important;
  background: #f5f8fa !important;
}

.lead-popup-panel::after {
  display: none !important;
}

.lead-popup-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
}

.lead-popup-avatar {
  position: relative;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(6, 24, 39, 0.18);
}

.lead-popup-avatar::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #1fb45a;
}

.lead-popup-avatar img,
.lead-popup-action img {
  display: block;
}

.lead-popup-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.lead-popup-head span {
  display: block;
  color: #1b8f4c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-popup-head strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.08;
}

.lead-popup-close {
  position: static !important;
  width: 30px !important;
  height: 30px !important;
  border-color: rgba(6, 24, 39, 0.11) !important;
  color: var(--navy) !important;
  background: #fff !important;
  box-shadow: none !important;
  font-size: 22px !important;
}

.lead-popup-close:hover {
  color: #fff !important;
  background: var(--orange) !important;
}

.lead-popup-body {
  display: grid !important;
  gap: 10px !important;
  color: var(--ink) !important;
}

.lead-popup-body p {
  color: var(--muted) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.lead-popup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lead-popup-tags span {
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--navy) !important;
  background: #fff;
  font-size: 11px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-popup-action {
  width: 100% !important;
  min-height: 44px !important;
  gap: 9px;
  border-radius: 8px !important;
  background: #1fb45a !important;
  font-size: 13px !important;
}

.lead-popup-action img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

@media (max-width: 760px) {
  .home-brand-intro {
    gap: 12px !important;
  }

  .home-brand-intro h1 {
    font-size: clamp(38px, 13vw, 58px) !important;
  }

  .hero-solution-line span {
    min-height: 31px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .lead-popup {
    right: 14px !important;
    bottom: 82px !important;
    left: 14px !important;
    width: auto !important;
  }

  .lead-popup-panel {
    padding: 12px !important;
  }

  .lead-popup-head {
    grid-template-columns: 52px minmax(0, 1fr) 30px;
  }

  .lead-popup-avatar {
    width: 52px;
    height: 52px;
  }
}

.about-story-visual {
  position: static !important;
  display: block !important;
  min-height: 0 !important;
  overflow: visible !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.about-history-photo {
  position: absolute !important;
  inset: 0 !important;
  z-index: -3 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.about-history-photo::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(4, 10, 16, 0.72), rgba(4, 10, 16, 0.18) 48%, rgba(4, 10, 16, 0.72)),
    linear-gradient(180deg, rgba(4, 10, 16, 0.1), rgba(4, 10, 16, 0.62)) !important;
}

.about-history-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: saturate(1.1) contrast(1.08) brightness(0.92) !important;
  transform: none !important;
}

.about-story-visual .section-heading.compact {
  position: relative !important;
  z-index: 1 !important;
  max-width: 650px !important;
  margin: 0 !important;
  padding: clamp(24px, 4vw, 44px) !important;
  border-left: 4px solid #d6172f !important;
  text-align: left !important;
  background:
    linear-gradient(90deg, rgba(4, 10, 16, 0.76), rgba(4, 10, 16, 0.36) 82%, transparent) !important;
  backdrop-filter: blur(2px);
}

.about-story-visual .eyebrow {
  margin-bottom: 14px !important;
  color: #ff3048 !important;
}

.about-story-visual h1,
.about-story-visual h2 {
  max-width: 620px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(38px, 5vw, 68px) !important;
  line-height: 0.98 !important;
  text-wrap: balance;
}

.about-story-visual .section-heading.compact > p:not(.eyebrow) {
  max-width: 560px !important;
  margin: 18px 0 0 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
}

.about-story-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-story-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.about-story-highlights strong {
  color: #ffffff;
  font-size: 13px;
}

.about-story {
  position: relative !important;
  z-index: 1 !important;
  align-self: center !important;
  max-width: 650px !important;
  max-height: none !important;
  overflow: visible !important;
  padding: clamp(12px, 2vw, 20px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  background:
    linear-gradient(90deg, rgba(4, 10, 16, 0.68), rgba(4, 10, 16, 0.28) 72%, transparent) !important;
  box-shadow: none !important;
  backdrop-filter: none;
  font-size: 16.5px !important;
  line-height: 1.7 !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
}

.about-story::before {
  content: none !important;
}

.about-story article {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 0 0 22px 28px;
}

.about-story article::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: #d6172f;
  box-shadow: 0 0 0 5px rgba(214, 23, 47, 0.18);
}

.about-story article::after {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 5px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent);
}

.about-story article:last-child {
  padding-bottom: 0;
}

.about-story article:last-child::after {
  display: none;
}

.about-story article span {
  width: fit-content;
  color: #ff3048;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-story article strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.14;
}

.about-story article p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1080px) {
  .about-story-section {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-top: 148px !important;
    gap: 22px !important;
  }

  .about-story {
    max-width: none !important;
    max-height: none !important;
  }
}

@media (max-width: 760px) {
  .about-story-section {
    padding: 124px 18px 48px !important;
  }

  .about-story-visual .section-heading.compact {
    padding: 22px !important;
  }

  .about-story-visual h1,
  .about-story-visual h2 {
    font-size: clamp(32px, 10vw, 44px) !important;
  }

  .about-story {
    padding: 20px !important;
    font-size: 15.5px !important;
  }

  .about-story article {
    padding-left: 24px;
  }

  .about-story article strong {
    font-size: 19px;
  }

  .about-story-highlights {
    gap: 8px;
  }
}

/* Catalog inspired by technical steel distributors. */
.catalog-intro-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto 24px;
  padding: clamp(22px, 3vw, 34px);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f3f6f8 100%),
    repeating-linear-gradient(135deg, rgba(6, 24, 39, 0.04) 0 1px, transparent 1px 18px);
  box-shadow: var(--soft-shadow);
}

.catalog-intro-panel h2,
.catalog-download-section h2,
.catalog-page-heading h1,
.catalog-page-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.catalog-intro-panel p:not(.eyebrow),
.catalog-download-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.catalog-product-card {
  isolation: isolate;
}

.catalog-product-card h3 {
  margin-top: 16px;
}

.catalog-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catalog-card-action::after {
  content: ">";
  transition: transform 180ms ease;
}

.catalog-product-card:hover .catalog-card-action::after {
  transform: translateX(3px);
}

.product-card-grid {
  align-items: stretch;
}

.product-card-grid .catalog-product-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 326px;
  border-color: rgba(6, 24, 39, 0.2);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.product-card-grid .catalog-card-photo {
  height: 170px;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.product-card-grid .catalog-product-card:hover .catalog-card-photo {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.025);
}

.product-card-grid .catalog-product-card h3 {
  margin: 16px 18px 8px;
  font-size: 20px;
  line-height: 1.12;
}

.product-card-grid .catalog-product-card p {
  margin: 0;
  padding: 0 18px 14px;
  font-size: 14px;
  line-height: 1.42;
}

.product-card-grid .catalog-card-action {
  align-self: end;
  width: fit-content;
  margin: 0 18px 18px;
  padding-top: 4px;
  line-height: 1;
}

.catalog-download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto clamp(44px, 7vw, 86px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 24, 39, 0.96), rgba(18, 54, 79, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px);
  box-shadow: var(--shadow);
}

.catalog-download-section h2,
.catalog-download-section .eyebrow {
  color: #fff;
}

.catalog-download-section p {
  color: rgba(255, 255, 255, 0.76);
}

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

.catalog-download-grid a,
.catalog-pdf-actions .outline-link,
.catalog-page-heading .outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(214, 23, 47, 0.24);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.catalog-download-grid a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.catalog-download-grid a:hover,
.catalog-pdf-actions .outline-link:hover,
.catalog-page-heading .outline-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.catalog-hero-chapas {
  background-image: linear-gradient(90deg, rgba(6, 24, 39, 0.82), rgba(6, 24, 39, 0.34)), url("assets/catalogo-chapas.png") !important;
}

.catalog-hero-tubos {
  background-image: linear-gradient(90deg, rgba(6, 24, 39, 0.82), rgba(6, 24, 39, 0.34)), url("assets/catalogo-tubos-redondo-quadrado-retangular.png") !important;
}

.catalog-hero-perfis {
  background-image: linear-gradient(90deg, rgba(6, 24, 39, 0.82), rgba(6, 24, 39, 0.34)), url("assets/catalogo-vigas.png") !important;
}

.catalog-hero-perfis-laminados {
  background-image: linear-gradient(90deg, rgba(6, 24, 39, 0.82), rgba(6, 24, 39, 0.34)), url("assets/catalogo-trefilados.png") !important;
}

.catalog-hero-barras {
  background-image: linear-gradient(90deg, rgba(6, 24, 39, 0.82), rgba(6, 24, 39, 0.34)), url("assets/catalog-barras.jpg") !important;
}

.catalog-hero-laminados {
  background-image: linear-gradient(90deg, rgba(6, 24, 39, 0.82), rgba(6, 24, 39, 0.34)), url("assets/catalogo-cantoneiras.png") !important;
}

.technical-catalog-section {
  max-width: var(--max);
  margin: clamp(34px, 6vw, 72px) auto;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--soft-shadow);
}

.catalog-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.catalog-pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.technical-table.simple-catalog-table {
  overflow: hidden;
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 8px;
  background: #fff;
}

.technical-table .simple-row {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1.35fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(6, 24, 39, 0.08);
}

.technical-table .simple-row:last-child {
  border-bottom: 0;
}

.technical-table .simple-row.header {
  color: #fff;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.technical-table .simple-row strong {
  color: var(--navy);
}

.technical-table .simple-row span {
  color: var(--muted);
}

.technical-table .simple-row.header span {
  color: #fff;
}

.catalog-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.catalog-info-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--navy);
  background: #f7fafc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .catalog-intro-panel,
  .catalog-page-heading,
  .catalog-download-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalog-intro-panel,
  .catalog-page-heading {
    flex-direction: column;
  }

  .catalog-download-grid {
    grid-template-columns: 1fr;
  }

  .technical-table .simple-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .technical-table .simple-row.header {
    display: none;
  }

  .technical-table .simple-row span {
    display: block;
  }
}

@media (max-width: 640px) {
  .catalog-intro-panel,
  .technical-catalog-section,
  .catalog-download-section {
    width: calc(100% - 28px);
    padding: 18px;
  }

  .catalog-pdf-actions,
  .catalog-page-heading .outline-link,
  .catalog-intro-panel .pill-button {
    width: 100%;
  }

  .catalog-pdf-actions .outline-link {
    flex: 1 1 100%;
  }
}

/* Cookie consent banner. */
.cookie-consent {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 120;
  width: min(352px, calc(100vw - 18px));
  padding: 0 0 8px;
  opacity: 0;
  pointer-events: none;
}

.cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent-card {
  display: grid;
  gap: 14px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(6, 24, 39, 0.08);
  border-radius: 18px;
  color: #23313b;
  background: #fff;
  box-shadow: 0 12px 38px rgba(6, 24, 39, 0.18);
  transform: translateY(16px);
  transition: transform 220ms ease, opacity 220ms ease;
}

.cookie-consent.is-visible .cookie-consent-card {
  transform: translateY(0);
}

.cookie-consent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-consent-head strong,
.cookie-consent-head span {
  color: #00c96f;
  font-size: 14px;
  font-weight: 900;
}

.cookie-consent p {
  margin: 0;
  color: #394953;
  font-size: 12px;
  line-height: 1.45;
}

.cookie-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.cookie-consent-links a,
.cookie-link-button {
  color: #314049;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-links a {
  color: #008f61;
}

.cookie-consent-options {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 8px;
  padding: 10px;
  background: #f7faf9;
}

.cookie-consent-options[hidden] {
  display: none;
}

.cookie-consent-options label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #314049;
  font-size: 12px;
  font-weight: 700;
}

.cookie-consent-options input {
  accent-color: #00c96f;
}

.cookie-consent-actions {
  display: grid;
  grid-template-columns: 1fr 104px 101px;
  gap: 8px;
  align-items: center;
}

.cookie-consent-actions button {
  min-height: 40px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.cookie-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.cookie-outline-button {
  border: 1px solid #314049;
  color: #314049;
  background: #fff;
}

.cookie-accept-button {
  border: 1px solid #00d779;
  color: #fff;
  background: #00d779;
  box-shadow: 0 12px 26px rgba(0, 201, 111, 0.25);
}

.cookie-outline-button:hover,
.cookie-link-button:hover {
  color: #008f61;
}

.cookie-accept-button:hover {
  background: #00bd69;
}

.privacy-policy-content {
  display: grid;
  gap: 14px;
  max-width: 860px;
  color: var(--muted);
  font-size: 17px;
}

.privacy-policy-content p {
  margin: 0;
}

.privacy-policy-content a {
  color: var(--orange);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sampaio-catalog-section {
  display: block;
}

.sampaio-catalog-lead {
  max-width: 860px;
  margin: -6px 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.sampaio-media-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 14px;
  margin: 0 0 26px;
}

.sampaio-media-strip img {
  display: block;
  width: 100%;
  height: clamp(170px, 22vw, 260px);
  object-fit: cover;
  border-radius: 8px;
  background: #eef2f5;
  box-shadow: 0 14px 34px rgba(6, 24, 39, 0.12);
}

.sampaio-media-strip img[src$=".svg"] {
  padding: 18px;
  object-fit: contain;
}

.sampaio-table-block {
  margin-top: 26px;
}

.sampaio-table-block:first-of-type {
  margin-top: 0;
}

.sampaio-table-block h3 {
  margin: 0;
  padding: 12px 14px;
  color: #fff;
  background: #e92b35;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.sampaio-table-scroll {
  overflow-x: auto;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.sampaio-thickness-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 13px;
}

.sampaio-table-block.compact .sampaio-thickness-table {
  min-width: 520px;
}

.sampaio-thickness-table.sampaio-compact-table {
  min-width: 420px;
}

.sampaio-thickness-table th,
.sampaio-thickness-table td {
  border-right: 1px solid rgba(6, 24, 39, 0.09);
  border-bottom: 1px solid rgba(6, 24, 39, 0.08);
  padding: 10px 9px;
  text-align: center;
  white-space: nowrap;
}

.sampaio-thickness-table th:first-child,
.sampaio-thickness-table td:first-child,
.sampaio-thickness-table th:nth-child(2),
.sampaio-thickness-table td:nth-child(2) {
  text-align: left;
}

.sampaio-thickness-table th {
  color: #fff;
  background: #55575c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sampaio-thickness-table tbody tr:nth-child(even) {
  background: #f3f3f3;
}

.sampaio-thickness-table tbody tr:hover {
  background: #fffbd7;
}

.sampaio-thickness-table td:first-child {
  color: var(--navy);
  font-weight: 900;
}

.sampaio-thickness-table td strong {
  font-weight: 900;
}

.sampaio-thickness-table td:nth-child(n+3) {
  color: var(--ink);
  font-weight: 900;
}

.sampaio-thickness-table td.na {
  color: var(--steel-2);
  font-weight: 700;
}

.laminados-catalog-section .sampaio-table-block {
  overflow: hidden;
  border: 1px solid rgba(6, 24, 39, 0.08);
  border-radius: 0;
  background: #fff;
}

.laminados-catalog-section .sampaio-table-scroll {
  overflow-x: visible;
}

.laminados-catalog-section .sampaio-thickness-table.sampaio-compact-table {
  min-width: 0;
  table-layout: fixed;
}

.laminados-catalog-section .sampaio-thickness-table th,
.laminados-catalog-section .sampaio-thickness-table td {
  padding: 12px 14px;
  white-space: normal;
}

.laminados-catalog-section .sampaio-thickness-table th:first-child,
.laminados-catalog-section .sampaio-thickness-table td:first-child {
  width: 68%;
}

.laminados-catalog-section .sampaio-thickness-table th:nth-child(2),
.laminados-catalog-section .sampaio-thickness-table td:nth-child(2) {
  width: 32%;
}

.laminados-catalog-section .sampaio-thickness-table td:nth-child(2) {
  color: var(--ink);
  font-weight: 900;
}

.availability-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(214, 23, 47, 0.32);
  border-radius: 4px;
  color: var(--orange);
  background: rgba(214, 23, 47, 0.06);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.availability-link:hover {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

.tubos-catalog-section .sampaio-table-scroll {
  overflow-x: visible;
}

.tubos-catalog-section .sampaio-thickness-table {
  min-width: 0;
  table-layout: fixed;
  font-size: 12px;
}

.tubos-catalog-section .sampaio-thickness-table th,
.tubos-catalog-section .sampaio-thickness-table td {
  padding: 9px 6px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.tubos-catalog-section .sampaio-thickness-table td:not(.na) {
  color: var(--ink);
  font-weight: 900;
}

.tubos-catalog-section .tubos-redondos-table th:first-child,
.tubos-catalog-section .tubos-redondos-table td:first-child {
  width: 11%;
}

.tubos-catalog-section .tubos-redondos-table th:nth-child(2),
.tubos-catalog-section .tubos-redondos-table td:nth-child(2) {
  width: 13%;
}

.tubos-catalog-section .tubos-medidas-table th:first-child,
.tubos-catalog-section .tubos-medidas-table td:first-child {
  width: 18%;
}

.tubos-consulta-block {
  overflow: hidden;
  border: 1px solid rgba(6, 24, 39, 0.08);
  background: #fff;
}

.tubos-consulta-block .sampaio-table-scroll {
  overflow-x: visible;
}

.tubos-consulta-block .sampaio-thickness-table {
  min-width: 0;
  table-layout: fixed;
  font-size: 13px;
}

.tubos-consulta-block .sampaio-thickness-table th,
.tubos-consulta-block .sampaio-thickness-table td {
  padding: 14px;
  white-space: normal;
}

.tubos-consulta-block .sampaio-thickness-table th:first-child,
.tubos-consulta-block .sampaio-thickness-table td:first-child {
  width: 68%;
}

.tubos-consulta-block .sampaio-thickness-table th:nth-child(2),
.tubos-consulta-block .sampaio-thickness-table td:nth-child(2) {
  width: 32%;
}

.tubos-consulta-block .sampaio-thickness-table td:nth-child(2) {
  color: var(--ink);
  font-weight: 900;
}

.perfis-u-catalog-section .sampaio-table-scroll {
  overflow-x: visible;
}

.perfis-u-catalog-section .sampaio-thickness-table {
  min-width: 0;
  table-layout: fixed;
  font-size: 13px;
}

.perfis-u-catalog-section .sampaio-thickness-table th,
.perfis-u-catalog-section .sampaio-thickness-table td {
  padding: 10px 9px;
  white-space: normal;
  overflow-wrap: anywhere;
  font-weight: 900;
}

.perfis-u-catalog-section .sampaio-thickness-table th:first-child,
.perfis-u-catalog-section .sampaio-thickness-table td:first-child {
  width: 30%;
}

.perfis-u-catalog-section .sampaio-thickness-table td:not(.na) {
  color: var(--ink);
  font-weight: 900;
}

.perfis-u-catalog-section .sampaio-thickness-table th,
.perfis-u-catalog-section .sampaio-thickness-table td {
  font-size: 13px !important;
  line-height: 1.25;
}

.perfis-u-catalog-section .sampaio-thickness-table td.na {
  font-weight: 700;
}

.vigas-catalog-section .sampaio-thickness-table th,
.vigas-catalog-section .sampaio-thickness-table td {
  font-weight: 900;
}

.vigas-catalog-section .sampaio-thickness-table td:not(.na) {
  color: var(--ink);
  font-weight: 900;
}

.laminados-catalog-section .catalog-page-nav {
  margin-top: 22px;
}

.viga-table-block .sampaio-table-scroll {
  border: 1px solid rgba(6, 24, 39, 0.08);
}

.viga-table-with-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
  margin-top: 26px;
}

.viga-table-with-diagram:first-of-type {
  margin-top: 26px;
}

.viga-table-with-diagram .sampaio-table-block {
  min-width: 0;
  margin-top: 0;
}

.viga-diagram-card {
  position: sticky;
  top: 132px;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(6, 24, 39, 0.1);
}

.viga-diagram-card div {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.viga-diagram-card img {
  display: block;
  width: 200%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.viga-diagram-i img {
  transform: translateX(-50%);
}

.viga-diagram-w img {
  transform: translateX(0);
}

.viga-table-with-diagram-wide {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.28fr);
}

.viga-technical-table {
  min-width: 1120px;
}

.viga-technical-table th,
.viga-technical-table td,
.viga-technical-table th:first-child,
.viga-technical-table td:first-child,
.viga-technical-table th:nth-child(2),
.viga-technical-table td:nth-child(2) {
  text-align: center;
}

.viga-technical-table thead tr:first-child th {
  background: #4da1c4;
}

.viga-technical-table thead tr:nth-child(2) th {
  background: #67b2d0;
}

.viga-technical-table tbody td[rowspan] {
  color: var(--navy);
  font-weight: 900;
  vertical-align: middle;
}

.viga-technical-table td:nth-child(n+3) {
  color: var(--ink);
  font-weight: 400;
}

.viga-w-table {
  min-width: 760px;
}

.viga-w-table th,
.viga-w-table td,
.viga-w-table th:first-child,
.viga-w-table td:first-child,
.viga-w-table th:nth-child(2),
.viga-w-table td:nth-child(2) {
  text-align: center;
}

.viga-w-table th {
  background: #55575c;
}

.viga-w-table td:first-child {
  color: var(--navy);
  font-weight: 900;
}

.viga-w-table td:nth-child(n+3) {
  color: var(--ink);
  font-weight: 400;
}

.chapas-catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 24px 28px;
  max-width: 980px;
  margin: clamp(138px, 14vw, 172px) auto clamp(44px, 7vw, 86px);
  padding: clamp(22px, 4vw, 46px);
  background: #fff;
  box-shadow: none;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0;
}

/* Shared product catalog presentation. Mirrors the Chapas page while keeping
   each product's technical tables intact. */
.unified-product-catalog {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 24px 28px;
  max-width: 980px;
  margin: clamp(138px, 14vw, 172px) auto clamp(44px, 7vw, 86px);
  padding: clamp(22px, 4vw, 46px);
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0;
  background: #fff !important;
  box-shadow: none;
}

.unified-product-catalog .product-catalog-intro {
  align-self: center;
}

.unified-product-catalog .catalog-page-heading {
  display: block;
  margin: 0;
}

.unified-product-catalog .catalog-page-heading .eyebrow {
  display: none;
}

.unified-product-catalog .catalog-page-heading h1 {
  max-width: 430px;
  margin: 0;
  color: #e92b35;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
}

.unified-product-catalog .sampaio-catalog-lead {
  max-width: 430px;
  margin: 18px 0 0;
  color: #59646c;
  font-size: 13px;
  line-height: 1.7;
}

.product-catalog-photo {
  align-self: start;
}

.product-catalog-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

.unified-product-catalog > .sampaio-table-block,
.unified-product-catalog > .viga-table-with-diagram,
.unified-product-catalog > .viga-reference-panel,
.unified-product-catalog > .catalog-page-nav {
  grid-column: 1 / -1;
}

.viga-reference-panel {
  display: grid;
  grid-template-columns: minmax(440px, 1.45fr) minmax(250px, 0.55fr);
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(6, 24, 39, 0.14);
  background: #f7f8f9;
}

.viga-reference-panel-full {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(286px, 0.325fr);
  gap: 20px;
  align-items: center;
  padding: clamp(12px, 2vw, 20px);
  background: #fff;
}

.viga-reference-panel-full .viga-reference-image {
  min-width: 0;
}

.viga-reference-zoom {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(6, 24, 39, 0.12);
  background: #fff;
  cursor: zoom-in;
}

.viga-reference-zoom img,
.viga-reference-single-legend img,
.viga-reference-image img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  background: #fff;
}

.viga-reference-panel-full .viga-reference-image img {
  max-height: none;
}

.viga-reference-single-legend {
  justify-self: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: #fff;
}

.viga-reference-single-legend img {
  max-height: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 34px);
  background: rgba(6, 24, 39, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  display: block;
  width: min(100%, 1500px);
  max-height: 92vh;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.image-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  background: rgba(6, 24, 39, 0.86);
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .viga-reference-panel-full {
    padding: 10px;
  }

  .viga-reference-panel-full .viga-reference-image {
    overflow-x: auto;
  }

  .viga-reference-zoom {
    min-width: 720px;
  }

}

.viga-reference-legend h2 {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 20px;
  text-transform: uppercase;
}

.viga-reference-legend dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin: 0;
}

.viga-reference-legend dl div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(6, 24, 39, 0.1);
}

.viga-reference-legend dt {
  color: var(--orange);
  font-weight: 900;
}

.viga-reference-legend dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.unified-product-catalog > .sampaio-table-block,
.unified-product-catalog > .viga-table-with-diagram {
  margin: 0;
}

.unified-product-catalog .viga-table-with-diagram,
.unified-product-catalog .viga-table-with-diagram-wide {
  display: block;
}

.unified-product-catalog .catalog-page-nav {
  margin-top: 2px;
}

.service-catalog-layout .catalog-page-heading h1 {
  max-width: none;
}

.service-catalog-layout .product-catalog-intro {
  grid-column: 1 / -1;
}

.service-catalog-layout .sampaio-catalog-lead {
  max-width: 640px;
}

.service-catalog-layout .product-catalog-photo {
  grid-column: 1 / -1;
}

.service-catalog-layout .product-catalog-photo img {
  height: clamp(210px, 24vw, 280px);
  max-height: 280px;
  border: 1px solid rgba(6, 24, 39, 0.14);
  box-shadow: 0 18px 42px rgba(6, 24, 39, 0.12);
}

.service-spec-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 2px;
}

.service-spec-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(6, 24, 39, 0.12);
  background: linear-gradient(180deg, #ffffff, #f7f8f9);
}

.service-spec-card h3 {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 3px solid #e92b35;
  color: #e92b35;
  font-size: 17px;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-spec-card p {
  margin: 0;
  color: #36454f;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .unified-product-catalog {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    padding: 18px;
  }

  .unified-product-catalog .catalog-page-heading h1 {
    max-width: none;
  }

  .product-catalog-photo {
    grid-column: 1;
  }

  .viga-reference-panel,
  .viga-reference-legend dl {
    grid-template-columns: 1fr;
  }

  .service-spec-grid {
    grid-template-columns: 1fr;
  }

  .service-spec-card {
    min-height: auto;
    padding: 18px;
  }
}

.chapas-catalog-layout .catalog-page-heading {
  display: block;
  margin: 0;
}

.chapas-catalog-layout .catalog-page-heading::before {
  content: none;
}

.chapas-catalog-layout .catalog-page-heading .eyebrow {
  display: none;
}

.chapas-catalog-layout .catalog-page-heading h1,
.chapas-catalog-layout .catalog-page-heading h2 {
  max-width: 260px;
  color: #e92b35;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
}

.chapas-catalog-layout .catalog-page-heading .outline-link {
  margin-top: 16px;
}

.chapas-catalog-layout .sampaio-catalog-lead {
  max-width: 430px;
  margin: 18px 0 0;
  color: #59646c;
  font-size: 13px;
  line-height: 1.7;
}

.chapas-catalog-photo {
  position: relative;
  align-self: start;
}

.chapas-catalog-photo::before {
  content: none;
}

.chapas-catalog-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

.sampaio-table-grid {
  grid-column: 1 / -1;
  columns: 2 320px;
  column-gap: 22px;
  margin-top: 2px;
}

.sampaio-table-grid .sampaio-table-block {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
  box-shadow: none;
}

.chapas-catalog-layout .sampaio-table-block h3 {
  padding: 10px 12px;
  font-size: 13px;
}

.chapas-catalog-layout .sampaio-thickness-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  font-size: 12px;
}

.chapas-catalog-layout .sampaio-table-block.compact .sampaio-thickness-table,
.chapas-catalog-layout .sampaio-thickness-table.sampaio-compact-table {
  min-width: 0;
}

.chapas-catalog-layout .sampaio-table-scroll {
  overflow-x: visible;
}

.chapas-catalog-layout .sampaio-thickness-table th,
.chapas-catalog-layout .sampaio-thickness-table td {
  padding: 9px 10px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  font-weight: 900;
}

.chapas-catalog-layout .sampaio-thickness-table th:first-child,
.chapas-catalog-layout .sampaio-thickness-table td:first-child,
.chapas-catalog-layout .sampaio-thickness-table th:nth-child(2),
.chapas-catalog-layout .sampaio-thickness-table td:nth-child(2) {
  text-align: center;
}

.chapas-catalog-layout .sampaio-thickness-table td:nth-child(n+3) {
  color: var(--ink);
  font-weight: 900;
}

.chapas-catalog-layout .sampaio-table-block.compact .sampaio-thickness-table th:first-child,
.chapas-catalog-layout .sampaio-table-block.compact .sampaio-thickness-table td:first-child {
  width: 58%;
}

.chapas-catalog-layout .sampaio-table-block.compact .sampaio-thickness-table th:nth-child(2),
.chapas-catalog-layout .sampaio-table-block.compact .sampaio-thickness-table td:nth-child(2) {
  width: 42%;
}

.chapas-catalog-layout .catalog-info-strip,
.chapas-catalog-layout .catalog-page-nav {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .sampaio-media-strip {
    grid-template-columns: 1fr;
  }

  .sampaio-thickness-table {
    min-width: 760px;
    font-size: 12px;
  }

  .sampaio-thickness-table th,
  .sampaio-thickness-table td {
    padding: 9px 8px;
  }

  .chapas-catalog-layout {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    padding: 18px;
  }

  .chapas-catalog-layout .catalog-page-heading h1,
  .chapas-catalog-layout .catalog-page-heading h2 {
    max-width: none;
  }

  .sampaio-table-grid {
    columns: 1;
  }
}

@media (max-width: 520px) {
  .cookie-consent {
    right: 8px;
    left: 8px;
    width: auto;
    padding-bottom: 8px;
  }

  .cookie-consent-card {
    padding: 18px 16px 16px;
  }

  .cookie-consent-actions {
    grid-template-columns: 1fr;
  }

  .cookie-link-button {
    min-height: 28px !important;
    text-align: center;
  }
}

/* Final production polish: home hero, contact map and global overlays. */
.home-conversion-hero .video-fallback {
  background-image:
    linear-gradient(90deg, rgba(3, 10, 15, 0.72), rgba(3, 10, 15, 0.22)),
    url("assets/fachada-trucar-caminhao-munck.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
}

.contact-page-shell {
  background: #f4f7fa;
}

.contact-page-shell .site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 12px 34px rgba(6, 24, 39, 0.14);
  backdrop-filter: blur(10px);
}

.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 680px) max-content;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: 390px !important;
  padding-top: 146px !important;
  padding-bottom: 52px !important;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 11, 17, 0.94) 0%, rgba(6, 24, 39, 0.86) 55%, rgba(120, 18, 31, 0.72) 100%),
    url("assets/atendimento-fachada-trucar.png") center / cover no-repeat;
}

.catalog-hero.page-hero.contact-hero {
  min-height: 390px !important;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #ffcf33, transparent);
}

.contact-hero-content {
  display: grid;
  gap: 18px;
}

.contact-hero .eyebrow {
  display: none;
}

.contact-hero h1 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
}

.contact-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.58;
}

.contact-hero .hero-actions {
  justify-self: end;
  margin: 0;
}

.contact-region-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  width: min(var(--max), calc(100% - 48px));
  margin: 38px auto 38px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(6, 24, 39, 0.12);
}

.contact-region-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: clamp(28px, 4vw, 46px);
  color: #fff;
  background:
    linear-gradient(145deg, #071b2b, #12364f);
}

.contact-region-copy h2,
.contact-region-copy p {
  margin: 0;
}

.contact-region-copy h2 {
  max-width: 420px;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.contact-region-copy p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.62;
}

.contact-region-map {
  height: 340px;
  min-height: 340px;
  background: #f5f7f8;
}

.contact-region-map img {
  display: block;
  width: 100%;
  height: 340px;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.contact-info-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 38px;
  padding: 38px;
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(6, 24, 39, 0.08);
}

.contact-info-section .quote-info {
  display: grid;
  gap: 22px;
}

.contact-info-section .quote-info h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
}

.contact-info-section .contact-clean-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-info-section .contact-clean-list a {
  min-height: 132px;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border-color: rgba(6, 24, 39, 0.12);
  background:
    linear-gradient(180deg, #fff, #f7fafc);
}

.contact-info-section .contact-clean-list strong {
  color: var(--orange);
  font-size: 14px;
}

.contact-info-section .contact-clean-list span {
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
  width: min(var(--max), calc(100% - 48px));
  min-height: 430px;
  margin: 0 auto 72px;
  overflow: hidden;
  border: 1px solid rgba(6, 24, 39, 0.14);
  background: #fff;
  box-shadow: 0 24px 56px rgba(6, 24, 39, 0.12);
}

.contact-map-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: clamp(30px, 4vw, 48px);
  color: #fff;
  background: linear-gradient(145deg, #061827, #12364f);
}

.contact-map-copy h2,
.contact-map-copy p {
  margin: 0;
}

.contact-map-copy h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
}

.contact-map-copy p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.contact-map-copy .text-button {
  justify-self: start;
  color: #fff;
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

/* Compact footer: fewer effects, clearer hierarchy. */
.site-footer {
  background: #070b0e !important;
  border-top: 4px solid var(--orange) !important;
}

.site-footer::before,
.site-footer .footer-brand::after,
.footer-contact-item::after {
  content: none !important;
}

.footer-main {
  grid-template-columns: minmax(210px, 0.8fr) minmax(150px, 0.55fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 42px 0 30px;
}

.site-footer .footer-brand {
  padding: 10px 14px;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
}

.footer-brand .brand-logo-full {
  width: 200px;
}

.site-footer h2 {
  margin-bottom: 16px !important;
  padding-bottom: 9px;
  font-size: 15px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer h2::after {
  width: 28px;
  height: 2px;
}

.footer-nav {
  gap: 3px;
}

.footer-nav a {
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 600;
}

.footer-nav a::before {
  content: none;
}

.footer-contact {
  gap: 0;
}

.footer-contact-item {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-contact-item:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.footer-contact-item strong {
  font-size: 14px;
  font-weight: 600;
}

.footer-bottom {
  padding: 16px 0 18px;
}

.cookie-settings-button {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.52);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.cookie-settings-button:hover {
  color: #fff;
}

/* Minimal commercial help card. */
.lead-popup {
  inset: auto 92px 26px auto !important;
  width: min(360px, calc(100vw - 120px)) !important;
}

.lead-popup-panel {
  overflow: hidden;
  border: 1px solid rgba(6, 24, 39, 0.14) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24) !important;
}

.lead-popup-panel::before,
.lead-popup-panel::after {
  content: none !important;
}

.lead-popup-head {
  padding: 18px 20px 14px;
  color: #fff;
  background: linear-gradient(120deg, #061827, #12364f);
}

.lead-popup-head span {
  color: #ff5a68;
}

.lead-popup-head strong {
  color: #fff;
  font-size: 20px;
}

.lead-popup-close {
  top: 12px;
  right: 12px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.lead-popup-body {
  padding: 18px 20px 20px;
}

.lead-popup-body p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lead-popup-action {
  justify-content: center;
  border-radius: 7px;
  background: #128c4f;
}

/* Consent card aligned with the Trucar visual language. */
.cookie-consent {
  right: 20px;
  bottom: 20px;
  width: min(440px, calc(100vw - 40px));
}

.cookie-consent-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(6, 24, 39, 0.16);
  border-top: 4px solid var(--orange);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.cookie-consent-head,
.cookie-consent-card > p,
.cookie-consent-options,
.cookie-consent-actions {
  margin-right: 20px;
  margin-left: 20px;
}

.cookie-consent-head {
  margin-top: 18px;
}

.cookie-consent-head strong {
  color: var(--ink);
  font-size: 18px;
}

.cookie-consent-head span {
  color: var(--orange);
}

.cookie-consent-actions {
  margin-bottom: 18px;
}

@media (max-width: 760px) {
  .contact-page-shell {
    background: #f4f7fa;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
    padding: 132px 18px 54px !important;
  }

  .contact-hero h1 {
    font-size: 36px !important;
    line-height: 1.03 !important;
  }

  .contact-hero p:not(.eyebrow) {
    font-size: 16px !important;
  }

  .contact-hero .hero-actions {
    justify-self: stretch;
  }

  .contact-region-section {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .contact-region-copy {
    padding: 24px;
  }

  .contact-region-copy h2 {
    max-width: none;
    font-size: 30px !important;
  }

  .contact-region-map,
  .contact-region-map img {
    min-height: 260px;
  }

  .contact-info-section {
    width: calc(100% - 28px);
    margin-bottom: 28px;
    padding: 24px !important;
  }

  .contact-info-section .contact-clean-list {
    grid-template-columns: 1fr;
  }

  .contact-info-section .contact-clean-list a {
    min-height: 104px !important;
  }

  .contact-map-section {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .contact-map-section iframe {
    min-height: 320px;
  }

  .lead-popup {
    inset: auto 14px 88px 14px !important;
    width: auto !important;
  }
}

/* Mobile repair layer: keep the final cascade predictable on small screens. */
@media (max-width: 760px) {
  html,
  body,
  .page-shell,
  main {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    background:
      linear-gradient(180deg, #f8fafb 0%, #eef2f5 58%, #e7edf1 100%) !important;
  }

  img,
  video,
  iframe,
  table {
    max-width: 100%;
  }

  .site-topbar {
    min-height: 40px !important;
  }

  .topbar-shell {
    width: calc(100% - 20px) !important;
    min-height: 40px !important;
    font-size: 11px !important;
  }

  .topbar-left {
    width: 100% !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  .topbar-link {
    min-width: 0 !important;
    max-width: 50% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .topbar-right,
  .topbar-separator {
    display: none !important;
  }

  .site-header,
  .site-header.is-scrolled,
  .overlay-header,
  .overlay-header.is-scrolled {
    position: fixed !important;
    top: 40px !important;
    right: 10px !important;
    left: 10px !important;
    width: auto !important;
    min-height: 62px !important;
    height: auto !important;
    margin: 8px auto 0 !important;
    padding: 8px 10px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    color: var(--ink) !important;
    background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
    border: 1px solid rgba(6, 24, 39, 0.12) !important;
    box-shadow: 0 16px 38px rgba(6, 24, 39, 0.18) !important;
  }

  .site-header .brand-logo,
  .site-header .brand-logo-full,
  .hero-brand-mark,
  .site-footer .brand-logo {
    filter: none !important;
    mix-blend-mode: normal !important;
  }

  .site-header.nav-open,
  .site-header.nav-open.overlay-header {
    max-height: calc(100svh - 54px) !important;
    overflow-y: auto !important;
  }

  .brand,
  .site-footer .brand,
  .site-footer .footer-brand {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: calc(100% - 56px) !important;
    min-width: 0 !important;
    height: 46px !important;
  }

  .brand-logo-full,
  .footer-brand .brand-logo-full {
    width: min(154px, 100%) !important;
    height: 42px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .menu-toggle {
    display: grid !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    place-content: center !important;
    margin-left: auto !important;
    padding: 0 !important;
    background: #ffffff !important;
    border-color: rgba(6, 24, 39, 0.18) !important;
  }

  .menu-toggle span {
    background: var(--navy) !important;
  }

  .main-nav {
    order: 3 !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 10px 0 2px !important;
  }

  .site-header.nav-open .main-nav {
    display: flex !important;
  }

  .main-nav a,
  .main-nav .nav-dropdown,
  .main-nav .nav-dropdown-menu,
  .main-nav .nav-dropdown-menu a {
    width: 100% !important;
    min-width: 0 !important;
  }

  .main-nav a,
  .site-header.nav-open .main-nav a {
    min-height: 44px !important;
    height: auto !important;
    padding: 12px 10px !important;
    justify-content: center !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.15 !important;
  }

  .main-nav .nav-dropdown {
    display: grid !important;
    gap: 8px !important;
  }

  .main-nav .nav-dropdown-menu {
    position: static !important;
    display: grid !important;
    gap: 6px !important;
    padding: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .main-nav .nav-dropdown-menu a {
    min-height: 38px !important;
    padding: 9px 10px !important;
    font-size: 13px !important;
  }

  .video-hero,
  .catalog-clean-hero,
  .catalog-hero.page-hero,
  .products-video-hero.catalog-clean-hero {
    width: 100% !important;
    min-height: auto !important;
    padding: 126px 16px 52px !important;
    align-items: start !important;
  }

  .home-conversion-hero {
    min-height: 100svh !important;
  }

  .home-hero-layout,
  .home-conversion-hero .home-hero-layout,
  .product-montage-feature,
  .home-company-section,
  .home-process-section,
  .home-coverage-section .coverage-showcase,
  .coverage-showcase,
  .contact-region-section,
  .contact-map-section,
  .quote-section,
  .location-section,
  .about-story-section,
  .about-values-section,
  .viga-reference-panel,
  .viga-table-with-diagram,
  .unified-product-catalog,
  .chapas-catalog-layout {
    grid-template-columns: 1fr !important;
  }

  .home-hero-layout,
  .home-brand-intro,
  .video-content,
  .products-hero-content,
  .catalog-clean-hero > *,
  .catalog-hero.page-hero > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-brand-intro {
    padding: 20px 16px !important;
    gap: 14px !important;
  }

  .hero-brand-mark {
    width: min(260px, 100%) !important;
    padding: 10px 12px !important;
  }

  .home-brand-intro h1,
  .home-conversion-hero h1,
  .catalog-clean-hero h1,
  .catalog-hero.page-hero h1,
  .contact-hero h1 {
    max-width: 100% !important;
    font-size: clamp(30px, 9vw, 36px) !important;
    line-height: 1.03 !important;
    overflow-wrap: anywhere !important;
  }

  .hero-solution-line {
    width: 100% !important;
    gap: 8px !important;
  }

  .hero-solution-line span {
    min-height: 30px !important;
    padding: 7px 9px !important;
    font-size: 11px !important;
  }

  .hero-actions,
  .catalog-clean-actions,
  .catalog-actions,
  .location-actions,
  .catalog-page-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .pill-button,
  .outline-link,
  .text-button,
  .catalog-clean-actions a,
  .catalog-page-nav a {
    width: 100% !important;
    min-height: 46px !important;
    padding: 12px 14px !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .section,
  .product-showcase-section,
  .catalog-clean-section,
  .service-details-section,
  .catalog-map-section,
  .simple-catalog-section,
  .page-grid-section,
  .regional-coverage-section,
  .home-buying-shortcuts,
  .home-company-section,
  .home-process-section,
  .home-quote-guide,
  .home-coverage-section {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .home-fast-path,
  .home-selling-points,
  .home-capability-rail,
  .product-montage-feature,
  .home-coverage-section .coverage-showcase,
  .contact-region-section,
  .contact-info-section,
  .contact-map-section,
  .unified-product-catalog,
  .chapas-catalog-layout,
  .footer-main,
  .footer-bottom {
    width: calc(100% - 28px) !important;
    max-width: none !important;
  }

  .home-fast-path {
    grid-template-columns: 1fr !important;
    margin-top: -28px !important;
    padding: 18px !important;
    gap: 16px !important;
  }

  .home-fast-path h2 {
    font-size: 24px !important;
  }

  .fast-path-grid,
  .home-category-grid,
  .home-buying-shortcuts .home-category-grid,
  .product-card-grid,
  .home-selling-points,
  .home-capability-rail,
  .quote-guide-grid,
  .process-track,
  .service-spec-grid,
  .contact-clean-list,
  .contact-info-section .contact-clean-list,
  .footer-main {
    grid-template-columns: 1fr !important;
  }

  .fast-path-grid,
  .home-category-grid,
  .home-buying-shortcuts .home-category-grid,
  .product-card-grid,
  .home-selling-points,
  .quote-guide-grid,
  .process-track {
    width: 100% !important;
    padding: 0 !important;
    gap: 14px !important;
  }

  .fast-path-grid a,
  .category-tile,
  .home-buying-shortcuts .category-tile,
  .catalog-product-card,
  .home-selling-points article,
  .process-track article,
  .quote-guide-grid article,
  .service-spec-card {
    min-height: auto !important;
    width: 100% !important;
  }

  .category-tile,
  .home-buying-shortcuts .category-tile {
    min-height: 158px !important;
  }

  .product-montage-feature {
    width: 100% !important;
    margin-bottom: 22px !important;
  }

  .product-montage-photo {
    min-height: 220px !important;
  }

  .product-montage-copy,
  .home-company-copy,
  .contact-region-copy,
  .contact-map-copy {
    padding: 22px !important;
  }

  .catalog-card-photo,
  .product-card-grid .catalog-card-photo {
    width: 100% !important;
    min-height: 170px !important;
    height: auto !important;
    aspect-ratio: 1.45 / 1 !important;
    object-fit: cover !important;
  }

  .catalog-product-card h3 {
    margin: 16px 16px 6px !important;
  }

  .catalog-product-card p {
    padding: 0 16px 16px !important;
  }

  .home-company-panel,
  .service-catalog-layout .product-catalog-photo img,
  .contact-region-map,
  .contact-region-map img,
  .contact-map-section iframe {
    min-height: 260px !important;
  }

  .sampaio-table-scroll,
  .technical-table-scroll,
  .table-scroll {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .sampaio-thickness-table,
  .viga-technical-table,
  .viga-w-table {
    min-width: 680px;
  }

  .footer-main {
    margin: 0 auto !important;
    padding: 34px 0 24px !important;
    gap: 26px !important;
  }

  .footer-bottom {
    display: grid !important;
    gap: 10px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 14px !important;
    width: 54px !important;
    height: 54px !important;
  }

  .lead-popup {
    inset: auto 12px 78px 12px !important;
    width: auto !important;
    max-width: none !important;
  }

  .lead-popup-panel {
    width: 100% !important;
  }

  .cookie-consent {
    right: 10px !important;
    bottom: 10px !important;
    left: 10px !important;
    width: auto !important;
  }

  .cookie-consent-actions {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 380px) {
  .topbar-shell {
    font-size: 10px !important;
  }

  .brand-logo-full,
  .footer-brand .brand-logo-full {
    width: 136px !important;
  }

  .home-brand-intro h1,
  .home-conversion-hero h1,
  .catalog-clean-hero h1,
  .catalog-hero.page-hero h1,
  .contact-hero h1 {
    font-size: 29px !important;
  }

  .section,
  .product-showcase-section,
  .catalog-clean-section,
  .home-buying-shortcuts,
  .home-company-section,
  .home-process-section,
  .home-quote-guide,
  .home-coverage-section {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}

/* Final mobile color repair: keep Trucar from rendering as a black forced-dark page. */
.site-topbar {
  background:
    linear-gradient(90deg, #061827, #12364f 62%, #d6172f 130%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px) !important;
}

.site-header,
.site-header.is-scrolled,
.overlay-header,
.overlay-header.is-scrolled {
  color: var(--ink) !important;
  border-color: rgba(6, 24, 39, 0.12) !important;
  background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
  box-shadow: 0 16px 38px rgba(6, 24, 39, 0.18) !important;
}

.menu-toggle {
  border-color: rgba(6, 24, 39, 0.18) !important;
  background: #ffffff !important;
}

.menu-toggle span {
  background: var(--navy) !important;
}

.main-nav a {
  color: var(--ink) !important;
}

.main-nav a.active,
.site-header.nav-open .main-nav a.active {
  border-color: var(--orange) !important;
  background: var(--orange) !important;
  color: #ffffff !important;
}

.home-conversion-hero .video-overlay {
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.78), rgba(18, 54, 79, 0.5) 56%, rgba(214, 23, 47, 0.2)),
    linear-gradient(0deg, rgba(6, 24, 39, 0.34), transparent 45%) !important;
}

.home-brand-intro {
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.78), rgba(18, 54, 79, 0.36) 78%, transparent),
    rgba(6, 24, 39, 0.18) !important;
}

.brand-logo,
.brand-logo-full,
.hero-brand-mark {
  filter: none !important;
  mix-blend-mode: normal !important;
}
