:root {
  --ink: #10141a;
  --muted: #68717d;
  --paper: #fff;
  --soft: #f4f6f9;
  --line: #dfe5ed;
  --red: #cd1f3d;
  --orange: #ff6b00;
  --blue: #00a7d8;
  --dark: #071019;
  --navy: #08204b;
  --page: 1320px;
  --pad: clamp(18px, 4vw, 46px);
  --header: 86px;
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea {
  max-width: 100%;
  font: inherit;
}
button { cursor: pointer; }

.global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--page);
  height: var(--header);
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 300px;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.brand {
  display: flex;
  align-items: flex-start;
  width: 180px;
  height: var(--header);
  padding-top: 10px;
  overflow: visible;
  text-decoration: none;
}
.brand img {
  width: 124px;
  height: 124px;
  object-fit: contain;
  box-shadow: 0 14px 32px rgba(75, 0, 9, .16);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 30px);
}
.site-nav a,
.nav-link-button {
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #0d1724;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red);
  background: #eef2f6;
}
.header-actions {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.header-location {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef2f6;
  color: #0d1b2c;
}
.header-location svg { width: 22px; height: 22px; fill: currentColor; }
.header-search {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: #111;
  font-weight: 700;
  text-decoration: none;
}
.header-search::after {
  content: "";
  width: 19px;
  height: 19px;
  margin-left: 14px;
  border: 3px solid #111;
  border-radius: 50%;
  box-shadow: 10px 10px 0 -7px #111;
}
.header-quote {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #0d1724;
}

.hero,
.subpage-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}
.hero { min-height: clamp(680px, 82vh, 860px); }
.subpage-hero { min-height: 440px; }
.hero-bg,
.subpage-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg {
  transform: translateX(0);
  transition: transform .68s cubic-bezier(.7, 0, .25, 1);
  will-change: transform;
}
.hero-bg-clone {
  pointer-events: none;
  transition: transform .68s cubic-bezier(.7, 0, .25, 1);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(92deg, rgba(4,10,21,.82) 0%, rgba(4,10,21,.52) 37%, rgba(4,10,21,.08) 67%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.68));
}
.hero::before,
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(108deg, transparent 0 58%, rgba(205,31,61,.44) 58.1% 58.55%, transparent 58.8%),
    linear-gradient(108deg, transparent 0 68%, rgba(0,167,216,.46) 68.1% 68.5%, transparent 68.8%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  bottom: -16vw;
  z-index: 2;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: rgba(0,167,216,.18);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--page);
  min-height: clamp(680px, 82vh, 860px);
  display: grid;
  align-items: end;
  margin: 0 auto;
  padding: 90px var(--pad) 82px;
}
.subpage-hero .hero-inner {
  min-height: 440px;
  align-items: center;
  padding: 82px var(--pad);
}
.home-hero-copy {
  max-width: 760px;
  display: grid;
  gap: 18px;
}
.eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero .eyebrow,
.subpage-hero .eyebrow { color: #fff; }
.hero h1,
.subpage-hero h1 {
  max-width: 100%;
  margin: 0;
  font-family: Impact, "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(50px, 5.2vw, 88px);
  line-height: .88;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0,0,0,.42), 0 18px 34px rgba(0,0,0,.5);
}
.hero h1 span { display: block; }
.hero h1 span:last-child,
.subpage-hero h1 em {
  color: var(--orange);
  font-style: normal;
}
.hero p:not(.eyebrow),
.subpage-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.94);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 0 rgba(0,0,0,.5), 0 10px 18px rgba(0,0,0,.38);
}
.home-hero-distributor-button,
.primary-action,
.text-action {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.home-hero-distributor-button::after,
.primary-action::after,
.text-action::after { content: ">"; }
.hero-dots {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
}
.hero-dots button.is-active {
  width: 30px;
  border-radius: 999px;
  background: #fff;
}
.image-slide-hero {
  min-height: clamp(540px, 42vw, 790px);
}
.image-slide-hero .hero-bg {
  object-fit: cover;
  object-position: center;
}
.image-slide-hero .hero-overlay,
.image-slide-hero::before,
.image-slide-hero::after {
  display: none;
}
.image-slide-hero .hero-inner {
  max-width: none;
  min-height: clamp(540px, 42vw, 790px);
  align-items: end;
  padding: 0;
}
.image-slide-hero .home-hero-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 3vw, 48px);
  transform: translateX(-50%);
  width: auto;
  max-width: none;
  display: block;
}
.image-slide-hero .home-hero-copy > :not(.hero-dots) {
  display: none;
}
.image-slide-hero .hero-dots {
  margin: 0;
  justify-content: center;
}
.image-slide-hero .hero-dots button {
  background: rgba(255,255,255,.55);
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.image-slide-hero .hero-dots button.is-active {
  background: #fff;
}

.category-section,
.process-section,
.interest-section,
.page-section,
.catalog-section {
  padding: 70px max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
}
.category-section,
.process-section,
.catalog-section { background: var(--soft); }
.home-cover-section {
  padding-top: 84px;
  padding-bottom: 84px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.category-copy,
.section-heading {
  max-width: var(--page);
  margin: 0 auto 28px;
}
.category-copy h2,
.section-heading h2,
.page-section h2 {
  max-width: 880px;
  margin: 0;
  color: #0b1118;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.04;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.category-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.page-section p {
  max-width: 760px;
  color: #536170;
  font-size: 15px;
}
.category-grid,
.info-grid {
  max-width: var(--page);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}
.process-grid,
.interest-grid {
  max-width: var(--page);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}
body[data-page="blog"] .interest-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.category-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: visible;
  border: 1px solid rgba(12,24,38,.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(12,24,38,.08);
}
.category-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -11px;
  height: 16px;
  z-index: -1;
  border-radius: 0 0 8px 8px;
  background: #6d2b8b;
}
.category-card figure {
  height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #ecf2f7;
}
.category-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-card-copy {
  flex: 1;
  display: grid;
  gap: 12px;
  padding: 22px;
}
.category-card h3,
.process-grid h3,
.info-grid h3,
.article-card h3 {
  margin: 0;
  color: #091321;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}
.category-card p,
.process-grid p,
.info-grid p,
.article-card p {
  margin: 0;
  color: #4f5f70;
}
.category-card-action {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  align-self: end;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.home-cover-section .category-grid {
  gap: 24px;
}
.home-cover-section .category-card {
  min-height: 430px;
  box-shadow: 0 24px 54px rgba(12,24,38,.10);
}
.home-cover-section .category-card::after {
  display: none;
}
.home-cover-section .category-card figure {
  height: 250px;
  background: #f4f6f8;
}
.home-cover-section .category-card-action {
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--red);
}
.home-cover-section .category-card-action::after {
  content: "→";
  margin-left: 9px;
}

.home-lines-section {
  padding: clamp(58px, 6vw, 84px) max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  background:
    radial-gradient(circle at 94% 8%, rgba(213,25,49,.08), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}
.home-lines-heading {
  max-width: var(--page);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto 30px;
}
.home-lines-heading > div {
  max-width: 820px;
}
.home-lines-heading h2 {
  max-width: 850px;
  margin: 0;
  color: #071323;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.02;
  font-weight: 900;
}
.home-lines-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: #465568;
  line-height: 1.65;
}
.home-lines-all {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(213,25,49,.24);
  border-radius: 8px;
  background: #fff;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(12,24,38,.06);
}
.home-lines-all::after {
  content: ">";
  margin-left: 10px;
}
.home-lines-grid {
  max-width: var(--page);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
}
.home-line-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(12,24,38,.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(12,24,38,.10);
}
.home-line-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), #ff6a00);
}
.home-line-card figure {
  height: 310px;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(244,247,251,.98)),
    radial-gradient(circle at 72% 18%, rgba(213,25,49,.08), transparent 35%);
}
.home-line-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .18s ease;
}
.home-line-card:hover figure img {
  transform: scale(1.04);
}
.home-line-copy {
  min-height: 205px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 24px 26px 28px;
}
.home-line-copy span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.home-line-copy h3 {
  margin: 0;
  color: #081323;
  font-size: 23px;
  line-height: 1.06;
  font-weight: 900;
}
.home-line-copy p {
  margin: 0;
  color: #4f5f70;
  line-height: 1.55;
}
.home-line-copy a {
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}
.home-line-copy a::after {
  content: ">";
  margin-left: 9px;
}

.home-trust-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: 82px max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5,10,16,.98) 0%, rgba(5,10,16,.92) 56%, rgba(214,17,53,.92) 56%, rgba(214,17,53,.92) 100%),
    radial-gradient(circle at 8% 20%, rgba(0,184,216,.16), transparent 36%),
    #070b11;
}
.home-trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 58%, rgba(255,255,255,.08) 58% 62%, transparent 62%);
  pointer-events: none;
}
.home-trust-section > * {
  position: relative;
  z-index: 1;
}
.brand-cards-heading h2 {
  margin: 0;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(36px, 3.8vw, 58px);
  line-height: 1.02;
  font-weight: 900;
}
.brand-cards-heading h2 span { display: block; }
.brand-cards-heading h2 span:last-child {
  font-weight: 900;
}
.home-trust-copy {
  margin: 16px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 18px;
}
.home-trust-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.home-trust-details p {
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
}
.home-trust-details strong,
.home-trust-details span {
  display: block;
}
.home-trust-details span { color: rgba(255,255,255,.82); }
.home-trust-primary {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 8px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.home-trust-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}
.home-trust-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.red-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 54px max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  color: #fff;
  background: var(--red);
}
.red-band h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
}
.red-band a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 8px;
  background: #fff;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.process-grid article,
.info-grid article,
.article-card,
.contact-card,
.catalog-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(12,24,38,.06);
}
.process-grid article,
.info-grid article { padding: 26px; }
.process-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}
.interest-section { background: #fff; }
.interest-card,
.article-card {
  overflow: hidden;
  text-decoration: none;
}
.interest-card img,
.article-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #eef3f8;
}
.interest-card img {
  object-fit: contain;
  background: #fff;
}
.interest-card span,
.article-card h3,
.article-card p {
  display: block;
  padding: 18px 20px;
}
.article-card p { padding-top: 0; }

.product-category-hero {
  overflow: hidden;
  background: #f6f7f9;
  border-bottom: 1px solid rgba(9,19,33,.06);
}
.product-category-hero img {
  width: 100%;
  min-height: clamp(260px, 27vw, 390px);
  display: block;
  object-fit: cover;
  object-position: center;
}
.product-summary-section {
  padding: 56px max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad))) 78px;
  background: #fff;
}
.product-summary-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin: 0 auto;
}
.product-summary-card {
  overflow: hidden;
  border: 1px solid rgba(9,19,33,.07);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(12,24,38,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(12,24,38,.14);
}
.product-summary-card figure {
  height: 238px;
  display: block;
  margin: 0;
  padding: 0;
  background: #f3f5f8;
}
.product-summary-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-summary-card > div {
  min-height: 184px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 30px 26px;
  background: #fff;
}
.product-summary-card h3 {
  margin: 0;
  color: #091321;
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1;
  font-weight: 900;
}
.product-summary-card p {
  margin: 0;
  color: #2d3a49;
  font-size: 15px;
  line-height: 1.55;
}
.product-summary-card a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  align-self: end;
  padding: 0;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}
.product-summary-card a::after {
  content: "â†’";
  margin-left: 8px;
}

.split-layout,
.contact-layout {
  max-width: var(--page);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(520px, 1.05fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  margin: 0 auto;
}
.split-layout > div,
.split-layout figure,
.contact-card,
.contact-form {
  min-width: 0;
}
.split-layout figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}
.split-layout figure img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.empresa-hero.subpage-hero,
.empresa-hero.subpage-hero .hero-inner {
  min-height: clamp(420px, 34vw, 540px);
}
.empresa-hero.subpage-hero > img {
  object-position: center right;
}
.empresa-hero.subpage-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(4,8,14,.96) 0%, rgba(4,8,14,.88) 33%, rgba(4,8,14,.42) 68%, rgba(4,8,14,.16) 100%),
    radial-gradient(circle at 82% 42%, rgba(209,22,48,.28), transparent 34%);
}
.empresa-hero.subpage-hero h1 em { color: var(--red); }
.empresa-hero.subpage-hero p:not(.eyebrow) {
  max-width: 580px;
  font-weight: 800;
}
.empresa-intro-section {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(540px, 1.15fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(62px, 7vw, 96px) max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad))) 38px;
  background:
    radial-gradient(circle at 96% 98%, rgba(213,25,49,.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}
.empresa-intro-copy {
  min-width: 0;
  display: grid;
  gap: 18px;
}
.empresa-intro-copy h2 {
  max-width: 660px;
  margin: 0;
  color: #071323;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
}
.empresa-intro-copy h2 em {
  color: var(--red);
  font-style: normal;
}
.empresa-intro-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: #334254;
  font-size: 16px;
  line-height: 1.7;
}
.empresa-action {
  margin-top: 8px;
  background: var(--red);
}
.empresa-intro-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(9,19,33,.18);
}
.empresa-intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 60%, rgba(213,25,49,.22) 60.2% 64%, transparent 64.2%),
    linear-gradient(0deg, rgba(4,8,14,.24), transparent 52%);
  pointer-events: none;
}
.empresa-intro-media img {
  width: 100%;
  height: clamp(390px, 33vw, 470px);
  object-fit: cover;
  object-position: center;
}
.empresa-values-section {
  padding: 18px max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad))) clamp(64px, 7vw, 90px);
  background: linear-gradient(180deg, #fbfcfe 0%, #f2f5f9 100%);
}
.empresa-values-grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.empresa-values-grid article {
  min-width: 0;
  min-height: 164px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(12,24,38,.08);
}
.value-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: #fff0f3;
}
.value-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.empresa-values-grid h3 {
  margin: 0 0 10px;
  color: #091321;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}
.empresa-values-grid p {
  margin: 0;
  color: #4f5f70;
  line-height: 1.55;
}
.dark-panel {
  max-width: none;
  margin: 0;
  color: #fff;
  background: #071326;
}
.dark-panel .section-heading,
.dark-panel .info-grid { max-width: var(--page); }
.dark-panel h2,
.dark-panel .info-grid h3 { color: #fff; }
.dark-panel .info-grid article {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.dark-panel .info-grid p { color: rgba(255,255,255,.78); }

.support-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 44px max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  background: var(--soft);
}
.support-strip a {
  min-height: 130px;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--red);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.support-strip span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 8px;
  font-size: 22px;
}

.catalog-shell {
  max-width: var(--page);
  margin: 0 auto;
  padding: 24px;
}
.catalog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
  align-items: start;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.filter-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #243142;
  font-weight: 800;
}
.filter-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.search-box {
  display: grid;
  gap: 7px;
  color: #52606d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.search-box input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0;
  color: #52606d;
}
.catalog-meta button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: #eef2f6;
  font-weight: 900;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.product-card-image {
  height: 245px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f5f8fb, #fff);
}
.product-card-image img {
  max-width: 90%;
  max-height: 210px;
  object-fit: contain;
}
.product-card-body {
  flex: 1;
  display: grid;
  gap: 10px;
  padding: 18px;
}
.product-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}
.product-card p {
  margin: 0;
  color: #566371;
}
.card-button {
  width: fit-content;
  min-height: 42px;
  align-self: end;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}
.empty-state { grid-column: 1 / -1; color: #566371; }
.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}
.catalog-pagination[hidden] {
  display: none;
}
.pagination-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #132033;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(8, 20, 35, .08);
}
.pagination-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.pagination-button:disabled {
  cursor: not-allowed;
  opacity: .42;
  box-shadow: none;
}

.product-dialog {
  width: min(920px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
}
.product-dialog::backdrop { background: rgba(2, 8, 18, .68); }
.dialog-card {
  position: relative;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 26px;
  padding: 28px;
}
.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #eef2f6;
  color: #071326;
  font-weight: 900;
}
.dialog-media {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 8px;
  background: #f4f7fb;
}
.dialog-media img {
  max-width: 92%;
  max-height: 320px;
  object-fit: contain;
}
.dialog-copy h2 { margin: 8px 0 10px; font-size: 30px; line-height: 1.05; }
.dialog-copy p { color: #566371; }
.dialog-copy li { margin: 8px 0; color: #364354; }

.contact-page-section {
  padding: clamp(52px, 6vw, 86px) var(--pad) clamp(42px, 5vw, 70px);
  background:
    radial-gradient(circle at 80% 0%, rgba(205, 31, 61, .08), transparent 34%),
    linear-gradient(180deg, #f8fafc, #fff);
}
.contact-commercial-layout {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  margin: 0 auto;
  border-radius: 18px;
  filter: drop-shadow(0 24px 48px rgba(8, 20, 35, .12));
}
.contact-showcase {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, .98) 0%, rgba(4, 10, 17, .9) 42%, rgba(5, 8, 13, .52) 100%),
    url("assets/generated/simonetta-hero-industrial.png") center / cover no-repeat;
  color: #fff;
}
.contact-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0 57%, rgba(205, 31, 61, .3) 57% 61%, transparent 61%),
    radial-gradient(circle at 24% 80%, rgba(205, 31, 61, .28), transparent 30%);
}
.contact-showcase-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(34px, 5vw, 54px);
}
.contact-showcase h1 {
  max-width: 9ch;
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(46px, 5.7vw, 74px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: 0;
}
.contact-showcase-content > p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 22px;
  line-height: 1.45;
}
.contact-feature-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.contact-feature {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.contact-feature-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef1d38, #c91531);
  box-shadow: 0 14px 28px rgba(205, 31, 61, .32);
}
.contact-feature-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-feature h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
.contact-feature p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.35;
}
.contact-commercial-form {
  position: relative;
  z-index: 2;
  align-content: center;
  margin-left: -28px;
  padding: clamp(34px, 5vw, 54px);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(8, 20, 35, .14);
}
.contact-commercial-form button span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
}
.contact-commercial-form button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 28px var(--pad);
  background: linear-gradient(135deg, #e01834, #b70f28);
  color: #fff;
}
.contact-proof-strip div {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.28);
}
.contact-proof-strip div:last-child { border-right: 0; }
.contact-proof-strip span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.contact-proof-strip svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-proof-strip strong {
  max-width: 170px;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
}

.form-section,
.contact-layout { align-items: start; }
.contact-card { padding: 30px; }
.contact-card h2 { margin-bottom: 18px; }
.contact-card a,
.contact-card span {
  display: block;
  margin: 10px 0;
  color: #10141a;
  font-weight: 800;
  text-decoration: none;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(12,24,38,.06);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #52606d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #132033;
  text-transform: none;
}
.contact-form select {
  appearance: auto;
  cursor: pointer;
}
.contact-form textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}
.contact-form button {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .split-layout,
  .contact-layout {
    max-width: 820px;
    grid-template-columns: 1fr;
  }
  .empresa-intro-section {
    grid-template-columns: 1fr;
  }
  .split-layout figure { order: 2; }
  .contact-card,
  .contact-form {
    width: 100%;
  }
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.12), transparent 32%),
    radial-gradient(circle at 86% 10%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, #f21f34 0%, #d51931 46%, #ba1026 100%);
}
.footer-inner {
  max-width: 1760px;
  display: grid;
  grid-template-columns: minmax(265px, 1fr) minmax(190px, .76fr) minmax(220px, .82fr) minmax(180px, .68fr) minmax(330px, 1fr);
  gap: clamp(22px, 2.6vw, 48px);
  margin: 0 auto;
  padding: 52px clamp(30px, 3.4vw, 56px) 34px;
  align-items: start;
}
.footer-brand-block {
  min-height: 245px;
  padding-right: clamp(22px, 2vw, 42px);
  border-right: 1px solid rgba(255,255,255,.23);
}
.footer-logo {
  width: 245px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 20px;
}
.footer-brand-block p {
  max-width: 350px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 2;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #d51931;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(89, 0, 13, .16);
}
.site-footer h2 {
  position: relative;
  margin: 0 0 27px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}
.site-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 34px;
  height: 2px;
  background: rgba(255,255,255,.92);
}
.footer-link-block {
  display: grid;
  align-content: start;
  gap: 21px;
}
.footer-link-block a,
.footer-contact-line {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-size: 15.5px;
  line-height: 1.35;
}
.footer-link-block a:hover,
.footer-contact-line:hover {
  color: #fff;
  opacity: .78;
}
.footer-icon {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  color: #fff;
}
.footer-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact-block {
  min-height: 330px;
  padding-left: clamp(22px, 2.4vw, 44px);
  border-left: 1px solid rgba(255,255,255,.23);
}
.footer-contact-line {
  align-items: start;
  margin: 0 0 15px;
  font-size: 15px;
  line-height: 1.45;
}
.footer-contact-line strong {
  font-weight: 900;
}
.footer-contact-line span {
  min-width: 0;
}
.footer-phone { font-size: 15px; font-weight: 400; }
.footer-subscribe {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.footer-subscribe label {
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  font-size: 17px;
}
.footer-subscribe label span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  font-weight: 500;
}
.footer-subscribe > span {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-subscribe div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 8px;
}
.footer-subscribe input {
  min-width: 0;
  height: 48px;
  padding: 0 17px;
  border: 0;
  border-radius: 6px;
  background: rgba(105, 0, 18, .25);
  color: #fff;
  font: inherit;
  font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.footer-subscribe input::placeholder {
  color: rgba(255,255,255,.62);
}
.footer-subscribe button {
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #d51931;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(89, 0, 13, .16);
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.7);
  font-size: 12px;
}
.footer-bottom nav {
  display: flex;
  gap: 18px;
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(0,0,0,.28);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, .38);
  border-radius: inherit;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: #1ebe57;
  box-shadow: 0 20px 42px rgba(0,0,0,.34);
}
.whatsapp-icon {
  width: 35px;
  height: 35px;
  display: block;
}

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 150px minmax(0, 1fr) 230px; gap: 12px; }
  .header-quote { display: none; }
  .site-nav { gap: 6px; }
  .site-nav a { padding: 0 10px; }
  .home-lines-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid,
  .interest-grid,
  .product-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-commercial-layout {
    max-width: 920px;
    grid-template-columns: 1fr;
  }
  .contact-showcase {
    min-height: 480px;
    border-radius: 18px 18px 0 0;
  }
  .contact-showcase h1 { max-width: 12ch; }
  .contact-commercial-form {
    margin-left: 0;
    border-radius: 0 0 18px 18px;
  }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand-block {
    grid-column: 1 / -1;
    min-height: auto;
    padding-right: 0;
    padding-bottom: 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .footer-contact-block {
    grid-column: 1 / -1;
    min-height: auto;
    padding-left: 0;
    padding-top: 34px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.2);
  }
}
@media (max-width: 860px) {
  :root { --header: 74px; }
  .global-header { box-shadow: 0 12px 30px rgba(8, 20, 35, .08); }
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }
  .brand {
    width: 142px;
    align-items: center;
    padding-top: 0;
  }
  .brand img {
    width: 78px;
    height: 78px;
    box-shadow: 0 10px 22px rgba(75, 0, 9, .14);
  }
  .menu-toggle { display: block; }
  .header-location,
  .header-search { display: none; }
  .header-actions { gap: 8px; }
  .header-quote {
    display: inline-flex;
    min-height: 42px;
    padding: 0 15px;
    font-size: 14px;
  }
  .site-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    display: none;
    padding: 12px var(--pad) 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - var(--header));
    overflow-y: auto;
    box-shadow: 0 20px 45px rgba(8, 20, 35, .12);
  }
  body.menu-open .site-nav { display: grid; }
  .site-nav a {
    min-height: 48px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .hero,
  .hero-inner { min-height: 620px; }
  .image-slide-hero {
    min-height: auto;
    aspect-ratio: 16 / 7.8;
    background: #05080e;
  }
  .image-slide-hero .hero-inner { min-height: 100%; }
  .image-slide-hero .hero-bg,
  .image-slide-hero .hero-bg-clone {
    object-fit: contain;
    background: #05080e;
  }
  .image-slide-hero .home-hero-copy { bottom: 16px; }
  .product-category-hero img { min-height: 230px; }
  .product-summary-section { padding-top: 44px; padding-bottom: 56px; }
  .hero-inner { padding-bottom: 56px; }
  .image-slide-hero .hero-inner { padding: 0; }
  .hero h1 { font-size: clamp(42px, 12vw, 64px); }
  .home-lines-heading {
    display: grid;
    align-items: start;
  }
  .home-lines-all {
    width: fit-content;
  }
  .category-grid,
  .home-lines-grid,
  .process-grid,
  .interest-grid,
  .info-grid,
  .empresa-values-grid,
  .product-summary-grid,
  .support-strip,
  .home-trust-section,
  .split-layout,
  .contact-layout,
  .catalog-tools,
  .dialog-card {
    grid-template-columns: 1fr;
  }
  .home-trust-image img,
  .split-layout figure img,
  .empresa-intro-media img { height: 360px; }
  .red-band { display: grid; }
  .contact-page-section { padding-top: 34px; }
  .contact-commercial-layout { filter: drop-shadow(0 18px 34px rgba(8, 20, 35, .1)); }
  .contact-showcase { min-height: 440px; }
  .contact-showcase-content { padding: 34px; }
  .contact-showcase-content > p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.42;
  }
  .contact-feature {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }
  .contact-feature-icon {
    width: 54px;
    height: 54px;
  }
  .contact-feature-icon svg {
    width: 27px;
    height: 27px;
  }
  .contact-feature h2 { font-size: 21px; }
  .contact-feature p { font-size: 15px; }
  .contact-commercial-form { padding: 28px; }
  .contact-proof-strip {
    grid-template-columns: 1fr;
    padding: 22px var(--pad);
  }
  .contact-proof-strip div {
    min-height: 70px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.24);
  }
  .contact-proof-strip div:last-child { border-bottom: 0; }
  .catalog-meta {
    flex-wrap: wrap;
    align-items: stretch;
  }
  .filter-button {
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }
  .catalog-pagination { flex-wrap: wrap; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-logo { width: 210px; }
  .footer-subscribe div { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}
@media (max-width: 560px) {
  :root { --pad: 16px; }
  .brand { width: 112px; }
  .brand img {
    width: 66px;
    height: 66px;
  }
  .header-quote {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
  }
  .category-section,
  .process-section,
  .interest-section,
  .page-section,
  .catalog-section { padding-top: 48px; padding-bottom: 48px; }
  .hero,
  .hero-inner { min-height: 560px; }
  .subpage-hero,
  .subpage-hero .hero-inner { min-height: 360px; }
  .empresa-hero.subpage-hero,
  .empresa-hero.subpage-hero .hero-inner { min-height: 400px; }
  .image-slide-hero { aspect-ratio: 16 / 9; }
  .hero h1,
  .subpage-hero h1 {
    font-size: clamp(36px, 13vw, 54px);
    line-height: .92;
  }
  .hero p:not(.eyebrow),
  .subpage-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.35;
  }
  .contact-showcase {
    min-height: 520px;
    background-position: 62% center;
  }
  .contact-showcase-content { padding: 28px; }
  .contact-showcase h1 {
    max-width: 9ch;
    font-size: clamp(40px, 13vw, 58px);
  }
  .contact-commercial-form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }
  .contact-commercial-form button {
    width: 100%;
  }
  .contact-proof-strip strong {
    max-width: none;
    font-size: 15px;
  }
  .contact-proof-strip span {
    width: 48px;
    height: 48px;
  }
  .home-hero-distributor-button,
  .primary-action,
  .text-action {
    width: 100%;
    min-height: 48px;
  }
  .empresa-intro-section,
  .empresa-values-section { padding-top: 46px; padding-bottom: 46px; }
  .empresa-values-grid article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  .product-category-hero img { min-height: 190px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-image { height: 220px; }
  .product-summary-card figure { height: 210px; }
  .home-lines-section { padding-top: 48px; padding-bottom: 48px; }
  .home-line-card figure { height: 210px; }
  .home-line-copy { min-height: auto; padding: 22px; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-icon {
    width: 31px;
    height: 31px;
  }
  .category-card figure,
  .interest-card img,
  .article-card img { height: 210px; }
  .home-trust-details,
  .contact-form { grid-template-columns: 1fr; }
  .catalog-shell { padding: 16px; }
  .catalog-meta {
    display: grid;
    align-items: start;
  }
  .catalog-meta button { width: 100%; }
  .pagination-button {
    width: 40px;
    height: 40px;
  }
  .dialog-media { min-height: 260px; }
  .footer-inner {
    padding: 36px 18px 26px;
    gap: 26px;
  }
  .footer-brand-block { padding-bottom: 24px; }
  .footer-contact-block { padding-top: 24px; }
  .footer-social { gap: 12px; }
  .footer-bottom nav { flex-wrap: wrap; }
}
@media (max-width: 380px) {
  .header-quote { display: none; }
  .brand img {
    width: 60px;
    height: 60px;
  }
  .site-nav {
    padding-left: 14px;
    padding-right: 14px;
  }
  .pagination-button {
    width: 38px;
    height: 38px;
  }
}
