:root {
  --ink: #17191b;
  --muted: #66717e;
  --line: #dbe4ee;
  --paper: #f8fbff;
  --soft: #edf5ff;
  --deep: #155ca8;
  --deep-2: #0c3567;
  --accent: #121417;
  --gold: #2d7cc4;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(13, 50, 94, 0.14);
  --radius: 8px;
  --wrap: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-cta {
  display: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-top {
  background: #101418;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.top-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: var(--wrap);
  margin-inline: auto;
}

.top-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-link,
.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 238, 0.9);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 214px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 3px;
}

.brand-seal {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: var(--white);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.34);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--deep);
  font-size: 18px;
  line-height: 1;
}

.brand-text span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  color: #2a3833;
  font-size: 14px;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.is-active {
  background: var(--soft);
  color: var(--deep);
}

.menu-panel-head,
.menu-panel-actions,
.menu-note {
  display: none;
}

.mobile-whatsapp-action {
  display: inline-grid;
}

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

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.icon-btn svg,
.btn svg,
.nav-link svg,
.top-link svg,
.mini-link svg {
  flex: 0 0 auto;
}

.icon-btn.blue {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--white);
}

.icon-btn.dark {
  background: #121417;
  border-color: #121417;
  color: var(--white);
}

.wa-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
}

.wa-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.icon-btn .wa-icon,
.float-whatsapp .wa-icon {
  width: 22px;
  height: 22px;
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--deep);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--deep-2);
  box-shadow: 0 12px 28px rgba(15, 79, 67, 0.2);
  transform: translateY(-1px);
}

.btn.secondary {
  background: var(--white);
  color: var(--deep);
  border-color: var(--line);
}

.btn.soft {
  background: var(--soft);
  color: var(--deep);
}

.hero {
  min-height: 620px;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(115deg, #ffffff 0%, #f3f8ff 48%, #e6f2ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 58px;
  right: max(4vw, 42px);
  bottom: 36px;
  width: min(34vw, 520px);
  z-index: -2;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(21, 92, 168, 0.08), rgba(21, 92, 168, 0.18)),
    var(--hero-image) center / contain no-repeat;
  opacity: 1;
  box-shadow: 0 24px 70px rgba(21, 92, 168, 0.16);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, rgba(21, 92, 168, 0.08), rgba(21, 92, 168, 0));
}

.hero-inner {
  width: var(--wrap);
  margin: 0 auto;
  padding: 72px 0;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--deep);
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 590px;
  margin: 22px 0 0;
  color: #465668;
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 690px;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.stat strong {
  display: block;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 74px 0;
}

.section.compact {
  padding: 48px 0;
}

.section.alt {
  background: var(--soft);
}

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

.section-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  max-width: 690px;
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow);
  background: var(--deep);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 31, 27, 0.88), rgba(9, 31, 27, 0.08) 58%);
}

.category-card:hover img {
  transform: scale(1.045);
}

.category-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 18px;
}

.category-content h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.08;
}

.category-content p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.category-content span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #fff3c7;
  font-size: 13px;
  font-weight: 900;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 32, 29, 0.06);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #f8faf6, #e8f0e8);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.product-code {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(15, 79, 67, 0.92);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.product-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.product-body p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.product-actions .btn {
  width: 100%;
  min-height: 42px;
  padding-inline: 10px;
  font-size: 14px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 36px;
  align-items: start;
}

.detail-gallery {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, #eaf4ff);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.detail-gallery img {
  width: min(92%, 560px);
  max-height: 500px;
  object-fit: contain;
}

.detail-code {
  top: 18px;
  left: 18px;
}

.detail-info {
  padding: 6px 0;
}

.detail-info h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.detail-info p {
  color: var(--muted);
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.detail-specs div {
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-specs strong,
.detail-specs span {
  display: block;
}

.detail-specs strong {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.detail-specs span {
  margin-top: 6px;
  color: var(--ink);
  font-weight: 900;
}

.detail-tags {
  margin-top: 18px;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.feature {
  padding: 24px;
  background: var(--white);
}

.feature i,
.feature > svg {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--deep);
  padding: 10px;
}

.feature h3 {
  margin: 0;
  font-size: 18px;
}

.feature p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  padding: 22px;
  border-left: 3px solid var(--accent);
  background: var(--white);
  border-radius: var(--radius);
}

.process-step strong {
  color: var(--accent);
  font-size: 13px;
}

.process-step h3 {
  margin: 8px 0;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  padding: 46px 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 36, 0.96), rgba(21, 92, 168, 0.84) 58%, rgba(21, 92, 168, 0.2)),
    var(--hero-image) right 9% center / min(360px, 36vw) auto no-repeat;
  color: var(--white);
}

.page-hero p {
  max-width: 670px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.side-panel {
  align-self: start;
  position: sticky;
  top: 98px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.side-panel h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

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

.category-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
}

.category-pill.is-active {
  background: var(--deep);
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rich-text h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
}

.rich-text p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}

.check-list i,
.check-list svg {
  color: var(--deep);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 32, 29, 0.06);
}

.contact-card {
  padding: 24px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-method {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.contact-method i,
.contact-method > svg {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--deep);
  padding: 10px;
}

.contact-method strong,
.contact-method span {
  display: block;
}

.contact-method span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.form-card {
  padding: 24px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.map-box {
  min-height: 260px;
  margin-top: 18px;
  border-radius: var(--radius);
  background: var(--soft);
  overflow: hidden;
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.site-footer {
  background: linear-gradient(135deg, #155ca8, #0c3567);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 52px 0;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 900;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
}

.payment-logos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.payment-badge {
  height: 28px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.payment-badge.visa {
  color: #155ca8;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  font-style: italic;
}

.payment-badge.mastercard {
  position: relative;
  min-width: 54px;
}

.payment-badge.mastercard span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.payment-badge.mastercard span:first-child {
  margin-right: -6px;
  background: #eb001b;
}

.payment-badge.mastercard span:last-child {
  background: #f79e1b;
  mix-blend-mode: multiply;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #21b45b;
  color: #fff;
  box-shadow: 0 16px 34px rgba(33, 180, 91, 0.35);
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .top-inner {
    justify-content: center;
  }

  .top-links.secondary-top {
    display: none;
  }

  .nav-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
  }

  .brand-logo {
    width: 176px;
    height: 44px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    display: none;
    align-content: start;
    gap: 9px;
    padding: 18px 20px;
    background:
      linear-gradient(135deg, rgba(21, 92, 168, 0.12), rgba(18, 20, 23, 0.04) 34%),
      #ffffff;
    overflow-y: auto;
  }

  .menu-open .nav-menu {
    display: grid;
  }

  .menu-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
  }

  .menu-logo {
    width: min(66vw, 238px);
    height: 52px;
    object-fit: contain;
    object-position: left center;
  }

  .menu-note {
    display: block;
    max-width: 330px;
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
  }

  .nav-link {
    min-height: 58px;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 14px;
    background: #f7fbff;
    border: 1px solid #d7e6f6;
    color: #121417;
    box-shadow: 0 10px 26px rgba(21, 92, 168, 0.08);
    font-size: 17px;
    font-weight: 850;
  }

  .nav-link.is-active {
    background: var(--deep);
    color: var(--white);
    border-color: var(--deep);
  }

  .menu-panel-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .menu-contact-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 82px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
  }

  .menu-contact-card i,
  .menu-contact-card > svg,
  .menu-contact-card .wa-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--deep);
    padding: 9px;
  }

  .menu-contact-card > svg {
    background: var(--soft);
    box-sizing: border-box;
  }

  .menu-contact-card strong,
  .menu-contact-card small {
    display: block;
    font-size: 14px;
  }

  .menu-contact-card small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
  }

  .menu-contact-card.primary {
    background: var(--deep);
    border-color: var(--deep);
    color: var(--white);
  }

  .menu-contact-card.primary i,
  .menu-contact-card.primary > svg,
  .menu-contact-card.primary .wa-icon {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    padding: 8px;
  }

  .menu-contact-card.primary small {
    color: rgba(255, 255, 255, 0.74);
  }

  .menu-toggle {
    display: inline-grid;
  }

  .desktop-quote {
    display: none;
  }

  .mobile-whatsapp-action {
    display: inline-grid;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-inner {
    padding: 84px 0 38px;
  }

  .hero-stats,
  .contact-grid,
  .split,
  .catalog-layout,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-inner > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    width: min(72vw, 260px);
  }

  .side-panel {
    position: static;
  }

  .category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom .section-inner {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --wrap: min(100% - 24px, 1180px);
  }

  body {
    padding-bottom: 68px;
  }

  .site-top {
    display: none;
  }

  .nav-inner {
    width: calc(100% - 20px);
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .brand-logo {
    width: min(52vw, 190px);
    height: 56px;
  }

  .header-actions {
    gap: 6px;
    justify-self: end;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(135deg, rgba(21, 92, 168, 0.12), rgba(18, 20, 23, 0.04) 34%),
      #ffffff;
    align-items: start;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(239, 247, 255, 0.62));
  }

  .hero::before {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 13vw, 54px);
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-inner {
    padding: 48px 0 34px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
    position: relative;
    z-index: 1;
  }

  .stat {
    padding: 12px 10px;
  }

  .stat strong {
    font-size: 22px;
  }

  .stat span {
    font-size: 11px;
  }

  .section {
    padding: 50px 0;
  }

  .section-head {
    display: grid;
    gap: 16px;
  }

  .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature {
    padding: 16px;
  }

  .feature i,
  .feature > svg {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    padding: 8px;
  }

  .feature h3 {
    font-size: 15px;
    line-height: 1.2;
  }

  .feature p {
    font-size: 12px;
    line-height: 1.45;
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .process-step {
    min-height: 150px;
    padding: 15px 12px;
  }

  .process-step h3 {
    margin: 6px 0;
    font-size: 16px;
  }

  .process-step p {
    font-size: 12px;
    line-height: 1.45;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-card {
    min-height: 210px;
  }

  .category-card img {
    min-height: 210px;
  }

  .category-content {
    padding: 13px;
  }

  .category-content h3 {
    font-size: 17px;
  }

  .category-content p {
    display: none;
  }

  .product-body {
    padding: 11px;
  }

  .product-body h3 {
    font-size: 15px;
  }

  .product-body p {
    display: none;
  }

  .tag-row {
    display: none;
  }

  .product-actions .btn {
    min-height: 38px;
    font-size: 12px;
  }

  .category-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 34px 0;
    background:
      linear-gradient(90deg, rgba(7, 20, 36, 0.94), rgba(21, 92, 168, 0.78)),
      var(--hero-image) right -70px center / 250px auto no-repeat;
  }

  .page-hero h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .page-hero p {
    max-width: 92%;
    font-size: 15px;
  }

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

  .detail-specs,
  .detail-actions {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .form-card {
    padding: 18px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(251, 252, 248, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .mobile-cta .btn {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .float-whatsapp {
    display: none;
  }
}

@media (max-width: 380px) {
  .brand-text strong {
    font-size: 15px;
  }

  .brand-text span {
    display: none;
  }

  .icon-btn {
    width: 39px;
    height: 39px;
  }

  .product-actions .btn {
    font-size: 11px;
  }
}
