:root {
  --green: #24853b;
  --green-dark: #17672c;
  --ink: #172023;
  --muted: #5d686d;
  --line: #dfe5e2;
  --soft: #f2f4f3;
  --soft-2: #f7f8f7;
  --white: #fff;
  --dark: #11181a;
  --dark-2: #182123;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 16px 44px rgba(20, 31, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.pdf-modal-open {
  overflow: hidden;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.skip-link {
  left: 16px;
  position: absolute;
  top: -80px;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 226, 0.9);
  position: sticky;
  top: 0;
  z-index: 15;
  backdrop-filter: blur(18px);
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 275px 1fr auto;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 116px;
  padding: 0 28px;
}

.logo-link {
  align-items: center;
  display: flex;
}

.logo-link img {
  height: auto;
  max-height: 98px;
  object-fit: contain;
  object-position: left center;
  width: 246px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.main-nav a {
  color: #253035;
  font-size: 14px;
  font-weight: 700;
  padding: 30px 0;
  position: relative;
}

.main-nav a::after {
  background: var(--green);
  bottom: 22px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

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

.header-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.language-switch {
  align-items: center;
  border: 1px solid var(--line);
  display: flex;
  height: 36px;
}

.language-switch a {
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  height: 100%;
  justify-content: center;
  min-width: 38px;
}

.language-switch a:last-child {
  border-right: 0;
}

.language-switch a.active {
  background: var(--green);
  color: var(--white);
}

.header-cta,
.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta,
.button.primary {
  background: var(--green);
  color: var(--white);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.button.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.button.light {
  background: var(--white);
  color: var(--green-dark);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.whatsapp-button,
.footer-whatsapp {
  align-items: center;
  background: #1f8f43;
  color: var(--white);
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  gap: 10px;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  transition: background 180ms ease, transform 180ms ease;
}

.whatsapp-button:hover,
.footer-whatsapp:hover {
  background: #176f34;
  color: var(--white);
  transform: translateY(-1px);
}

.whatsapp-button svg,
.footer-whatsapp svg {
  height: 20px;
  width: 20px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 0;
  position: relative;
  width: 42px;
  z-index: 3;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 7px auto;
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms ease;
  will-change: opacity, transform;
  width: 24px;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.25) 76%, rgba(255, 255, 255, 0.1) 100%),
    radial-gradient(circle at 80% 20%, rgba(36, 133, 59, 0.12), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-media img:nth-child(2) {
  bottom: 60px;
  box-shadow: var(--shadow);
  height: 34%;
  right: 8%;
  width: 32%;
}

.hero-inner,
.section,
.trust-band,
.final-cta,
.page-hero,
.product-hero,
.spec-strip {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 28px;
  padding-right: 28px;
}

.hero-inner {
  align-items: center;
  display: flex;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 610px;
  padding: 72px 0 92px;
}

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

h1 {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.05;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
}

.hero-copy p,
.page-hero p,
.product-copy p {
  color: var(--muted);
  font-size: 20px;
  max-width: 590px;
}

.product-alias {
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 850;
  margin-bottom: 16px;
  margin-top: -8px;
}

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

.trust-band {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  max-width: none;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.service-grid {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 28px;
}

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

.service-item {
  align-items: center;
  border-right: 1px solid #cfd8d4;
  display: grid;
  gap: 22px;
  grid-template-columns: 56px 1fr;
  min-height: 152px;
  padding: 28px 34px;
}

.service-item:last-child {
  border-right: 0;
}

@media (min-width: 1081px) {
  .service-item:first-child {
    padding-left: 0;
  }

  .service-item:last-child {
    padding-right: 0;
  }
}

.line-icon,
.category-icon {
  color: var(--green);
}

.line-icon svg {
  height: 48px;
  width: 48px;
}

.service-item h2 {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.service-item p {
  color: #384346;
  font-size: 13px;
  margin-bottom: 0;
}

.brand-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 26px 28px 30px;
  text-align: center;
  width: 100%;
}

.brand-strip p,
.brand-row {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.brand-strip p {
  display: inline-block;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 20px;
  padding-bottom: 9px;
  position: relative;
  text-transform: uppercase;
}

.brand-strip p::after {
  background: var(--green);
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 84px;
}

.brand-row {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, 1fr);
}

.brand-logo {
  border-right: 1px solid var(--line);
  min-height: 56px;
  padding: 0 22px;
}

.brand-logo:last-child {
  border-right: 0;
}

.brand-logo strong {
  color: #064f8c;
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.brand-logo span {
  color: #4f5a5d;
  display: block;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 5px;
}

.brand-corali strong {
  color: #d51d1c;
}

.brand-olimpia strong,
.brand-cofim strong {
  color: var(--green);
}

.section {
  padding-bottom: 82px;
  padding-top: 82px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  align-items: center;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 9px;
  text-transform: uppercase;
}

.text-link svg,
.card-arrow svg,
.featured-item > svg {
  height: 20px;
  width: 20px;
}

.legal-hero {
  background: var(--soft-2);
  min-height: auto;
}

.legal-updated {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
  margin-top: 18px;
  text-transform: uppercase;
}

.legal-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) 280px;
}

.legal-article {
  display: grid;
  gap: 28px;
}

.legal-article section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.legal-article section:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-article h2,
.legal-side h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.legal-article p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
  margin: 0 0 12px;
}

.legal-article a,
.checkbox a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-side {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  position: sticky;
  top: 112px;
}

.legal-side a {
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: block;
  font-weight: 750;
  padding: 12px 0;
}

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

.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  border-color: rgba(36, 133, 59, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.category-card img {
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  width: 100%;
}

.category-card.has-slider > img {
  display: none;
}

.category-card__media {
  aspect-ratio: 1.55 / 1;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.category-card__media img {
  aspect-ratio: auto;
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transition: opacity 700ms ease;
  width: 100%;
}

.category-card__media img.is-active {
  opacity: 1;
}

.category-card__media::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 50%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.category-card__dots {
  bottom: 10px;
  display: flex;
  gap: 6px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.category-card__dot {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  height: 6px;
  transition: background 220ms ease, width 220ms ease;
  width: 6px;
}

.category-card__dot.is-active {
  background: var(--white, #fff);
  width: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .category-card__media img {
    transition: none;
  }
}

.category-body {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: 34px 1fr 20px;
  min-height: 122px;
  padding: 18px 16px;
}

.category-icon svg {
  height: 30px;
  width: 30px;
}

.category-body strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.category-body small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  line-height: 1.4;
}

.card-arrow {
  color: var(--green);
  margin-top: 2px;
}

.editorial-section {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 0.82fr;
}

.editorial-copy p {
  color: var(--muted);
  font-size: 18px;
}

.editorial-image {
  margin: 0;
}

.editorial-image img {
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  width: 100%;
}

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.check-list li {
  border-top: 1px solid var(--line);
  color: #253035;
  font-weight: 650;
  padding: 14px 0 14px 28px;
  position: relative;
}

.check-list li::before {
  background: var(--green);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 22px;
  width: 8px;
}

.featured-section,
.process-section,
.catalog-section {
  background: var(--soft-2);
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.featured-list {
  display: grid;
  gap: 16px;
}

.featured-item,
.catalog-row {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 150px 1fr 28px;
  padding: 14px;
}

.featured-item img,
.catalog-row img {
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  width: 100%;
}

.featured-item strong,
.catalog-row strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.featured-item small,
.catalog-row em {
  color: var(--muted);
  display: block;
  font-size: 14px;
  font-style: normal;
}

.featured-item > svg,
.catalog-row > svg {
  color: var(--green);
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.process-grid article {
  border-top: 2px solid var(--green);
  padding: 26px 28px 24px 0;
}

.process-grid span {
  color: var(--green);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.process-grid article h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.process-grid article p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.final-cta {
  align-items: center;
  background: var(--dark);
  color: var(--white);
  display: flex;
  gap: 36px;
  justify-content: space-between;
  max-width: none;
  padding-bottom: 54px;
  padding-top: 54px;
}

.final-cta > div {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--max) / 2);
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(26px, 3vw, 42px);
  margin-bottom: 12px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
}

.page-hero,
.product-hero {
  padding-bottom: 74px;
  padding-top: 74px;
}

.page-hero {
  background: var(--soft-2);
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.page-hero.compact {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: 1fr 420px;
}

.page-hero img {
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.breadcrumb {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.products-hero {
  align-items: stretch;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(440px, 0.94fr) minmax(520px, 1.06fr);
  min-height: 320px;
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 0;
}

.products-hero__copy {
  align-self: center;
  padding: 42px 0;
  position: relative;
  z-index: 1;
}

.products-hero h1 {
  max-width: 560px;
}

.products-hero__media {
  height: 330px;
  margin: 0;
  min-height: 320px;
  position: relative;
}

.products-hero__media::before {
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.82) 18%, rgba(255, 255, 255, 0) 44%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.products-hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  width: 100%;
}

.products-category-section {
  background: var(--white);
  padding-bottom: 42px;
}

.products-page .products-category-section .category-grid {
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.products-page .products-category-section .category-card {
  border-radius: 3px;
  box-shadow: none;
}

.products-page .products-category-section .category-card:hover {
  box-shadow: 0 12px 30px rgba(20, 31, 35, 0.1);
}

.products-page .products-category-section .category-card__media,
.products-page .products-category-section .category-card img {
  aspect-ratio: 1.22 / 1;
}

.products-page .products-category-section .category-card__dots {
  display: none;
}

.products-page .products-category-section .category-body {
  gap: 10px;
  grid-template-columns: 30px 1fr 18px;
  min-height: 154px;
  padding: 18px 14px;
}

.products-page .products-category-section .category-icon svg {
  height: 28px;
  width: 28px;
}

.products-page .products-category-section .category-body strong {
  font-size: 14px;
}

.products-page .products-category-section .category-body small {
  font-size: 12px;
}

.products-page .catalog-section {
  background: var(--white);
  padding-top: 26px;
}

.catalog-category-list {
  display: grid;
  gap: 10px;
}

.catalog-category-row {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  display: grid;
  gap: 24px;
  grid-template-columns: 260px minmax(0, 1fr) 210px 112px;
  min-height: 108px;
  padding: 14px 18px;
  scroll-margin-top: 96px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.catalog-category-row:hover,
.catalog-category-row:target {
  border-color: rgba(36, 133, 59, 0.48);
  box-shadow: 0 10px 28px rgba(20, 31, 35, 0.08);
  transform: translateY(-1px);
}

.catalog-category-row:target {
  background: rgba(36, 133, 59, 0.045);
}

.catalog-category-head {
  align-items: center;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 42px 1fr;
  min-height: 80px;
  padding-right: 20px;
}

.catalog-category-head .category-icon svg {
  height: 38px;
  width: 38px;
}

.catalog-category-head strong {
  font-size: 17px;
  line-height: 1.18;
}

.catalog-category-row ul {
  color: #253035;
  display: grid;
  font-size: 14px;
  gap: 7px;
  line-height: 1.55;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.catalog-category-row li {
  margin: 0;
}

.catalog-product-link {
  background: rgba(246, 249, 247, 0.92);
  border: 1px solid rgba(209, 219, 213, 0.95);
  border-radius: 4px;
  color: #253035;
  display: grid;
  gap: 2px;
  line-height: 1.35;
  min-height: 38px;
  padding: 9px 32px 9px 12px;
  position: relative;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.catalog-product-link::after {
  border-right: 2px solid var(--green);
  border-top: 2px solid var(--green);
  content: "";
  height: 7px;
  opacity: 0.82;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
}

.catalog-product-link small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.catalog-product-link:hover {
  background: rgba(36, 133, 59, 0.08);
  border-color: rgba(36, 133, 59, 0.34);
  color: var(--green-dark);
  text-decoration: none;
}

.catalog-category-image {
  display: block;
}

.catalog-category-image img {
  aspect-ratio: 1.9 / 1;
  display: block;
  height: 82px;
  object-fit: cover;
  width: 100%;
}

.catalog-category-action {
  align-items: center;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 9px;
  justify-content: flex-end;
  text-decoration: none;
}

.catalog-category-action svg {
  height: 20px;
  width: 20px;
}

.products-consult-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(247, 248, 247, 0.96) 0%, rgba(247, 248, 247, 0.88) 54%, rgba(247, 248, 247, 0.72) 100%),
    url("/assets/images/home-line-fresh.jpg") center / cover;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: 72px 1fr auto;
  max-width: none;
  padding: 42px max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.products-consult-icon {
  align-items: center;
  color: var(--green);
  display: flex;
  justify-content: center;
}

.products-consult-icon svg {
  height: 54px;
  width: 54px;
}

.products-consult-cta h2 {
  font-size: 30px;
  margin-bottom: 6px;
}

.products-consult-cta p {
  color: var(--muted);
  margin-bottom: 0;
}

.catalog-search {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  min-width: 320px;
  text-transform: uppercase;
}

.catalog-search input {
  border: 1px solid var(--line);
  font: inherit;
  min-height: 46px;
  padding: 0 14px;
  text-transform: none;
}

.catalog-list {
  display: grid;
  gap: 12px;
}

.catalog-row small {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.product-hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 0.82fr;
}

.product-hero h1,
.page-hero h1 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.product-hero figure {
  background: var(--soft-2);
  margin: 0;
}

.product-hero img {
  aspect-ratio: 1.2 / 1;
  object-fit: contain;
  width: 100%;
}

.product-hero__media {
  aspect-ratio: 1.2 / 1;
  background: var(--soft-2);
  cursor: grab;
  display: block;
  margin: 0;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  user-select: none;
  width: 100%;
}

.product-hero__media.is-dragging {
  cursor: grabbing;
}

.product-hero__media img {
  aspect-ratio: auto;
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 700ms ease;
  width: 100%;
}

.product-hero__media img.is-active {
  opacity: 1;
}

.product-hero__media::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.product-hero__dots {
  bottom: 12px;
  display: flex;
  gap: 6px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.product-hero__dot {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  height: 6px;
  transition: background 220ms ease, width 220ms ease;
  width: 6px;
}

.product-hero__dot.is-active {
  background: var(--white, #fff);
  width: 18px;
}

.product-gallery-section {
  padding-bottom: 28px;
}

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

.product-gallery figure {
  background: var(--white);
  border: 1px solid var(--line);
  margin: 0;
  overflow: hidden;
}

.product-gallery img {
  aspect-ratio: 1.45 / 1;
  background: var(--soft-2);
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.product-gallery-slider {
  display: grid;
  gap: 18px;
  outline: 0;
}

.gallery-stage {
  background: var(--soft-2);
  border: 1px solid var(--line);
  display: grid;
  min-height: 520px;
  overflow: hidden;
  place-items: center;
  position: relative;
}

.gallery-main {
  display: grid;
  height: 100%;
  margin: 0;
  place-items: center;
  width: 100%;
}

.gallery-main img {
  aspect-ratio: 1.55 / 1;
  background: var(--soft-2);
  height: 100%;
  max-height: 620px;
  object-fit: contain;
  transition: opacity 160ms ease, transform 160ms ease;
  width: 100%;
}

.gallery-main img.is-changing {
  opacity: 0.28;
  transform: scale(0.99);
}

.gallery-control {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  height: 46px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 46px;
  z-index: 2;
}

.gallery-control:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-50%) scale(1.04);
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-prev svg {
  transform: rotate(180deg);
}

.gallery-control svg {
  height: 22px;
  width: 22px;
}

.gallery-counter {
  background: rgba(17, 24, 26, 0.78);
  bottom: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  padding: 6px 10px;
  position: absolute;
  right: 18px;
}

.gallery-thumbs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
}

.gallery-thumb {
  background: var(--soft-2);
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.72;
  overflow: hidden;
  padding: 0;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.gallery-thumb.active {
  border-color: var(--green);
  opacity: 1;
}

.gallery-thumb:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.gallery-thumb img {
  aspect-ratio: 1.25 / 1;
  background: var(--white);
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.document-section {
  padding-top: 28px;
}

.document-list {
  border: 1px solid var(--line);
  display: grid;
}

.document-link {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: 16px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  padding: 20px 24px;
}

.document-link + .document-link {
  border-top: 1px solid var(--line);
}

.document-link__icon {
  align-items: center;
  background: var(--soft);
  color: var(--green);
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.document-link__icon svg {
  height: 24px;
  width: 24px;
}

.document-link__title {
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.document-link__action {
  align-items: center;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

.document-link__action svg {
  height: 18px;
  width: 18px;
}

.product-video-section {
  padding-bottom: 28px;
  padding-top: 28px;
}

.product-video-list {
  display: grid;
  gap: 18px;
}

.product-video-card {
  background: var(--soft-2);
  border: 1px solid var(--line);
  margin: 0;
}

.product-video-card video {
  aspect-ratio: 16 / 9;
  background: var(--dark);
  display: block;
  width: 100%;
}

.product-video-card figcaption {
  background: var(--white);
  border-top: 1px solid var(--line);
  font-weight: 850;
  padding: 16px 18px;
}

.pdf-modal {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 28px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 90;
}

.pdf-modal[hidden] {
  display: none;
}

.pdf-modal__backdrop {
  background: rgba(17, 24, 26, 0.72);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.pdf-modal__panel {
  background: var(--white);
  box-shadow: 0 28px 90px rgba(17, 24, 26, 0.34);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: min(86vh, 940px);
  max-width: 1120px;
  position: relative;
  width: min(100%, 1120px);
}

.pdf-modal__header,
.pdf-modal__footer {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 18px 22px;
}

.pdf-modal__header {
  border-bottom: 1px solid var(--line);
}

.pdf-modal__header h2 {
  font-size: 22px;
  margin: 0;
  overflow-wrap: anywhere;
}

.pdf-modal__close {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
  width: 42px;
}

.pdf-modal__close:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.pdf-modal__frame {
  background: var(--soft-2);
  border: 0;
  height: 100%;
  width: 100%;
}

.pdf-modal__footer {
  border-top: 1px solid var(--line);
}

.pdf-modal__footer p {
  color: var(--muted);
  margin: 0;
}

.pdf-modal__footer .button {
  flex: 0 0 auto;
  min-height: 44px;
}

.spec-strip {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.spec-strip span {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  min-height: 86px;
  padding-right: 18px;
}

.spec-strip span:last-child {
  border-right: 0;
}

.spec-strip svg {
  color: var(--green);
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.product-content,
.contact-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.article-flow {
  max-width: 760px;
}

.article-flow h2 {
  font-size: 30px;
  margin-bottom: 16px;
  margin-top: 38px;
}

.article-flow h2:first-child {
  margin-top: 0;
}

.spec-table {
  border-collapse: collapse;
  width: 100%;
}

.spec-table th,
.spec-table td {
  border-top: 1px solid var(--line);
  padding: 16px 12px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  color: var(--green-dark);
  width: 34%;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.quote-card {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 28px;
  position: sticky;
  top: 112px;
}

.quote-card h2 {
  font-size: 26px;
}

.quote-card a {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 10px;
  margin-top: 14px;
}

.quote-card .whatsapp-button {
  color: var(--white);
  justify-content: center;
  width: 100%;
}

.quote-card a:not(.whatsapp-button) svg {
  color: var(--green);
  height: 22px;
  width: 22px;
}

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

.mini-card {
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding: 14px;
}

.mini-card img {
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.contact-layout {
  grid-template-columns: 280px minmax(0, 1fr) 320px;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-cards a,
.contact-cards p {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 26px 1fr;
  margin: 0;
  padding: 18px;
}

.contact-cards svg {
  color: var(--green);
  height: 24px;
  width: 24px;
}

.contact-cards .contact-whatsapp {
  background: #eaf7ee;
  border-color: rgba(31, 143, 67, 0.28);
}

.contact-cards strong,
.contact-cards small {
  display: block;
}

.contact-cards small {
  color: var(--muted);
}

.offer-form {
  border: 1px solid var(--line);
  padding: 28px;
}

.form-hp {
  height: 1px;
  left: -100vw;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

label {
  color: #2c383b;
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.checkbox {
  align-items: start;
  display: flex;
  gap: 10px;
  line-height: 1.4;
}

.checkbox input {
  min-height: auto;
  width: auto;
}

.turnstile-field {
  margin: 18px 0;
  min-height: 65px;
}

.form-status {
  border: 1px solid transparent;
  font-weight: 800;
  margin: 16px 0 0;
  padding: 14px;
}

.form-status.is-success {
  background: rgba(36, 133, 59, 0.1);
  border-color: rgba(36, 133, 59, 0.28);
  color: var(--green-dark);
}

.form-status.is-error {
  background: rgba(189, 50, 50, 0.1);
  border-color: rgba(189, 50, 50, 0.26);
  color: #9f2323;
}

.offer-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.site-footer {
  background: var(--dark);
  color: var(--white);
}

.footer-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.35fr 1fr 0.75fr 0.95fr 0.48fr 0.7fr;
  margin: 0 auto;
  max-width: var(--max);
  padding: 64px 28px 48px;
}

.footer-brand img {
  background: transparent;
  border-radius: 4px;
  filter: drop-shadow(0 1px 6px rgba(255, 255, 255, 0.18));
  height: auto;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
  width: 320px;
}

.footer-brand p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h2 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  font-size: 14px;
  margin: 0 0 10px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col .footer-whatsapp {
  color: var(--white);
  display: inline-flex;
  margin-top: 4px;
  width: fit-content;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 auto;
  max-width: var(--max);
  padding: 20px 28px 26px;
}

.footer-bottom p {
  font-size: 13px;
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .service-item,
  .category-card {
    animation: rise 520ms ease both;
  }

  .service-item:nth-child(2),
  .category-card:nth-child(2) {
    animation-delay: 80ms;
  }

  .service-item:nth-child(3),
  .category-card:nth-child(3) {
    animation-delay: 140ms;
  }
}

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

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 190px auto 42px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .main-nav,
  .header-actions {
    background: var(--white);
    border-top: 1px solid var(--line);
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    padding: 12px 0;
  }

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

  .main-nav {
    flex-wrap: wrap;
  }

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

  .main-nav a::after {
    bottom: 3px;
  }

  .hero-media img {
    width: 78%;
  }

  .category-grid,
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

  .products-page .products-category-section .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-category-row {
    grid-template-columns: 230px minmax(0, 1fr) 160px 96px;
  }

  .service-grid,
  .brand-row,
  .process-grid,
  .spec-strip,
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(2),
  .brand-logo:nth-child(2),
  .spec-strip span:nth-child(2) {
    border-right: 0;
  }

  .editorial-section,
  .product-hero,
  .product-content,
  .contact-layout,
  .legal-layout,
  .page-hero.compact {
    grid-template-columns: 1fr;
  }

  .quote-card {
    position: static;
  }

  .legal-side {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    height: 77px;
    overflow: visible;
  }

  .site-header.nav-open {
    z-index: 60;
  }

  .header-inner {
    grid-template-columns: 166px 1fr 42px;
    grid-template-rows: 77px;
    align-content: start;
    height: 77px;
    min-height: 77px;
    padding: 0 18px;
    position: relative;
    row-gap: 0;
  }

  .logo-link {
    align-self: center;
    grid-column: 1;
    grid-row: 1;
    height: 77px;
  }

  .logo-link img {
    height: 58px;
    max-width: 150px;
    width: auto;
  }

  .menu-toggle {
    align-self: center;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    border: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    box-shadow: 0 18px 40px rgba(17, 24, 26, 0.12);
    display: flex;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: auto;
    transform: translate(-50%, -10px);
    transition:
      opacity 180ms ease,
      transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1),
      visibility 0s linear 240ms;
    visibility: hidden;
    width: 100vw;
    will-change: opacity, transform;
    z-index: 30;
  }

  .main-nav {
    align-items: stretch;
    border-bottom: 0;
    flex-direction: column;
    gap: 0;
    grid-row: 2;
    top: 100%;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition-delay: 0s;
    visibility: visible;
  }

  .main-nav a {
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    padding: 16px 4px;
    width: 100%;
  }

  .header-actions {
    align-items: stretch;
    border-top: 0;
    flex-direction: column;
    gap: 12px;
    grid-row: 3;
    padding-bottom: 18px;
    top: calc(100% + 318px);
  }

  .language-switch {
    align-self: flex-start;
  }

  .header-cta {
    min-height: 50px;
  }

  .hero {
    display: block;
    min-height: calc(100svh - 76px);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.42) 62%, rgba(255, 255, 255, 0.62) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.02));
  }

  .hero-media {
    inset: 0;
    height: auto;
    margin-top: 0;
    order: initial;
    position: absolute;
  }

  .hero-media img {
    filter: saturate(1.12) contrast(1.04);
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: 72% 18%;
    position: absolute;
    right: auto;
    width: 100%;
  }

  .hero-media img:nth-child(2) {
    display: none;
  }

  .hero-inner {
    align-items: end;
    min-height: calc(100svh - 76px);
    order: initial;
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-copy {
    background: linear-gradient(180deg, rgba(246, 251, 255, 0) 0%, rgba(246, 251, 255, 0.36) 20%, rgba(246, 251, 255, 0.5) 100%);
    box-sizing: border-box;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    padding: 46px 28px 40px;
    width: 100vw;
  }

  .hero-copy h1 {
    text-shadow: 0 1px 14px rgba(255, 255, 255, 0.68);
  }

  .hero-copy p {
    color: #34464d;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.78);
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.94;
    margin-bottom: 24px;
  }

  .page-hero h1,
  .product-hero h1 {
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 0.98;
  }

  .hero-copy p,
  .page-hero p,
  .product-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .section-heading,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .button {
    min-height: 52px;
    width: 100%;
  }

  .section,
  .page-hero,
  .product-hero {
    padding-bottom: 58px;
    padding-top: 58px;
  }

  .page-hero {
    padding-left: 28px;
    padding-right: 28px;
  }

  .products-hero {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .products-hero__media {
    height: 230px;
    min-height: 230px;
    order: -1;
    width: 100%;
  }

  .products-hero__media::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--white) 100%);
  }

  .products-hero__copy {
    padding: 34px 28px 48px;
  }

  .page-hero.compact {
    gap: 28px;
  }

  .page-hero.compact img,
  .product-hero figure {
    order: -1;
  }

  .page-hero.compact img {
    margin: -58px calc(50% - 50vw) 24px;
    max-width: none;
    width: 100vw;
  }

  .product-hero figure {
    margin: -58px -28px 24px;
    width: calc(100% + 56px);
  }

  .page-hero.compact img,
  .product-hero figure img {
    aspect-ratio: 1.15 / 1;
    object-fit: cover;
    object-position: 60% center;
  }

  .product-hero__media {
    aspect-ratio: 1.15 / 1;
  }

  .product-hero__media img {
    aspect-ratio: auto;
  }

  .gallery-stage {
    min-height: 360px;
  }

  .gallery-control {
    height: 42px;
    width: 42px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-counter {
    bottom: 10px;
    right: 10px;
  }

  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .gallery-thumb {
    flex: 0 0 86px;
    scroll-snap-align: start;
  }

  .document-link {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 16px;
  }

  .document-link__icon {
    height: 42px;
    width: 42px;
  }

  .document-link__action {
    grid-column: 2;
    justify-self: start;
  }

  .pdf-modal {
    padding: 12px;
  }

  .pdf-modal__panel {
    height: 92vh;
  }

  .pdf-modal__header,
  .pdf-modal__footer {
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }

  .pdf-modal__header {
    align-items: center;
    flex-direction: row;
  }

  .pdf-modal__header h2 {
    font-size: 18px;
  }

  .pdf-modal__footer .button {
    width: 100%;
  }

  .breadcrumb {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .service-grid,
  .brand-row,
  .category-grid,
  .product-gallery,
  .process-grid,
  .spec-strip,
  .related-grid,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-item,
  .brand-logo,
  .spec-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-item:last-child,
  .brand-logo:last-child,
  .spec-strip span:last-child {
    border-bottom: 0;
  }

  .service-item {
    gap: 16px;
    grid-template-columns: 42px 1fr;
    min-height: auto;
    padding: 24px 28px;
  }

  .line-icon svg {
    height: 36px;
    width: 36px;
  }

  .brand-strip {
    padding: 24px 28px 26px;
  }

  .brand-logo {
    min-height: auto;
    padding: 16px 0;
  }

  .category-body {
    grid-template-columns: 38px 1fr 20px;
    min-height: auto;
    padding: 18px;
  }

  .category-card img {
    aspect-ratio: 1.75 / 1;
  }

  .category-card__media {
    aspect-ratio: 1.75 / 1;
  }

  .category-card__media img {
    aspect-ratio: auto;
  }

  .products-page .products-category-section .category-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .editorial-section {
    gap: 28px;
  }

  .editorial-image {
    margin-left: -28px;
    margin-right: -28px;
  }

  .editorial-image img {
    aspect-ratio: 1.2 / 1;
    border-radius: 0;
  }

  .featured-item,
  .catalog-row {
    border-radius: var(--radius);
    grid-template-columns: 96px 1fr;
    padding: 10px;
  }

  .featured-item {
    align-items: start;
    gap: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
    padding: 0;
  }

  .featured-item img {
    aspect-ratio: 16 / 9;
    display: block;
    width: 100%;
  }

  .featured-item span {
    padding: 18px;
  }

  .featured-item strong {
    font-size: 19px;
    line-height: 1.22;
  }

  .featured-item small {
    font-size: 15px;
    line-height: 1.5;
  }

  .catalog-category-row {
    align-items: start;
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .catalog-category-head {
    border-right: 0;
    min-height: auto;
    padding-right: 0;
  }

  .catalog-category-row ul {
    display: grid;
    font-size: 15px;
    gap: 8px;
    line-height: 1.35;
    list-style: none;
    padding-left: 0;
    width: 100%;
  }

  .catalog-category-row li {
    margin: 0;
  }

  .catalog-product-link {
    background: rgba(246, 249, 247, 0.9);
    border: 1px solid rgba(209, 219, 213, 0.95);
    border-radius: 4px;
    color: var(--ink);
    min-height: 44px;
    padding: 11px 36px 11px 12px;
    position: relative;
  }

  .catalog-product-link::after {
    border-right: 2px solid var(--green);
    border-top: 2px solid var(--green);
    content: "";
    height: 7px;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 7px;
  }

  .catalog-product-link small {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 3px;
  }

  .catalog-category-image img {
    height: auto;
  }

  .catalog-category-action {
    justify-content: flex-start;
  }

  .products-consult-cta {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .products-consult-cta .button {
    width: 100%;
  }

  .featured-item > svg,
  .catalog-row > svg {
    display: none;
  }

  .catalog-search {
    min-width: 100%;
  }

  .product-hero {
    gap: 0;
  }

  .product-copy {
    padding-top: 0;
  }

  .spec-strip span {
    min-height: 72px;
  }

  .article-flow h2 {
    font-size: 26px;
  }

  .quote-card,
  .offer-form,
  .contact-cards a,
  .contact-cards p {
    border-radius: var(--radius);
  }

  .contact-layout {
    gap: 24px;
  }

  .footer-inner {
    gap: 22px;
    padding-top: 46px;
  }

  .footer-brand {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 210px) 1fr;
  }

  .footer-brand img {
    background: transparent;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    width: 210px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
  }
}
