:root {
  --ink: #111111;
  --ink-2: #191919;
  --ink-3: #252525;
  --paper: #f2f0ea;
  --paper-2: #e7e4dc;
  --white: #ffffff;
  --muted: #5f5f5a;
  --muted-light: #aaa9a3;
  --line: #d3cfc5;
  --line-dark: #3a3a38;
  --yellow: #ffb600;
  --yellow-bright: #ffc733;
  --red: #b70812;
  --green: #08783e;
  --green-hover: #056331;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Inter", "Segoe UI", Arial, sans-serif;
  --shadow-soft: 0 20px 55px rgba(20, 19, 15, .10);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--body); font-size: 16px; line-height: 1.6; }
body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { color: inherit; font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
::selection { color: var(--ink); background: var(--yellow); }

:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.button:focus-visible, .nav-cta:focus-visible, .quote-link:focus-visible, .floating-whatsapp:focus-visible { outline-color: var(--white); box-shadow: 0 0 0 6px var(--ink); }
.site-header :focus-visible, .hero :focus-visible, .p20s-section :focus-visible, .service-section :focus-visible, footer :focus-visible { outline-color: var(--yellow); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -6rem; left: 1rem; z-index: 200; padding: .7rem 1rem; color: var(--ink); background: var(--yellow); font-weight: 800; text-decoration: none; }
.skip-link:focus { top: 1rem; }

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin-top: 0; font-family: var(--display); }
h1, h2 { line-height: .94; letter-spacing: -.03em; text-transform: uppercase; }
h1 { margin-bottom: 1.35rem; font-size: clamp(3.8rem, 5vw, 5.4rem); }
h2 { margin-bottom: 1.1rem; font-size: clamp(3.2rem, 4.8vw, 5.2rem); }
h3 { line-height: 1.05; }
.eyebrow { margin: 0 0 1rem; color: var(--red); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: var(--yellow); }
.section-shell { padding: clamp(5rem, 8vw, 8.5rem) clamp(1.25rem, 5vw, 5.5rem); }
.section-kicker { display: flex; align-items: center; gap: .8rem; margin-bottom: clamp(2.7rem, 5vw, 5rem); color: var(--muted); }
.section-kicker::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.section-kicker span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line); font: 800 .78rem var(--display); }
.section-kicker p { margin: 0; font-size: .73rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(2rem, 6vw, 7rem); align-items: end; margin-bottom: clamp(2.6rem, 5vw, 4.7rem); }
.section-heading h2 { max-width: 880px; margin-bottom: 0; }
.section-heading > p { max-width: 520px; margin: 0 0 .35rem; color: var(--muted); }

.utility-bar { min-height: 31px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .35rem clamp(1.25rem, 5vw, 5.5rem); color: #b9b9b6; background: #090909; border-bottom: 1px solid #292929; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.utility-bar p { display: flex; align-items: center; gap: .5rem; margin: 0; }
.status-dot { display: inline-block; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(8, 120, 62, .15); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(17, 17, 17, .96); border-bottom: 1px solid #313131; backdrop-filter: blur(14px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: .4rem clamp(1.25rem, 5vw, 5.5rem); }
.brand { flex: 0 0 auto; }
.brand img { width: 133px; height: 58px; object-fit: contain; }
nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.7rem); }
nav a { position: relative; color: #dededb; font-size: .84rem; font-weight: 700; text-decoration: none; }
nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -.45rem; left: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
nav a:hover { color: var(--white); }
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta { min-height: 43px; display: inline-flex; align-items: center; gap: 1.2rem; padding: .55rem 1rem; color: var(--ink); background: var(--yellow); border: 1px solid var(--yellow); text-transform: uppercase; letter-spacing: .05em; }
.nav-cta:hover { color: var(--ink); background: var(--yellow-bright); }

.hero { color: var(--white); background: var(--ink); overflow: hidden; }
.hero-grid { min-height: clamp(620px, calc(100svh - 107px), 760px); display: grid; grid-template-columns: minmax(0, 56fr) minmax(440px, 44fr); }
.hero-copy { position: relative; z-index: 2; display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(3.2rem, 6vw, 6.5rem) clamp(2rem, 5.8vw, 6.5rem); }
.hero-copy::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, #000, transparent 95%); }
.hero .eyebrow span { display: inline-flex; align-items: center; gap: .7rem; }
.hero .eyebrow span::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero h1 { max-width: 830px; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-text { max-width: 650px; margin: 0; color: #bbbcb9; font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 1rem; padding: .8rem 1.25rem; border: 1px solid transparent; font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { color: var(--ink); background: var(--yellow); }
.button-primary:hover { background: var(--yellow-bright); }
.button-ghost { color: var(--white); background: transparent; border-color: #50504e; }
.button-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .05); }
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.button-outline:hover { color: var(--white); background: var(--ink); }
.button-whatsapp { color: var(--white); background: var(--green); }
.button-whatsapp:hover { background: var(--green-hover); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #2a2a28; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 680px; margin: 2.5rem 0 0; padding: 1.25rem 0 0; list-style: none; border-top: 1px solid #3a3a38; }
.hero-proof li { display: flex; flex-direction: column; gap: .05rem; }
.hero-proof strong { color: var(--white); font: 800 1.55rem/1 var(--display); text-transform: uppercase; }
.hero-proof span { color: #93938f; font-size: .73rem; }

.hero-showcase { position: relative; min-width: 0; overflow: hidden; background: var(--yellow); isolation: isolate; }
.showcase-grid { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(17, 17, 17, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 17, 17, .12) 1px, transparent 1px); background-size: 52px 52px; }
.showcase-grid::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 44%, rgba(255, 255, 255, .26), transparent 48%); }
.showcase-topline { position: absolute; top: 1.4rem; right: 1.7rem; left: 1.8rem; z-index: 5; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.showcase-index { margin: 0; font: 800 .75rem var(--body); letter-spacing: .15em; }
.showcase-pause { min-height: 34px; padding: .35rem .65rem; color: var(--ink); background: rgba(255, 255, 255, .48); border: 1px solid rgba(17, 17, 17, .28); font-size: .61rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; backdrop-filter: blur(8px); }
.showcase-pause:hover { background: var(--white); }
.showcase-word { position: absolute; top: 48%; right: -3.3rem; z-index: -1; margin: 0; color: rgba(17, 17, 17, .10); font: 800 clamp(5rem, 10vw, 10rem)/1 var(--display); letter-spacing: .04em; transform: rotate(90deg) translateX(50%); transform-origin: right center; }
.showcase-image { position: absolute; top: 50%; left: 50%; width: min(76%, 560px); aspect-ratio: 1; padding: .75rem; background: rgba(255, 255, 255, .28); border: 1px solid rgba(17, 17, 17, .22); box-shadow: 0 32px 80px rgba(68, 44, 0, .28); transform: translate(-50%, -54%) rotate(-1.4deg); transition: opacity .26s ease, transform .42s cubic-bezier(.2, .75, .2, 1); }
.showcase-image::before, .showcase-image::after { content: ""; position: absolute; z-index: -1; border: 1px solid rgba(17, 17, 17, .28); }
.showcase-image::before { inset: -12px 12px 12px -12px; }
.showcase-image::after { inset: 12px -12px -12px 12px; }
.showcase-image img { width: 100%; height: 100%; object-fit: contain; }
.showcase-card { position: absolute; right: clamp(1rem, 3vw, 2rem); bottom: clamp(2.7rem, 4vw, 3.5rem); left: clamp(1rem, 3vw, 2rem); z-index: 4; display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; padding: 1.1rem 1.2rem; color: var(--white); background: rgba(17, 17, 17, .94); border: 1px solid #3b3b38; box-shadow: var(--shadow-soft); backdrop-filter: blur(10px); transition: opacity .24s ease, transform .32s ease; }
.showcase-card div { min-width: 0; }
.showcase-card span { display: block; color: var(--yellow); font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.showcase-card strong { display: block; margin: .25rem 0 .1rem; font: 800 clamp(1.4rem, 2vw, 2rem)/1 var(--display); text-transform: uppercase; }
.showcase-card small { display: block; color: #aeadab; font-size: .72rem; }
.showcase-card button { flex: 0 0 auto; padding: .55rem 0; color: var(--white); background: transparent; border: 0; border-bottom: 1px solid var(--yellow); font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.showcase-dots { position: absolute; right: clamp(1rem, 3vw, 2rem); bottom: 1.25rem; left: clamp(1rem, 3vw, 2rem); z-index: 5; display: flex; gap: .45rem; }
.showcase-dots button { width: 24px; height: 4px; padding: 0; background: rgba(17, 17, 17, .28); border: 0; transition: width .22s ease, background-color .22s ease; }
.showcase-dots button:hover, .showcase-dots button:focus-visible { background: rgba(17, 17, 17, .62); }
.showcase-dots button.active { width: 46px; background: var(--ink); }
.hero-showcase.is-changing .showcase-image { opacity: 0; transform: translate(-47%, -54%) rotate(1deg) scale(.97); }
.hero-showcase.is-changing .showcase-card { opacity: 0; transform: translateY(8px); }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); color: var(--ink); background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip div { position: relative; min-height: 100px; display: grid; grid-template-columns: auto 1fr; align-content: center; column-gap: .75rem; padding: 1.2rem clamp(1rem, 2.5vw, 2.2rem); border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip span { grid-row: 1 / 3; align-self: start; color: var(--red); font: 800 .73rem var(--display); }
.trust-strip strong { font: 800 1.1rem/1 var(--display); text-transform: uppercase; }
.trust-strip small { margin-top: .3rem; color: #77766f; font-size: .7rem; }

.category-section { background: var(--paper); }
.editorial-heading { margin-bottom: 3.2rem; }
.category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-card { position: relative; min-height: 230px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 1.25rem; overflow: hidden; text-align: left; background: transparent; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s ease, background-color .25s ease; }
.category-card::before { content: ""; position: absolute; inset: auto 0 0; height: 0; z-index: 0; background: var(--ink); transition: height .3s ease; }
.category-card > * { position: relative; z-index: 1; }
.category-card:hover, .category-card:focus-visible { color: var(--white); }
.category-card:hover::before, .category-card:focus-visible::before { height: 100%; }
.category-number { color: var(--red); font: 800 .7rem var(--display); letter-spacing: .1em; }
.category-card svg { width: 58px; height: 58px; margin: auto 0; fill: none; stroke: currentColor; stroke-width: 2; }
.category-card > span:nth-of-type(2) { display: flex; flex-direction: column; }
.category-card strong { max-width: 170px; font: 800 1.25rem/1 var(--display); text-transform: uppercase; }
.category-card small { margin-top: .3rem; color: var(--muted); font-size: .68rem; }
.category-card:hover small, .category-card:focus-visible small { color: #aaa; }
.category-card > b { position: absolute; right: 1.2rem; bottom: 1.2rem; color: var(--red); font-size: 1rem; }

.catalog-section { padding-top: 2rem; background: var(--paper); }
.catalog-toolbar { position: sticky; top: 76px; z-index: 25; display: grid; grid-template-columns: minmax(280px, .85fr) minmax(0, 1.4fr); align-items: center; gap: 1rem; margin: 0 calc(clamp(1.25rem, 5vw, 5.5rem) * -1); padding: .8rem clamp(1.25rem, 5vw, 5.5rem); background: rgba(242, 240, 234, .96); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.search-control { min-height: 49px; display: flex; align-items: center; gap: .7rem; padding: 0 .9rem; background: var(--white); border: 1px solid #c7c2b7; }
.search-control:focus-within { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(255, 182, 0, .35); }
.search-control svg { width: 20px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; }
.search-control input { min-width: 0; width: 100%; height: 44px; padding: 0; background: transparent; border: 0; outline: 0; }
.search-control input::placeholder { color: #6c6a65; }
.clear-search { padding: .3rem 0; color: var(--red); background: transparent; border: 0; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.filters { min-width: 0; display: flex; justify-content: flex-end; gap: .45rem; margin: 0; padding: 0; border: 0; }
.filter-button { min-height: 42px; display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .75rem; color: #4c4b47; background: transparent; border: 1px solid var(--line); font-size: .72rem; font-weight: 700; white-space: nowrap; }
.filter-button span { display: grid; min-width: 19px; height: 19px; place-items: center; color: #77756f; background: rgba(0, 0, 0, .05); border-radius: 50%; font-size: .58rem; }
.filter-button:hover { border-color: var(--ink); }
.filter-button.active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.filter-button.active span { color: var(--ink); background: var(--yellow); }
.catalog-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 1.3rem 0; color: #6a6964; font-size: .73rem; font-weight: 600; letter-spacing: .03em; }
.catalog-meta p { display: flex; align-items: center; gap: .55rem; margin: 0; }
.catalog-meta p:first-child { color: var(--ink); text-transform: uppercase; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(.75rem, 1.5vw, 1.35rem); }
.product-card { position: relative; min-width: 0; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); box-shadow: 0 1px 0 rgba(0, 0, 0, .02); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { z-index: 2; border-color: #aaa69b; box-shadow: var(--shadow-soft); transform: translateY(-6px); }
.product-image { position: relative; aspect-ratio: 1; overflow: hidden; background: #deddda; border-bottom: 1px solid var(--line); }
.product-image::after { content: ""; position: absolute; inset: 0; border: 10px solid rgba(255, 255, 255, .10); pointer-events: none; }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s cubic-bezier(.2, .7, .2, 1); }
.product-card:hover .product-image img { transform: scale(1.035); }
.model-chip, .product-badge { position: absolute; z-index: 1; padding: .28rem .5rem; font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.model-chip { left: .75rem; bottom: .75rem; color: var(--white); background: rgba(17, 17, 17, .92); }
.product-badge { top: .75rem; right: .75rem; color: var(--ink); background: var(--yellow); }
.badge-p20s { color: var(--white); background: var(--red); }
.product-content { min-height: 245px; display: flex; flex: 1; flex-direction: column; padding: 1.15rem; }
.product-category { margin: 0 0 .55rem; color: var(--red); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-content h3 { min-height: 2.5em; margin-bottom: .7rem; font-size: clamp(1.35rem, 1.8vw, 1.65rem); text-transform: uppercase; }
.spec-preview { margin: 0 0 1.25rem; padding: 0; color: var(--muted); list-style: none; font-size: .76rem; line-height: 1.45; }
.spec-preview li { display: flex; gap: .45rem; }
.spec-preview li + li { margin-top: .35rem; }
.spec-preview li::before { content: ""; width: 12px; height: 1px; flex: 0 0 auto; margin-top: .68em; background: var(--red); }
.card-actions { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-top: auto; padding-top: .85rem; border-top: 1px solid var(--line); }
.details-label { color: var(--ink); font-size: .69rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.details-label b { color: var(--red); margin-left: .3rem; }
.quote-link { position: relative; z-index: 4; min-height: 35px; display: inline-flex; align-items: center; justify-content: center; padding: .45rem .65rem; color: var(--white); background: var(--green); font-size: .64rem; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; transition: background-color .2s ease; }
.quote-link:hover { background: var(--green-hover); }
.card-open { position: absolute; inset: 0; z-index: 3; padding: 0; background: transparent; border: 0; }
.card-open:focus-visible { outline: 4px solid var(--red); outline-offset: -4px; }
.product-card[hidden] { display: none; }
.noscript-note { padding: 1rem; background: var(--white); border: 1px solid var(--line); }
.empty-state { padding: clamp(3rem, 7vw, 6rem) 1.2rem; text-align: center; background: var(--white); border: 1px solid var(--line); }
.empty-state > span { display: block; color: var(--red); font: 800 4rem/1 var(--display); }
.empty-state h3 { margin: 1rem 0 .5rem; font-size: 2rem; text-transform: uppercase; }
.empty-state p { max-width: 570px; margin: 0 auto 1.5rem; color: var(--muted); }
.empty-state .button { margin: .3rem; }

.p20s-section { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 760px; color: var(--white); background: var(--ink); }
.p20s-gallery { min-width: 0; display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 1fr); gap: 1px; padding: clamp(1rem, 2.5vw, 2.2rem); background: var(--line-dark); }
.p20s-gallery figure { position: relative; min-width: 0; min-height: 0; margin: 0; overflow: hidden; background: #d9d8d4; }
.p20s-gallery .p20s-main { grid-row: 1 / 3; }
.p20s-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.p20s-gallery figure:hover img { transform: scale(1.025); }
.p20s-gallery figcaption { position: absolute; right: .7rem; bottom: .7rem; left: .7rem; padding: .6rem .75rem; color: var(--white); background: rgba(17, 17, 17, .88); font-size: .63rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.p20s-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 7vw, 8rem) clamp(1.5rem, 5.2vw, 6rem); overflow: hidden; }
.p20s-copy::before { content: ""; position: absolute; top: 0; right: 0; width: 0; height: 0; border-top: 100px solid var(--yellow); border-left: 100px solid transparent; }
.p20s-mark { position: absolute; right: -1rem; bottom: -1.8rem; margin: 0; color: rgba(255, 255, 255, .035); font: 800 clamp(9rem, 16vw, 17rem)/1 var(--display); }
.p20s-copy h2 { position: relative; max-width: 620px; font-size: clamp(3.5rem, 5.5vw, 6rem); }
.p20s-copy > p:not(.eyebrow, .p20s-mark) { position: relative; max-width: 590px; margin: 0; color: #b6b6b1; }
.p20s-copy ul { position: relative; margin: 2rem 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.p20s-copy li { display: flex; gap: .8rem; padding: .8rem 0; color: #d1d1cc; border-bottom: 1px solid var(--line-dark); font-size: .78rem; }
.p20s-copy li span { color: var(--yellow); font: 800 .75rem var(--display); }
.p20s-copy .button { position: relative; align-self: flex-start; }

.buy-section { background: var(--paper-2); }
.buy-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid #c8c3b7; border-left: 1px solid #c8c3b7; }
.buy-steps li { min-height: 285px; display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; padding: clamp(1.3rem, 2.5vw, 2.2rem); border-right: 1px solid #c8c3b7; border-bottom: 1px solid #c8c3b7; }
.buy-steps > li > span { color: var(--red); font: 800 1rem var(--display); }
.buy-steps h3 { max-width: 300px; margin: 0 0 .7rem; font-size: clamp(1.65rem, 2.3vw, 2.25rem); text-transform: uppercase; }
.buy-steps p { max-width: 380px; margin: 0; color: var(--muted); font-size: .85rem; }

.service-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 7vw, 8rem); padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem); color: var(--white); background: #161616; }
.service-intro { align-self: center; }
.service-intro h2 { max-width: 600px; }
.service-intro > p:not(.eyebrow) { max-width: 540px; margin: 0; color: #b3b3af; }
.text-link { display: inline-flex; gap: .75rem; margin-top: 1.5rem; padding-bottom: .3rem; color: var(--yellow); border-bottom: 1px solid var(--yellow); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.service-grid article { position: relative; min-height: 220px; padding: 1.5rem; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.service-grid article > span { position: absolute; top: 1.2rem; right: 1.2rem; color: #8c8c86; font: 800 .72rem var(--display); }
.service-grid svg { width: 40px; height: 40px; margin-bottom: 2.2rem; fill: none; stroke: var(--yellow); stroke-width: 1.7; }
.service-grid h3 { margin: 0 0 .55rem; font-size: 1.55rem; text-transform: uppercase; }
.service-grid p { max-width: 250px; margin: 0; color: #9f9f9b; font-size: .78rem; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 9rem); }
.faq-heading h2 { max-width: 580px; }
.faq-heading > p:last-child { max-width: 420px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem 0; cursor: pointer; font: 800 1.3rem/1.15 var(--display); list-style: none; text-transform: uppercase; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 29px; height: 29px; flex: 0 0 auto; place-items: center; color: var(--white); background: var(--ink); font: 400 1.25rem/1 var(--body); transition: transform .2s ease, background .2s ease; }
.faq-list details[open] summary span { color: var(--ink); background: var(--yellow); transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: -.3rem 3rem 1.4rem 0; color: var(--muted); font-size: .86rem; }

.contact-section { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 3rem; padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 6vw, 7rem); color: var(--ink); background: var(--yellow); }
.contact-section .eyebrow { color: #76070d; }
.contact-copy h2 { max-width: 980px; margin: 0; font-size: clamp(3.5rem, 6vw, 6.6rem); }
.contact-action { text-align: right; }
.contact-action p { margin: 0 0 .8rem; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.contact-action .button { width: 100%; }

footer { display: grid; grid-template-columns: 1.5fr .65fr .85fr; gap: clamp(2rem, 7vw, 8rem); padding: 4rem clamp(1.25rem, 6vw, 7rem) 1.5rem; color: #a7a7a2; background: #090909; }
.footer-brand img { width: 150px; height: auto; }
.footer-brand p { max-width: 300px; margin: 1rem 0 0; color: #8c8c86; font-size: .77rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: .38rem; font-size: .76rem; }
.footer-links p, .footer-contact p { margin: 0 0 .5rem; color: var(--yellow); font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a, .footer-contact a { color: var(--white); text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-contact span { color: #8c8c86; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.2rem; color: #85857f; border-top: 1px solid #272725; font-size: .65rem; }

.floating-whatsapp { position: fixed; right: 1rem; bottom: 1rem; z-index: 45; min-height: 52px; display: none; align-items: center; gap: .65rem; padding: .7rem 1rem; color: var(--white); background: var(--green); border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; box-shadow: 0 12px 35px rgba(0, 0, 0, .28); font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; transition: background-color .2s ease, transform .2s ease; }
.floating-whatsapp:hover { background: var(--green-hover); transform: translateY(-2px); }
.floating-whatsapp svg { width: 22px; fill: currentColor; }
.dialog-open .floating-whatsapp { opacity: 0; pointer-events: none; }
.mobile-dock { display: none; }

.product-dialog { width: min(1120px, calc(100% - 2rem)); height: min(760px, calc(100dvh - 2rem)); max-width: none; max-height: none; padding: 0; overflow: hidden; color: var(--ink); background: var(--white); border: 0; box-shadow: var(--shadow-strong); }
.product-dialog::backdrop { background: rgba(0, 0, 0, .76); backdrop-filter: blur(6px); }
.dialog-close { position: absolute; top: 1rem; right: 1rem; z-index: 6; width: 43px; height: 43px; padding: 0; color: var(--white); background: var(--ink); border: 1px solid #3e3e3c; font-size: 1.7rem; line-height: 1; }
.dialog-close:hover { color: var(--ink); background: var(--yellow); }
.dialog-layout { height: 100%; display: grid; grid-template-columns: .9fr 1.1fr; }
.dialog-image { min-width: 0; min-height: 0; display: grid; place-items: center; padding: clamp(1rem, 3vw, 2rem); background: #deddda; border-right: 1px solid var(--line); }
.dialog-image img { width: 100%; height: 100%; object-fit: contain; }
.dialog-content { min-width: 0; min-height: 0; display: grid; grid-template-rows: 1fr auto; overflow: hidden; }
.dialog-scroll { min-height: 0; overflow-y: auto; padding: clamp(2rem, 4.5vw, 4.3rem); padding-bottom: 1.5rem; }
.dialog-content h2 { margin-bottom: .3rem; font-size: clamp(3rem, 4.5vw, 4.8rem); }
.dialog-model { margin: 0 0 1.35rem; color: var(--muted); font-size: .77rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.dialog-scroll > p:not(.eyebrow, .dialog-model, .availability) { color: #555550; }
.dialog-rule { width: 46px; height: 4px; margin: 1.6rem 0; background: var(--yellow); }
.dialog-content h3 { margin: 0 0 .75rem; font-size: 1.4rem; text-transform: uppercase; }
.dialog-content ul { margin: 0; padding: 0; list-style: none; }
.dialog-content li { display: flex; gap: .6rem; padding: .45rem 0; color: #484844; border-bottom: 1px solid #ebe9e3; font-size: .82rem; }
.dialog-content li::before { content: "✓"; color: var(--red); font-weight: 800; }
.includes { margin: 1.5rem 0; padding: 1rem 1.1rem; background: #f2f0eb; border-left: 4px solid var(--yellow); }
.includes strong { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.includes p { margin: .3rem 0 0; color: #555550; font-size: .82rem; }
.availability { display: flex; align-items: center; gap: .55rem; color: #565651; font-size: .7rem; font-weight: 700; }
.dialog-actions { padding: 1rem clamp(2rem, 4.5vw, 4.3rem) 1.15rem; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -10px 25px rgba(0, 0, 0, .05); }
.dialog-actions p { margin: 0 0 .55rem; color: var(--muted); font-size: .66rem; font-weight: 700; text-align: center; text-transform: uppercase; }
.dialog-actions .button { width: 100%; }

.reveal { opacity: 1; transform: none; }
.js-motion .reveal { opacity: 0; transform: translateY(18px); transition: opacity .38s ease, transform .38s ease; }
.js-motion .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1320px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .filters { justify-content: flex-start; overflow-x: auto; padding-bottom: .15rem; scrollbar-width: thin; }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr); }
  .hero-copy { padding-inline: clamp(1.5rem, 4vw, 3.5rem); }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-card { min-height: 210px; }
  .p20s-section { grid-template-columns: 1fr; }
  .p20s-gallery { min-height: 650px; }
  .p20s-copy { min-height: 650px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 76px; }
  .utility-bar p:last-child { display: none; }
  .header-inner { min-height: 68px; }
  .brand img { width: 111px; height: 52px; }
  nav a:nth-child(2), nav a:nth-child(3) { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 570px; padding: 4.3rem clamp(1.25rem, 7vw, 4rem); }
  .hero h1 { max-width: 760px; }
  .hero-showcase { min-height: 620px; }
  .showcase-image { width: min(68%, 500px); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 1.2rem; }
  .section-heading > p { max-width: 650px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .buy-steps { grid-template-columns: 1fr; }
  .buy-steps li { min-height: 220px; }
  .service-section { grid-template-columns: 1fr; }
  .service-intro { max-width: 680px; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-section { grid-template-columns: 1fr; align-items: start; }
  .contact-action { max-width: 470px; text-align: left; }
  footer { grid-template-columns: 1.25fr .75fr .9fr; gap: 2rem; }
  .dialog-layout { grid-template-columns: .78fr 1.22fr; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 68px; }
  body { padding-bottom: calc(65px + env(safe-area-inset-bottom)); }
  h1 { font-size: clamp(3rem, 11.5vw, 4rem); }
  h2 { font-size: clamp(2.9rem, 12vw, 4rem); }
  .utility-bar { min-height: 28px; justify-content: center; font-size: .57rem; letter-spacing: .04em; }
  .site-header { position: sticky; }
  .header-inner { min-height: 62px; padding: .25rem 1rem; }
  .brand img { width: 112px; height: 51px; }
  nav { gap: .7rem; }
  nav a { font-size: .72rem; }
  .nav-cta { min-height: 38px; padding: .45rem .7rem; }
  .hero-copy { min-height: 540px; padding: 3.5rem 1.2rem 3rem; }
  .hero-text { max-width: 540px; font-size: .95rem; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 1.5rem; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: .45rem; margin-top: 2rem; }
  .hero-proof strong { font-size: 1.25rem; }
  .hero-proof span { font-size: .62rem; line-height: 1.35; }
  .hero-showcase { min-height: 500px; }
  .showcase-topline { top: 1rem; right: 1rem; left: 1rem; }
  .showcase-image { top: 43%; width: min(79%, 390px); }
  .showcase-card { bottom: 2.5rem; align-items: flex-start; flex-direction: column; gap: .6rem; padding: .9rem; }
  .showcase-dots { bottom: 1rem; }
  .showcase-card button { align-self: stretch; text-align: left; }
  .trust-strip div { min-height: 92px; padding: .95rem; }
  .trust-strip strong { font-size: .98rem; }
  .trust-strip small { font-size: .62rem; line-height: 1.4; }
  .section-shell { padding: 4.8rem 1rem; }
  .section-kicker { margin-bottom: 2.7rem; }
  .section-heading { margin-bottom: 2.2rem; }
  .section-heading > p { font-size: .88rem; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-card { min-height: 180px; padding: .9rem; }
  .category-card:last-child { grid-column: 1 / -1; min-height: 145px; }
  .category-card svg { width: 42px; height: 42px; }
  .category-card strong { max-width: 130px; font-size: 1.05rem; }
  .category-card > b { right: .9rem; bottom: .9rem; }
  .catalog-section { padding-top: 1rem; }
  .catalog-toolbar { position: static; grid-template-columns: 1fr; margin: 0; padding: .65rem; background: var(--white); border: 1px solid var(--line); }
  .search-control { min-height: 46px; background: #faf9f6; }
  .filters { position: relative; flex-wrap: nowrap; justify-content: flex-start; margin-right: -.65rem; padding-right: .65rem; overflow-x: auto; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filters::after { content: ""; position: sticky; right: 0; width: 20px; flex: 0 0 20px; background: linear-gradient(to right, transparent, var(--white)); }
  .filter-button { flex: 0 0 auto; }
  .catalog-meta { align-items: flex-start; flex-direction: column; margin: 1rem 0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
  .product-content { min-height: 225px; padding: .8rem; }
  .product-category { font-size: .56rem; }
  .product-content h3 { min-height: 2.5em; font-size: 1.15rem; }
  .spec-preview { font-size: .66rem; }
  .model-chip, .product-badge { padding: .23rem .36rem; font-size: .51rem; }
  .model-chip { left: .45rem; bottom: .45rem; }
  .product-badge { top: .45rem; right: .45rem; }
  .card-actions { align-items: stretch; flex-direction: column; }
  .details-label { font-size: .6rem; }
  .quote-link { width: 100%; }
  .p20s-gallery { min-height: 490px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.35fr .65fr; padding: .7rem; }
  .p20s-gallery .p20s-main { grid-column: 1 / -1; grid-row: auto; }
  .p20s-copy { min-height: auto; padding: 4.8rem 1.2rem; }
  .p20s-copy::before { border-top-width: 65px; border-left-width: 65px; }
  .p20s-copy h2 { font-size: clamp(3.2rem, 13vw, 4.4rem); }
  .buy-steps li { min-height: 200px; padding: 1.25rem; }
  .service-section { padding: 4.8rem 1rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 185px; }
  .faq-list summary { font-size: 1.12rem; }
  .contact-section { padding: 4.8rem 1rem; }
  .contact-copy h2 { font-size: clamp(3.2rem, 13vw, 4.4rem); }
  footer { grid-template-columns: 1fr 1fr; padding: 3.5rem 1.2rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { display: none; }
  .mobile-dock { position: fixed; right: 0; bottom: 0; left: 0; z-index: 60; display: grid; grid-template-columns: .8fr 1.2fr; min-height: calc(64px + env(safe-area-inset-bottom)); padding: .45rem .45rem calc(.45rem + env(safe-area-inset-bottom)); background: rgba(9, 9, 9, .96); border-top: 1px solid #353533; backdrop-filter: blur(12px); }
  .mobile-dock a { display: flex; align-items: center; justify-content: center; gap: .45rem; color: var(--white); font-size: .68rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
  .mobile-dock a + a { background: var(--green); }
  .mobile-dock .status-dot { background: var(--white); box-shadow: 0 0 0 4px rgba(255, 255, 255, .12); }
  .dialog-open .mobile-dock { display: none; }
  .product-dialog { inset: 0; width: 100%; height: 100dvh; margin: 0; }
  .dialog-layout { display: block; height: 100%; overflow-y: auto; }
  .dialog-image { height: min(44dvh, 380px); padding: .75rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .dialog-content { display: block; overflow: visible; }
  .dialog-scroll { overflow: visible; padding: 2rem 1.1rem 1rem; }
  .dialog-content h2 { padding-right: 2.6rem; font-size: clamp(2.8rem, 13vw, 4rem); }
  .dialog-actions { position: sticky; bottom: 0; padding: .75rem 1rem calc(.8rem + env(safe-area-inset-bottom)); }
  .dialog-close { position: fixed; top: .7rem; right: .7rem; }
  .js-motion .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: 42% 58%; }
  .product-image { min-height: 250px; aspect-ratio: auto; border-right: 1px solid var(--line); border-bottom: 0; }
  .product-content { min-height: 250px; padding: .9rem; }
  .product-category { font-size: .6rem; }
  .product-content h3 { min-height: 0; font-size: 1.28rem; }
  .spec-preview { font-size: .74rem; }
  .model-chip, .product-badge { font-size: .55rem; }
}

@media (max-width: 350px) {
  nav > a:first-child { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product-content { min-height: 220px; }
}

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

@media print {
  .utility-bar, .site-header, .catalog-toolbar, .floating-whatsapp, .mobile-dock, .hero-actions, .contact-section, .product-dialog, .quote-link, .card-open { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { color: #000; background: #fff; }
  .hero-showcase, .category-section, .catalog-section { background: #fff; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card { break-inside: avoid; box-shadow: none; }
}
