:root {
  color-scheme: light;
  --site-ink: #13283b;
  --site-ink-deep: #0b1d2d;
  --site-ink-soft: #25435b;
  --site-muted: #667789;
  --site-line: #e3e9ee;
  --site-paper: #f4f7f9;
  --site-white: #fff;
  --site-aqua: #52d5d0;
  --site-aqua-deep: #19aaa8;
  --site-blue: #2773d5;
  --site-green: #20b875;
  --site-shadow: 0 16px 44px rgba(15, 36, 54, .09);
  --site-radius: 18px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body.site-page {
  margin: 0;
  background: var(--site-white);
  color: var(--site-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-page img { display: block; max-width: 100%; }
.site-page a { color: inherit; text-decoration: none; }
.site-page button,
.site-page input { font: inherit; }
.site-page button { color: inherit; }
.site-shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.site-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff !important;
  background: var(--site-ink-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}
.site-skip-link:focus { transform: translateY(0); }

.site-page a:focus-visible,
.site-page button:focus-visible,
.site-page input:focus-visible,
.site-page summary:focus-visible {
  outline: 3px solid #f2a93b;
  outline-offset: 3px;
}

/* Header */
.site-header { position: relative; z-index: 40; background: #fff; }
.site-topbar {
  min-height: 38px;
  color: rgba(255,255,255,.82);
  background: var(--site-ink-deep);
  font-size: 12px;
}
.site-topbar__inner,
.site-topbar__left,
.site-topbar__right,
.site-topbar__item {
  display: flex;
  align-items: center;
}
.site-topbar__inner { min-height: 38px; justify-content: space-between; gap: 16px; }
.site-topbar__left { flex-wrap: wrap; gap: 20px; }
.site-topbar__item { gap: 7px; white-space: nowrap; }
.site-topbar__item svg,
.site-topbar__right svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-topbar__right { gap: 12px; }
.site-topbar__right > a:first-child { color: #fff; font-weight: 700; }
.site-topbar__right > a:not(:first-child) {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: rgba(255,255,255,.78);
}
.site-topbar__right > a:hover { color: var(--site-aqua); }
.site-topbar__separator { width: 1px; height: 16px; background: rgba(255,255,255,.22); }

.site-header__main { background: #fff; }
.site-header__main-inner {
  display: grid;
  grid-template-columns: 170px minmax(240px, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 90px;
}
.site-brand { display: inline-flex; align-items: center; width: 160px; }
.site-brand img { width: 160px; height: 60px; object-fit: contain; }
.site-search {
  display: flex;
  min-width: 0;
  height: 48px;
  border: 1px solid #dce5eb;
  border-radius: 9px;
  background: #f7f9fb;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.site-search:focus-within {
  border-color: var(--site-aqua-deep);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25,170,168,.12);
}
.site-search input {
  width: 100%;
  min-width: 0;
  padding: 0 16px;
  color: var(--site-ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
}
.site-search input::placeholder { color: #82909c; }
.site-search button {
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--site-ink-soft);
  cursor: pointer;
}
.site-search button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.site-header__actions { display: flex; align-items: center; gap: 18px; }
.site-header__phone { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.site-header__phone-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--site-aqua-deep);
  background: #eaf9f8;
  border-radius: 50%;
}
.site-header__phone-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-header__phone small,
.site-header__phone strong { display: block; }
.site-header__phone small { color: var(--site-muted); font-size: 10px; line-height: 1.3; }
.site-header__phone strong { color: var(--site-ink); font-size: 14px; line-height: 1.45; }

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color .18s, color .18s, border-color .18s, transform .18s;
}
.site-button:hover { transform: translateY(-1px); }
.site-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-button--whatsapp { color: #fff; background: var(--site-green); }
.site-button--whatsapp:hover { color: #fff; background: #159c61; }
.site-button--primary { color: #092638; background: var(--site-aqua); }
.site-button--primary:hover { background: #72e2dc; }
.site-button--outline { color: #fff; border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.07); }
.site-button--outline:hover { color: #fff; border-color: var(--site-aqua); background: rgba(255,255,255,.14); }
.site-button--dark { color: #fff; background: var(--site-ink); }
.site-button--dark:hover { color: #fff; background: var(--site-ink-soft); }
.site-nav-toggle { display: none; }

.site-brand-strip { border-top: 1px solid #edf0f2; border-bottom: 1px solid #e9eef2; background: #f8fafb; }
.site-brand-strip__inner { display: flex; align-items: center; gap: 8px; min-height: 44px; overflow-x: auto; scrollbar-width: none; }
.site-brand-strip__inner::-webkit-scrollbar { display: none; }
.site-brand-strip a {
  flex: 0 0 auto;
  padding: 5px 13px;
  color: #4d6274;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  transition: color .16s, background-color .16s;
}
.site-brand-strip a:hover { color: var(--site-ink); background: #e9f1f4; }
.site-brand-strip .site-brand-strip__all { margin-left: auto; color: var(--site-aqua-deep); }

.site-nav { border-bottom: 1px solid #e9eef2; background: #fff; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 52px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-nav__list > li > a,
.site-nav__dropdown > summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  color: #40566a;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
  transition: color .16s, background-color .16s;
}
.site-nav__dropdown > summary::-webkit-details-marker { display: none; }
.site-nav__list > li > a:hover,
.site-nav__dropdown > summary:hover,
.site-nav__dropdown[open] > summary { color: #10263d; background: #f0f6f7; }
.site-nav__dropdown { position: relative; }
.site-nav__dropdown > summary span { color: var(--site-aqua-deep); font-size: 17px; line-height: 1; }
.site-nav__panel {
  position: absolute;
  z-index: 60;
  top: calc(100% + 4px);
  left: 0;
  display: grid;
  min-width: 235px;
  max-height: min(68vh, 480px);
  gap: 2px;
  overflow: auto;
  padding: 9px;
  border: 1px solid #e4ebef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(12,32,48,.16);
}
.site-nav__panel a {
  padding: 9px 11px;
  color: #43596b;
  border-radius: 6px;
  font-size: 13px;
}
.site-nav__panel a:hover { color: var(--site-ink); background: #edf8f7; }
.site-nav__panel--brands { width: min(620px, 78vw); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.site-nav__panel a.site-nav__panel-heading {
  grid-column: 1 / -1;
  margin-bottom: 3px;
  color: var(--site-aqua-deep);
  border-bottom: 1px solid var(--site-line);
  font-weight: 700;
}
.site-nav-toggle { align-items: center; justify-content: center; }

/* Hero */
.site-hero {
  position: relative;
  display: flex;
  min-height: clamp(490px, 53vw, 650px);
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--site-ink-deep);
  isolation: isolate;
}
.site-hero__image,
.site-hero__overlay { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; }
.site-hero__image { object-fit: cover; object-position: center 48%; }
.site-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7,23,37,.94) 0%, rgba(10,32,48,.82) 42%, rgba(9,29,44,.28) 100%),
    linear-gradient(0deg, rgba(8,26,41,.34), transparent 55%);
}
.site-hero__inner { position: relative; display: flex; align-items: center; min-height: inherit; padding-block: 60px; }
.site-hero__copy { width: min(680px, 73%); }
.site-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--site-aqua-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}
.site-eyebrow--light { color: #91e8e0; }
.site-eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(82,213,208,.14);
}
.site-hero h1 {
  max-width: 690px;
  margin: 19px 0 18px;
  color: #fff;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.site-hero__copy > p { max-width: 595px; margin: 0; color: rgba(255,255,255,.82); font-size: clamp(15px, 1.35vw, 18px); line-height: 1.75; }
.site-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.site-hero__assurance { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 34px; color: rgba(255,255,255,.8); font-size: 12px; }
.site-hero__assurance span { display: inline-flex; align-items: center; gap: 7px; }
.site-hero__assurance b { color: var(--site-aqua); font-size: 15px; }
.site-hero__scroll {
  position: absolute;
  right: 0;
  bottom: 37px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  font-size: 20px;
}
.site-hero__corner {
  position: absolute;
  right: 26px;
  top: 50%;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

/* Service shortcuts */
.site-services { position: relative; z-index: 2; margin-top: -40px; }
.site-services__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.site-service-card {
  position: relative;
  min-height: 210px;
  padding: 25px 27px 22px;
  overflow: hidden;
  border: 1px solid #e9eef1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(13,36,53,.10);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.site-service-card:hover { transform: translateY(-4px); border-color: #b9e7e4; box-shadow: var(--site-shadow); }
.site-service-card__index { color: #a7b6c1; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.site-service-card__icon {
  position: absolute;
  top: 21px;
  right: 24px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--site-aqua-deep);
  background: #eaf8f7;
  border-radius: 11px;
  font-size: 22px;
}
.site-service-card h2 { margin: 18px 0 5px; color: var(--site-ink); font-size: 19px; line-height: 1.3; }
.site-service-card p { max-width: 290px; margin: 0; color: var(--site-muted); font-size: 13px; line-height: 1.6; }
.site-service-card__link { display: inline-flex; gap: 8px; align-items: center; margin-top: 15px; color: var(--site-aqua-deep); font-size: 12px; font-weight: 800; }

/* Product list */
.site-products { padding: 88px 0 96px; }
.site-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.site-section-heading h2 { margin: 9px 0 6px; color: var(--site-ink); font-size: clamp(28px, 3.3vw, 42px); letter-spacing: -.035em; line-height: 1.15; }
.site-section-heading p { max-width: 690px; margin: 0; color: var(--site-muted); font-size: 14px; }
.site-section-heading > .site-button { flex: 0 0 auto; margin-bottom: 2px; }
.site-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.site-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e5ebef;
  border-radius: 12px;
  background: #fff;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.site-product-card:hover { transform: translateY(-3px); border-color: #bddfdf; box-shadow: 0 15px 35px rgba(15,36,54,.10); }
.site-product-card__image {
  position: relative;
  display: grid;
  height: 190px;
  place-items: center;
  overflow: hidden;
  background: #f5f7f8;
}
.site-product-card__image img { width: 100%; height: 100%; padding: 13px; object-fit: contain; }
.site-product-card__view {
  position: absolute;
  right: 11px;
  bottom: 11px;
  padding: 5px 9px;
  color: #fff;
  border-radius: 5px;
  background: rgba(13,35,52,.88);
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity .16s, transform .16s;
}
.site-product-card:hover .site-product-card__view,
.site-product-card:focus-within .site-product-card__view { opacity: 1; transform: translateY(0); }
.site-product-card__body { padding: 14px 15px 16px; }
.site-product-card__brand {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 7px;
  overflow: hidden;
  color: var(--site-aqua-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-product-card h3 { margin: 0; color: var(--site-ink); font-size: 14px; line-height: 1.4; }
.site-product-card h3 a { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.site-product-card h3 a:hover { color: var(--site-aqua-deep); }
.site-product-card__group { margin: 6px 0 12px; color: var(--site-muted); font-size: 11px; }
.site-product-card__code { display: block; padding-top: 10px; color: #7c8a96; border-top: 1px solid #edf0f2; font-size: 10px; }
.site-product-card__code strong { margin-left: 4px; color: #41586b; font-weight: 700; }
.site-notice { padding: 22px; color: var(--site-muted); border: 1px solid var(--site-line); border-radius: 10px; background: var(--site-paper); text-align: center; }

/* SEO content band */
.site-seo-section { padding: 66px 0; color: #fff; background: var(--site-ink-deep); }
.site-seo-section__inner { display: grid; grid-template-columns: 160px minmax(0, 1fr); align-items: start; gap: 44px; }
.site-seo-section__mark {
  display: grid;
  width: 140px;
  height: 140px;
  place-items: center;
  color: var(--site-aqua);
  border: 1px solid rgba(82,213,208,.38);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(82,213,208,.12), rgba(82,213,208,.02));
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.08em;
}
.site-seo-section h2 { max-width: 760px; margin: 10px 0 14px; color: #fff; font-size: clamp(27px, 3.3vw, 40px); letter-spacing: -.035em; line-height: 1.17; }
.site-seo-section p { max-width: 850px; margin: 0 0 12px; color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.75; }
.site-seo-section .site-button { margin-top: 10px; }

/* Footer */
.site-footer { color: rgba(255,255,255,.75); background: #0a1a28; }
.site-footer__grid { display: grid; grid-template-columns: 1.25fr .72fr 1fr 1.08fr; gap: 38px; padding-top: 62px; padding-bottom: 52px; }
.site-footer__grid h2 { margin: 0 0 20px; color: #fff; font-size: 17px; line-height: 1.3; }
.site-footer__brand { display: inline-flex; width: 160px; margin-bottom: 17px; padding: 5px 8px; border-radius: 6px; background: #fff; }
.site-footer__brand img { width: 144px; height: 54px; object-fit: contain; }
.site-footer__about h2 { margin-bottom: 10px; font-size: 16px; }
.site-footer__about > p,
.site-footer__map > p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.75; }
.site-footer__badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.site-footer__badges span { padding: 5px 8px; color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.12); border-radius: 5px; font-size: 10px; }
.site-footer__social { display: flex; gap: 8px; margin-top: 17px; }
.site-footer__social a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 50%;
  transition: color .16s, background .16s, border-color .16s;
}
.site-footer__social a:hover { color: var(--site-ink-deep); border-color: var(--site-aqua); background: var(--site-aqua); }
.site-footer__social svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.site-footer__links { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.site-footer__links a { color: rgba(255,255,255,.64); font-size: 12px; transition: color .16s; }
.site-footer__links a:hover { color: var(--site-aqua); }
.site-footer__contact { display: flex; flex-direction: column; gap: 13px; }
.site-footer__contact h2 { margin-bottom: 2px; }
.site-footer__contact-line { display: flex; align-items: center; gap: 11px; min-width: 0; }
.site-footer__contact-icon { display: grid; flex: 0 0 32px; height: 32px; place-items: center; color: var(--site-aqua); border: 1px solid rgba(82,213,208,.28); border-radius: 8px; font-size: 10px; font-weight: 800; }
.site-footer__contact-line small,
.site-footer__contact-line strong { display: block; }
.site-footer__contact-line small { color: rgba(255,255,255,.48); font-size: 10px; }
.site-footer__contact-line strong { overflow-wrap: anywhere; color: #fff; font-size: 12px; font-weight: 600; }
.site-footer__hours { margin: 2px 0 0; color: rgba(255,255,255,.63); font-size: 11px; line-height: 1.7; }
.site-footer__hours strong { color: #fff; }
.site-footer__map-link { display: inline-flex; align-items: center; gap: 7px; color: var(--site-aqua); font-size: 12px; font-weight: 700; }
.site-footer__map h2 { margin-bottom: 8px; }
.site-footer__map iframe { display: block; width: 100%; height: 190px; margin-top: 15px; border: 0; border-radius: 8px; filter: saturate(.82); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom-inner { display: flex; justify-content: space-between; gap: 16px; padding-block: 15px; }
.site-footer__bottom p { margin: 0; color: rgba(255,255,255,.48); font-size: 10px; }
.site-mobile-actions { display: none; }
.site-whatsapp-float {
  position: fixed;
  z-index: 35;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff !important;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--site-green);
  box-shadow: 0 8px 25px rgba(13,50,37,.24);
  transition: transform .18s;
}
.site-whatsapp-float:hover { transform: translateY(-3px); }
.site-whatsapp-float svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 1080px) {
  .site-header__main-inner { grid-template-columns: 145px minmax(180px, 1fr) auto; gap: 18px; }
  .site-brand, .site-brand img { width: 145px; }
  .site-header__phone strong { font-size: 12px; }
  .site-header__actions { gap: 12px; }
  .site-header__actions .site-button { padding-inline: 13px; }
  .site-nav__list > li > a,
  .site-nav__dropdown > summary { padding-inline: 9px; font-size: 12px; }
  .site-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: 1.2fr .8fr 1fr; }
  .site-footer__map { grid-column: 1 / -1; }
  .site-footer__map iframe { height: 220px; }
}

@media (max-width: 780px) {
  .site-shell { width: min(100% - 36px, 620px); }
  .site-topbar__left { gap: 12px; }
  .site-topbar__left .site-topbar__item:nth-child(2) { display: none; }
  .site-topbar__right > a:not(:first-child),
  .site-topbar__separator { display: none; }
  .site-header__main-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand actions" "search search";
    gap: 12px 16px;
    padding-block: 12px;
  }
  .site-brand { grid-area: brand; width: 142px; }
  .site-brand img { width: 142px; height: 52px; }
  .site-search { grid-area: search; height: 44px; }
  .site-header__actions { grid-area: actions; gap: 9px; }
  .site-header__phone { display: none; }
  .site-header__actions > .site-button { min-height: 40px; padding-inline: 11px; font-size: 12px; }
  .site-nav-toggle {
    display: none;
    width: 42px;
    height: 40px;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #dfe8ec;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
  }
  .site-js .site-nav-toggle {
    display: flex;
  }
  .site-nav-toggle span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--site-ink); transition: transform .16s, opacity .16s; }
  .site-header[data-menu-open="true"] .site-nav-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
  .site-header[data-menu-open="true"] .site-nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header[data-menu-open="true"] .site-nav-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .site-brand-strip__inner { width: 100%; min-height: 40px; padding-inline: 18px; gap: 4px; }
  .site-brand-strip a { padding-inline: 11px; font-size: 11px; }
  .site-nav { display: block; border-bottom: 1px solid #dfe7ec; box-shadow: 0 12px 20px rgba(14,35,52,.06); }
  .site-js .site-nav { display: none; }
  .site-header[data-menu-open="true"] .site-nav { display: block; }
  .site-nav__list { display: flex; min-height: 0; flex-direction: column; align-items: stretch; gap: 2px; padding-block: 9px 13px; }
  .site-nav__list > li > a,
  .site-nav__dropdown > summary { min-height: 44px; justify-content: space-between; padding-inline: 12px; font-size: 14px; }
  .site-nav__dropdown { width: 100%; }
  .site-nav__panel,
  .site-nav__panel--brands { position: static; width: 100%; max-height: 260px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 0 8px; box-shadow: none; }
  .site-nav__panel a.site-nav__panel-heading { grid-column: 1 / -1; }
  .site-hero { min-height: 510px; }
  .site-hero__image { object-position: 56% center; }
  .site-hero__overlay { background: linear-gradient(90deg, rgba(7,23,37,.92), rgba(8,27,42,.63)), linear-gradient(0deg, rgba(8,26,41,.38), transparent 75%); }
  .site-hero__inner { padding-block: 54px 75px; }
  .site-hero__copy { width: 100%; }
  .site-hero h1 { max-width: 550px; font-size: clamp(39px, 9vw, 58px); }
  .site-hero__copy > p { max-width: 510px; font-size: 15px; }
  .site-hero__assurance { gap: 10px 17px; margin-top: 25px; font-size: 11px; }
  .site-hero__scroll,
  .site-hero__corner { display: none; }
  .site-services { margin-top: -28px; }
  .site-services__grid { grid-template-columns: 1fr; gap: 10px; }
  .site-service-card { min-height: auto; padding: 19px 21px; }
  .site-service-card h2 { margin-top: 10px; }
  .site-service-card p { max-width: 440px; }
  .site-service-card__link { margin-top: 11px; }
  .site-products { padding: 60px 0 66px; }
  .site-section-heading { align-items: flex-start; flex-direction: column; gap: 15px; margin-bottom: 20px; }
  .site-section-heading > .site-button { min-height: 41px; }
  .site-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .site-product-card__image { height: auto; aspect-ratio: 1.28 / 1; }
  .site-product-card__body { padding: 11px 11px 12px; }
  .site-product-card h3 { font-size: 12px; }
  .site-product-card__group { margin: 5px 0 9px; font-size: 10px; }
  .site-product-card__view { display: none; }
  .site-seo-section { padding: 48px 0; }
  .site-seo-section__inner { grid-template-columns: 1fr; gap: 22px; }
  .site-seo-section__mark { width: 70px; height: 70px; border-radius: 14px; font-size: 24px; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 23px; padding-block: 45px 38px; }
  .site-footer__map { grid-column: 1 / -1; }
  .site-footer__bottom-inner { flex-direction: column; gap: 4px; }
  .site-whatsapp-float { display: none; }
  .site-mobile-actions {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 62px;
    padding: 5px max(8px, env(safe-area-inset-right)) calc(5px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    border-top: 1px solid #e4ebef;
    background: rgba(255,255,255,.97);
    box-shadow: 0 -5px 20px rgba(13,36,53,.08);
    backdrop-filter: blur(12px);
  }
  .site-mobile-actions a { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2px; color: #53687a; font-size: 10px; font-weight: 700; }
  .site-mobile-actions a svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .site-mobile-actions .site-mobile-actions__whatsapp { color: #13965f; }
  .site-page { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
}

@media (max-width: 430px) {
  .site-shell { width: calc(100% - 28px); }
  .site-topbar__left { gap: 8px; }
  .site-topbar__left .site-topbar__item { font-size: 10px; }
  .site-header__actions > .site-button { width: 40px; padding: 0; overflow: hidden; gap: 20px; color: transparent; font-size: 0; }
  .site-header__actions > .site-button svg { flex: 0 0 19px; color: #fff; }
  .site-header__actions > .site-button span { display: none; }
  .site-hero { min-height: 490px; }
  .site-hero__inner { padding-block: 44px 58px; }
  .site-hero h1 { font-size: clamp(36px, 10vw, 45px); }
  .site-hero__actions { gap: 9px; margin-top: 22px; }
  .site-hero__actions .site-button { min-height: 43px; padding-inline: 13px; font-size: 12px; }
  .site-hero__assurance { display: grid; gap: 7px; margin-top: 22px; }
  .site-service-card { padding-inline: 17px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 29px; }
  .site-footer__map { grid-column: auto; }
}

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