:root {
  --ink: #10231d;
  --soft-ink: #5b6a64;
  --paper: #f4f8f4;
  --panel: #ffffff;
  --line: #dbe5dd;
  --green: #17a832;
  --green-2: #106126;
  --blue: #0d9bd7;
  --deep: #0b1d17;
  --mint: #e8f7ec;
  --sun: #d89b26;
  --shadow: 0 24px 80px rgba(16, 35, 29, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% -10%, rgba(13, 155, 215, .1), transparent 32%),
    radial-gradient(circle at 88% 4%, rgba(23, 168, 50, .1), transparent 30%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button:disabled { cursor: not-allowed; opacity: .55; }
.hidden { display: none !important; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 340px) auto;
  grid-template-areas:
    "promo promo promo"
    "brand search actions"
    "nav nav nav";
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  min-height: 92px;
  padding: 10px clamp(16px, 3.2vw, 46px) 8px;
  background: rgba(244, 248, 244, .88);
  border-bottom: 1px solid rgba(219, 229, 221, .86);
  backdrop-filter: blur(20px);
}
.promo-strip {
  grid-area: promo;
  width: calc(100% + clamp(32px, 6.4vw, 92px));
  margin: -10px calc(clamp(16px, 3.2vw, 46px) * -1) 6px;
  padding: 8px clamp(16px, 3.2vw, 46px);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}
.promo-strip strong { font-weight: 900; }
.typing-coupon {
  display: inline-block;
  width: 9ch;
  overflow: hidden;
  vertical-align: bottom;
  white-space: nowrap;
  border-right: 2px solid rgba(255,255,255,.9);
  animation: couponTyping 2.2s steps(9, end) infinite alternate, couponCaret .7s step-end infinite;
}
@keyframes couponTyping {
  from { width: 0; }
  to { width: 9ch; }
}
@keyframes couponCaret {
  50% { border-color: transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .typing-coupon {
    width: auto;
    border-right: 0;
    animation: none;
  }
}
.brand { grid-area: brand; display: flex; align-items: center; justify-self: start; width: max-content; min-width: max-content; }
.brand img { width: clamp(132px, 15vw, 210px); max-height: 50px; object-fit: contain; object-position: left center; }
.main-nav, .header-actions, .hero-actions, .form-actions { display: flex; align-items: center; }
.main-nav {
  grid-area: nav;
  justify-content: center;
  gap: 8px;
  position: relative;
  width: calc(100% + clamp(32px, 6.4vw, 92px));
  margin: 2px calc(clamp(16px, 3.2vw, 46px) * -1) 0;
  padding: 8px clamp(16px, 3.2vw, 46px) 0;
  border-top: 1px solid rgba(16, 35, 29, .1);
}
.header-actions {
  grid-area: actions;
  justify-self: end;
}
.main-nav a,
.nav-button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #3f5149;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-nav a.active, .main-nav a:hover,
.nav-button.active, .nav-button:hover { background: var(--mint); color: var(--green-2); transform: translateY(-1px); }
.header-actions { position: relative; gap: 10px; }
.login-prompt {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 35;
  white-space: nowrap;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(16, 97, 38, .18);
  border-radius: 999px;
  background: #fff;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(16, 35, 29, .1);
  cursor: pointer;
  animation: promptFloat 2.6s ease-in-out infinite;
}
.login-prompt::after {
  content: "";
  position: absolute;
  right: 16px;
  top: -6px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(16, 97, 38, .18);
  border-top: 1px solid rgba(16, 97, 38, .18);
  transform: rotate(45deg);
}
.login-prompt:hover { transform: translateY(-1px); }
.login-prompt span:hover { text-decoration: underline; text-underline-offset: 3px; }
.store-nav-item {
  position: relative;
  display: flex;
}
.category-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  grid-template-columns: minmax(230px, .85fr) minmax(360px, 1.4fr);
  gap: 14px;
  width: min(900px, calc(100vw - 32px));
  min-height: 300px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 8px);
  transition: opacity .18s ease, transform .18s ease;
}
.category-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.store-nav-item:hover .category-mega,
.store-nav-item:focus-within .category-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}
.menu-tubos-conexoes .category-mega {
  left: auto;
  right: 0;
  grid-template-columns: minmax(300px, 1fr) minmax(250px, .85fr);
  width: min(760px, calc(100vw - 32px));
  transform: translate(0, 8px);
}
.menu-gotejamento .category-mega,
.menu-aspersao .category-mega {
  grid-template-columns: minmax(250px, .9fr) minmax(300px, 1fr);
  width: min(760px, calc(100vw - 32px));
}
.menu-gotejamento .mega-preview,
.menu-aspersao .mega-preview {
  min-height: 238px;
}
.menu-gotejamento .mega-preview img,
.menu-aspersao .mega-preview img {
  min-height: 150px;
}
.menu-tubos-conexoes .mega-subcategories { order: 2; }
.menu-tubos-conexoes .mega-preview { order: 1; }
.menu-tubos-conexoes:hover .category-mega,
.menu-tubos-conexoes:focus-within .category-mega {
  transform: translate(0, 0);
}
.mega-subcategories {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  background: #f7fbf8;
}
.mega-subcategories > strong {
  padding: 4px 7px 7px;
  color: var(--ink);
  font-size: 15px;
}
.mega-subcategory {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 11px;
  border-radius: 12px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 900;
}
.main-nav .mega-subcategory {
  padding: 9px 11px;
  border-radius: 12px;
}
.mega-subcategory:hover,
.mega-subcategory.active {
  background: var(--mint);
  color: var(--green-2);
}
.mega-preview {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  min-height: 272px;
  border-radius: 16px;
  background: #eef7f0;
}
.mega-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 18, 13, .92) 0%, rgba(6, 18, 13, .72) 24%, rgba(6, 18, 13, .34) 48%, rgba(6, 18, 13, .04) 78%);
  pointer-events: none;
}
.mega-preview img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}
.mega-preview.product-preview {
  background: #fff;
}
.mega-preview.product-preview img {
  object-fit: contain;
  padding: 18px 26px 76px;
}
.mega-preview div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 18px;
  color: #fff;
}
.mega-preview strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}
.mega-preview p {
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,.86);
  font-size: 11px;
  line-height: 1.45;
}
.nav-search {
  grid-area: search;
  justify-self: center;
  position: relative;
  width: 100%;
  margin: 0;
}
.nav-search input {
  width: 100%;
  min-height: 36px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  background: #fff;
}
.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  display: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.search-results.open { display: grid; }
.search-results a,
.search-results p {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 13px;
}
.search-results a {
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
}
.search-results a:hover { background: var(--mint); }
.search-results span { display: grid; gap: 2px; }
.search-results small { color: var(--soft-ink); font-size: 12px; }
.search-thumb {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--mint);
  color: var(--green-2);
  font-style: normal;
  font-weight: 900;
}
.search-thumb img,
.search-thumb span { width: 100%; height: 100%; object-fit: cover; display: grid; place-items: center; }

.primary-button, .ghost-button, .glass-button, .category-button, .cart-button, .account-button, .link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  border: 0;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.primary-button { background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; box-shadow: 0 14px 30px rgba(23, 168, 50, .22); }
.ghost-button { background: #fff; color: var(--green-2); border: 1px solid var(--line); }
.danger-button { color: #8f2f21; border-color: #ead1ca; }
.danger-button:hover { background: #fff3ef; border-color: #dcae9f; }
.glass-button { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.34); }
.cart-button { gap: 8px; background: var(--deep); color: #fff; padding: 0 14px; }
.cart-button.icon-only, .account-button {
  position: relative;
  width: 42px;
  padding: 0;
}
.cart-button svg, .account-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-button.icon-only span {
  position: absolute;
  top: -6px;
  right: -6px;
}
.cart-button span { display: grid; place-items: center; min-width: 24px; height: 24px; border-radius: 50%; background: var(--green); font-size: 12px; }
.account-button { background: #fff; color: var(--green-2); border: 1px solid var(--line); }
.primary-button:hover, .ghost-button:hover, .glass-button:hover, .cart-button:hover, .account-button:hover { transform: translateY(-2px); }
.account-menu { position: relative; }
.account-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.account-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.account-menu:hover .account-dropdown,
.account-menu:focus-within .account-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.account-menu.guest .account-dropdown,
.account-menu.guest:hover .account-dropdown,
.account-menu.guest:focus-within .account-dropdown {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.account-dropdown button {
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 11px 12px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}
.account-dropdown button:hover { background: var(--mint); color: var(--green-2); }
.link-button {
  min-height: auto;
  justify-content: start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 800;
}
.compact { min-height: 36px; padding: 0 14px; }
.full { grid-column: 1 / -1; width: 100%; }

.home-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(620px, calc(100vh - 72px));
  overflow: hidden;
}
.home-hero img, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-hero img { object-fit: cover; transform: scale(1.02); animation: heroZoom 12s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.08); } }
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 21, 16, .92), rgba(8, 21, 16, .64) 48%, rgba(8, 21, 16, .08)),
    linear-gradient(0deg, rgba(8,21,16,.45), rgba(8,21,16,.02));
}
.hero-copy {
  position: relative;
  width: min(680px, calc(100% - 36px));
  margin: 0 0 clamp(40px, 6vw, 72px) clamp(18px, 6vw, 76px);
  color: #fff;
}
.kicker { display: inline-flex; margin-bottom: 10px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.hero-copy .kicker, .store-hero .kicker, .contact-intro .kicker, .admin-locked .kicker { color: #91dcff; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 14px; font-size: clamp(34px, 5.4vw, 62px); line-height: 1; letter-spacing: 0; }
h2 { margin-bottom: 12px; font-size: clamp(24px, 3.2vw, 38px); line-height: 1.08; letter-spacing: 0; }
h3 { margin-bottom: 10px; }
.hero-copy p, .store-hero p, .contact-intro p, .intro-grid p { color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.55; }
.hero-actions { flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.impact-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.impact-band article {
  min-height: 136px;
  padding: clamp(20px, 3vw, 32px);
  background: #fff;
}
.impact-band strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-2);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}
.impact-band span { color: var(--soft-ink); line-height: 1.6; }
.home-story {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 6vw, 86px) clamp(16px, 3.2vw, 46px);
  background: #fff;
}
.story-copy {
  display: grid;
  justify-items: start;
  gap: 12px;
}
.story-copy p {
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.65;
}
.story-media {
  min-height: 330px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.values-section {
  padding: clamp(46px, 6vw, 82px) clamp(16px, 3.2vw, 46px);
  background: #f7fbf8;
}
.statement-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; background: transparent; }
.statement-row article { min-height: 160px; padding: clamp(20px, 3vw, 30px); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.statement-row article:hover, .service-list article:hover, .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.statement-row span, .service-list span, .contact-card span { color: var(--sun); font-weight: 900; }
.statement-row p, .service-list p, .info-panel span, .contact-card p, .product-body p { color: var(--soft-ink); line-height: 1.55; font-size: 14px; }

.page-section { padding: clamp(46px, 6vw, 82px) clamp(16px, 3.2vw, 46px); }
.intro-grid { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr); gap: 26px; align-items: start; }
.intro-grid p { color: var(--soft-ink); }
.info-panel { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--line); box-shadow: var(--shadow); }
.info-panel div { display: grid; gap: 6px; padding: 20px; background: #fff; }
.info-panel strong { font-size: 12px; text-transform: uppercase; }
.services-section { background: #edf6ef; }
.section-title { margin-bottom: 28px; }
.service-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-list article, .product-card, .lead-form, .contact-card, .admin-form, .analytics-grid article, .admin-table-section, .analytics-wide article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 1px 0 rgba(18,33,28,.03);
}
.service-list article { min-height: 200px; padding: 20px; transition: transform .2s ease, box-shadow .2s ease; }

.store-hero, .contact-intro, .admin-locked { padding: clamp(38px, 5vw, 68px) clamp(16px, 3.2vw, 46px); background: var(--deep); color: #fff; }
.store-hero { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(260px, 440px); gap: 28px; align-items: end; }
.price-gate { padding: 22px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.86); line-height: 1.5; }
body[data-page="loja"] .store-hero {
  grid-template-columns: minmax(320px, 680px) minmax(260px, 380px);
  align-items: center;
  min-height: 210px;
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(28px, 4vw, 46px);
}
body[data-page="loja"] .store-hero h1 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: .98;
}
body[data-page="loja"] .store-hero p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
}
body[data-page="loja"] .price-gate {
  align-self: end;
  padding: 18px 20px;
  border-radius: 20px;
  font-size: 15px;
}
.store-layout { display: grid; grid-template-columns: 1fr; gap: 16px; padding: clamp(24px, 3.2vw, 46px); }
.category-panel { display: block; padding: 14px 16px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.brand-filter-box { display: grid; gap: 12px; width: 100%; }
.brand-filter-box label { display: grid; gap: 7px; color: var(--ink); font-size: 13px; font-weight: 900; }
.brand-filter-box input {
  width: min(420px, 100%);
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--ink);
  font: inherit;
  background: #fbfdfb;
}
.brand-filter-box input:focus { outline: 3px solid rgba(25,166,62,.12); border-color: rgba(25,166,62,.45); }
.brand-filter-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.category-button { width: auto; background: transparent; color: var(--soft-ink); }
.category-button.active {
  background: var(--green-2);
  color: #fff;
  box-shadow: 0 10px 22px rgba(16, 97, 38, .18);
}
.product-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.product-card { display: grid; grid-template-rows: 148px 1fr; min-width: 0; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.product-media { display: grid; place-items: center; min-height: 148px; height: 148px; background: linear-gradient(135deg, #eaf4ef, #edf7fb); color: var(--green-2); font-size: 30px; font-weight: 900; overflow: hidden; }
.product-media img, .detail-media img, .cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-media span { display: grid; place-items: center; width: 100%; height: 100%; }
.product-placeholder {
  align-content: center;
  gap: 8px;
  padding: 14px;
  text-align: center;
}
.product-placeholder b {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 18px;
  background: rgba(22, 157, 55, .1);
  color: var(--green-2);
  font-size: 30px;
  line-height: 1;
}
.detail-media .product-placeholder b {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  font-size: 58px;
}
.product-placeholder small {
  max-width: 220px;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}
.product-body { display: grid; grid-template-rows: auto auto minmax(44px, auto) auto auto auto; gap: 8px; padding: 13px 14px 15px; }
.product-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--soft-ink); font-size: 12px; font-weight: 900; }
.product-body h3 {
  margin-bottom: 4px;
  font-size: 19px;
  line-height: 1.2;
}
.product-body p {
  margin-bottom: 2px;
}
.price-box {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid #cfe2d4;
  border-radius: 14px;
  background: #f4fbf6;
}
.price-box.out-stock {
  border-color: #ead6be;
  background: #fff8ef;
}
.price-box.out-stock .price {
  color: #9a4b16;
  font-size: 20px;
}
.price-box span {
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.price { color: var(--green-2); font-size: 22px; font-weight: 900; line-height: 1.02; }
.old-price, .locked-price { color: var(--soft-ink); font-size: 13px; font-weight: 800; }
.old-price { text-decoration: line-through; }
.product-qty {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 6px;
  align-items: center;
}
.product-qty input {
  min-height: 36px;
  padding: 6px;
  text-align: center;
  font-weight: 900;
}
.qty-step {
  display: grid;
  place-items: center;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--green-2);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}
.qty-step:hover { background: var(--mint); }
.product-actions { display: grid; gap: 8px; }
.product-actions .primary-button,
.product-actions .ghost-button {
  min-height: 38px;
}
.product-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0 0;
}
.product-pagination button {
  min-width: 40px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--soft-ink);
  cursor: pointer;
  font-weight: 900;
}
.product-pagination button.active {
  background: var(--green-2);
  color: #fff;
  border-color: var(--green-2);
}
.product-pagination button:disabled { opacity: .45; cursor: not-allowed; }
.product-pagination span { color: var(--soft-ink); font-size: 13px; font-weight: 800; }

.product-page { min-height: 70vh; }
.product-detail { display: grid; grid-template-columns: minmax(300px, .9fr) minmax(320px, 1.1fr); gap: 28px; padding: clamp(34px, 5vw, 64px) clamp(16px, 3.2vw, 46px); align-items: center; }
.detail-media { display: grid; place-items: center; min-height: 360px; border-radius: 26px; background: linear-gradient(135deg, #eaf4ef, #edf7fb); color: var(--green-2); font-size: 64px; font-weight: 900; overflow: hidden; box-shadow: var(--shadow); }
.detail-copy { display: grid; justify-items: start; gap: 12px; }
.detail-copy p { color: var(--soft-ink); line-height: 1.6; font-size: 16px; }
.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin: 2px 0 4px;
}
.product-specs div {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdfb;
}
.product-specs span {
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-specs strong {
  color: var(--ink);
  font-size: 14px;
  overflow-wrap: anywhere;
}
.profile-page { min-height: 62vh; }
.profile-hero,
.profile-locked {
  display: grid;
  gap: 12px;
  padding: clamp(38px, 5vw, 68px) clamp(16px, 3.2vw, 46px);
  background: var(--deep);
  color: #fff;
}
.profile-hero p,
.profile-locked p { max-width: 680px; color: rgba(255,255,255,.78); line-height: 1.6; }
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 3.2vw, 46px);
}
.profile-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(18,33,28,.03);
}
.profile-card h2 { font-size: 24px; }
.profile-card div {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.profile-card div:last-child { border-bottom: 0; }
.profile-card span { color: var(--soft-ink); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.profile-card strong { color: var(--ink); font-size: 17px; overflow-wrap: anywhere; }
.profile-settings-form {
  display: grid;
  gap: 12px;
  padding-top: 10px;
}
.profile-settings-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.profile-settings-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  background: #fbfdfb;
}
.profile-settings-form input:focus {
  outline: 3px solid rgba(25,166,62,.12);
  border-color: rgba(25,166,62,.45);
}
.profile-settings-form .primary-button {
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
}
.profile-settings-form .form-status {
  min-height: 18px;
  margin: 0;
}
.detail-qty { width: min(360px, 100%); }
.related-section { padding-top: 12px; }
.related-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #18b84a;
  color: #fff;
  box-shadow: 0 18px 42px rgba(14, 111, 44, .32);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 22px 52px rgba(14, 111, 44, .42); }
.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page { background: linear-gradient(180deg, var(--deep) 0 390px, var(--paper) 390px); }
.contact-intro { max-width: 980px; background: transparent; padding-bottom: 48px; }
.contact-grid { display: grid; grid-template-columns: minmax(320px, 1fr) minmax(300px, 360px); gap: 18px; padding: 0 clamp(16px, 3.2vw, 46px) clamp(42px, 5vw, 70px); align-items: start; }
body[data-page="contato"] .contact-page {
  background: linear-gradient(180deg, var(--deep) 0 190px, var(--paper) 190px);
}
body[data-page="contato"] .contact-intro {
  max-width: 760px;
  padding-top: 26px;
  padding-bottom: 22px;
}
body[data-page="contato"] .contact-intro h1 {
  max-width: 620px;
  margin-bottom: 10px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1;
}
body[data-page="contato"] .contact-intro p {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
}
body[data-page="contato"] .contact-grid {
  padding-top: 0;
}
.lead-form, .admin-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 22px; }
.elevated, .contact-card { box-shadow: var(--shadow); }
label { display: grid; gap: 7px; color: #304139; font-size: 12px; font-weight: 900; }
input, select, textarea { width: 100%; min-height: 42px; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; background: #fbfdfb; color: var(--ink); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(23,168,50,.1); }
textarea { resize: vertical; }
.form-status { min-height: 20px; margin: 0; color: var(--green-2); font-weight: 800; }
.contact-card { display: grid; align-content: start; gap: 13px; padding: 22px; min-height: auto; overflow: visible; }
.contact-card h2 { font-size: clamp(21px, 2.4vw, 28px); overflow-wrap: anywhere; }
.contact-lines { display: grid; gap: 6px; margin-top: 10px; color: var(--soft-ink); }

.auth-modal { width: min(520px, calc(100% - 28px)); max-height: calc(100dvh - 28px); border: 0; border-radius: 24px; padding: 0; overflow: auto; box-shadow: var(--shadow); animation: modalIn .25s ease; }
.auth-modal {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.auth-modal::-webkit-scrollbar { width: 0; height: 0; }
.admin-modal {
  width: min(860px, calc(100% - 28px));
  border: 0;
  border-radius: 28px;
  padding: 0;
  background: transparent;
  animation: modalIn .25s ease;
}
.admin-modal::backdrop { background: rgba(9, 23, 18, .62); backdrop-filter: blur(12px); }
.import-progress-modal {
  width: min(480px, calc(100% - 28px));
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  animation: modalIn .25s ease;
}
.import-progress-modal::backdrop { background: rgba(9, 23, 18, .62); backdrop-filter: blur(12px); }
.import-progress-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.import-progress-card h2 {
  margin: 4px 0 0;
  font-size: 26px;
  line-height: 1.05;
}
.import-progress-card p {
  margin: 6px 0 0;
  color: var(--soft-ink);
}
.import-progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6f1ea;
}
.import-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  transition: width .35s ease;
}
.import-progress-card > strong {
  color: var(--green-2);
  font-size: 28px;
  line-height: 1;
}
.import-progress-summary {
  display: grid;
  gap: 6px;
  min-height: 24px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 800;
}
.modal-form {
  position: relative;
  margin: 0;
  box-shadow: var(--shadow);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.auth-modal::backdrop { background: rgba(9, 23, 18, .62); backdrop-filter: blur(12px); }
.auth-shell { display: block; min-height: 0; background: #fff; }
.auth-aside { display: none; }
.auth-main { position: relative; display: grid; gap: 16px; min-height: min-content; padding: 30px; background: #fff; }
.auth-logo { width: 178px; height: auto; justify-self: center; }
.auth-heading { display: grid; gap: 6px; padding-right: 42px; }
.auth-heading span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.auth-heading h2 {
  margin: 0;
  max-width: 360px;
  font-size: 27px;
  line-height: 1.12;
}
.auth-heading p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.5;
}
.modal-close { position: absolute; top: 18px; right: 18px; width: 42px; min-height: 42px; padding: 0; border-radius: 50%; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; padding: 4px; border: 1px solid var(--line); border-radius: 14px; background: #f8fbf8; }
.auth-tabs button { border: 0; border-radius: 10px; padding: 11px 16px; background: transparent; cursor: pointer; font-weight: 900; color: var(--soft-ink); }
.auth-tabs button.active { background: #fff; color: var(--green-2); box-shadow: 0 8px 20px rgba(18,33,28,.09); }
.auth-form { display: none; gap: 12px; margin-top: 0; }
.auth-form.active { display: grid; animation: fadeIn .25s ease; }
.auth-form .primary-button,
.auth-form .ghost-button { width: 100%; }
.reset-step {
  display: none;
  gap: 12px;
}
.reset-step.active {
  display: grid;
  animation: resetStepIn .28s ease both;
}
.auth-form button:disabled {
  cursor: not-allowed;
  opacity: .58;
  transform: none;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes resetStepIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes promptFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.auth-note { color: var(--soft-ink); font-size: 13px; line-height: 1.5; }

.cart-drawer { position: fixed; inset: 0 0 0 auto; z-index: 50; width: min(390px, 100%); pointer-events: none; transform: translateX(100%); transition: transform .32s ease; }
.cart-drawer.open { pointer-events: auto; transform: translateX(0); }
.cart-panel { display: grid; grid-template-rows: auto 1fr auto auto auto; gap: 0; height: 100vh; padding: 0 18px 18px; background: #fff; box-shadow: -20px 0 60px rgba(16,35,29,.18); }
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--line);
}
.cart-head h2 {
  max-width: none;
  margin: 0;
  font-size: 25px;
  line-height: 1;
  white-space: nowrap;
}
.cart-head .modal-close {
  position: static;
  flex: 0 0 auto;
  width: 38px;
  min-height: 38px;
}
.cart-items {
  display: grid;
  align-content: start;
  gap: 9px;
  overflow: auto;
  padding: 16px 0;
}
.cart-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 10px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 16px; }
.cart-thumb { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; background: var(--mint); color: var(--green-2); font-weight: 900; overflow: hidden; }
.cart-item div:nth-child(2) { display: grid; gap: 2px; min-width: 0; }
.cart-item strong { font-size: 14px; line-height: 1.2; }
.cart-item span, .cart-item small, .empty-cart { color: var(--soft-ink); font-size: 13px; }
.cart-item .action-icon { justify-self: end; }
.qty-control {
  display: inline-grid;
  grid-template-columns: 26px minmax(24px, auto) 26px;
  align-items: center;
  width: max-content;
  gap: 6px;
  margin: 4px 0 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.qty-control span {
  min-width: 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.qty-control .action-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.qty-control .action-icon svg {
  width: 13px;
  height: 13px;
}
.action-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--green-2);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.action-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.action-icon:hover {
  background: var(--mint);
  border-color: #c9dfd0;
  transform: translateY(-1px);
}
.action-icon.danger {
  color: #8f2f21;
}
.action-icon.danger:hover {
  background: #fff0ed;
  border-color: #f0c8c0;
}
.coupon-area {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.coupon-toggle {
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--green-2);
  cursor: pointer;
  font-weight: 900;
  padding: 0;
}
.coupon-box { position: relative; display: none; gap: 8px; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: #f8fbf8; }
.coupon-box.open { display: grid; }
.coupon-box input { min-height: 42px; }
.coupon-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #cfe2d4;
  border-radius: 14px;
  background: #f4fbf6;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 800;
}
.coupon-remove { color: #8d2d1d; }
.coupon-close {
  position: absolute;
  top: -9px;
  right: -9px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--green-2);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(16, 35, 29, .14), 0 0 0 1px var(--line);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.coupon-close:hover {
  background: var(--green-2);
  color: #fff;
  transform: scale(1.06);
}
.cart-summary {
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  font-size: 14px;
  overflow: hidden;
}
.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  color: var(--soft-ink);
  border-bottom: 1px solid var(--line);
}
.cart-summary strong { color: var(--ink); }
.cart-summary .cart-total {
  border-bottom: 0;
  background: #f8fbf8;
  color: var(--ink);
  font-size: 16px;
}
.cart-summary p {
  margin: 0;
  padding: 12px 14px;
  color: var(--soft-ink);
  line-height: 1.5;
}
.cart-summary.locked {
  background: #f8fbf8;
}
.cart-summary.locked p {
  color: var(--green-2);
  font-weight: 800;
}
.cart-panel > .primary-button {
  margin-top: 14px;
}

.admin-page { min-height: calc(100vh - 72px); }
.admin-locked { display: grid; gap: 14px; place-items: start; }
.admin-locked p { color: rgba(255,255,255,.78); max-width: 680px; line-height: 1.65; }
.admin-locked small { color: rgba(255,255,255,.62); }
.admin-dashboard { padding: clamp(22px, 3vw, 40px); font-size: 14px; }
.dashboard-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 20px; }
.dashboard-head h1 { font-size: clamp(26px, 3vw, 36px); }
.admin-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; padding: 5px; border-radius: 999px; background: #e9f1eb; width: fit-content; }
.admin-tabs button { border: 0; border-radius: 999px; padding: 8px 12px; background: transparent; cursor: pointer; font-size: 13px; font-weight: 900; color: var(--soft-ink); }
.admin-tabs button.active { background: #fff; color: var(--green-2); box-shadow: 0 10px 24px rgba(18,33,28,.09); }
.admin-panel { display: none; }
.admin-panel.active { display: block; animation: fadeIn .25s ease; }
.analytics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 18px; }
.analytics-grid article, .analytics-wide article { padding: 15px; }
.analytics-grid span { color: var(--soft-ink); font-weight: 800; }
.analytics-grid strong { display: block; margin: 7px 0 12px; font-size: 24px; }
.mini-chart { display: flex; align-items: end; gap: 5px; height: 64px; }
.mini-chart i { flex: 1; min-width: 8px; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--blue), var(--green)); }
.analytics-wide { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.funnel-bars { display: grid; gap: 14px; }
.funnel-bars div { display: grid; grid-template-columns: 160px 60px 1fr; gap: 12px; align-items: center; }
.funnel-bars i { display: block; height: 12px; border-radius: 999px; background: linear-gradient(90deg, var(--green), var(--blue)); }
.campaign-summary { display: grid; gap: 10px; }
.campaign-summary div { display: flex; justify-content: space-between; padding: 12px; border-radius: 14px; background: #f4f8f4; }
.admin-workspace { display: grid; grid-template-columns: minmax(340px, .8fr) minmax(420px, 1.2fr); gap: 18px; align-items: start; }
.admin-form h2 { grid-column: 1 / -1; font-size: 24px; }
.check-row { display: flex; align-items: center; gap: 10px; }
.check-row input { width: auto; min-height: auto; }
.form-actions { gap: 10px; flex-wrap: wrap; }
.admin-table-section { padding: 15px; }
.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.admin-import-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.import-button {
  position: relative;
  min-height: 40px;
}
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 9px; border-bottom: 1px solid var(--line); text-align: left; font-size: 13px; }
th { color: var(--soft-ink); font-size: 12px; text-transform: uppercase; }
.campaign-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.campaign-columns > div { display: grid; gap: 10px; align-content: start; }
.campaign-columns article { display: grid; gap: 4px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #f8fbf8; font-size: 13px; }
.campaign-columns span, .campaign-columns small { color: var(--soft-ink); }
.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}
.category-admin-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbf8;
}
.category-admin-item div {
  display: grid;
  gap: 4px;
}
.category-admin-item img {
  width: 82px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}
.category-admin-item span, .category-admin-item small { color: var(--soft-ink); }
.brand-chips {
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.brand-chips i {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-2);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}
.category-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(170px, .7fr));
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  background: #081711;
  color: rgba(255,255,255,.72);
}
.site-footer img { width: min(210px, 100%); margin-bottom: 12px; }
.site-footer strong { display: block; margin-bottom: 12px; color: #fff; }
.site-footer a, .site-footer span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.72); }
.site-footer p { max-width: 360px; color: rgba(255,255,255,.72); line-height: 1.55; }
.social-icon {
  display: inline-grid !important;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px !important;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}
.social-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon:hover { background: rgba(255,255,255,.1); }

@media (max-width: 1160px) {
  .service-list, .analytics-grid, .campaign-columns, .impact-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .store-layout, .contact-grid, .admin-workspace, .analytics-wide, .product-detail, .home-story { grid-template-columns: 1fr; }
  body[data-page="loja"] .store-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  body[data-page="loja"] .price-gate {
    align-self: start;
    max-width: 620px;
  }
  body[data-page="contato"] .contact-page {
    background: linear-gradient(180deg, var(--deep) 0 230px, var(--paper) 230px);
  }
  .category-panel { position: static; }
  .site-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "promo promo"
      "brand actions"
      "search search"
      "nav nav";
    gap: 10px;
  }
  .brand img { width: 180px; }
  .main-nav { width: 100%; overflow-x: auto; justify-content: flex-start; }
  .nav-search { width: min(100%, 420px); justify-self: stretch; margin: 0; }
  .category-mega { grid-template-columns: 1fr; left: 0; transform: translate(0, 10px); width: min(390px, calc(100vw - 32px)); min-height: auto; max-height: 74vh; overflow-y: auto; }
  .mega-preview { min-height: 220px; }
  .store-nav-item:hover .category-mega,
  .store-nav-item:focus-within .category-mega { transform: translate(0, 0); }
  .header-actions { margin-left: auto; flex-wrap: wrap; justify-content: end; }
  .home-hero { min-height: 520px; }
  .hero-copy { margin: 0 auto 36px; }
  .statement-row, .impact-band, .intro-grid, .store-hero, .product-grid, .lead-form, .auth-shell, .analytics-grid, .campaign-columns, .profile-grid, .site-footer { grid-template-columns: 1fr; }
  body[data-page="loja"] .store-hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  body[data-page="loja"] .store-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .service-list { grid-template-columns: 1fr; }
  .contact-page { background: linear-gradient(180deg, var(--deep) 0 460px, var(--paper) 460px); }
  body[data-page="contato"] .contact-page {
    background: linear-gradient(180deg, var(--deep) 0 220px, var(--paper) 220px);
  }
  body[data-page="contato"] .contact-intro {
    padding-top: 22px;
    padding-bottom: 20px;
  }
  body[data-page="contato"] .contact-intro h1 {
    font-size: clamp(26px, 7vw, 34px);
  }
  .contact-grid { padding-top: 0; }
  .funnel-bars div { grid-template-columns: 1fr; }
  .admin-section-head { align-items: stretch; flex-direction: column; }
}
