:root {
  --red: #bd0505;
  --red-dark: #8e0000;
  --black: #0d0d0e;
  --text: #202124;
  --muted: #6f7074;
  --line: #e6e6e6;
  --soft: #f5f5f4;
  --white: #fff;
  --shadow: 0 24px 55px rgba(0,0,0,.12);
  --radius: 18px;
  --container: 1240px;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--text); font-family: "Inter", Arial, sans-serif; }
body, button, input, select, textarea { -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 9999; background: #fff; color: #111; padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 14px; }

.topbar { background: #0a0a0a; color: #fff; font-size: 11px; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar__contact { display: flex; align-items: center; gap: 22px; }
.topbar a, .topbar__city { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.78); }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.site-header { position: sticky; top: 0; z-index: 900; height: var(--header-h); background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(0,0,0,.06); transition: box-shadow .25s ease, height .25s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 28px rgba(0,0,0,.08); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; display: flex; align-items: center; }
.brand img { width: 118px; height: 76px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link { position: relative; display: inline-flex; align-items: center; padding: 14px 13px; color: #303035; font-family: "Barlow Condensed", sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .035em; }
.nav-link::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 7px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 46px; height: 42px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: #111; transition: transform .2s, opacity .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border: 1px solid transparent; font-family: "Barlow Condensed", sans-serif; font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .045em; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); }
.btn--dark { background: #111; color: #fff; }
.btn--dark:hover { background: var(--red); }
.btn--ghost { border-color: rgba(255,255,255,.65); color: #fff; background: rgba(0,0,0,.08); }
.btn--ghost:hover { background: #fff; color: #111; }
.btn--light { background: #fff; color: #111; }
.btn--nav { min-height: 42px; margin-left: 8px; background: var(--red); color: #fff; padding-inline: 18px; }

.hero { position: relative; min-height: 690px; display: flex; align-items: center; color: #fff; overflow: hidden; background-position: center; background-size: cover; }
.hero--home { background-image: url('../assets/img/hero-extintor.webp'); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.58) 46%, rgba(0,0,0,.25) 72%, rgba(0,0,0,.12) 100%); }
.hero__content { position: relative; z-index: 1; width: 100%; }
.hero__content--home { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 70px; align-items: end; padding: 92px 0 86px; }
.hero__copy { max-width: 760px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 10px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { color: #fff; opacity: .9; }
.eyebrow span { width: 30px; height: 2px; background: var(--red); }
.section-kicker--light { color: #ffb0b0; }
h1, h2, h3 { font-family: "Barlow Condensed", Impact, sans-serif; }
h1 { margin: 16px 0 20px; font-size: clamp(54px, 7vw, 92px); line-height: .92; letter-spacing: -.025em; text-transform: uppercase; }
h1 strong { color: #ff2929; font-weight: 800; }
h2 { margin: 13px 0 18px; font-size: clamp(38px, 4.6vw, 62px); line-height: .96; text-transform: uppercase; letter-spacing: -.018em; }
.hero__copy > p { max-width: 660px; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 19px; margin-top: 30px; color: rgba(255,255,255,.74); font-size: 11px; }
.hero__meta span::before { content: "•"; color: #ff3b3b; margin-right: 7px; }
.hero-card { padding: 28px; background: rgba(255,255,255,.95); color: #222; box-shadow: var(--shadow); border-top: 4px solid var(--red); }
.hero-card__label { display: block; margin-bottom: 12px; color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.hero-card strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 31px; line-height: 1; text-transform: uppercase; }
.hero-card p { color: #707074; font-size: 12px; line-height: 1.65; }
.hero-card a { display: inline-flex; gap: 12px; margin-top: 5px; color: var(--red); font-size: 12px; font-weight: 800; }

.benefit-strip { background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 12px 30px rgba(0,0,0,.035); }
.benefit-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefit-strip article { min-height: 112px; display: flex; align-items: center; gap: 16px; padding: 20px 28px; border-right: 1px solid var(--line); }
.benefit-strip article:last-child { border-right: 0; }
.benefit-icon { min-width: 38px; color: var(--red); font-family: "Barlow Condensed", sans-serif; font-size: 22px; font-weight: 800; }
.benefit-strip strong { display: block; margin-bottom: 3px; font-family: "Barlow Condensed", sans-serif; font-size: 20px; text-transform: uppercase; }
.benefit-strip small { color: var(--muted); font-size: 11px; line-height: 1.45; }

.section { padding: clamp(72px, 8vw, 112px) 0; }
.section--soft { background: var(--soft); }
.split-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(48px, 7vw, 92px); align-items: center; }
.split-layout--reverse .split-copy { order: 1; }
.split-layout--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; min-height: 530px; object-fit: cover; box-shadow: var(--shadow); }
.media-label { position: absolute; right: -18px; bottom: 28px; min-width: 185px; padding: 20px 24px; background: var(--red); color: #fff; }
.media-label strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 29px; text-transform: uppercase; }
.media-label span { font-size: 11px; opacity: .8; }
.split-copy > p, .statement-copy > p, .visual-band__copy > p, .services-layout__copy > p, .training-band__copy > p, .section-heading > p { color: var(--muted); font-size: 14px; line-height: 1.8; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 27px 0; }
.check-grid span { position: relative; padding-left: 22px; font-size: 12px; font-weight: 700; }
.check-grid span::before { content: "✓"; position: absolute; left: 0; color: var(--red); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: #111; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid #111; padding-bottom: 4px; }
.text-link span { color: var(--red); }

.statement-section { background: #f8f8f8; }
.statement-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.statement-actions { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 30px; }
.image-collage { position: relative; padding: 0 0 72px 72px; }
.image-collage__main { width: 100%; height: 470px; object-fit: cover; box-shadow: var(--shadow); }
.image-collage__small { position: absolute; left: 0; bottom: 0; width: 245px; height: 190px; object-fit: cover; border: 8px solid #f8f8f8; }

.sectors { padding: 31px 0; background: #0e0e0f; color: #fff; }
.sectors__inner { display: flex; align-items: center; gap: 32px; }
.sectors p { margin: 0; color: #ff6c6c; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; white-space: nowrap; }
.sectors__grid { flex: 1; display: grid; grid-template-columns: repeat(6, 1fr); }
.sectors__grid span { padding: 6px 12px; text-align: center; border-left: 1px solid rgba(255,255,255,.13); font-family: "Barlow Condensed", sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; }

.page-hero { position: relative; min-height: 430px; display: flex; align-items: end; color: #fff; background-size: cover; background-position: center; overflow: hidden; }
.page-hero--about { background-image: url('../assets/img/secciones/capacitacion-extintor.jpg'); background-position: center 48%; }
.page-hero--products { background-image: url('../assets/img/extintores-muro.webp'); }
.page-hero--services { background-image: url('../assets/img/secciones/revision-extintores.jpg'); }
.page-hero--contact { background-image: url('../assets/img/secciones/salida-emergencia.jpg'); }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.42)); }
.page-hero__content { position: relative; z-index: 1; padding: 78px 0 65px; max-width: 820px; }
.page-hero h1 { font-size: clamp(48px, 6vw, 76px); margin-bottom: 17px; }
.page-hero p { max-width: 680px; color: rgba(255,255,255,.77); line-height: 1.7; font-size: 14px; }

.quote-box { margin-top: 30px; padding: 22px 24px; border-left: 4px solid var(--red); background: #f5f5f5; font-family: "Barlow Condensed", sans-serif; font-size: 25px; font-weight: 700; text-transform: uppercase; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 45px; }
.section-heading > * { max-width: 720px; }
.section-heading.centered { display: block; max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-heading.centered .section-kicker { justify-content: center; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { padding: 31px 26px; background: #fff; border: 1px solid var(--line); }
.value-card span, .service-card > span, .consulting-card > span { color: var(--red); font-family: "Barlow Condensed", sans-serif; font-size: 23px; font-weight: 800; }
.value-card h3, .service-card h3, .consulting-card h3 { margin: 13px 0 9px; font-size: 26px; text-transform: uppercase; }
.value-card p, .service-card p, .consulting-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.visual-band__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; background: #111; color: #fff; }
.visual-band__image img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.visual-band__copy { padding: 55px; align-self: center; }
.visual-band__copy > p { color: rgba(255,255,255,.66); }
.visual-band__copy .btn { margin-top: 17px; background: var(--red); }

.product-intro__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: center; }
.product-intro__grid p { color: var(--muted); line-height: 1.8; font-size: 14px; }
.product-intro__image { padding: 24px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.product-intro__image img { width: 100%; }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 35px; margin-bottom: 38px; }
.catalog-toolbar h2 { margin-bottom: 0; }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.filter-btn { min-height: 40px; padding: 0 15px; border: 1px solid #d7d7d7; background: #fff; color: #444; font-family: "Barlow Condensed", sans-serif; font-size: 14px; font-weight: 800; text-transform: uppercase; }
.filter-btn:hover, .filter-btn.is-active { background: #111; border-color: #111; color: #fff; }
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #e5e5e5; min-width: 0; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.product-card[hidden] { display: none !important; }
.product-card__media { display: grid; place-items: center; aspect-ratio: 1 / .86; min-height: 240px; padding: 20px; background: #fff; border-bottom: 1px solid #eee; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; }
.product-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border: 1px dashed #d5d5d5; color: #8d8d8d; text-align: center; padding: 18px; }
.product-placeholder svg { width: 48px; height: 48px; fill: none; stroke: #b4b4b4; stroke-width: 2; }
.product-placeholder span { font-family: "Barlow Condensed", sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; }
.product-placeholder small { font-size: 9px; word-break: break-word; color: #aaa; }
.product-card__body { flex: 1; display: flex; flex-direction: column; padding: 22px; }
.product-card__meta { min-height: 20px; color: var(--red); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.product-card h3 { margin: 5px 0 10px; font-size: 25px; line-height: 1; text-transform: uppercase; }
.product-card p { margin: 0 0 18px; color: var(--muted); font-size: 11.5px; line-height: 1.65; }
.product-card__link { margin-top: auto; display: inline-flex; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid #eee; color: #111; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.product-card__link span { color: var(--red); }
.product-image-note { display: flex; gap: 10px; margin-top: 28px; padding: 17px 20px; background: #fff; border: 1px solid var(--line); color: #676767; font-size: 11px; line-height: 1.55; }
.product-image-note strong { color: #111; }
.product-image-note code { color: var(--red); font-size: 10px; }

.services-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.services-layout__image img { width: 100%; height: 480px; object-fit: cover; box-shadow: var(--shadow); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 265px; padding: 31px 27px; background: #fff; border: 1px solid var(--line); }
.service-card--wide { grid-column: span 3; min-height: 0; }
.training-band__grid { display: grid; grid-template-columns: 1.1fr .9fr; background: #111; color: #fff; }
.training-band__image img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.training-band__copy { padding: 62px; align-self: center; }
.training-band__copy > p { color: rgba(255,255,255,.67); }
.training-band__copy .btn { margin-top: 16px; background: var(--red); }
.consulting-section { background: #fff; }
.consulting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.consulting-card { padding: 28px 26px; border: 1px solid var(--line); background: #fafafa; }

.contact-page { background: #f6f6f6; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.contact-info > p { color: var(--muted); font-size: 14px; line-height: 1.8; }
.contact-cards { display: grid; gap: 10px; margin: 28px 0; }
.contact-card { display: flex; flex-direction: column; padding: 18px 20px; background: #fff; border: 1px solid var(--line); transition: border .2s, transform .2s; }
.contact-card:hover { border-color: #bbb; transform: translateX(3px); }
.contact-card span { color: var(--red); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.contact-card strong { margin: 5px 0 2px; font-family: "Barlow Condensed", sans-serif; font-size: 22px; }
.contact-card small { color: var(--muted); font-size: 10px; }
.contact-image img { width: 100%; height: 260px; object-fit: cover; }
.contact-form-wrap { background: #fff; padding: clamp(30px, 4vw, 48px); box-shadow: var(--shadow); }
.contact-form-head span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.contact-form-head h2 { font-size: 43px; margin: 7px 0 5px; }
.contact-form-head p { margin: 0 0 24px; color: var(--muted); font-size: 11px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; color: #3a3a3a; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d8d8d8; border-radius: 0; background: #fff; color: #222; outline: none; transition: border .2s, box-shadow .2s; }
.field input, .field select { height: 48px; padding: 0 13px; }
.field textarea { resize: vertical; min-height: 140px; padding: 13px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(189,5,5,.08); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-alert { margin-bottom: 20px; padding: 14px 16px; border-left: 4px solid; font-size: 12px; line-height: 1.55; }
.form-alert--success { background: #effaf2; border-color: #16803a; color: #14602d; }
.form-alert--error { background: #fff1f1; border-color: var(--red); color: #831a1a; }
.btn--submit { width: 100%; }
.form-privacy { display: block; margin-top: 12px; color: #8b8b8b; font-size: 9px; line-height: 1.5; }

.contact-cta { position: relative; overflow: hidden; padding: 75px 0; background: linear-gradient(110deg, #930000, #d50c0c); color: #fff; }
.contact-cta::after { content: "X"; position: absolute; right: -38px; top: -150px; color: rgba(255,255,255,.05); font-family: "Barlow Condensed", sans-serif; font-size: 480px; font-weight: 800; line-height: 1; transform: rotate(-8deg); }
.contact-cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 360px; gap: 55px; align-items: center; }
.contact-cta h2 { max-width: 760px; margin-bottom: 12px; }
.contact-cta p { max-width: 690px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.7; }
.contact-cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.contact-email { color: #fff; font-size: 12px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 4px; }

.footer { background: #090909; color: #fff; padding-top: 58px; }
.footer__grid { display: grid; grid-template-columns: 1.2fr .75fr 1fr 1fr; gap: 45px; padding-bottom: 45px; }
.footer__brand img { width: 115px; height: 92px; object-fit: contain; }
.footer h3 { margin: 8px 0 16px; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.footer p, .footer a, .footer span { color: rgba(255,255,255,.56); font-size: 11px; line-height: 1.7; }
.footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer a { margin: 3px 0; }
.footer a:hover { color: #fff; }
.footer__bottom { min-height: 68px; display: flex; align-items: center; border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom span { font-size: 9px; }

.whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 850; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #22c55e; color: #fff; box-shadow: 0 14px 32px rgba(0,0,0,.25); transition: transform .2s ease; }
.whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp svg { width: 29px; height: 29px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal--delay-sm { transition-delay: .08s; }
.reveal--delay { transition-delay: .16s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .consulting-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }
  .benefit-strip article { padding-inline: 18px; }
}

@media (max-width: 900px) {
  :root { --header-h: 78px; }
  .topbar__email { display: none !important; }
  .brand img { width: 96px; height: 64px; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 100%; left: 20px; right: 20px; display: block; max-height: 0; overflow: hidden; padding: 0 16px; opacity: 0; background: #fff; border: 1px solid transparent; box-shadow: 0 22px 40px rgba(0,0,0,.14); transition: max-height .3s, opacity .2s, padding .2s; }
  .main-nav.is-open { max-height: 520px; opacity: 1; padding-block: 12px 18px; border-color: #eee; }
  .main-nav .nav-link { width: 100%; padding: 13px 7px; border-bottom: 1px solid #eee; }
  .main-nav .nav-link::after { display: none; }
  .btn--nav { margin: 12px 6px 0; width: calc(100% - 12px); }
  .hero { min-height: auto; }
  .hero__content--home { grid-template-columns: 1fr; padding: 75px 0 68px; gap: 35px; }
  .hero-card { max-width: 480px; }
  .benefit-strip__grid { grid-template-columns: 1fr 1fr; }
  .benefit-strip article:nth-child(2) { border-right: 0; }
  .benefit-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-layout, .statement-grid, .product-intro__grid, .services-layout, .contact-grid { grid-template-columns: 1fr; }
  .split-layout--reverse .split-copy, .split-layout--reverse .split-media { order: initial; }
  .split-media img { min-height: 420px; }
  .image-collage { max-width: 680px; }
  .sectors__inner { display: block; }
  .sectors p { margin-bottom: 18px; text-align: center; }
  .sectors__grid { grid-template-columns: repeat(3, 1fr); }
  .sectors__grid span { border-bottom: 1px solid rgba(255,255,255,.1); padding: 10px; }
  .visual-band__grid, .training-band__grid { grid-template-columns: 1fr; }
  .visual-band__copy, .training-band__copy { padding: 42px; }
  .catalog-toolbar { display: block; }
  .catalog-filters { justify-content: flex-start; margin-top: 20px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cta__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__city { display: none; }
  .topbar__inner { justify-content: center; }
  h1 { font-size: clamp(45px, 14vw, 62px); }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  .hero__copy > p { font-size: 13px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__meta { display: grid; gap: 8px; }
  .hero-card { padding: 22px; }
  .benefit-strip__grid { grid-template-columns: 1fr; }
  .benefit-strip article { border-right: 0; border-bottom: 1px solid var(--line); min-height: 96px; }
  .benefit-strip article:last-child { border-bottom: 0; }
  .section { padding: 66px 0; }
  .check-grid { grid-template-columns: 1fr; }
  .media-label { right: -7px; }
  .statement-grid { gap: 40px; }
  .image-collage { padding: 0 0 50px 32px; }
  .image-collage__main { height: 330px; }
  .image-collage__small { width: 160px; height: 125px; border-width: 6px; }
  .sectors__grid { grid-template-columns: 1fr 1fr; }
  .page-hero { min-height: 360px; }
  .page-hero__content { padding: 60px 0 48px; }
  .value-grid, .service-grid, .consulting-grid, .catalog-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: auto; }
  .catalog-filters { display: grid; grid-template-columns: 1fr 1fr; }
  .filter-btn { width: 100%; }
  .product-card__media { min-height: 260px; }
  .product-image-note { flex-direction: column; }
  .visual-band__copy, .training-band__copy { padding: 32px 25px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 27px 20px; }
  .contact-form-head h2 { font-size: 38px; }
  .contact-cta__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 27px; }
  .whatsapp { right: 15px; bottom: 15px; width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
/* =========================================
   PRODUCTOS - AJUSTE DE IMÁGENES
========================================= */

.product-card__media {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    padding: 18px;
}

.product-card__media img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    margin: 0;
}


/* Tablet */
@media (max-width: 991px) {
    .product-card__media {
        height: 240px;
        padding: 16px;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .product-card__media {
        height: 280px;
        padding: 18px;
    }
}

/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

:root {
    --wa-green: #25D366;
    --wa-green-dark: #1da851;
    --wa-text: #0b1220;
    --wa-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.wa-fab {
    position: fixed;
    right: 22px;
    bottom: 28px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 9px 15px 9px 9px;

    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 999px;

    box-shadow: var(--wa-shadow);

    text-decoration: none;

    opacity: 0;
    transform: translateY(8px);

    pointer-events: none;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        opacity .25s ease;

    user-select: none;
}

.wa-fab.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.wa-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.wa-fab:active {
    transform: translateY(0);
}


/* ICONO */

.wa-fab__icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: linear-gradient(
        180deg,
        var(--wa-green),
        var(--wa-green-dark)
    );
}

.wa-fab__icon svg {
    width: 23px;
    height: 23px;
    fill: #fff;
}


/* TEXTO */

.wa-fab__text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;

    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
}

.wa-fab__title {
    color: var(--wa-text);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

.wa-fab__sub {
    margin-top: 3px;

    color: rgba(11, 18, 32, .65);

    font-size: 11px;
    font-weight: 500;

    white-space: nowrap;
}


/* MOBILE */

@media (max-width: 520px) {

    .wa-fab {
        right: 16px;
        bottom: 18px;

        padding: 7px;
    }

    .wa-fab__text {
        display: none;
    }

    .wa-fab__icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }

    .wa-fab__icon svg {
        width: 27px;
        height: 27px;
    }
}


/* ACCESIBILIDAD */

@media (prefers-reduced-motion: reduce) {

    .wa-fab {
        transition: none;
    }

}