/* =========================================================
   ROQUE Matcon Estrutural — folha de estilos
   Paleta oficial (Manual da Marca 2026):
   Azul Roque #022266 · Amarelo Roque #FFCC00 · Cinza #606062
   Tipografia: Poppins
   ========================================================= */

:root {
  --navy: #022266;
  --navy-900: #01153f;
  --navy-800: #021c55;
  --navy-700: #0a3a8c;
  --navy-600: #1d4fb0;
  --yellow: #ffcc00;
  --yellow-600: #e6b800;
  --yellow-700: #c9a200;
  --yellow-100: #fff6cc;
  --gray: #606062;
  --ink: #0f1a33;
  --ink-2: #4a5570;
  --ink-3: #7c869c;
  --line: #e3e8f2;
  --bg: #ffffff;
  --bg-2: #f4f6fb;
  --bg-3: #eaeef7;
  --wa: #25d366;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(2, 34, 102, .06), 0 4px 14px rgba(2, 34, 102, .06);
  --shadow-md: 0 8px 30px rgba(2, 34, 102, .12);
  --shadow-lg: 0 24px 60px rgba(2, 34, 102, .22);
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 84px;
  --container: 1200px;
  --gutter: 24px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--yellow); color: var(--navy); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 880px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--yellow); color: var(--navy); font-weight: 600; padding: 10px 16px; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--navy-700);
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 2px; background: var(--yellow); }
.eyebrow--light { color: var(--yellow); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--center::after { display: none; }

.h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 800; line-height: 1.04; letter-spacing: -.025em; }
.h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: var(--navy); }
.h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; color: var(--navy); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-2); line-height: 1.7; }
.text { color: var(--ink-2); }
.mark-y { color: var(--yellow); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head .h2 { margin-top: 14px; }
.section-head .lead { margin-top: 16px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 12px;
  font-weight: 600; font-size: 15px; line-height: 1; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg.arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn--yellow { background: var(--yellow); color: var(--navy); box-shadow: 0 8px 24px rgba(255, 204, 0, .25); }
.btn--yellow:hover { background: #ffd633; box-shadow: 0 12px 30px rgba(255, 204, 0, .35); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 8px 24px rgba(2, 34, 102, .25); }
.btn--navy:hover { background: var(--navy-700); }
.btn--ghost-light { color: #fff; border: 1.5px solid rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .04); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.btn--ghost-navy { color: var(--navy); border: 1.5px solid rgba(2, 34, 102, .25); background: transparent; }
.btn--ghost-navy:hover { border-color: var(--navy); background: rgba(2, 34, 102, .04); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--yellow); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #1fbf5b; }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 14px; border-radius: 10px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease), backdrop-filter .35s;
  --nav-color: #fff;
  --nav-hover: var(--yellow);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header.is-solid {
  height: 72px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(2, 34, 102, .08);
  --nav-color: var(--navy);
  --nav-hover: var(--navy-700);
}
.brand { display: inline-flex; align-items: center; }
.logo { --lg-y: var(--yellow); --lg-b: var(--navy); --lg-g: var(--gray); height: 44px; width: auto; aspect-ratio: 13147.7 / 3220.7; transition: height .35s var(--ease); }
.logo--white { --lg-y: #fff; --lg-b: #fff; --lg-g: #fff; }
.logo--mono-navy { --lg-y: var(--navy); --lg-b: var(--navy); --lg-g: var(--navy); }
.logo--v { aspect-ratio: 10556.6 / 10000; }
.header .brand .logo--white { position: absolute; }
.header .brand { position: relative; height: 44px; width: 180px; }
.header .brand .logo { position: absolute; left: 0; top: 0; transition: opacity .3s var(--ease), height .35s var(--ease); }
.header .brand .logo--color { opacity: 0; }
.header.is-solid .brand .logo--white { opacity: 0; }
.header.is-solid .brand .logo--color { opacity: 1; }
.header.is-solid .brand, .header.is-solid .logo { height: 40px; }
.header.is-solid .brand { height: 40px; width: 163px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; display: inline-block; padding: 10px 14px; font-size: 14px; font-weight: 500;
  color: var(--nav-color); transition: color .25s; border-radius: 8px;
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; border-radius: 2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--nav-hover); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header .btn--sm { min-height: 42px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px;
  color: var(--nav-color); border: 1.5px solid color-mix(in srgb, var(--nav-color) 25%, transparent);
  transition: background-color .25s, color .25s, border-color .25s;
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { background: var(--wa); color: #fff; border-color: var(--wa); }

.burger {
  display: none; width: 44px; height: 44px; border-radius: 10px; position: relative; color: var(--nav-color);
}
.burger span {
  position: absolute; left: 11px; width: 22px; height: 2px; border-radius: 2px; background: currentColor;
  transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease);
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--navy);
  display: flex; flex-direction: column; justify-content: center; padding: 100px 28px 40px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s .35s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.mobile-nav a { display: block; padding: 14px 0; font-size: 26px; font-weight: 700; color: #fff; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav .btn-row { margin-top: 28px; }
.mobile-nav .mobile-nav__mark { position: absolute; right: -60px; bottom: -80px; width: 320px; opacity: .08; }
body.nav-open { overflow: hidden; }
body.nav-open .header { --nav-color: #fff; background: transparent; box-shadow: none; backdrop-filter: none; }
body.nav-open .header .brand .logo--white { opacity: 1; }
body.nav-open .header .brand .logo--color { opacity: 0; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 56px) 0 0; color: #fff; overflow: hidden; isolation: isolate;
  background: var(--navy);
}
.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: .55; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 80% 40%, rgba(255, 204, 0, .12), transparent 60%),
    linear-gradient(180deg, rgba(2, 34, 102, .45) 0%, rgba(2, 34, 102, .55) 45%, rgba(1, 21, 63, .92) 100%);
}
.hero__mark {
  position: absolute; z-index: -2; left: -8vw; bottom: -14vw; width: 52vw; max-width: 720px; min-width: 360px;
  fill: none; stroke: #fff; stroke-width: 6; stroke-opacity: .16; pointer-events: none;
}
.hero__mark path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 2.4s var(--ease) .2s forwards; }
.hero__mark path:nth-child(2) { animation-delay: .6s; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; }
.hero__content { max-width: 620px; }
.hero__content > * { opacity: 0; transform: translateY(18px); animation: rise .9s var(--ease) forwards; }
.hero__content > :nth-child(1) { animation-delay: .1s; }
.hero__content > :nth-child(2) { animation-delay: .22s; }
.hero__content > :nth-child(3) { animation-delay: .36s; }
.hero__content > :nth-child(4) { animation-delay: .5s; }
.hero__content > :nth-child(5) { animation-delay: .66s; }
.hero .h1 { margin-top: 22px; color: #fff; }
.hero .h1 .mark-y { position: relative; display: inline-block; }
.hero .h1 .mark-y::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .12em; border-radius: 3px;
  background: var(--yellow); opacity: .35; transform: scaleX(0); transform-origin: left; animation: growX .9s var(--ease) 1.1s forwards;
}
.hero .lead { margin-top: 24px; color: rgba(255, 255, 255, .8); max-width: 540px; }
.hero .btn-row { margin-top: 36px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 44px; font-size: 13px; color: rgba(255, 255, 255, .7); }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 16px; height: 16px; color: var(--yellow); }
.hero__visual { position: relative; }
.hero-structure { width: 118%; max-width: none; margin-left: -6%; height: auto; max-height: 78vh; overflow: visible; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .35)); }
.hero__scroll {
  position: relative; display: flex; justify-content: center; margin-top: 40px; padding-bottom: 28px;
}
.hero__scroll a { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.hero__scroll a span { display: block; width: 1px; height: 36px; background: linear-gradient(180deg, var(--yellow), transparent); animation: scrollcue 1.8s ease-in-out infinite; }

/* hero structure SVG styles */
.hs-platform polygon { opacity: 0; animation: fade 1s var(--ease) .1s forwards; }
.hs-platform-edge { fill: none; stroke: #fff; stroke-opacity: .18; stroke-width: 1; opacity: 0; animation: fade 1s var(--ease) .2s forwards; }
.hs-grid { stroke: #fff; stroke-opacity: .12; fill: none; stroke-width: 1; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 2.2s var(--ease) .2s forwards; }
.hs-shadow { fill: #000; fill-opacity: .22; opacity: 0; animation: fade 1.2s var(--ease) .6s forwards; }
.hs-col, .hs-beam { stroke: #fff; stroke-width: 2.4; stroke-linecap: round; fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; }
.hs-back { stroke-opacity: .55; stroke-width: 1.8; }
.hs-col.hs-l1 { animation: draw .7s var(--ease) calc(.45s + var(--i) * .05s) forwards; }
.hs-beam.hs-l1 { animation: draw .6s var(--ease) calc(1.05s + var(--i) * .04s) forwards; }
.hs-slab { opacity: 0; transform: translateY(12px); }
.hs-slab-1 { animation: rise .9s var(--ease) 1.5s forwards; }
.hs-col.hs-l2 { stroke-opacity: .95; animation: draw .7s var(--ease) calc(1.9s + var(--i) * .05s) forwards; }
.hs-beam.hs-l2 { stroke-opacity: .95; animation: draw .6s var(--ease) calc(2.5s + var(--i) * .04s) forwards; }
.hs-slab-2 { animation: rise .9s var(--ease) 2.9s forwards; }
.hs-form { stroke: #fff; stroke-opacity: .45; stroke-width: 1.2; fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1s var(--ease) 3.2s forwards; }
.hs-col.hs-l3 { stroke-opacity: .9; animation: draw .7s var(--ease) calc(3.3s + var(--i) * .05s) forwards; }
.hs-beam.hs-l3 { stroke-opacity: .9; animation: draw .6s var(--ease) calc(3.8s + var(--i) * .04s) forwards; }
.hs-rebar { stroke: var(--yellow); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1s var(--ease) 4.2s forwards; }
.hs-crane { opacity: .85; }
.hs-tower, .hs-jib, .hs-tie, .hs-lattice, .hs-jib-lattice { stroke: #fff; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.hs-tower { stroke-width: 2.4; animation: draw 1.1s var(--ease) .3s forwards; }
.hs-lattice { stroke-width: 1; stroke-opacity: .7; animation: draw 1.4s var(--ease) .6s forwards; }
.hs-jib { stroke-width: 2.4; animation: draw 1s var(--ease) 1.2s forwards; }
.hs-jib-lattice { stroke-width: 1; stroke-opacity: .65; animation: draw 1.2s var(--ease) 1.5s forwards; }
.hs-tie { stroke-width: 1; stroke-opacity: .6; animation: draw 1s var(--ease) 1.8s forwards; }
.hs-counter, .hs-cab { fill: #fff; fill-opacity: .92; opacity: 0; animation: fade .6s var(--ease) 2s forwards; }
.hs-cab { fill: var(--yellow); }
.hs-beacon { fill: var(--yellow); animation: beacon 2.2s ease-in-out infinite; }
.hs-trolley { fill: #fff; opacity: 0; animation: fade .6s var(--ease) 2.2s forwards; }
.hs-hang { opacity: 0; transform-box: fill-box; transform-origin: 50% 0; animation: fade .8s var(--ease) 2.6s forwards, hang 6s ease-in-out 3.4s infinite; }
.hs-cable { stroke: #fff; stroke-width: 1.2; stroke-opacity: .9; }
.hs-hook { fill: var(--yellow); }
.hs-truck { opacity: 0; transform: translateX(180px); animation: drivein 1.6s cubic-bezier(.2,.8,.2,1) 2.8s forwards; }
.hs-cargo { stroke: #aeb9d3; stroke-width: 2.2; stroke-linecap: round; fill: none; }
.hs-cargo-band { stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; }
.hs-glass { fill: #0a2a6e; fill-opacity: .9; }
.hs-grille { fill: #0a2a6e; fill-opacity: .55; }
.hs-lamp { fill: var(--yellow); }
.hs-tyre { fill: #0a1a44; }
.hs-rim { fill: #c6cfe3; }
.hs-truck-logo { --lg-y: var(--yellow); --lg-b: var(--navy); --lg-g: var(--gray); }
.hs-bag { opacity: 0; transform-box: fill-box; transform-origin: 50% 100%; transform: scale(.4) translateY(10px); animation: pop .5s cubic-bezier(.2,.9,.3,1.3) calc(3.4s + var(--i) * .08s) forwards; }
.hs-pallet { opacity: 0; transform-box: fill-box; transform-origin: 50% 100%; transform: scale(.4) translateY(10px); animation: pop .6s cubic-bezier(.2,.9,.3,1.3) 3.9s forwards; }
.hs-wave { stroke: #7c869c; stroke-width: 1; fill: none; stroke-opacity: .7; }
.hs-bundle { stroke: #aeb9d3; stroke-width: 2; stroke-linecap: round; fill: none; opacity: 0; animation: fade .8s var(--ease) 4.1s forwards; }
.hs-bundle-band { stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; opacity: 0; animation: fade .8s var(--ease) 4.2s forwards; }
.hs-spark { opacity: 0; transform-box: fill-box; transform-origin: center; animation: spark 4.5s ease-in-out calc(3s + var(--i) * .37s) infinite; }
.hs-scene { animation: floaty 7s ease-in-out infinite; }

/* ---------- ticker ---------- */
.ticker {
  position: relative; z-index: 2; background: var(--yellow); color: var(--navy); overflow: hidden;
  border-top: 1px solid rgba(2, 34, 102, .08);
}
.ticker__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; align-items: center; padding: 16px 0; }
.ticker__item { display: inline-flex; align-items: center; gap: 22px; padding-right: 22px; font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; }
.ticker__item svg { width: 14px; height: 14px; --lg-y: var(--navy); --lg-b: var(--navy); opacity: .8; }

/* ---------- sections ---------- */
.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--bg-2); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy .h2 { color: #fff; }
.section--navy .lead, .section--navy .text { color: rgba(255, 255, 255, .78); }
.section--navy .eyebrow { color: var(--yellow); }

/* stats */
.stats { position: relative; z-index: 3; margin-top: -1px; background: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 56px 0; }
.stat { position: relative; padding-left: 22px; }
.stat::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; border-radius: 2px; background: var(--yellow); }
.stat__num { font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 800; line-height: 1; color: var(--navy); letter-spacing: -.03em; display: flex; align-items: baseline; gap: 2px; }
.stat__num small { font-size: .5em; font-weight: 700; color: var(--yellow-700); }
.stat__label { margin-top: 8px; font-size: 14px; color: var(--ink-2); line-height: 1.45; }

/* about */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5 / 4; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.2s var(--ease); }
.about__media:hover .about__photo img { transform: scale(1.06); }
.about__badge {
  position: absolute; right: -18px; bottom: -18px; width: 132px; height: 132px; border-radius: 28px; background: var(--navy);
  display: grid; place-items: center; box-shadow: var(--shadow-md); color: #fff; text-align: center; padding: 14px;
}
.about__badge strong { display: block; font-size: 28px; font-weight: 800; line-height: 1; color: var(--yellow); }
.about__badge span { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin-top: 6px; opacity: .85; }
.about__chip {
  position: absolute; left: -16px; top: 28px; background: #fff; border-radius: 14px; padding: 12px 16px 12px 12px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
}
.about__chip .mark { width: 36px; height: 36px; }
.about__chip b { display: block; font-size: 13px; color: var(--navy); line-height: 1.2; }
.about__chip small { font-size: 12px; color: var(--ink-3); }
.about__content .h2 { margin-top: 14px; }
.about__content .lead { margin-top: 18px; }
.about__content .text { margin-top: 14px; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.pillar { border: 1px solid var(--line); border-radius: 14px; padding: 18px 18px 18px 20px; background: var(--bg-2); position: relative; overflow: hidden; }
.pillar::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--yellow); }
.pillar b { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--navy-700); }
.pillar p { margin-top: 6px; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.about__content .btn-row { margin-top: 30px; }

/* products */
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; overflow: hidden;
}
.product::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.product:hover::after { transform: scaleX(1); }
.product__icon {
  width: 64px; height: 64px; border-radius: 18px; background: var(--navy); display: grid; place-items: center; color: var(--yellow);
  transition: transform .35s var(--ease);
}
.product:hover .product__icon { transform: rotate(-4deg) scale(1.04); }
.product__icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; overflow: visible; }
.product .h3 { margin-top: 22px; }
.product .text { margin-top: 10px; font-size: 15px; line-height: 1.6; }
.product__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.product__tags span { font-size: 12px; font-weight: 500; color: var(--navy-700); background: var(--bg-2); border-radius: 999px; padding: 4px 10px; }
.products__cta { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; margin-top: 44px; }

/* product icon animations */
.ic-anim { transition: transform .5s var(--ease); transform-box: fill-box; transform-origin: center; }
.product:hover .ic-plank-top { transform: translate(3px, -3px); }
.product:hover .ic-wave { animation: waveShift 1.2s var(--ease); }
.product:hover .ic-drop { animation: dropBounce 1s var(--ease); }
.product:hover .ic-trowel { animation: trowel 1.1s var(--ease); }
.product:hover .ic-bar { animation: barSlide .9s var(--ease); }
.product:hover .ic-bar-2 { animation-delay: .1s; }
.product:hover .ic-bag { animation: squash .8s var(--ease); }

/* advantages */
.adv { position: relative; overflow: hidden; }
.adv__bg { position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent); -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent); }
.adv__mark { position: absolute; right: -6vw; top: -12vw; width: 44vw; max-width: 620px; opacity: .06; pointer-events: none; --lg-y: #fff; --lg-b: #fff; }
.adv__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.adv__item { padding: 30px 26px; border-radius: var(--radius); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); transition: background-color .35s, transform .35s var(--ease); }
.adv__item:hover { background: rgba(255, 255, 255, .09); transform: translateY(-4px); }
.adv__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--yellow); color: var(--navy); display: grid; place-items: center; }
.adv__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.adv__item h3 { margin-top: 20px; font-size: 1.1rem; font-weight: 700; color: #fff; }
.adv__item p { margin-top: 8px; font-size: 14.5px; color: rgba(255, 255, 255, .75); line-height: 1.6; }
.adv__note { position: relative; margin-top: 26px; font-size: 13px; color: rgba(255, 255, 255, .55); }

/* channels: loja + bônus */
.channels__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.channel { position: relative; border-radius: 24px; overflow: hidden; min-height: 420px; display: flex; flex-direction: column; justify-content: center; padding: 48px; isolation: isolate; }
.channel--store { background: radial-gradient(90% 100% at 100% 100%, rgba(255, 204, 0, .18), transparent 55%), linear-gradient(135deg, var(--navy-800), var(--navy) 55%, var(--navy-700)); color: #fff; }
.channel--store .h2 { color: #fff; font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.channel--store .text { color: rgba(255, 255, 255, .8); }
.channel__content { max-width: 55%; position: relative; z-index: 2; }
.channel__content .h2, .channel__content .h3 { margin-top: 14px; }
.channel__content .text { margin-top: 14px; }
.channel__content .btn-row { margin-top: 28px; }
.channel__mascot { position: absolute; right: -10px; bottom: 0; width: 44%; max-width: 360px; z-index: 1; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35)); transform: translateY(8px); transition: transform .8s var(--ease); }
.channel:hover .channel__mascot { transform: translateY(0); }
.channel--bonus { background: var(--yellow); color: var(--navy); }
.channel--bonus .channel__content { max-width: 100%; }
.channel--bonus .eyebrow { color: var(--navy); }
.channel--bonus .eyebrow::before { background: var(--navy); }
.channel--bonus .text { color: rgba(2, 34, 102, .8); }
.channel__bonus-logo { width: 220px; }
.channel__mark { position: absolute; right: -60px; top: -60px; width: 260px; opacity: .12; --lg-y: var(--navy); --lg-b: var(--navy); }
.channel__list { margin-top: 18px; display: grid; gap: 8px; font-size: 14.5px; font-weight: 500; }
.channel__list li { display: flex; align-items: center; gap: 10px; }
.channel__list svg { width: 18px; height: 18px; flex: none; }

/* brands */
.brands__marquee { position: relative; overflow: hidden; margin-top: 10px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brands__track { display: flex; width: max-content; gap: 16px; padding: 12px 0; animation: marquee 70s linear infinite; }
.brands__track--reverse { animation-direction: reverse; animation-duration: 78s; }
.brands__marquee:hover .brands__track { animation-play-state: paused; }
.brands__group { display: flex; gap: 16px; }
.brand-chip {
  width: 176px; height: 92px; flex: none; display: grid; place-items: center; padding: 16px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.brand-chip img { max-height: 52px; width: auto; max-width: 132px; object-fit: contain; }
.brand-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.brands__note { text-align: center; margin-top: 26px; font-size: 14px; color: var(--ink-3); }

/* stores */
.stores__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.map { position: relative; }
.map svg { width: 100%; height: auto; overflow: visible; }
.map__state { fill: var(--navy); fill-opacity: .08; stroke: var(--navy); stroke-width: 1.5; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.is-in .map__state { animation: draw 2.6s var(--ease) forwards, mapFill 1.2s var(--ease) 1.8s forwards; }
.map__pin { transform-box: fill-box; transform-origin: center; }
.map__pin circle.pulse { fill: var(--yellow); fill-opacity: .5; transform-box: fill-box; transform-origin: center; animation: pulse 2.4s ease-out infinite; }
.map__pin circle.dot { fill: var(--yellow); stroke: var(--navy); stroke-width: 3; }
.map__pin text { font-family: var(--font); font-size: 22px; font-weight: 700; fill: var(--navy); paint-order: stroke; stroke: #fff; stroke-width: 6px; stroke-linejoin: round; }
.map__pin tspan.sub { font-size: 15px; font-weight: 500; fill: var(--ink-3); }
.map__pin:nth-child(2) circle.pulse { animation-delay: 1.2s; }
.map__caption { position: absolute; left: 0; bottom: 0; background: #fff; border-radius: 14px; box-shadow: var(--shadow-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-size: 14px; }
.map__caption b { color: var(--navy); }
.map__caption span { color: var(--ink-3); font-size: 13px; }
.map__caption svg { width: 26px; height: 26px; --lg-y: var(--yellow); --lg-b: var(--navy); }
.stores__list { display: grid; gap: 16px; }
.store { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.store:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.store__city { width: 64px; height: 64px; border-radius: 16px; background: var(--navy); color: var(--yellow); display: grid; place-items: center; font-weight: 800; font-size: 20px; letter-spacing: .02em; }
.store__city small { display: block; font-size: 9px; letter-spacing: .14em; color: rgba(255, 255, 255, .7); text-align: center; font-weight: 600; margin-top: -2px; }
.store h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.store h3 span { font-weight: 500; color: var(--ink-3); font-size: .9rem; }
.store p { margin-top: 4px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.store__phone { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-weight: 600; color: var(--navy); font-size: 14px; }
.store__phone svg { width: 15px; height: 15px; }
.store__actions { display: flex; flex-direction: column; gap: 8px; }
.store__actions .btn--sm { min-height: 40px; font-size: 13px; padding: 0 14px; }

/* cta band */
.cta { position: relative; padding: 96px 0; color: var(--navy); overflow: hidden; isolation: isolate; background: var(--yellow); }
.cta__bg { position: absolute; inset: 0; z-index: -1; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255, 204, 0, .96) 0%, rgba(255, 204, 0, .85) 45%, rgba(255, 204, 0, .35) 100%); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta .eyebrow { color: var(--navy); }
.cta .eyebrow::before { background: var(--navy); }
.cta .h2 { color: var(--navy); max-width: 620px; }
.cta .lead { color: rgba(2, 34, 102, .8); margin-top: 14px; max-width: 560px; }
.cta .btn-row { flex: none; }

/* ---------- footer ---------- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, .78); position: relative; overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 72px 0 56px; }
.footer .logo { height: 46px; }
.footer__tagline { margin-top: 18px; font-size: 14px; max-width: 320px; line-height: 1.7; }
.footer__slogan { display: inline-block; margin-top: 18px; font-size: 12px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--yellow); }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.footer li + li { margin-top: 10px; }
.footer a { font-size: 14.5px; transition: color .2s; }
.footer a:hover { color: var(--yellow); }
.footer__unit + .footer__unit { margin-top: 18px; }
.footer__unit b { display: block; color: #fff; font-size: 14px; }
.footer__unit p { font-size: 13.5px; line-height: 1.55; margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; font-size: 12.5px; color: rgba(255, 255, 255, .5); }
.footer__mark { position: absolute; right: -80px; bottom: -120px; width: 380px; opacity: .05; --lg-y: #fff; --lg-b: #fff; pointer-events: none; }

/* floating whatsapp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37, 211, 102, .4); transition: transform .3s var(--ease);
}
.wa-float::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--wa); opacity: .5; animation: pulseRing 2.2s ease-out infinite; }
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); }

/* ---------- page hero (internas) ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 72px) 0 88px; background: var(--navy); color: #fff; overflow: hidden; isolation: isolate;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2, 34, 102, .55), rgba(1, 21, 63, .95)); }
.page-hero__mark { position: absolute; z-index: -1; right: -6vw; top: -10vw; width: 46vw; max-width: 640px; min-width: 320px; fill: none; stroke: #fff; stroke-width: 6; stroke-opacity: .14; }
.page-hero__mark path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 2.4s var(--ease) .2s forwards; }
.page-hero__mark path:nth-child(2) { animation-delay: .6s; }
.page-hero .h1 { margin-top: 18px; color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 800px; }
.page-hero .lead { margin-top: 18px; color: rgba(255, 255, 255, .8); max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: rgba(255, 255, 255, .6); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span::before { content: "/"; margin-right: 8px; opacity: .5; }

/* manifesto */
.manifesto { position: relative; text-align: center; }
.manifesto blockquote { margin: 0 auto; max-width: 900px; font-size: clamp(1.6rem, 3.4vw, 2.6rem); font-weight: 700; line-height: 1.25; color: var(--navy); letter-spacing: -.02em; }
.manifesto blockquote .mark-y { color: var(--yellow-600); }
.manifesto cite { display: block; margin-top: 22px; font-style: normal; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.manifesto__mark { width: 56px; height: 56px; margin: 0 auto 26px; }

/* pillars page */
.pillars-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; position: relative; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar-card__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--navy); color: var(--yellow); display: grid; place-items: center; }
.pillar-card__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pillar-card h3 { margin-top: 20px; }
.pillar-card p { margin-top: 10px; color: var(--ink-2); line-height: 1.65; }
.pillar-card__num { position: absolute; right: 22px; top: 18px; font-size: 56px; font-weight: 800; color: var(--bg-3); line-height: 1; letter-spacing: -.04em; }

/* values R.O.Q.U.E. */
.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.value { position: relative; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 30px 22px 26px; overflow: hidden; transition: background-color .35s, transform .35s var(--ease); }
.value:hover { background: rgba(255, 255, 255, .1); transform: translateY(-4px); }
.value__letter { font-size: 72px; font-weight: 800; line-height: 1; color: var(--yellow); letter-spacing: -.04em; display: inline-block; transform: translateY(20px); opacity: 0; transition: transform .7s var(--ease), opacity .7s var(--ease); transition-delay: var(--d, 0s); }
.is-in .value__letter { transform: none; opacity: 1; }
.value__word { margin-top: 14px; font-size: 1.15rem; font-weight: 700; color: #fff; }
.value__word span { color: var(--yellow); }
.value__desc { margin-top: 8px; font-size: 13.5px; color: rgba(255, 255, 255, .7); line-height: 1.55; }
.value::after { content: ""; position: absolute; left: 22px; right: 22px; bottom: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); transition-delay: calc(var(--d, 0s) + .3s); }
.is-in .value::after { transform: scaleX(1); }

/* timeline */
.timeline { position: relative; padding-left: 0; }
.timeline__line { position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; transform: translateX(-50%); background: var(--line); border-radius: 2px; overflow: hidden; }
.timeline__line::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 100%; background: linear-gradient(180deg, var(--yellow), var(--navy)); transform: scaleY(var(--p, 0)); transform-origin: top; transition: transform .1s linear; }
.tl-item { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; align-items: center; padding: 28px 0; }
.tl-item__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 1000 / 463; background: var(--bg-3); }
.tl-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tl-item:hover .tl-item__media img { transform: scale(1.04); }
.tl-item:nth-child(odd) .tl-item__media { order: 1; }
.tl-item:nth-child(odd) .tl-item__body { order: 2; }
.tl-item:nth-child(even) .tl-item__media { order: 2; }
.tl-item:nth-child(even) .tl-item__body { order: 1; text-align: right; }
.tl-item__dot { position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--line); transform: translate(-50%, -50%); transition: border-color .4s, box-shadow .4s, transform .4s var(--ease); z-index: 2; }
.tl-item.is-in .tl-item__dot { border-color: var(--yellow); box-shadow: 0 0 0 6px rgba(255, 204, 0, .2); transform: translate(-50%, -50%) scale(1.1); }
.tl-item__year { display: inline-flex; align-items: baseline; gap: 8px; font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -.03em; }
.tl-item__year small { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow-700); }
.tl-item__body h3 { margin-top: 10px; font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.tl-item__body p { margin-top: 10px; color: var(--ink-2); line-height: 1.65; }

/* pride band */
.pride { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.pride__grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; padding: 20px 0; }
.pride .h2 { color: #fff; }
.pride .lead { color: rgba(255, 255, 255, .8); margin-top: 16px; }
.pride__img { width: 260px; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35)); animation: floaty 6s ease-in-out infinite; }
.pride__stripe { position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: repeating-linear-gradient(90deg, var(--yellow) 0 60px, #fff 60px 120px); opacity: .9; }

/* ---------- contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-md); }
.form-card h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.form-card > p { margin-top: 8px; color: var(--ink-2); font-size: 15px; }
.form { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink); background: var(--bg-2); border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 14px;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(2, 34, 102, .1); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23022266' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form__actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 6px; }
.form__hint { font-size: 13px; color: var(--ink-3); }
.form__status { grid-column: 1 / -1; font-size: 14px; color: var(--navy); font-weight: 500; min-height: 1.4em; }
.contact-info { display: grid; gap: 16px; }
.info-card { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-card__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--navy); color: var(--yellow); display: grid; place-items: center; flex: none; }
.info-card__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-card__icon--wa { background: var(--wa); color: #fff; }
.info-card b { display: block; color: var(--navy); font-size: 15px; }
.info-card p { margin-top: 4px; font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.info-card a.big { display: inline-block; margin-top: 4px; font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.info-card a.big:hover { color: var(--navy-700); }
.units__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.unit { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.unit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.unit__map { aspect-ratio: 4 / 3; background: var(--bg-3); position: relative; }
.unit__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.85); }
.unit__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.unit__tag { display: inline-flex; align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); background: var(--yellow); padding: 5px 10px; border-radius: 999px; }
.unit h3 { margin-top: 10px; }
.unit p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.unit .btn-row { margin-top: auto; padding-top: 16px; gap: 10px; }
.unit .btn--sm { min-height: 40px; font-size: 13px; padding: 0 14px; }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(.94); }

/* ---------- keyframes ---------- */
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade { to { opacity: 1; } }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes growX { to { transform: scaleX(1); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes hang { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-6px) rotate(-.4deg); } }
@keyframes drivein { to { opacity: 1; transform: translateX(0); } }
@keyframes pop { to { opacity: 1; transform: none; } }
@keyframes spark { 0% { opacity: 0; transform: translateY(0) scale(.6); } 20% { opacity: .9; } 60% { opacity: .5; } 100% { opacity: 0; transform: translateY(-26px) scale(1.1); } }
@keyframes beacon { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes pulse { 0% { transform: scale(.5); opacity: .8; } 100% { transform: scale(2.6); opacity: 0; } }
@keyframes pulseRing { 0% { transform: scale(.9); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes mapFill { to { fill-opacity: .14; } }
@keyframes waveShift { 0% { transform: translateX(0); } 50% { transform: translateX(-3px); } 100% { transform: translateX(0); } }
@keyframes dropBounce { 0% { transform: translateY(0); } 40% { transform: translateY(-5px) scaleY(1.06); } 70% { transform: translateY(1px) scaleY(.96); } 100% { transform: translateY(0); } }
@keyframes trowel { 0% { transform: rotate(0); } 40% { transform: rotate(-10deg) translateX(-2px); } 100% { transform: rotate(0); } }
@keyframes barSlide { 0% { transform: translate(0, 0); } 50% { transform: translate(3px, -3px); } 100% { transform: translate(0, 0); } }
@keyframes squash { 0% { transform: scale(1); } 40% { transform: scale(1.06, .94); } 70% { transform: scale(.97, 1.03); } 100% { transform: scale(1); } }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: inline-block; }
  .header-cta .btn--sm { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 12px; }
  .hero__visual { max-width: 560px; margin: 0 auto; }
  .hero-structure { width: 100%; margin-left: 0; max-height: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__badge { right: 8px; }
  .about__chip { left: 8px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .adv__grid { grid-template-columns: repeat(2, 1fr); }
  .channels__grid { grid-template-columns: 1fr; }
  .stores__grid { grid-template-columns: 1fr; gap: 40px; }
  .map { max-width: 520px; margin: 0 auto; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .units__grid { grid-template-columns: 1fr; }
  .pillars-3 { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(3, 1fr); }
  .tl-item { grid-template-columns: 1fr; gap: 18px; padding-left: 40px; }
  .tl-item:nth-child(odd) .tl-item__media, .tl-item:nth-child(even) .tl-item__media { order: 1; }
  .tl-item:nth-child(odd) .tl-item__body, .tl-item:nth-child(even) .tl-item__body { order: 2; text-align: left; }
  .timeline__line { left: 11px; transform: none; }
  .tl-item__dot { left: 11px; top: 40px; transform: translate(-50%, 0); }
  .tl-item.is-in .tl-item__dot { transform: translate(-50%, 0) scale(1.1); }
}
@media (max-width: 720px) {
  :root { --gutter: 16px; --header-h: 72px; }
  .section { padding: 72px 0; }
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .hero__content .btn-row .btn { flex: 1 1 100%; }
  .hero__trust { gap: 8px 18px; }
  .hero__mark { left: -30vw; bottom: -30vw; width: 90vw; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; padding: 44px 0; }
  .products__grid { grid-template-columns: 1fr; }
  .adv__grid { grid-template-columns: 1fr; }
  .channel { padding: 32px 26px; min-height: 0; }
  .channel--store { padding-bottom: 0; }
  .channel__content { max-width: 100%; }
  .channel--store .channel__mascot { position: relative; right: auto; width: 62%; max-width: 280px; margin: 20px auto 0; transform: none; }
  .channel__bonus-logo { width: 180px; }
  .store { grid-template-columns: auto 1fr; }
  .store__actions { grid-column: 1 / -1; flex-direction: row; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; padding: 56px 0 40px; }
  .form { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .values { grid-template-columns: 1fr 1fr; }
  .value__letter { font-size: 56px; }
  .pride__grid { grid-template-columns: 1fr; }
  .pride__img { width: 200px; margin: 0 auto; }
  .tl-item__year { font-size: 32px; }
  .about__badge { width: 112px; height: 112px; border-radius: 22px; bottom: -14px; }
  .about__badge strong { font-size: 24px; }
  .manifesto blockquote { font-size: 1.5rem; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* ---------- motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hs-col, .hs-beam, .hs-rebar, .hs-tower, .hs-jib, .hs-tie, .hs-lattice, .hs-jib-lattice, .hs-grid, .hs-form, .hero__mark path, .page-hero__mark path, .map__state { stroke-dashoffset: 0; }
  .hs-slab, .hs-hang, .hs-counter, .hs-cab, .hs-trolley, .hs-truck, .hs-bag, .hs-pallet, .hs-bundle, .hs-bundle-band, .hs-shadow, .hs-platform polygon, .hs-platform-edge, .hero__content > * { opacity: 1; transform: none; }
  .hs-spark { display: none; }
  .ticker__track, .brands__track { animation: none; }
  .value__letter { opacity: 1; transform: none; }
}
