:root {
  --green-950: #0a2616;
  --green-900: #0f2a1a;
  --green-800: #0f3d24;
  --green-700: #1b5e2c;
  --green-600: #2a7e3f;
  --brand-green: #1fa739;
  --green-100: #e8efe9;
  --champagne: #d4a23e;
  --champagne-light: #d4a23e;
  --graphite: #2b2f31;
  --black: #111111;
  --ice: #f4f4f2;
  --silver: #cfcfcf;
  --line: #e2e4e2;
  --muted: #676b69;
  --white: #fff;
  --radius-sm: 6px;
  --radius: 10px;
  --shadow: 0 18px 45px rgba(10, 38, 22, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 122px; }
body {
  margin: 0;
  color: var(--black);
  background: var(--ice);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-synthesis: none;
}
h1, h2, h3 { margin-top: 0; font-family: Montserrat, Manrope, sans-serif; font-weight: 800; }
p { margin-top: 0; }
button, input, select { font: inherit; }
button, a { touch-action: manipulation; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--champagne); outline-offset: 3px; }
.sr-only { width: 1px; height: 1px; padding: 0; margin: -1px; position: absolute; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.service-bar {
  min-height: 32px;
  padding: 6px clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--green-900);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
}
.service-bar span + span { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.22); }
.service-internal { display: none; color: var(--champagne-light); font-weight: 800; text-decoration: none; white-space: nowrap; }
.topbar {
  min-height: 86px;
  padding: 13px clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: 205px minmax(300px, 720px) auto;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 54px);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand img { width: 188px; max-height: 60px; display: block; object-fit: contain; }
.header-search { position: relative; }
.header-search::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid var(--green-800);
  border-radius: 50%;
}
.header-search::after {
  content: "";
  width: 7px;
  height: 2px;
  position: absolute;
  left: 31px;
  top: calc(50% + 7px);
  transform: rotate(45deg);
  background: var(--green-800);
}
.header-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px 0 50px;
  border: 1px solid var(--silver);
  border-radius: var(--radius-sm);
  background: var(--ice);
  color: var(--black);
}
.header-search input:focus { border-color: var(--green-700); background: var(--white); }
.topbar nav { display: flex; align-items: center; gap: 15px; }
.header-link { min-height: 42px; padding: 0 3px; display: inline-flex; align-items: center; color: var(--white); font-size: .82rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.header-link:hover { color: var(--champagne-light); }
.link-button { min-height: 42px; border: 0; background: transparent; color: var(--green-800); font-weight: 600; }
.cart-button {
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--green-800);
  color: var(--white);
  font-weight: 700;
}
.cart-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-button strong, .mobile-cart strong { min-width: 24px; padding: 3px 7px; border-radius: 999px; background: var(--champagne); text-align: center; }

main { overflow: hidden; }
main#catalogo { display: flex; flex-direction: column; }
main#catalogo .intro { order: 1; }
main#catalogo .trust-strip { order: 2; }
main#catalogo .category-section { order: 3; }
main#catalogo .catalog-section { order: 4; }
.intro {
  max-width: 1600px;
  margin: 0 auto;
  padding: 30px clamp(18px, 4vw, 64px) 26px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(260px,360px);
  align-items: end;
  gap: 50px;
  background: var(--ice);
}
.intro > div { max-width: 760px; }
.eyebrow { color: var(--champagne); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.dark { color: var(--green-700); }
.intro h1 { max-width: 720px; margin: 8px 0 10px; color: var(--green-900); font-size: clamp(2.2rem,4vw,4.1rem); line-height: .98; letter-spacing: -.05em; }
.intro p { max-width: 680px; margin: 0; color: var(--graphite); font-size: 1.06rem; line-height: 1.6; }
.fulfillment-note {
  padding: 22px 24px;
  display: grid;
  gap: 4px;
  border-left: 4px solid var(--champagne);
  background: var(--green-900);
  color: var(--white);
}
.fulfillment-note span { color: var(--champagne-light); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.fulfillment-note strong { margin-top: 5px; font-family: Montserrat, sans-serif; font-size: 1.15rem; }
.fulfillment-note small { color: var(--green-100); font-size: .82rem; }

.category-section, .catalog-section { max-width: 1440px; margin: auto; padding: 0 clamp(18px,4vw,64px); }
.category-section { padding-top: 28px; padding-bottom: 42px; }
.section-title-row { margin-bottom: 20px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.section-title-row h2 { margin: 6px 0 0; color: var(--green-900); font-size: clamp(1.65rem,3vw,2.65rem); letter-spacing: -.04em; }
.section-title-row p { margin: 0; color: var(--muted); }
.text-action { padding: 7px 0; border: 0; border-bottom: 1px solid var(--green-700); background: transparent; color: var(--green-800); font-weight: 700; }
.category-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; }
.category-card {
  min-height: 154px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  text-align: left;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.category-card:hover { transform: translateY(-2px); border-color: var(--green-700); background: var(--green-100); }
.category-card.active { border-color: var(--green-700); box-shadow: inset 0 0 0 1px var(--green-700); background: var(--green-100); }
.category-card > span { color: var(--champagne); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.category-card strong { margin: 22px 0 4px; color: var(--green-900); font-family: Montserrat, sans-serif; font-size: .98rem; }
.category-card small { color: var(--muted); font-size: .76rem; line-height: 1.35; }
.category-card em { margin-top: auto; padding-top: 12px; color: var(--green-700); font-size: .71rem; font-style: normal; font-weight: 700; }

.catalog-section { padding-top: 40px; padding-bottom: 110px; border-top: 1px solid var(--silver); }
.products-heading { margin-bottom: 26px; }
.catalog-layout { display: grid; grid-template-columns: 230px minmax(0,1fr); gap: 28px; align-items: start; }
.filters {
  padding: 20px;
  display: grid;
  gap: 18px;
  position: sticky;
  top: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.filter-head { display: flex; align-items: center; justify-content: space-between; }
.filter-head strong { color: var(--green-900); font-family: Montserrat, sans-serif; font-size: .92rem; }
.filter-head button { display: none; border: 0; background: transparent; font-size: 1.7rem; }
.filters label { display: grid; gap: 7px; }
.filters label > span { color: var(--graphite); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.filters select { width: 100%; min-height: 44px; padding: 0 10px; border: 1px solid var(--silver); border-radius: var(--radius-sm); background: var(--white); color: var(--black); }
.filter-help { margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.45; }
.primary, .secondary { min-height: 46px; padding: 12px 17px; border: 0; border-radius: var(--radius-sm); font-weight: 700; }
.primary { display: inline-flex; align-items: center; justify-content: center; background: var(--green-700); color: var(--white); box-shadow: 0 10px 24px rgba(15,61,36,.16); }
.primary:hover { background: var(--green-900); }
.product-dialog { width: min(1220px,calc(100% - 24px)); max-height: calc(100dvh - 24px); overflow: auto; }
.product-page-head { min-height: 58px; padding: 8px 24px; display: flex; align-items: center; gap: 14px; position: sticky; z-index: 5; top: 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.product-page-head > span { color: var(--muted); font-size: .78rem; font-weight: 700; }
.product-back { float: none; background: var(--paper); font-size: 1.15rem; }
.product-gallery { min-width: 0; display: grid; align-content: start; background: var(--paper); }
.product-gallery > small { padding: 12px 16px; color: var(--muted); font-size: .7rem; text-align: center; }
.gallery-zoom-hint { display: block; padding: 0 16px 12px; color: var(--muted); font-size: .7rem; text-align: center; }
.product-summary { margin: 15px 0 20px; color: var(--graphite); font-size: .93rem; line-height: 1.65; }
.product-trust { margin-top: 16px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 12px; }
.product-trust div { min-width: 0; padding: 12px; display: grid; gap: 3px; }
.product-trust div + div { border-left: 1px solid var(--line); }
.product-trust strong { color: var(--green-900); font-size: .72rem; }
.product-trust span { color: var(--muted); font-size: .65rem; line-height: 1.35; }
.product-depth { padding: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 1px solid var(--line); background: #fafaf8; }
.product-depth section { min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.product-depth h3 { margin: 6px 0 8px; color: var(--green-900); font-size: 1.18rem; }
.product-depth p { margin: 0; color: var(--graphite); font-size: .88rem; line-height: 1.65; }
.simple-summary { border-top: 4px solid var(--green-700) !important; }
.depth-heading { margin-bottom: 16px; }
.depth-heading small { color: var(--muted); font-size: .72rem; }
.technical-section { grid-column: 1/-1; border-top: 4px solid var(--green-700) !important; }
.technical-facts { overflow: hidden; border: 1px solid #e7e2d8; border-radius: 12px; }
.technical-facts div { min-height: 50px; padding: 11px 14px; display: grid; grid-template-columns: minmax(150px,.8fr) 1.2fr; align-items: center; gap: 18px; }
.technical-facts div + div { border-top: 1px solid #eee9df; }
.technical-facts div:nth-child(odd) { background: var(--paper); }
.technical-facts span { color: var(--muted); font-size: .76rem; }
.technical-facts strong { color: var(--green-900); font-size: .82rem; line-height: 1.45; text-align: right; overflow-wrap: anywhere; }
.official-source { margin-top: 14px; display: inline-flex; color: var(--green-700); font-size: .76rem; font-weight: 800; text-underline-offset: 3px; }
.lopes-tip { border-color: rgba(212,162,62,.65) !important; background: #fffaf0 !important; }
.related-section { grid-column: 1/-1; }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.related-grid button,.related-grid > a { min-height: 128px; padding: 16px; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--black); text-align: left; text-decoration: none; }
.related-grid button:hover,.related-grid > a:hover { border-color: var(--champagne); box-shadow: var(--shadow); }
.related-grid span { color: var(--champagne-text); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.related-grid strong { margin: 12px 0; color: var(--green-900); font-size: .78rem; line-height: 1.35; }
.related-grid small { margin-top: auto; color: var(--muted); font-size: .68rem; }
.selection-help { grid-column: 1/-1; border-left: 4px solid var(--champagne) !important; }
.related-grid button,.related-grid > a { min-height: 248px; padding: 0 13px 14px; overflow: hidden; }
.related-grid .related-media { width: calc(100% + 26px); height: 132px; margin: 0 -13px 13px; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line); background: linear-gradient(145deg,#fff,var(--paper)); }
.related-grid .related-media img { width: 88%; height: 88%; object-fit: contain; mix-blend-mode: multiply; transition: transform .25s ease; }
.related-grid button:hover .related-media img,.related-grid > a:hover .related-media img { transform: scale(1.08); }
.related-grid .related-brand { color: var(--champagne-text); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.related-grid button strong,.related-grid > a strong { margin: 7px 0 10px; }
.related-grid button small,.related-grid > a small { color: var(--green-800); font-weight: 800; }
.seo-breadcrumb { width: 100%; margin-bottom: 22px; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.72); font-size: .78rem; }
.seo-breadcrumb a { color: var(--champagne-light); text-underline-offset: 3px; }
.seo-breadcrumb strong { max-width: 60ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.category-index { max-width: 1440px; margin: 24px auto 0; padding: 0 clamp(18px,4vw,64px); }
.category-index details { border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.category-index summary { padding: 16px 18px; cursor: pointer; color: var(--green-900); font-weight: 800; }
.category-index nav { max-height: 320px; padding: 0 18px 18px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px 18px; overflow: auto; }
.category-index a { color: var(--green-800); font-size: .8rem; line-height: 1.4; text-underline-offset: 3px; }
.primary:disabled { opacity: .45; cursor: not-allowed; }
.secondary { background: var(--green-100); color: var(--green-800); }
.wide { width: 100%; }
.mobile-toolbar { display: none; }
.active-filter { margin-bottom: 15px; padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; border: 1px solid #bdd0c0; border-radius: var(--radius-sm); background: var(--green-100); color: var(--green-900); font-size: .82rem; }
.active-filter[hidden] { display: none; }
.active-filter button { border: 0; background: transparent; color: var(--green-800); font-weight: 700; }
.catalog-search { margin-bottom: 16px; display: block; position: relative; }
.catalog-search::before { width: 18px; height: 18px; position: absolute; z-index: 1; left: 18px; top: 50%; content: ""; transform: translateY(-58%); border: 2px solid var(--green-800); border-radius: 50%; pointer-events: none; }
.catalog-search::after { width: 8px; height: 2px; position: absolute; z-index: 1; left: 32px; top: calc(50% + 7px); content: ""; transform: rotate(45deg); background: var(--green-800); pointer-events: none; }
.catalog-search input { width: 100%; min-width: 0; min-height: 54px; padding: 0 18px 0 52px; border: 1px solid #bdd0c0; border-radius: 14px; background: var(--white); color: var(--black); box-shadow: 0 8px 24px rgba(10,38,22,.06); }
.catalog-search input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,162,62,.18); outline: 0; }
.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-2px); border-color: transparent; box-shadow: var(--shadow); }
.card.unavailable { opacity: .7; }
.availability-badge { padding: 6px 9px; position: absolute; z-index: 2; top: 10px; left: 10px; border-radius: 999px; background: var(--graphite); color: var(--white); font-size: .65rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.card-action:disabled { cursor: not-allowed; background: var(--ice); color: var(--muted); }
.card-media {
  width: 100%;
  aspect-ratio: 1.12;
  padding: 12px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid #eceeed;
  background: var(--white);
}
.card-media img { width: 88%; height: 88%; z-index: 1; object-fit: contain; mix-blend-mode: multiply; }
.card-body { padding: 16px; display: flex; flex: 1; flex-direction: column; gap: 8px; }
.meta { color: var(--green-700); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.card h3 { min-height: 2.8em; margin: 0; font-family: Manrope, sans-serif; font-size: .94rem; font-weight: 700; line-height: 1.4; }
.specification { min-height: 2.65em; margin: 0; overflow: hidden; color: var(--muted); font-size: .76rem; line-height: 1.35; }
.card-description { min-height: 4.05em; margin: 0; display: -webkit-box; overflow: hidden; color: var(--graphite); font-size: .74rem; line-height: 1.35; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.reference-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.reference-row > span { color: var(--muted); font-size: .68rem; white-space: nowrap; }
.reference-copy { width: max-content; max-width: 100%; min-height: auto; padding: 0; border: 0; background: transparent; color: var(--green-800); font-size: .72rem; font-weight: 700; text-align: left; text-decoration: underline; text-underline-offset: 3px; }
.variant-code { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .72rem; }
.reference-copy.prominent { display: block; margin: 10px 0 18px; }
.price { margin-top: 5px; color: var(--green-900); font-size: 1.08rem; }
.price.quote { color: var(--green-700); font-size: .9rem; }
.confirmation { color: var(--muted); font-size: .66rem; line-height: 1.35; }
.card-action { width: 100%; min-height: 46px; border: 0; border-top: 1px solid var(--line); background: var(--white); color: var(--green-800); font-weight: 700; }
.card-action { display: grid; place-items: center; text-decoration: none; }
.card-action.disabled { cursor: not-allowed; background: var(--ice); color: var(--muted); }
.card-action:hover { background: var(--green-800); color: var(--white); }
.load-more { display: block; margin: 28px auto; }
.empty-state { grid-column: 1/-1; padding: 54px 22px; border: 1px solid var(--line); background: var(--white); text-align: center; }
.empty-state strong { color: var(--green-900); font-family: Montserrat, sans-serif; }
.empty-state p { margin: 8px 0 20px; color: var(--muted); }
.loading-state { grid-column: 1/-1; min-height: 220px; padding: 54px 22px; display: grid; place-content: center; gap: 6px; border: 1px solid var(--line); background: var(--white); color: var(--green-900); text-align: center; }
.loading-state p { margin: 0; color: var(--muted); }
.error-state .primary { margin-top: 4px; }

.product-dialog { width: min(1180px,calc(100% - 28px)); max-height: calc(100dvh - 24px); padding: 0; overflow: auto; border: 0; border-radius: var(--radius); box-shadow: 0 28px 90px rgba(3,22,11,.34); }
.product-dialog::backdrop { background: rgba(10,38,22,.75); backdrop-filter: blur(4px); }
.detail { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(440px,.96fr); }
.detail-media { min-height: 650px; display: grid; place-items: center; position: relative; overflow: hidden; background: var(--ice); }
.detail-media img { width: 88%; height: 88%; z-index: 1; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s ease; }
.detail-media img[tabindex] { cursor: zoom-in; }
@media (hover: hover) and (pointer: fine) {
  .detail-media:hover img[tabindex] { transform: scale(1.75); }
}
.detail-media:hover img:not([tabindex]) { transform: scale(1.08); }
.detail-zoom { min-height: 44px; padding: 0 14px; display: flex; align-items: center; gap: 7px; position: absolute; z-index: 2; right: 18px; bottom: 18px; border: 1px solid rgba(13,94,28,.18); border-radius: 99px; background: rgba(255,255,255,.92); color: var(--green-900); box-shadow: var(--shadow); font-weight: 800; }
.detail-zoom svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.gallery-thumbnails { padding: 14px; display: flex; gap: 9px; overflow: auto; border-bottom: 1px solid var(--line); background: var(--white); }
.gallery-thumbnails button { width: 68px; height: 68px; flex: 0 0 auto; padding: 4px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.gallery-thumbnails button.active { border-color: var(--champagne); box-shadow: inset 0 0 0 1px var(--champagne); }
.gallery-thumbnails img { width: 100%; height: 100%; object-fit: contain; }
.detail-copy { padding: 38px 40px; }
.detail-copy h2 { margin: 10px 0 0; color: var(--green-900); font-size: clamp(1.7rem,3vw,2.4rem); line-height: 1.06; letter-spacing: -.04em; }
.detail-close { float: right; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--ice); color: var(--green-900); font-size: 1.5rem; }
.detail-copy > p:not(.fineprint) { margin: 14px 0 18px; color: var(--graphite); font-size: .9rem; line-height: 1.6; }
.product-identification { display: flex; align-items: center; gap: 8px; }
.product-identification > span:last-child { padding: 5px 9px; border-radius: 99px; background: var(--paper); color: var(--muted); font-size: .66rem; font-weight: 700; }
.detail-copy label { display: block; margin-bottom: 7px; color: var(--graphite); font-size: .82rem; }
.detail-copy select { width: 100%; min-height: 50px; padding: 0 12px; border: 1px solid var(--silver); border-radius: var(--radius-sm); background: var(--white); }
.detail-commercial { margin: 0 0 14px; padding: 14px 0; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-commercial span { color: var(--muted); font-size: .8rem; }
.detail-commercial span small { display: block; margin-top: 2px; }
.detail-commercial .price { margin: 0; font-family: Montserrat,sans-serif; font-size: 1.55rem; }
.choice-panel { padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fafaf8; }
.choice-heading { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.choice-heading > span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--green-900); color: var(--white); font-size: .75rem; font-weight: 800; }
.choice-heading strong,.choice-heading small { display: block; }
.choice-heading strong { color: var(--green-900); font-size: .82rem; }
.choice-heading small { margin-top: 2px; color: var(--muted); font-size: .65rem; }
.quantity-row { margin-top: 15px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.quantity-row .choice-heading { margin: 0; }
.detail-quantity { min-height: 44px; padding: 4px; display: flex; align-items: center; gap: 6px; border: 1px solid var(--silver); border-radius: var(--radius-sm); background: var(--white); }
.detail-quantity button { width: 36px; height: 36px; padding: 0; border: 0; border-radius: 8px; background: var(--paper); color: var(--green-900); font-size: 1.15rem; font-weight: 800; }
.detail-quantity input { width: 42px; height: 36px; padding: 0; border: 0; background: transparent; color: var(--green-900); font: 800 .9rem Manrope,sans-serif; text-align: center; appearance: textfield; }
.detail-quantity input::-webkit-inner-spin-button { appearance: none; }
.detail-quantity button:disabled { opacity: .35; }
.detail-subtotal { margin: 14px 0 10px; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.detail-subtotal span { color: var(--muted); font-size: .72rem; }
.detail-subtotal strong { color: var(--green-900); font-family: Montserrat,sans-serif; }
.detail-add { min-height: 54px; font-size: .94rem; }
.variant-list { max-height: 410px; display: grid; gap: 9px; overflow: auto; overscroll-behavior: contain; scrollbar-gutter: stable; }
.variant-item { min-width: 0; padding: 13px; display: grid; grid-template-columns: minmax(150px,1fr) minmax(88px,auto) auto minmax(88px,auto); align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.variant-item[hidden] { display: none; }
.variant-info { min-width: 0; }
.variant-info strong,.variant-info small,.variant-price span,.variant-price strong { display: block; }
.variant-info strong { color: var(--green-900); font-size: .82rem; line-height: 1.35; overflow-wrap: anywhere; }
.variant-info small { margin-top: 3px; color: var(--muted); font-size: .64rem; }
.variant-price { min-width: 88px; text-align: right; }
.variant-price span { color: var(--muted); font-size: .59rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.variant-price strong { margin-top: 3px; color: var(--green-900); font-family: Montserrat,sans-serif; font-size: .86rem; white-space: nowrap; }
.variant-stepper { min-height: 42px; padding: 3px; display: grid; grid-template-columns: 36px 34px 36px; align-items: center; border: 1px solid #d9d3c8; border-radius: 10px; background: var(--paper); }
.variant-stepper button { width: 36px; height: 36px; padding: 0; border: 0; border-radius: 8px; background: var(--white); color: var(--green-900); font-size: 1.15rem; font-weight: 900; }
.variant-stepper button:active { background: var(--champagne); }
.variant-stepper output { color: var(--green-900); font-size: .85rem; font-weight: 900; text-align: center; }
.variant-total { display: grid; justify-items: end; gap: 3px; }
.variant-total span { color: var(--muted); font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.variant-total strong { color: var(--green-900); font-family: Montserrat,sans-serif; font-size: .82rem; }
.product-selection-total { margin-top: 12px; padding: 14px 2px 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px; position: sticky; bottom: 0; z-index: 2; border-top: 1px solid var(--line); background: #fafaf8; }
.product-selection-total span { color: var(--muted); font-size: .72rem; }
.product-selection-total strong { color: var(--green-900); font-family: Montserrat,sans-serif; font-size: 1.08rem; white-space: nowrap; }
.product-help { width: 100%; min-height: 48px; margin-top: 10px; padding: 10px 2px; display: flex; align-items: center; justify-content: space-between; border: 0; background: transparent; color: var(--green-900); text-align: left; }
.product-help span { color: var(--green-700); font-size: .75rem; font-weight: 800; }
.image-zoom-dialog { width: min(920px,calc(100% - 24px)); height: min(88dvh,920px); padding: 28px; border: 0; border-radius: 20px; background: var(--white); }
.image-zoom-dialog::backdrop { background: rgba(3,22,11,.88); }
.image-zoom-dialog img { width: 100%; height: 100%; object-fit: contain; touch-action: pinch-zoom; }
.image-zoom-dialog button { width: 46px; height: 46px; position: absolute; z-index: 2; top: 12px; right: 12px; border: 0; border-radius: 50%; background: var(--green-900); color: var(--white); font-size: 1.5rem; }
.mobile-product-action { display: none; }

.cart { width: min(470px,100%); height: 100dvh; height: 100svh; padding: max(26px,env(safe-area-inset-top)) 26px max(26px,env(safe-area-inset-bottom)); display: flex; flex-direction: column; position: fixed; z-index: 40; top: 0; right: 0; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; transform: translateX(105%); background: var(--white); box-shadow: -20px 0 60px rgba(10,38,22,.24); transition: transform .25s ease; }
.cart:not(.open) { visibility: hidden; pointer-events: none; }
.cart.open { visibility: visible; transform: none; }
.cart-head { padding-bottom: 18px; display: flex; align-items: start; justify-content: space-between; border-bottom: 1px solid var(--line); }
.cart-head h2 { margin: 7px 0 0; color: var(--green-900); }
.cart-head button { border: 0; background: transparent; font-size: 2rem; }
.cart-items { min-height: 96px; max-height: min(34dvh,320px); flex: 1 1 220px; overflow: auto; overscroll-behavior: contain; padding: 10px 0; }
.cart-row { padding: 15px 0; display: grid; grid-template-columns: 1fr auto; gap: 10px; border-bottom: 1px solid var(--line); }
.cart-row strong { display: block; font-size: .87rem; line-height: 1.35; }
.cart-row small { display: block; margin: 4px 0; color: var(--muted); font-size: .72rem; }
.cart-row > div > span { color: var(--green-800); font-size: .8rem; font-weight: 700; }
.qty { display: flex; align-items: center; gap: 7px; }
.qty button { width: 30px; height: 30px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.cart-empty { padding-top: 36px; text-align: center; }
.cart-empty strong { color: var(--green-900); font-family: Montserrat, sans-serif; }
.cart-empty p { margin-top: 7px; color: var(--muted); }
.quote-client { padding: 15px 0; display: grid; gap: 9px; border-top: 1px solid var(--line); }
.quote-client h3 { margin: 0 0 2px; color: var(--green-900); font-size: .92rem; }
.quote-client label { display: grid; gap: 4px; color: var(--muted); font-size: .7rem; font-weight: 700; }
.quote-client input,.quote-client textarea { width: 100%; min-height: 42px; padding: 9px 10px; border: 1px solid var(--silver); border-radius: 9px; background: var(--white); color: var(--black); font: inherit; }
.quote-client textarea { min-height: 56px; resize: vertical; }
.quote-client-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.quote-delivery { margin: 8px 0 2px; padding: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; border: 0; }
.quote-delivery legend { grid-column: 1/-1; margin-bottom: 2px; color: var(--green-900); font-size: .76rem; font-weight: 800; }
.quote-delivery label { min-height: 84px; padding: 11px; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 8px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--green-900); cursor: pointer; }
.quote-delivery label:has(input:checked) { border-color: var(--champagne); box-shadow: inset 0 0 0 1px var(--champagne); background: #fffaf0; }
.quote-delivery input { width: 17px; min-height: 17px; margin: 2px 0 0; accent-color: var(--green-700); }
.quote-delivery span { display: grid; gap: 4px; }
.quote-delivery strong { font-size: .72rem; line-height: 1.25; }
.quote-delivery small { color: var(--muted); font-size: .64rem; line-height: 1.35; }
.quote-delivery-details { padding: 10px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 8px; border: 1px dashed var(--champagne); border-radius: 12px; background: #fffaf0; }
.quote-delivery-details[hidden] { display: none; }
.fulfillment { padding: 17px 0; display: grid; gap: 9px; border-top: 1px solid var(--line); }
.fulfillment h3 { margin-bottom: 4px; color: var(--green-900); font-size: .98rem; }
.fulfillment label { padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.fulfillment label.disabled { opacity: .48; }
.fulfillment p, .fineprint { margin: 0; color: var(--muted); font-size: .74rem; line-height: 1.45; }
.cart-total { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.cart-total span { color: var(--muted); }
.cart-total strong { color: var(--green-900); font-size: 1.25rem; }
.cart-share-actions { display: grid; gap: 10px; }
.cart > .fineprint { margin-top: 10px; text-align: center; }
@media (max-width: 480px) { .quote-client-row,.quote-delivery-details { grid-template-columns: 1fr; } .quote-delivery { grid-template-columns: 1fr; } .quote-delivery label { min-height: 66px; } }
.scrim { position: fixed; z-index: 30; inset: 0; background: rgba(10,38,22,.62); }
.toast { max-width: calc(100% - 28px); padding: 13px 18px; position: fixed; z-index: 60; left: 50%; bottom: 26px; transform: translate(-50%,150%); border-radius: 999px; background: var(--green-900); color: var(--white); box-shadow: var(--shadow); text-align: center; transition: transform .22s ease; }
.toast.show { transform: translate(-50%,0); }
.mobile-cart { display: none; }
.mobile-bottom-nav,.pwa-install-card { display: none; }

footer { padding: 44px clamp(18px,4vw,64px); display: grid; grid-template-columns: 180px auto auto 1fr; align-items: center; gap: 24px; background: var(--green-900); color: var(--white); }
footer img { width: 180px; }
footer p { margin: 0; color: var(--champagne-light); font-family: Montserrat, sans-serif; text-transform: uppercase; }
.footer-links { display: flex; justify-content: center; gap: 18px; }
.footer-links a { color: var(--white); font-size: .78rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.footer-links a:hover { color: var(--champagne-light); }
footer small { justify-self: end; max-width: 500px; color: var(--green-100); text-align: right; line-height: 1.45; }

.header-search #clear-search { width: 40px; height: 40px; position: absolute; z-index: 2; right: 6px; top: 6px; border: 0; border-radius: 50%; background: transparent; color: var(--green-900); font-size: 1.25rem; }
.search-results { max-height: min(520px,70vh); position: absolute; z-index: 80; top: calc(100% + 7px); left: 0; right: 0; overflow: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.search-results button { width: 100%; min-height: 62px; padding: 11px 16px; display: grid; gap: 3px; border: 0; border-bottom: 1px solid var(--line); background: var(--white); color: var(--black); text-align: left; }
.search-results button:hover, .search-results button:focus { background: var(--green-100); }
.search-results span { color: var(--green-900); font-weight: 700; }
.search-results small, .search-results p { color: var(--muted); font-size: .76rem; }
.search-results p { padding: 16px; }

.trust-strip { max-width: 1440px; margin: 0 auto 30px; padding: 0 clamp(18px,4vw,64px); display: grid; grid-template-columns: repeat(4,1fr); }
.trust-strip div { min-height: 70px; padding: 14px 18px; display: grid; gap: 3px; border-top: 1px solid var(--silver); border-bottom: 1px solid var(--silver); }
.trust-strip div + div { border-left: 1px solid var(--line); }
.trust-strip strong { color: var(--green-900); font-size: .82rem; }
.trust-strip span { color: var(--muted); font-size: .72rem; line-height: 1.4; }

.delivery-progress { height: 5px; margin-top: 10px; overflow: hidden; border-radius: 99px; background: var(--green-100); }
.delivery-progress span { height: 100%; display: block; border-radius: inherit; background: var(--brand-green); }
.variant-search { width: 100%; min-height: 46px; margin-bottom: 8px; padding: 0 12px; border: 1px solid var(--silver); border-radius: var(--radius-sm); }
.variant-code { margin-top: 10px; padding: 9px 11px; border-left: 3px solid var(--champagne); background: var(--ice); }
.breadcrumb { margin-bottom: 18px; color: var(--muted); font-size: .72rem; }
.detail-copy > .secondary { margin-top: 8px; }

.checkout-dialog, .success-dialog, .status-dialog { width: min(760px,calc(100% - 24px)); max-height: calc(100dvh - 24px); padding: 0; overflow: auto; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.checkout-dialog::backdrop, .success-dialog::backdrop, .status-dialog::backdrop { background: rgba(10,38,22,.78); backdrop-filter: blur(5px); }
#checkout-form { padding: clamp(20px,4vw,38px); }
.checkout-head { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.checkout-head h2 { margin: 5px 0 0; color: var(--green-900); font-size: clamp(1.45rem,3vw,2rem); }
.checkout-head > button { width: 44px; height: 44px; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--ice); color: var(--green-900); font-size: 1.5rem; }
.checkout-steps { margin: 24px 0 30px; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); list-style: none; }
.checkout-steps li { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .74rem; font-weight: 700; }
.checkout-steps li::after { height: 1px; flex: 1; margin-left: 7px; content: ""; background: var(--line); }
.checkout-steps li:last-child::after { display: none; }
.checkout-steps span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--silver); border-radius: 50%; background: var(--white); }
.checkout-steps .active, .checkout-steps .done { color: var(--green-800); }
.checkout-steps .active span, .checkout-steps .done span { border-color: var(--green-700); background: var(--green-700); color: var(--white); }
.checkout-step { min-height: 300px; }
.person-type, .checkout-fulfillment { margin: 0 0 22px; padding: 0; display: flex; gap: 10px; border: 0; }
.person-type legend, .checkout-fulfillment legend { width: 100%; margin-bottom: 10px; color: var(--green-900); font-family: Montserrat, sans-serif; font-size: .9rem; }
.person-type label { min-height: 48px; padding: 11px 14px; display: flex; align-items: center; gap: 8px; flex: 1; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid label, .observation { display: grid; gap: 7px; }
.form-grid .full, .observation { grid-column: 1/-1; }
.form-grid span, .observation > span { color: var(--graphite); font-size: .76rem; font-weight: 700; }
.form-grid input, .form-grid select, .observation textarea { width: 100%; min-height: 48px; padding: 11px 12px; border: 1px solid var(--silver); border-radius: var(--radius-sm); background: var(--white); }
.observation { margin-top: 15px; }
.checkout-fulfillment { display: grid; }
.checkout-fulfillment label { min-height: 66px; padding: 13px; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.checkout-fulfillment label.disabled { opacity: .5; }
.checkout-fulfillment strong, .checkout-fulfillment small { display: block; }
.checkout-fulfillment small { margin-top: 3px; color: var(--muted); line-height: 1.35; }
.order-review { display: grid; gap: 10px; }
.order-review > div { padding: 14px 16px; display: grid; gap: 4px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.order-review span { color: var(--muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.order-review small { color: var(--muted); }
.order-review .freight-alert { border-color: var(--champagne); background: #fffaf0; }
.consent { margin-top: 18px; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: var(--graphite); font-size: .8rem; line-height: 1.45; }
.checkout-actions { margin-top: 28px; display: flex; justify-content: flex-end; gap: 10px; }
.checkout-actions button { min-width: 130px; }

.success-dialog { padding: 38px; text-align: center; }
.success-mark { width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--green-700); color: var(--white); font-size: 1.7rem; }
.success-dialog h2 { margin: 8px 0; color: var(--green-900); }
.success-dialog > p { color: var(--muted); }
.success-close { position: absolute; top: 16px; right: 16px; }
.protocol { margin: 20px 0; padding: 14px; display: grid; gap: 4px; border: 1px dashed var(--green-700); background: var(--green-100); }
.protocol span { color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.protocol strong { color: var(--green-900); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 1.25rem; }
.channel-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.success-dialog > .text-action { margin-top: 20px; }
.status-dialog { padding: 30px; }
.status-card { display: grid; gap: 15px; }
.status-pill { width: max-content; padding: 6px 10px; border-radius: 99px; background: var(--green-100); color: var(--green-800); font-size: .75rem; font-weight: 700; }
.status-card ol { margin: 0; padding-left: 22px; color: var(--muted); }
.status-card li { padding: 8px 0; }
.status-card li.done { color: var(--green-800); font-weight: 700; }
.whatsapp-help { min-height: 50px; padding: 0 18px; position: fixed; z-index: 24; right: 18px; bottom: 20px; border: 0; border-radius: 99px; background: var(--brand-green); color: var(--white); box-shadow: var(--shadow); font-weight: 700; }

@media (min-width: 1500px) { .product-grid { grid-template-columns: repeat(5,minmax(0,1fr)); } }
@media (max-width: 1180px) {
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .service-bar span:nth-child(3) { display: none; }
  .topbar { grid-template-columns: 170px minmax(220px,1fr) auto; gap: 15px; }
  .brand img { width: 155px; }
  .header-internal { display: none; }
  .intro { grid-template-columns: 1fr; gap: 24px; }
  .fulfillment-note { max-width: 390px; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters {
    width: min(360px,92vw);
    height: 100dvh;
    padding: 24px;
    align-content: start;
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    transform: translateX(-105%);
    border: 0;
    border-radius: 0;
    transition: transform .22s ease;
    overflow-y: auto;
  }
  .filters:not(.open) { visibility: hidden; pointer-events: none; }
  .filters.open { visibility: visible; pointer-events: auto; transform: none; }
  .filter-head button { display: block; }
  .mobile-toolbar { margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
  .mobile-toolbar span { color: var(--muted); font-size: .8rem; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer img { margin: auto; }
  footer small { justify-self: center; text-align: center; }
}
@media (max-width: 680px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  body { padding-bottom: 72px; }
  html, body { width: 100%; max-width: 100%; overflow-x: clip; }
  html { scroll-padding-top: 100px; }
  .service-bar { min-height: 28px; padding: 5px 12px; font-size: .68rem; }
  .service-bar { justify-content: space-between; gap: 8px; }
  .service-bar span:not(:first-child) { display: none; }
  .service-internal { display: inline-flex; }
  .topbar { width: 100%; max-width: 100vw; min-height: 102px; padding: 10px 14px; grid-template-columns: minmax(0,1fr) auto; gap: 8px 10px; overflow: visible; }
  .brand img { width: 142px; }
  .topbar nav { min-width: 0; justify-self: end; gap: 0; }
  .topbar nav .header-link { display: none; }
  .topbar .cart-button { min-height: 42px; padding: 0 11px; gap: 7px; }
  .topbar .cart-button > span { font-size: .78rem; }
  .header-search { grid-column: 1/-1; grid-row: 2; }
  .header-search input { min-height: 46px; font-size: .9rem; }
  .intro { padding: 32px 16px 26px; }
  .intro h1 { font-size: clamp(2rem,10vw,3rem); }
  .intro p { font-size: .94rem; }
  .fulfillment-note { padding: 17px 18px; }
  .category-section, .catalog-section { padding-left: 14px; padding-right: 14px; }
  .category-section { padding-top: 14px; padding-bottom: 30px; }
  .section-title-row { align-items: start; }
  .text-action { font-size: .76rem; white-space: nowrap; }
  .category-grid { margin-right: -14px; padding-right: 14px; display: flex; overflow: auto; scrollbar-width: none; }
  .category-grid::-webkit-scrollbar { display: none; }
  .category-card { min-width: 164px; min-height: 142px; }
  .catalog-section { padding-top: 30px; padding-bottom: 72px; }
  .products-heading > p { display: none; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
  .card-media { aspect-ratio: 1; padding: 7px; }
  .card-body { padding: 12px; }
  .card h3 { min-height: 3.9em; font-size: .86rem; line-height: 1.3; }
  .specification { font-size: .7rem; }
  .reference-row { display: grid; }
  .reference-row > span { display: none; }
  .price { font-size: .94rem; }
  .confirmation { display: block; font-size: .65rem; }
  .card-action { min-height: 44px; font-size: .86rem; }
  .detail { grid-template-columns: 1fr; }
  .detail-media { min-height: 285px; max-height: 320px; }
  .detail-media img { width: 90%; height: 90%; }
  .detail-media:hover img { transform: none; }
  .detail-zoom { right: 12px; bottom: 12px; }
  .detail-copy { padding: 22px 18px; }
  .detail-copy h2 { font-size: 1.5rem; }
  .product-summary { font-size: .84rem !important; }
  .detail-commercial .price { font-size: 1.35rem; }
  .choice-panel { padding: 12px; }
  .variant-list { max-height: none; overflow: visible; }
  .variant-item { grid-template-columns: minmax(0,1fr) auto; gap: 10px; padding: 14px 12px; }
  .variant-price { grid-column: 2; grid-row: 1; }
  .variant-stepper { grid-column: 1/-1; width: 132px; margin-top: 2px; }
  .variant-total { grid-column: 2; grid-row: 2; }
  .detail-add { position: sticky; bottom: 76px; z-index: 3; box-shadow: 0 8px 24px rgba(3,22,11,.18); }
  .quantity-row { align-items: flex-end; }
  .choice-heading small { max-width: 180px; }
  .product-help { align-items: flex-start; flex-direction: column; gap: 2px; }
  .product-trust { grid-template-columns: repeat(3,1fr) !important; }
  .product-trust div { padding: 10px 8px; }
  .product-trust div + div { border-top: 0 !important; border-left: 1px solid var(--line) !important; }
  .product-trust strong { font-size: .63rem; }
  .product-trust span { font-size: .58rem; }
  .product-gallery.no-photo .detail-media { min-height: 88px; max-height: 88px; color: var(--muted); font-size: .78rem; }
  .mobile-cart { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 10px; position: fixed; z-index: 25; left: 12px; right: 12px; bottom: max(10px,env(safe-area-inset-bottom)); border: 0; border-radius: var(--radius-sm); background: var(--green-900); color: var(--white); box-shadow: var(--shadow); font-weight: 700; }
}
@media (max-width: 420px) {
  .topbar { padding-inline: 12px; }
  .brand img { width: min(132px,39vw); }
  .topbar .cart-button > span { display: inline; }
  .topbar .cart-button { width: auto; padding: 0 10px; justify-content: center; gap: 6px; white-space: nowrap; }
  .topbar .cart-button strong { position: static; margin: 0; }
}

/* Identificação comercial e pesquisa consultiva */
.card-kicker { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card-kicker > span:last-child { color: var(--muted); font-size: .66rem; font-weight: 800; white-space: nowrap; }
.product-codes { margin: 14px 0 18px; display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.product-codes div { min-width: 0; padding: 11px 13px; display: grid; gap: 3px; }
.product-codes div + div { border-left: 1px solid var(--line); }
.product-codes span { color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.product-codes strong { color: var(--green-900); font-size: .75rem; line-height: 1.35; overflow-wrap: anywhere; }
.consultative-section { border-top-color: var(--champagne) !important; }
.verification-note { margin-top: 14px; padding: 13px 14px; display: grid; gap: 4px; border-left: 3px solid var(--champagne); background: #fff8e9; }
.verification-note strong { color: var(--green-900); font-size: .72rem; }
.verification-note span { color: var(--graphite); font-size: .76rem; line-height: 1.45; }

@media (max-width: 680px) {
  .product-codes { grid-template-columns: 1fr; }
  .product-codes div + div { border-top: 1px solid var(--line); border-left: 0; }
}

/* Home catálogo — direção visual V16 / Lopes */
.intro { width: 100%; max-width: none; min-height: 560px; padding: clamp(58px,7vw,104px) max(clamp(18px,4vw,64px),calc((100vw - 1440px)/2)); align-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at 88% 34%,rgba(31,167,57,.16),transparent 25%),linear-gradient(125deg,#061a0d 0%,#0a321b 62%,#0b2717 100%); }
.intro::after { width: min(42vw,620px); aspect-ratio: 1; position: absolute; right: -12%; top: 4%; content: ""; border: clamp(70px,8vw,120px) solid rgba(255,255,255,.035); border-radius: 50%; pointer-events: none; }
.intro > div { max-width: 980px; position: relative; z-index: 1; }
.intro .eyebrow { color: var(--champagne); letter-spacing: .2em; }
.intro h1 { max-width: 1050px; margin: 22px 0 24px; color: var(--white); font-size: clamp(3rem,6.2vw,6rem); line-height: .92; letter-spacing: -.065em; text-transform: uppercase; }
.intro h1 em { color: var(--brand-green); font-style: italic; }
.intro p { max-width: 820px; color: rgba(255,255,255,.78); font-size: clamp(1rem,1.5vw,1.22rem); line-height: 1.6; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; }
.hero-actions a { min-height: 56px; padding: 0 28px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; border-radius: 14px; font-weight: 800; text-decoration: none; }
.hero-primary { background: var(--champagne); color: var(--green-950); box-shadow: 0 16px 36px rgba(212,162,62,.18); }
.hero-secondary { border: 1px solid rgba(255,255,255,.36); color: var(--white); }
.hero-primary:hover { filter: brightness(1.06); }
.hero-secondary:hover { border-color: var(--champagne); background: rgba(255,255,255,.06); }
.hero-metrics { margin-top: 42px; display: flex; gap: clamp(34px,6vw,86px); }
.hero-metrics div { display: grid; gap: 2px; }
.hero-metrics strong { color: var(--white); font-family: Montserrat,sans-serif; font-size: 1.7rem; font-style: italic; }
.hero-metrics span { color: rgba(255,255,255,.62); font-size: .72rem; }
.intro .fulfillment-note { align-self: end; position: relative; z-index: 1; border: 1px solid rgba(212,162,62,.38); background: rgba(3,20,10,.7); }

@media (max-width: 900px) {
  .intro { min-height: 540px; grid-template-columns: 1fr; }
  .intro .fulfillment-note { display: none; }
}
@media (max-width: 680px) {
  .intro { min-height: 520px; padding-top: 48px; padding-bottom: 48px; }
  .intro h1 { font-size: clamp(2.5rem,12vw,4rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions a { min-height: 52px; }
  .hero-metrics { justify-content: space-between; gap: 12px; }
  .hero-metrics strong { font-size: 1.35rem; }
}

/* Refinamento de navegação e decisão de compra */
@media (min-width: 901px) {
  .product-gallery:has(.gallery-thumbnails) { grid-template-columns: 88px minmax(0,1fr); grid-template-rows: 1fr auto; }
  .product-gallery:has(.gallery-thumbnails) .gallery-thumbnails { grid-column: 1; grid-row: 1; padding: 14px 9px; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 0; }
  .product-gallery:has(.gallery-thumbnails) .detail-media { grid-column: 2; grid-row: 1; }
  .product-gallery:has(.gallery-thumbnails) > small { grid-column: 1/-1; grid-row: 2; }
  .product-gallery:has(.gallery-thumbnails) .gallery-zoom-hint { grid-column: 1/-1; grid-row: 3; }
}

@media (max-width: 680px) {
  body.product-open .whatsapp-help,
  body.product-open .pwa-install-card,
  body.cart-open .whatsapp-help,
  body.cart-open .pwa-install-card { display: none !important; }
  body.product-open { overflow: hidden; }
  .product-dialog { padding-bottom: calc(144px + env(safe-area-inset-bottom)); }
  .detail-add { position: static; box-shadow: none; }
  .variant-item { grid-template-columns: minmax(0,1fr) minmax(104px,auto); grid-template-areas: "name price" "step total"; align-items: center; }
  .variant-info { grid-area: name; }
  .variant-price { grid-area: price; }
  .variant-stepper { grid-area: step; grid-column: auto; width: 118px; grid-template-columns: 34px 42px 34px; }
  .variant-stepper button { width: 34px; min-height: 38px; height: 38px; }
  .variant-total { grid-area: total; grid-column: auto; grid-row: auto; justify-items: end; }
  .product-selection-total { position: static; }
  .card-body { gap: 7px; }
  .card h3 { min-height: 2.7em; display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .specification { min-height: 2.5em; display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .confirmation { display: none; }
  .card-kicker > span:last-child { font-size: .72rem; }
}

@media (max-width: 360px) {
  .variant-item { grid-template-columns: 1fr; grid-template-areas: "name" "price" "step" "total"; }
  .variant-price { text-align: left; }
  .variant-total { justify-items: start; }
}

@media (max-width: 360px) {
  .variant-item { grid-template-columns: 1fr; }
  .variant-price { grid-column: 1; grid-row: auto; text-align: left; }
  .variant-stepper { grid-column: 1; }
  .variant-total { grid-column: 1; grid-row: auto; justify-content: flex-start; }
  .mobile-product-action button { min-width: 112px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .category-index nav { grid-template-columns: 1fr; }
  .card h3 { min-height: auto; font-size: 1rem; }
  .card-description, .specification { min-height: auto; font-size: .875rem; }
  .confirmation { font-size: .75rem; }
  .product-trust { grid-template-columns: 1fr !important; }
  .product-trust div + div { border-top: 1px solid var(--line); border-left: 0; }
  .product-trust strong { font-size: .82rem; }
  .product-trust span { font-size: .75rem; }
}

@media (max-width: 680px) {
  .product-trust { grid-template-columns: repeat(3,1fr); }
  .product-trust div + div { border-top: 0; border-left: 1px solid var(--line); }
  .gallery-thumbnails { padding: 9px 12px; }
  .gallery-thumbnails button { width: 58px; height: 58px; }
}
@media (max-width: 380px) {
  .brand img { width: min(118px,37vw); }
  .topbar .cart-button { padding-inline: 8px; }
  .topbar .cart-button > span { display: inline; font-size: .72rem; }
  .product-grid { grid-template-columns: 1fr; }
  .card h3 { min-height: auto; }
}

/* Experiência unificada: landing, catálogo e venda consultiva */
main#catalogo .institutional-section { order: 5; }
main#catalogo .local-seo-section { order: 6; }
main#catalogo .contact-section { order: 7; }
.hero-product-stage { min-height: 390px; position: relative; z-index: 2; }
.hero-product-stage::before { width: 310px; height: 310px; position: absolute; inset: 38px 0 0 auto; content: ""; border: 1px solid rgba(212,162,62,.32); border-radius: 50%; box-shadow: inset 0 0 0 46px rgba(255,255,255,.025); }
.hero-product { width: 176px; padding: 12px; display: grid; gap: 7px; position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 22px 55px rgba(0,0,0,.24); }
.hero-product img { width: 100%; aspect-ratio: 1; object-fit: contain; mix-blend-mode: multiply; }
.hero-product span { color: var(--green-900); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hero-product-main { width: 220px; right: 58px; top: 92px; transform: rotate(-2deg); }
.hero-product-top { width: 142px; right: 0; top: 12px; transform: rotate(5deg); }
.hero-product-bottom { width: 150px; right: 0; bottom: 12px; transform: rotate(3deg); }

.institutional-section,.contact-section { width: 100%; padding: clamp(56px,7vw,96px) max(clamp(18px,4vw,64px),calc((100vw - 1320px)/2)); }
.institutional-section { display: grid; grid-template-columns: minmax(230px,.65fr) 1.35fr; align-items: center; gap: clamp(40px,8vw,120px); background: linear-gradient(125deg,var(--green-950),var(--green-800)); color: var(--white); }
.institutional-mark { min-height: 280px; display: grid; place-items: center; align-content: center; border: 1px solid rgba(212,162,62,.45); border-radius: 50%; }
.institutional-mark strong { color: var(--champagne); font: 900 clamp(3rem,7vw,6rem) Montserrat,sans-serif; }
.institutional-mark span { color: var(--white); font-size: .72rem; font-weight: 800; letter-spacing: .18em; }
.institutional-section h2,.contact-section h2 { margin: 10px 0 20px; font-size: clamp(2rem,4vw,3.6rem); line-height: 1; letter-spacing: -.05em; }
.institutional-section p { max-width: 760px; color: rgba(255,255,255,.76); font-size: 1.02rem; line-height: 1.7; }
.institutional-section ul { padding: 0; display: grid; gap: 10px; list-style: none; }
.institutional-section li::before { margin-right: 10px; content: "✓"; color: var(--champagne); font-weight: 900; }
.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(36px,7vw,96px); background: var(--paper); }
.contact-section > div > p { max-width: 560px; color: var(--muted); line-height: 1.65; }
.contact-links { display: grid; gap: 12px; margin-top: 28px; }
.contact-links a { padding: 14px 0; display: grid; gap: 3px; border-bottom: 1px solid var(--line); color: var(--green-900); text-decoration: none; }
.contact-links small,.location-card > div > small { color: var(--champagne-text); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.location-card { overflow: hidden; display: grid; grid-template-columns: .8fr 1.2fr; border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
.location-card > div:last-child { padding: clamp(24px,4vw,42px); }
.location-card h3 { margin: 10px 0; color: var(--green-900); font-size: clamp(1.35rem,2vw,2rem); }
.location-card p { color: var(--muted); line-height: 1.55; }
.map-art { min-height: 330px; display: grid; place-items: center; position: relative; overflow: hidden; background: linear-gradient(145deg,#0b2c19,#176033); }
.map-art span { width: 150%; height: 22px; position: absolute; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); transform: rotate(-26deg); }
.map-art span:nth-child(2) { transform: rotate(32deg) translateY(48px); }
.map-art span:nth-child(3) { transform: rotate(78deg) translateY(-52px); }
.map-art b { width: 82px; height: 82px; display: grid; place-items: center; z-index: 1; border: 3px solid var(--champagne); border-radius: 50%; background: var(--white); color: var(--green-800); font: 900 2.6rem Montserrat,sans-serif; box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.location-actions { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.location-actions a { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; text-align: center; text-decoration: none; }
.location-actions .secondary { border: 1px solid rgba(156,122,69,.42); background: #f7f1e7; color: var(--green-900); }
.location-actions .secondary:hover { border-color: var(--champagne); background: #efe2cb; }
.local-seo-section { padding: clamp(48px,7vw,92px) max(clamp(18px,4vw,64px),calc((100vw - 1440px)/2)); display: grid; grid-template-columns: minmax(0,1.5fr) minmax(260px,.5fr); align-items: center; gap: clamp(28px,6vw,80px); background: var(--white); }
.local-seo-section h2 { max-width: 780px; margin: 10px 0 16px; color: var(--green-950); font-size: clamp(1.8rem,3.5vw,3.4rem); line-height: 1.03; }
.local-seo-section p { max-width: 850px; margin: 0; color: var(--graphite); font-size: 1rem; line-height: 1.75; }
.local-seo-section > a { width: 100%; min-height: 146px; padding: 24px; display: grid; place-content: center; justify-items: center; gap: 7px; border: 1px solid var(--champagne); border-radius: 18px; background: var(--paper); color: var(--green-900); text-align: center; text-decoration: none; box-shadow: 0 14px 34px rgba(10,38,22,.08); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.local-seo-section > a:hover { transform: translateY(-2px); border-color: var(--champagne-light); box-shadow: 0 18px 42px rgba(10,38,22,.13); }
.local-seo-section > a strong { font-family: Montserrat,sans-serif; font-size: 1.05rem; }
.local-seo-section > a span { color: var(--graphite); font-size: .86rem; line-height: 1.45; text-align: center; }
.map-art .map-brand { width: min(250px,62%); min-height: 94px; padding: 18px 22px; display: grid; place-items: center; position: absolute; z-index: 2; inset: 50% auto auto 50%; transform: translate(-50%,-50%); border: 2px solid var(--champagne); border-radius: 18px; background: var(--green-950); box-shadow: 0 18px 45px rgba(0,0,0,.25); }
.map-art .map-brand img { width: 100%; height: auto; display: block; }

.sales-guide { border-top: 4px solid var(--green-700) !important; }
.sales-guide.partial,.sales-guide.family { border-top-color: var(--champagne) !important; }
.sales-guide h4 { margin: 18px 0 5px; color: var(--green-900); font-size: .82rem; }
.sales-guide p { margin: 0; color: var(--graphite); font-size: .86rem; line-height: 1.6; }
.related-grid em { margin: 2px 0 8px; color: var(--graphite); font-size: .68rem; font-style: normal; line-height: 1.35; }
.complement-section { border-top: 4px solid var(--champagne) !important; }
.comparison-section { border-top: 4px solid var(--green-700) !important; }
@media (min-width: 901px) {
  .detail-media { min-height: 520px; max-height: 560px; }
  .detail-copy { position: sticky; top: 58px; align-self: start; }
}
@media (max-width: 1080px) {
  .topbar { grid-template-columns: 178px minmax(260px,1fr) auto; gap: 14px; }
  .topbar nav .header-home,.topbar nav > .header-link:not(.header-internal) { display: none; }
}
@media (max-width: 900px) {
  .hero-product-stage { display: none; }
  .institutional-section,.local-seo-section,.contact-section { grid-template-columns: 1fr; }
  .institutional-mark { width: min(280px,75vw); min-height: auto; aspect-ratio: 1; margin: auto; }
  .location-card { grid-template-columns: 1fr; }
  .map-art { min-height: 240px; }
}
@media (max-width: 680px) {
  body.product-open .mobile-bottom-nav { display: none; }
  body.product-open .mobile-product-action { bottom: env(safe-area-inset-bottom); }
  body.product-open .product-dialog { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
  .category-grid { margin-right: 0; padding-right: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); overflow: visible; }
  .category-card { min-width: 0; }
  .institutional-section,.local-seo-section,.contact-section { padding: 52px 18px; }
  .location-actions { grid-template-columns: 1fr; }
  .contact-links strong { overflow-wrap: anywhere; }
  .product-grid { grid-template-columns: 1fr; }
  .card h3,.specification { min-height: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 420px) {
  .brand img { width: min(142px,42vw); }
}

/* Brandbook Lopes + linguagem visual v16 */
:root {
  --champagne: #d4a23e;
  --champagne-text: #d4a23e;
  --paper: #f5f2ec;
  --line: #dadce0;
  --radius-sm: 12px;
  --radius: 18px;
  --shadow: 0 8px 30px rgba(6,26,13,.08);
}
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 10px 14px; transform: translateY(-150%); border-radius: 10px; background: var(--white); color: var(--green-900); font-weight: 800; }
.skip-link:focus { transform: none; }
.topbar { min-height: 82px; background: rgba(6,26,13,.96); border-color: rgba(255,255,255,.12); backdrop-filter: blur(18px); }
.brand img { width: 194px; }
.header-search::before { border-color: var(--green-800); }
.header-search::after { background: var(--green-800); }
.header-search input { min-height: 54px; padding-right: 48px; border-color: rgba(255,255,255,.22); background: var(--white); box-shadow: inset 0 1px 0 rgba(255,255,255,.5); }
.header-search input:focus { border-color: var(--champagne); box-shadow: 0 0 0 3px rgba(212,162,62,.2); }
.topbar .link-button { color: var(--white); }
.cart-button { background: var(--white); color: var(--green-900); }
.cart-button:hover { background: var(--paper); }
.cart-button strong, .mobile-cart strong { background: var(--champagne); color: var(--green-950); }
.eyebrow { color: var(--champagne-text); font-weight: 800; }
.fulfillment-note { border: 0; border-radius: var(--radius); background: linear-gradient(140deg,var(--green-950),var(--green-800)); box-shadow: var(--shadow); }
.fulfillment-note::before { width: 42px; height: 2px; margin-bottom: 8px; content: ""; background: var(--champagne); }
.category-card { min-height: 142px; border-radius: 14px; box-shadow: 0 1px 0 rgba(6,26,13,.03); }
.category-card:hover { transform: translateY(-3px); border-color: var(--champagne); background: var(--paper); box-shadow: var(--shadow); }
.category-card.active { border-color: var(--green-700); background: var(--green-100); box-shadow: inset 0 0 0 1px var(--green-700),0 8px 24px rgba(15,61,36,.1); }
.category-card > span { color: var(--champagne-text); }
.filters, .card { border-radius: 16px; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -16px rgba(15,61,36,.30); }
.card-media { background: linear-gradient(145deg,#fff,var(--paper)); }
.product-mark { width: 72px; height: 72px; display: block; position: relative; border: 1px solid rgba(212,162,62,.55); border-radius: 50%; background: rgba(255,255,255,.78); box-shadow: 0 12px 28px rgba(15,61,36,.08), inset 0 0 0 9px rgba(212,162,62,.06); transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.card-media img { transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.card-media:hover .product-mark, .card-media:focus-visible .product-mark, .card-media:hover img, .card-media:focus-visible img { transform: scale(1.1); }
.product-mark::before { width: 21px; height: 37px; position: absolute; left: 24px; top: 15px; content: ""; border-left: 7px solid var(--green-800); border-bottom: 7px solid var(--brand-green); transform: skew(-7deg); }
.product-mark::after { width: 18px; height: 3px; position: absolute; left: 28px; bottom: 12px; content: ""; background: var(--champagne); }
.product-mark.large { width: 126px; height: 126px; transform: scale(1.18); }
.product-mark.large::before { width: 37px; height: 65px; left: 43px; top: 26px; border-width: 0 0 11px 11px; }
.product-mark.large::after { width: 32px; height: 4px; left: 48px; bottom: 21px; }
.card-body { padding: 17px; }
.meta { color: var(--champagne-text); }
.card h3 { font-weight: 800; }
.reference-row { min-height: 22px; }
.reference-copy { color: var(--champagne-text); }
.card-action { border-top-color: #e7e2d8; background: var(--paper); }
.card-action:hover { background: var(--green-800); }
.detail-media { background: radial-gradient(circle at center,#fff 0 22%,var(--paper) 70%); }
.variant-code { color: var(--green-900); }
.whatsapp-help { background: var(--green-800); }
.primary { background: var(--green-700); }
.primary:hover { background: var(--green-900); }

@media (max-width: 680px) {
  .topbar { min-height: 98px; }
  .brand img { width: 150px; }
  .intro { padding-top: 24px; }
  .trust-strip div:nth-child(n+3) { display: none; }
  .category-card { min-height: 132px; }
  .whatsapp-help { min-height: 42px; right: 14px; bottom: calc(82px + env(safe-area-inset-bottom)); padding: 0 14px; font-size: .78rem; }
  .mobile-bottom-nav { min-height: 68px; padding: 6px 8px calc(6px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: repeat(4,1fr); position: fixed; z-index: 34; left: 0; right: 0; bottom: 0; border-top: 1px solid var(--line); background: rgba(255,255,255,.97); box-shadow: 0 -10px 30px rgba(3,22,11,.1); backdrop-filter: blur(16px); }
  .mobile-bottom-nav a,.mobile-bottom-nav button { min-width: 0; min-height: 54px; padding: 4px 2px; display: grid; place-items: center; align-content: center; gap: 2px; position: relative; border: 0; background: transparent; color: var(--green-900); text-decoration: none; }
  .mobile-bottom-nav span { font-size: 1.28rem; line-height: 1; }
  .mobile-bottom-nav strong { font-size: .62rem; }
  .mobile-bottom-nav em { min-width: 18px; height: 18px; padding: 0 5px; display: grid; place-items: center; position: absolute; top: 2px; left: calc(50% + 7px); border-radius: 99px; background: var(--champagne); color: var(--green-950); font-size: .58rem; font-style: normal; font-weight: 900; }
  .pwa-install-card { min-height: 90px; padding: 13px 42px 13px 13px; display: grid; grid-template-columns: 44px minmax(0,1fr) auto; align-items: center; gap: 11px; position: fixed; z-index: 36; left: 12px; right: 12px; bottom: calc(78px + env(safe-area-inset-bottom)); border: 1px solid rgba(212,162,62,.6); border-radius: 16px; background: var(--green-950); color: var(--white); box-shadow: 0 18px 44px rgba(3,22,11,.3); }
  .pwa-install-card[hidden] { display: none; }
  .pwa-install-card strong { display: block; font-family: Montserrat,sans-serif; font-size: .78rem; }
  .pwa-install-card p { margin: 3px 0 0; color: var(--green-100); font-size: .64rem; line-height: 1.35; }
  .pwa-install-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(212,162,62,.16); color: var(--champagne); font-size: 1.45rem; font-weight: 900; }
  .pwa-install-card > button:not(.pwa-install-dismiss) { min-height: 40px; padding: 0 12px; border: 0; border-radius: 9px; background: var(--champagne); color: var(--green-950); font-size: .7rem; font-weight: 900; }
  .pwa-install-dismiss { width: 32px; height: 32px; position: absolute; top: 4px; right: 4px; border: 0; background: transparent; color: var(--white); font-size: 1.25rem; }
  .product-dialog { width: 100%; max-height: 100dvh; height: 100dvh; border-radius: 0; }
  .product-page-head { padding: 7px 14px; }
  .product-gallery > small { padding: 9px; }
  .product-trust { grid-template-columns: 1fr; }
  .product-trust div + div { border-top: 1px solid var(--line); border-left: 0; }
  .product-depth { padding: 14px; grid-template-columns: 1fr; }
  .product-depth section, .technical-section, .related-section { grid-column: auto; grid-row: auto; padding: 18px; }
  .technical-facts div { grid-template-columns: 1fr; gap: 4px; }
  .technical-facts strong { text-align: left; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .related-grid button { min-height: 220px; padding: 0 10px 12px; }
  .related-grid .related-media { width: calc(100% + 20px); height: 112px; margin: 0 -10px 11px; }
  .image-zoom-dialog { width: 100%; height: 100dvh; max-height: 100dvh; border-radius: 0; }
  .product-dialog { padding-bottom: calc(142px + env(safe-area-inset-bottom)); }
  .mobile-product-action { min-height: 68px; padding: 9px 14px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; position: fixed; z-index: 32; left: 0; right: 0; bottom: calc(68px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,255,255,.97); box-shadow: 0 -12px 34px rgba(3,22,11,.12); backdrop-filter: blur(12px); }
  .mobile-product-action span,.mobile-product-action strong { display: block; }
  .mobile-product-action span { color: var(--muted); font-size: .67rem; }
  .mobile-product-action strong { margin-top: 2px; color: var(--green-900); font-family: Montserrat,sans-serif; font-size: 1rem; }
  .mobile-product-action button { min-width: 124px; min-height: 48px; }
}

/* Camada final responsiva: mantém controles comerciais sempre visíveis */
@media (max-width: 680px) {
  body.cart-open { overflow: hidden; }
  body.product-open .whatsapp-help,
  body.product-open .pwa-install-card,
  body.cart-open .whatsapp-help,
  body.cart-open .pwa-install-card { display: none !important; }
  .detail-add { position: static; box-shadow: none; }
  .product-selection-total { position: static; }
  .variant-item { grid-template-columns: minmax(0,1fr) minmax(104px,auto); grid-template-areas: "name price" "step total"; }
  .variant-info { grid-area: name; }
  .variant-price { grid-area: price; grid-column: auto; grid-row: auto; }
  .variant-stepper { grid-area: step; grid-column: auto; width: 118px; grid-template-columns: 34px 42px 34px; }
  .variant-total { grid-area: total; grid-column: auto; grid-row: auto; justify-items: end; }
  .card-description { display: none; }
  .confirmation { display: none; }
}
@media (min-width: 381px) and (max-width: 680px) {
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .card h3 { min-height: 2.7em; font-size: .86rem; }
  .specification { min-height: 2.5em; font-size: .72rem; }
}
@media (max-width: 380px) {
  .variant-item { grid-template-columns: 1fr; grid-template-areas: "name" "price" "step" "total"; }
  .variant-price { text-align: left; }
  .variant-total { justify-items: start; }
}

/* V16 editorial refinement — modern, simple and unmistakably Lopes */
:root { --gold: #d4a23e; --gold-bright: #d4a23e; }
.topbar { background: rgba(8,35,20,.97); border-color: rgba(255,255,255,.12); }
.brand { display: flex; align-items: center; min-width: 0; }
.brand img { width: min(188px,100%); height: auto; aspect-ratio: 519/197; object-fit: contain; object-position: left center; }
.header-search input { border-radius: 15px; background: #fff; }
.link-button { color: #fff; }
.header-internal { padding: 0 13px; border: 1px solid rgba(212,162,62,.55); border-radius: 999px; color: var(--champagne-light); }
.cart-button { background: #fff; color: var(--green-950); border-radius: 14px; }
.cart-button strong { color: #fff; }

main#catalogo .buying-guide { order: 2; }
main#catalogo .category-section { order: 3; }
main#catalogo .catalog-section { order: 4; }
main#catalogo .institutional-section { order: 5; }
main#catalogo .values-section { order: 6; }
main#catalogo .local-seo-section { order: 7; }
main#catalogo .contact-section { order: 8; }
main#catalogo .story-cta { order: 9; }

.intro { max-width: none; min-height: 620px; padding: clamp(54px,7vw,110px) max(clamp(18px,5vw,84px),calc((100vw - 1440px)/2)); align-items: center; background: radial-gradient(circle at 80% 45%,rgba(50,184,78,.16),transparent 26%),linear-gradient(125deg,#061d11 0%,#0a351d 55%,#103e24 100%); color: #fff; }
.intro h1 { max-width: 820px; color: #fff; font-style: italic; font-size: clamp(3rem,6.2vw,6.5rem); line-height: .91; letter-spacing: -.065em; text-transform: uppercase; }
.intro h1 em { color: var(--brand-green); font-style: inherit; }
.intro p { color: rgba(255,255,255,.76); font-size: clamp(1rem,1.6vw,1.25rem); }
.hero-primary { background: linear-gradient(135deg,var(--gold-bright),var(--gold)); color: #102719; border-radius: 14px; box-shadow: 0 16px 36px rgba(212,162,62,.22); }
.hero-secondary { border-color: rgba(255,255,255,.42); color: #fff; border-radius: 14px; }
.hero-metrics { border-color: rgba(255,255,255,.17); }
.hero-metrics strong { color: #fff; font-style: italic; }
.hero-metrics span { color: rgba(255,255,255,.62); }
.hero-product-stage { filter: drop-shadow(0 30px 38px rgba(0,0,0,.28)); }
.hero-product { border-color: rgba(212,162,62,.52); }

.buying-guide { width: 100%; padding: clamp(54px,7vw,88px) max(clamp(18px,5vw,84px),calc((100vw - 1440px)/2)); display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(30px,6vw,90px); background: #0a2114; color: #fff; }
.buying-guide-heading h2 { max-width: 460px; margin: 12px 0 0; font-size: clamp(2rem,4vw,4rem); line-height: .98; letter-spacing: -.05em; }
.buying-guide-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.buying-guide article { min-height: 150px; padding: 24px; display: grid; grid-template-columns: auto 1fr; gap: 18px; border: 1px solid rgba(212,162,62,.28); border-radius: 18px; background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.015)); transition: transform .2s ease,border-color .2s ease,background .2s ease; }
.buying-guide article:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(255,255,255,.07); }
.buying-guide article > span { color: var(--gold-bright); font: 800 .72rem Montserrat,sans-serif; letter-spacing: .12em; }
.buying-guide article strong { font-family: Montserrat,sans-serif; }
.buying-guide article p { margin: 8px 0 0; color: rgba(255,255,255,.63); font-size: .84rem; line-height: 1.55; }

.institutional-section { position: relative; grid-template-columns: minmax(360px,.9fr) minmax(0,1.1fr); overflow: hidden; background: linear-gradient(125deg,#071f12,#0d4225); }
.institutional-section::after { content: "1984"; position: absolute; right: -3vw; bottom: -7vw; color: rgba(255,255,255,.035); font: 900 clamp(8rem,20vw,22rem) Montserrat,sans-serif; pointer-events: none; }
.story-collage { min-height: 560px; position: relative; }
.story-photo { margin: 0; overflow: hidden; border: 1px solid rgba(212,162,62,.48); border-radius: 22px; background: #102719; box-shadow: 0 28px 60px rgba(0,0,0,.28); }
.story-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.story-photo figcaption { padding: 12px 16px; color: var(--champagne-light); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.story-photo-main { width: 69%; height: 500px; position: absolute; left: 0; top: 0; }
.story-photo-small { width: 43%; height: 330px; position: absolute; right: 0; bottom: 0; }
.story-copy { position: relative; z-index: 1; }
.story-copy h2 { max-width: 700px; }
.story-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 12px; color: var(--gold-bright); font-weight: 800; text-decoration: none; }

.values-section { width: 100%; padding: clamp(64px,8vw,110px) max(clamp(18px,5vw,84px),calc((100vw - 1440px)/2)); background: #04150c; color: #fff; }
.values-section > h2 { max-width: 1200px; margin: 12px 0 20px; font-size: clamp(2.2rem,5vw,5.4rem); font-style: italic; line-height: .95; letter-spacing: -.055em; text-transform: uppercase; }
.values-section h2 em { color: var(--brand-green); font-style: inherit; }
.values-intro { max-width: 820px; color: rgba(255,255,255,.62); font-size: 1.05rem; line-height: 1.7; }
.values-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.values-grid article { min-height: 290px; padding: 30px 24px; border: 1px solid rgba(212,162,62,.36); border-radius: 20px; background: linear-gradient(180deg,rgba(255,255,255,.035),transparent); }
.value-icon { color: var(--gold-bright); font-size: 2.3rem; }
.values-grid h3 { margin: 24px 0 16px; color: var(--brand-green); font-size: .94rem; letter-spacing: .15em; text-transform: uppercase; }
.values-grid p { color: rgba(255,255,255,.7); line-height: 1.7; }

.contact-section { background: linear-gradient(135deg,#f7f5ef,#fff); }
.location-card { overflow: hidden; border: 1px solid rgba(212,162,62,.35); border-radius: 24px; box-shadow: 0 28px 65px rgba(8,35,20,.12); }
.location-brand { min-height: 330px; padding: 42px; display: grid; place-items: center; align-content: center; gap: 25px; position: relative; overflow: hidden; background: radial-gradient(circle at 75% 20%,rgba(50,190,80,.22),transparent 30%),linear-gradient(145deg,#082c19,#14552f); }
.location-brand::before,.location-brand::after { content: ""; width: 130%; height: 1px; position: absolute; background: rgba(255,255,255,.16); transform: rotate(-28deg); }
.location-brand::after { transform: rotate(28deg); }
.location-brand .brand-mark { width: min(280px,80%); }
.location-brand span { color: var(--champagne-light); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.story-cta { width: 100%; padding: clamp(70px,9vw,128px) 18px; text-align: center; color: #fff; background: radial-gradient(circle at 50% 0,rgba(47,190,80,.17),transparent 38%),#062014; }
.story-cta h2 { max-width: 1050px; margin: 12px auto 20px; font-size: clamp(2.4rem,5vw,5.3rem); font-style: italic; line-height: .95; letter-spacing: -.055em; text-transform: uppercase; }
.story-cta p { max-width: 720px; margin: 0 auto 30px; color: rgba(255,255,255,.67); font-size: 1.05rem; line-height: 1.65; }
.story-cta > div { display: flex; justify-content: center; gap: 14px; }

.product-dialog { border: 1px solid rgba(212,162,62,.3); border-radius: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.32); }
.product-page-head { background: rgba(7,34,19,.97); border-color: rgba(255,255,255,.12); color: #fff; }
.product-page-head > span { color: rgba(255,255,255,.7); }
.product-back { background: rgba(255,255,255,.1); color: #fff; }
.detail { background: #f8f7f3; }
.detail-copy { background: #fff; }
.detail-copy h2 { color: var(--green-950); font-size: clamp(1.85rem,3vw,3.05rem); line-height: 1.03; letter-spacing: -.045em; }
.detail-price { color: var(--green-800); font-family: Montserrat,sans-serif; }
.detail-copy,.choice-panel,.variant-list { min-width: 0; max-width: 100%; }
.variant-list { width: 100%; max-height: none; overflow: visible; scrollbar-gutter: auto; border-radius: 16px; }
.variant-item { width: 100%; max-width: 100%; grid-template-columns: minmax(0,1fr) minmax(104px,auto); grid-template-areas: "name price" "step total"; gap: 10px; border-color: #e4dfd5; background: #fbfaf7; }
.variant-info { grid-area: name; }
.variant-price { grid-area: price; grid-column: auto; grid-row: auto; }
.variant-stepper { grid-area: step; grid-column: auto; width: 118px; grid-template-columns: 34px 42px 34px; }
.variant-total { grid-area: total; grid-column: auto; grid-row: auto; justify-items: end; }
.product-depth { background: #f4f2ec; }

@media (max-width: 1180px) {
  .topbar { grid-template-columns: 160px minmax(260px,1fr) auto; gap: 18px; }
  .header-home,.link-button { display: none !important; }
  .values-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .service-internal { display: inline-flex; margin-left: auto; }
  .buying-guide { grid-template-columns: 1fr; }
  .institutional-section { grid-template-columns: 1fr; }
  .story-collage { width: min(620px,100%); }
  .location-card { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  html { scroll-padding-top: 144px; }
  .service-bar { min-height: 29px; padding-block: 6px; }
  .service-bar span { display: none; }
  .service-bar span:first-child { display: inline; }
  .service-internal { display: inline-flex; margin-left: auto; }
  .topbar { min-height: 116px; padding: 10px 16px 12px; grid-template-columns: minmax(0,1fr) auto; grid-template-rows: 48px 48px; gap: 8px 12px; top: 0; }
  .brand img { width: 142px; max-height: 48px; }
  .topbar nav { min-width: 0; justify-self: end; }
  .header-link,.link-button { display: none !important; }
  .cart-button { min-height: 44px; padding: 0 13px; }
  .header-search { grid-column: 1/-1; grid-row: 2; }
  .header-search input { min-height: 48px; }
  .intro { min-height: auto; padding-top: 56px; padding-bottom: 60px; }
  .intro h1 { font-size: clamp(2.55rem,12.5vw,4.4rem); }
  .buying-guide { padding-block: 52px; }
  .buying-guide-grid { grid-template-columns: 1fr; }
  .buying-guide article { min-height: auto; }
  .story-collage { min-height: 440px; }
  .story-photo-main { width: 76%; height: 390px; }
  .story-photo-small { width: 44%; height: 245px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { min-height: auto; }
  .location-brand { min-height: 235px; padding: 28px; }
  .story-cta > div { flex-direction: column; max-width: 480px; margin: auto; }
  .product-dialog { width: 100%; max-height: 100dvh; border-radius: 0; }
  .product-depth { padding: 22px 14px; }
}
@media (max-width: 380px) {
  .cart-button span { display: inline; }
  .cart-button svg { display: none; }
  .story-collage { min-height: 390px; }
  .story-photo-main { height: 350px; }
  .story-photo-small { height: 210px; }
}

/* Correção estrutural premium — sem faixas, sem distorção e sem overflow */
html, body { width: 100%; max-width: 100%; overflow-x: clip; }
main, section, header, footer, .topbar > *, .intro > * { min-width: 0; }

.topbar {
  width: 100%;
  max-width: 100vw;
  grid-template-columns: minmax(150px,194px) minmax(260px,1fr) minmax(0,max-content);
  gap: clamp(12px,1.5vw,26px);
  padding-inline: clamp(20px,3vw,52px);
}
.topbar nav { min-width: 0; justify-content: flex-end; gap: clamp(8px,.9vw,15px); }
.brand-mark { aspect-ratio: 519/197; display: block; position: relative; }
.brand-mark img { width: 100%; height: 100% !important; position: absolute; inset: 0; object-fit: contain; }
.brand-wordmark { clip-path: inset(0 0 50% 0); }
.brand-descriptor { clip-path: inset(50% 0 25% 0); }
.brand-slogan { clip-path: inset(75% 0 0 0); filter: brightness(0) saturate(100%) invert(69%) sepia(31%) saturate(976%) hue-rotate(359deg) brightness(91%) contrast(87%); }
.topbar .brand-mark { width: min(188px,100%); }
.cart-button { flex: 0 0 auto; white-space: nowrap; }

.intro {
  grid-template-columns: minmax(0,1fr);
  min-height: 610px;
  padding-inline: max(clamp(22px,5vw,80px),calc((100vw - 1440px)/2));
}
.intro > div { width: min(1080px,100%); }
.hero-product-stage { display: none !important; }
.hero-signature,
.brand-signature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: Montserrat,Manrope,sans-serif;
  font-size: clamp(.95rem,1.35vw,1.2rem);
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.2;
}
.hero-signature { margin: -4px 0 24px; justify-self: center; text-align: center; }
.hero-signature::before,
.hero-signature::after,
.brand-signature::before,
.brand-signature::after { width: 42px; height: 2px; flex: 0 0 42px; content: ""; background: currentColor; }

.card[data-product] { cursor: pointer; }
.card[data-product]:focus-visible { outline: 3px solid var(--champagne); outline-offset: 3px; }
.detail-media:hover img[tabindex] { transform: scale(1.12); }

.story-cta { overflow: hidden; padding-inline: clamp(24px,5vw,80px); }
.story-cta h2 { width: min(100%,980px); font-size: clamp(2.2rem,4.2vw,4.5rem); line-height: .98; overflow-wrap: normal; }
.story-cta .brand-signature { justify-content: center; text-align: center; }
.story-cta-actions { display: flex; justify-content: center; gap: 14px; }
.story-cta-actions a {
  min-width: 250px;
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
}
.story-cta-actions .hero-secondary { border-color: #25d366; background: #25d366; color: #062014; box-shadow: 0 14px 32px rgba(37,211,102,.2); }
.story-cta-actions .hero-secondary:hover { border-color: #36e879; background: #36e879; color: #062014; }

footer {
  padding: 52px max(clamp(24px,4vw,64px),calc((100vw - 1440px)/2));
  grid-template-columns: minmax(220px,.75fr) minmax(340px,1fr) minmax(320px,1.15fr);
  align-items: start;
  gap: clamp(32px,5vw,72px);
}
.footer-brand { display: grid; justify-items: center; align-content: start; gap: 18px; text-align: center; }
.footer-brand .brand-mark { width: min(230px,100%); }
.footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 14px 22px; padding-top: 8px; }
.footer-service { display: grid; justify-items: center; gap: 10px; padding-top: 5px; text-align: center; }
.footer-service > strong { color: var(--gold); font-size: 1.04rem; font-weight: 900; }
.footer-service small { max-width: 520px; color: rgba(255,255,255,.78); font-weight: 650; line-height: 1.65; text-align: center; }

/* Assinaturas douradas — um único tom oficial e composição simétrica */
.intro .eyebrow {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-align: center;
}
.location-brand > span,
.story-photo figcaption,
.footer-service > strong {
  color: var(--gold);
  text-align: center;
}
.hero-signature,
.brand-signature {
  display: flex;
  width: 100%;
  margin-inline: auto;
  justify-content: center;
  color: var(--gold);
  text-align: center;
}

/* Paleta Lopes: os grandes fundos verdes e os acentos usam a mesma família
   cromática do bloco institucional localizado logo abaixo do cabeçalho. */
.intro {
  background:
    radial-gradient(circle at 80% 45%,rgba(31,167,57,.18),transparent 28%),
    linear-gradient(125deg,var(--green-950) 0%,var(--green-900) 55%,var(--green-800) 100%);
}
.location-brand {
  background:
    radial-gradient(circle at 75% 20%,rgba(255,255,255,.055),transparent 32%),
    linear-gradient(145deg,var(--green-950),var(--green-800));
}
.story-cta {
  background:
    radial-gradient(circle at 50% 45%,rgba(31,167,57,.16),transparent 34%),
    var(--green-950);
}

@media (max-width: 560px) {
  .hero-signature,
  .brand-signature { gap: 9px; letter-spacing: .11em; }
  .hero-signature::before,
  .hero-signature::after,
  .brand-signature::before,
  .brand-signature::after { width: 28px; flex-basis: 28px; }
}

@media (max-width: 1500px) {
  .topbar .header-home, .topbar #install-app { display: none !important; }
  .topbar { grid-template-columns: 170px minmax(250px,1fr) auto; }
  .topbar .header-link { font-size: .76rem; }
}
@media (max-width: 1260px) {
  .topbar .header-story { display: none !important; }
  footer { grid-template-columns: minmax(210px,.7fr) minmax(0,1.3fr); }
  .footer-service { grid-column: 2; }
}
@media (max-width: 900px) {
  footer { grid-template-columns: 1fr; text-align: left; }
  .footer-brand, .footer-brand .brand-mark { justify-self: center; margin: 0; }
  .footer-service { grid-column: auto; }
}
@media (max-width: 680px) {
  .intro { min-height: auto; }
  .hero-signature { margin-bottom: 20px; }
  .story-cta-actions { width: min(100%,480px); flex-direction: column; margin-inline: auto; }
  .story-cta-actions a { width: 100%; min-width: 0; }
}

/* Correção final de viewport: as regras móveis precisam vir depois da grade desktop. */
@media (max-width: 900px) {
  .topbar {
    width: 100%;
    max-width: 100%;
    min-height: 116px;
    padding: 10px max(14px,env(safe-area-inset-right)) 12px max(14px,env(safe-area-inset-left));
    grid-template-columns: minmax(0,1fr) auto;
    grid-template-rows: 48px 48px;
    gap: 8px 12px;
  }
  .topbar .brand { min-width: 0; overflow: hidden; }
  .topbar .brand-mark { width: clamp(150px,44vw,188px); max-width: 100%; max-height: 54px; }
  .topbar nav { min-width: 0; justify-self: end; gap: 0; }
  .topbar nav .header-link,
  .topbar nav .link-button { display: none !important; }
  .topbar .cart-button { width: auto; max-width: 150px; min-height: 44px; padding: 0 10px; gap: 6px; }
  .topbar .cart-button > span { display: inline; font-size: .75rem; }
  .topbar .cart-button strong { position: static; flex: 0 0 auto; }
  .header-search { min-width: 0; grid-column: 1/-1; grid-row: 2; }
  .header-search input { width: 100%; min-width: 0; min-height: 48px; }
}

@media (max-width: 680px) {
  .cart {
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    min-height: 100svh;
    inset: 0;
    padding: max(18px,env(safe-area-inset-top)) max(18px,env(safe-area-inset-right)) max(28px,env(safe-area-inset-bottom)) max(18px,env(safe-area-inset-left));
    overscroll-behavior: contain;
  }
  .cart-head { flex: 0 0 auto; position: sticky; top: 0; z-index: 2; background: var(--white); }
  .cart-items { flex: 0 0 auto; max-height: none; overflow: visible; }
  .quote-client { flex: 0 0 auto; }
}

/* Contenção móvel final: nenhum componente pode ampliar o documento. */
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
main, main#catalogo, .category-section, .catalog-section { width: 100%; max-width: 100%; min-width: 0; }

@media (max-width: 680px) {
  .section-title-row { min-width: 0; flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-title-row > * { max-width: 100%; white-space: normal; }
  .category-grid { width: 100%; min-width: 0; grid-template-columns: minmax(0,1fr); }
  .category-card { width: 100%; max-width: 100%; min-width: 0; }
  .catalog-search { width: 100%; max-width: 100%; margin-bottom: 14px; }
  .catalog-search input { min-height: 52px; font-size: 1rem; }
  .topbar { grid-template-columns: minmax(0,1fr) minmax(0,140px); overflow: hidden; }
  .topbar .brand-mark { width: min(150px,100%); }
  .topbar .cart-button { width: 100%; max-width: 140px; min-width: 0; }
}

/* Proteção leve das imagens: preserva cliques, zoom e acessibilidade. */
img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}
