:root {
  --bg: #080908;
  --ink: #10110f;
  --muted: #6f756d;
  --paper: #f4f2ea;
  --line: rgba(255, 255, 255, 0.16);
  --yellow: #E37716;
  --yellow-strong: #E37716;
  --steel: #b7c1bb;
  --green: #405248;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

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

.cursor-glow {
  position: fixed;
  z-index: 30;
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 48, 0.18), transparent 64%);
  filter: blur(10px);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 45px 12px 75px;
  color: white;
  background: rgba(8, 9, 8, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 0.25s ease, box-shadow 0.25s ease, top 0.25s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(8, 9, 8, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-image {
  width: 146px;
  max-height: 89px;
  padding: 1px 2px;
  border-radius: 8px;
  background: white;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.header-cta,
.primary-btn {
  padding: 0 22px;
  background: var(--yellow);
  color: var(--ink);
}

.ghost-btn {
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.header-cta:hover,
.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  padding: 148px max(24px, calc((100vw - 1180px) / 2)) 38px;
  color: white;
  background: var(--bg);
}

.hero-bg,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 112%;
  object-fit: cover;
  opacity: 0.8;
  transform: translateY(var(--parallax, 0));
  will-change: transform;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.95) 0%, rgba(8, 9, 8, 0.72) 35%, rgba(8, 9, 8, 0.2) 78%),
    linear-gradient(0deg, rgba(8, 9, 8, 0.98) 0%, transparent 48%);
}

.motion-rails {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.motion-rails span {
  position: absolute;
  width: 36vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 24, 0.86), transparent);
  opacity: 0.7;
  transform: rotate(-22deg);
  animation: railSweep 5.8s linear infinite;
}

.motion-rails span:nth-child(1) {
  top: 24%;
  left: -22vw;
}

.motion-rails span:nth-child(2) {
  top: 54%;
  left: -36vw;
  animation-delay: 1.5s;
}

.motion-rails span:nth-child(3) {
  top: 78%;
  left: -28vw;
  animation-delay: 3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  padding-bottom: 168px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8a6810;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 0.8vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(2.45rem, 3.6vw, 3.4rem);
}

.hero h1 span {
  display: block;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(1.75rem, 3.8vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.quote-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 156px;
  z-index: 3;
  width: min(430px, calc(100% - 48px));
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.08;
  white-space: nowrap;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.panel-meter {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.panel-meter span {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--yellow);
  animation: meterPulse 2.4s ease-in-out infinite alternate;
}

.hero-stats {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 38px;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats article {
  display: grid;
  min-width: 0;
  min-height: 98px;
  align-content: center;
  justify-items: center;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.marquee-band {
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 18px 0;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  position: relative;
  white-space: nowrap;
}

.marquee-track span::after {
  margin-left: 34px;
  content: "/";
  color: rgba(16, 17, 15, 0.36);
}

.mission-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  padding: clamp(70px, 9vw, 118px) max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.9), rgba(8, 9, 8, 0.42)),
    url("assets/loja-equipamentos-wide.png") center / cover;
}

.mission-strip h2 {
  max-width: 920px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.mission-text {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.75;
}

.section {
  padding: clamp(72px, 9vw, 122px) max(24px, calc((100vw - 1180px) / 2));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 120px;
}

.section-copy h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.15rem);
}

.section-copy p,
.work-copy p,
.cta-inner p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.section-lead {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
  line-height: 1.8;
}

.dark-copy {
  color: var(--muted);
}

.original-trio {
  width: min(100%, 520px);
  margin-top: 34px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 50px rgba(16, 17, 15, 0.12);
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 192px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(16, 17, 15, 0.1);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 50px rgba(16, 17, 15, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  position: absolute;
  inset: auto -12% -44% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(242, 194, 48, 0.2);
  content: "";
}

.service-card:hover {
  box-shadow: 0 22px 70px rgba(16, 17, 15, 0.14);
  transform: translateY(-6px);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #987315;
  font-weight: 900;
}

.service-card p,
.feature p {
  color: var(--muted);
  line-height: 1.65;
}

.dark-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(88px, 10vw, 132px);
  padding-bottom: clamp(88px, 10vw, 132px);
  color: white;
  background:
    linear-gradient(135deg, rgba(242, 194, 48, 0.12), transparent 34%),
    var(--bg);
}

.dark-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.section-head,
.feature-row {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 880px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 66px;
}

.feature {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 54px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.works {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.work-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg);
  box-shadow: var(--shadow);
}

.work-visual img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  background: var(--bg);
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 204, 24, 0.36), transparent);
  mix-blend-mode: screen;
  transform: translateY(-100%);
  animation: scan 4.8s ease-in-out infinite;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #40463f;
  font-weight: 800;
}

.check-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  content: "✓";
  font-size: 0.76rem;
}

.products {
  background: #fff;
}

.products .section-head {
  position: relative;
  max-width: none;
  margin-bottom: 54px;
  padding-right: min(34vw, 430px);
}

.catalog-link {
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--bg);
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(-50%);
  transition: background 0.24s ease, transform 0.24s ease;
}

.catalog-link:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(calc(-50% - 3px));
}

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

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: var(--bg);
  box-shadow: 0 18px 60px rgba(16, 17, 15, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  box-shadow: 0 24px 80px rgba(16, 17, 15, 0.2);
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.product-card:nth-child(-n + 2) img {
  padding: 22px;
  background: white;
  object-fit: contain;
}

.product-card:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.product-card:nth-child(-n + 2):hover img {
  transform: scale(1.02);
}

.product-card div {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;
  background: rgba(8, 9, 8, 0.72);
  backdrop-filter: blur(16px);
}

.product-card strong,
.product-card span {
  display: block;
}

.product-card strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
  line-height: 1.1;
}

.product-card span {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partners-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
  padding: clamp(72px, 9vw, 122px) max(24px, calc((100vw - 1180px) / 2));
  background: var(--paper);
}

.partners-section > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.partners-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
}

.partners-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(3, minmax(142px, 1fr));
  gap: 22px 28px;
  align-self: stretch;
  align-items: center;
}

.brand-logo {
  position: relative;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 4px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.brand-logo img {
  width: min(100%, 220px);
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(16, 17, 15, 0.08));
  transition: filter 0.24s ease, transform 0.24s ease;
}

.brand-logo:hover {
  transform: translateY(-5px);
}

.brand-logo:hover img {
  filter: drop-shadow(0 16px 24px rgba(16, 17, 15, 0.14));
  transform: scale(1.03);
}

.cta-section {
  padding: 32px max(24px, calc((100vw - 1180px) / 2)) 80px;
  background: var(--paper);
}

.cta-inner {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: clamp(36px, 7vw, 84px);
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.94), rgba(8, 9, 8, 0.66)),
    url("assets/contato-loja-fundo.png") center / cover;
}

.cta-inner h2 {
  max-width: 830px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-inner .primary-btn {
  margin-top: 16px;
}

.products-page {
  min-height: 100vh;
  padding-top: 104px;
  background:
    linear-gradient(180deg, var(--bg) 0 48%, var(--paper) 48% 100%),
    radial-gradient(circle at 78% 18%, rgba(242, 194, 48, 0.22), transparent 26%),
    var(--paper);
}

.products-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  overflow: hidden;
  padding: clamp(84px, 9vw, 136px) max(24px, calc((100vw - 1180px) / 2)) clamp(64px, 8vw, 100px);
  color: white;
}

.products-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.products-hero > * {
  position: relative;
  z-index: 1;
}

.products-hero h1 {
  max-width: 940px;
  margin-bottom: 22px;
  color: white;
}

.products-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.75;
}

.products-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.products-showcase {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.products-showcase::after {
  position: absolute;
  inset: auto -18% -34% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(242, 194, 48, 0.22);
  content: "";
}

.showcase-label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.products-showcase img {
  position: relative;
  z-index: 1;
  width: min(82%, 310px);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.34));
}

.products-showcase div:last-child {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(8, 9, 8, 0.76);
  backdrop-filter: blur(14px);
}

.products-showcase span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.products-showcase strong {
  color: white;
  font-size: 1.25rem;
}

.catalog-section {
  padding: clamp(60px, 8vw, 104px) max(24px, calc((100vw - 1180px) / 2)) clamp(76px, 9vw, 120px);
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.catalog-toolbar p {
  margin-bottom: 12px;
}

.catalog-toolbar h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 3.5rem);
}

.catalog-chip {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.catalog-card {
  position: relative;
  display: grid;
  grid-template-rows: 300px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #10110f;
  box-shadow: 0 20px 64px rgba(16, 17, 15, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-card:hover {
  border-color: rgba(242, 194, 48, 0.48);
  box-shadow: 0 28px 86px rgba(16, 17, 15, 0.22);
  transform: translateY(-6px);
}

.catalog-photo {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(242, 194, 48, 0.24), transparent 54%),
    #f6f3e9;
}

.catalog-photo::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 8px;
  content: "";
}

.catalog-photo::after {
  position: absolute;
  right: 18px;
  bottom: 12px;
  color: rgba(16, 17, 15, 0.08);
  content: "DIF";
  font-size: 4.8rem;
  font-weight: 900;
}

.catalog-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(16, 17, 15, 0.22));
  transition: transform 0.3s ease;
}

.catalog-card:hover .catalog-photo img {
  transform: scale(1.04) translateY(-4px);
}

.catalog-card-body {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  padding: 24px;
  color: white;
}

.catalog-card-body span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card-body h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.catalog-card-body p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tags small {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card-body a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.site-footer {
  color: white;
  background:
    linear-gradient(135deg, rgba(242, 194, 48, 0.09), transparent 32%),
    #151613;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.55fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 86px);
  padding: clamp(62px, 8vw, 96px) max(24px, calc((100vw - 1180px) / 2));
}

.footer-about h2 {
  margin-bottom: 18px;
  color: white;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

.footer-about p,
.footer-contact p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.75;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
}

.agency-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.agency-credit img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.agency-credit:hover {
  color: var(--yellow);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: #23c552;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.floating-whatsapp:hover {
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px) scale(1.03);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes railSweep {
  from {
    transform: translateX(0) rotate(-22deg);
  }
  to {
    transform: translateX(150vw) rotate(-22deg);
  }
}

@keyframes meterPulse {
  to {
    width: 92%;
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes scan {
  0%,
  36% {
    transform: translateY(-100%);
  }
  68%,
  100% {
    transform: translateY(100%);
  }
}

@media (max-width: 920px) {
  .site-header {
    border-radius: 24px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    display: block;
    min-height: 0;
    padding-top: 132px;
    padding-bottom: 24px;
  }

  .hero-content {
    padding-bottom: 32px;
  }

  .quote-panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: 0 0 18px;
  }

  .quote-panel strong {
    white-space: normal;
  }

  .hero-stats {
    position: relative;
    grid-template-columns: 1fr;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .hero-stats article {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .split,
  .mission-strip,
  .feature-row,
  .works,
  .product-grid,
  .partners-section,
  .products-hero {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .brand-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-copy h2 {
    font-size: clamp(1.8rem, 6.5vw, 2.7rem);
  }

  .products .section-head {
    padding-right: 0;
  }

  .catalog-link {
    position: static;
    width: fit-content;
    margin-top: 24px;
    transform: none;
  }

  .catalog-link:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-image {
    width: 142px;
    max-height: 48px;
    padding: 5px 7px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.85rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.65rem, 8.5vw, 2.35rem);
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .quote-panel {
    right: auto;
    left: auto;
  }

  .quote-panel strong {
    font-size: 1.3rem;
  }

  .hero-stats {
    right: auto;
    left: auto;
  }

  .section,
  .cta-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .work-visual,
  .work-visual img {
    min-height: 420px;
  }

  .work-visual img {
    padding: 0;
  }

  .brand-cloud {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    min-height: 92px;
  }

  .products-page {
    padding-top: 104px;
  }

  .products-hero,
  .catalog-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .catalog-photo {
    min-height: 280px;
  }

  .catalog-photo img {
    max-height: 280px;
  }

  .footer-inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 18px;
    padding-left: 18px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .product-card,
  .product-card img {
    min-height: 330px;
  }

  .cta-inner {
    min-height: 540px;
    padding: 34px 24px;
  }
}

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