:root {
  --black: oklch(0.15 0.008 95);
  --black-soft: oklch(0.22 0.012 95);
  --accent: oklch(0.67 0.19 40);
  --accent-deep: oklch(0.48 0.15 36);
  --accent-soft: oklch(0.95 0.04 48);
  --green: oklch(0.62 0.18 145);
  --white: oklch(1 0 0);
  --surface: oklch(0.97 0.006 95);
  --surface-strong: oklch(0.925 0.012 95);
  --ink: oklch(0.19 0.01 95);
  --muted: oklch(0.42 0.018 95);
  --line: oklch(0.86 0.012 95);
  --font-display: "Montserrat", Arial, sans-serif;
  --font-body: "Source Sans 3", Arial, sans-serif;
  --container: 1600px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --radius-sm: 12px;
  --radius-md: 22px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-sticky: 20;
  --z-toast: 50;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: var(--z-toast);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }

/* O mesmo chrome estrutural é compartilhado por todas as páginas. */
.store-benefits > .container,
.site-header > .container,
.site-footer > .container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  height: 76px;
  background: color-mix(in oklch, var(--white) 96%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in oklch, var(--white) 98%, transparent);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 2rem; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: none;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand > span { max-width: none; line-height: 1; white-space: nowrap; }
.brand-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.header-search {
  flex: 1 1 420px;
  min-width: 220px;
  max-width: 640px;
  margin-inline: auto;
}
.header-search__control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.25rem;
  min-height: 52px;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.header-search__control:focus-within {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 24%, transparent);
}
.header-search__control > svg {
  width: 21px;
  margin-left: 0.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.header-search input {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.header-search input::placeholder { color: var(--muted); opacity: 1; }
.header-search .clear-search {
  width: 38px;
  height: 38px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
}
.header-search__submit {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  cursor: pointer;
  transition: transform 180ms var(--ease-out), background 180ms ease;
}
.header-search__submit:hover { background: oklch(0.61 0.19 36); color: var(--white); transform: translateX(1px); }
.header-search__submit svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.main-nav, .detail-header-actions { display: flex; align-items: center; flex-wrap: nowrap; gap: clamp(0.7rem, 1.35vw, 1.35rem); font-weight: 650; white-space: nowrap; }
.main-nav > a, .detail-header-actions > a { flex: 0 0 auto; white-space: nowrap; }
.main-nav > a:not(.header-cta), .detail-header-actions > a:not(.header-cta) { color: var(--muted); }
.main-nav > a:not(.header-cta):hover, .detail-header-actions > a:not(.header-cta):hover { color: var(--black); }
.cart-nav-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
}
.cart-nav-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-nav-count {
  position: absolute;
  top: -4px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding-inline: 4px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1;
}
.header-cta, .button, .detail-whatsapp, .product-cta, .related-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms var(--ease-out), background 180ms ease, color 180ms ease;
}
.header-cta { padding: 0.65rem 1rem; background: var(--black); color: var(--white); }
.header-cta:hover { background: var(--black-soft); transform: translateY(-1px); }
.whatsapp-icon { width: 18px; fill: currentColor; stroke: none; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0.7rem;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}
.menu-toggle svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

.catalog-hero { overflow: hidden; padding-block: clamp(1.5rem, 3vw, 3rem); background: var(--surface); border-bottom: 1px solid var(--line); }
.catalog-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  gap: clamp(1.35rem, 2.5vw, 2.25rem);
  min-height: clamp(390px, 38vw, 560px);
  margin-bottom: clamp(1.4rem, 2.5vw, 2.25rem);
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  border-radius: 16px;
  background-image:
    linear-gradient(90deg, oklch(0.12 0.02 255 / 0.94) 0%, oklch(0.12 0.02 255 / 0.78) 42%, oklch(0.12 0.02 255 / 0.12) 78%),
    url("assets/hero-cotacapital.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}
.catalog-hero h1 {
  width: min(100%, 1280px);
  max-width: none;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 14px oklch(0.08 0.015 255 / 0.34);
}
.hero-product-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(0.7rem, 1.15vw, 1.1rem); }
.hero-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0.65rem;
  border-radius: 16px;
  background: var(--white);
  animation: hero-enter 620ms var(--ease-out) both;
}
.hero-product-card:nth-child(2) { animation-delay: 60ms; }
.hero-product-card:nth-child(3) { animation-delay: 120ms; }
.hero-product-card:nth-child(4) { animation-delay: 180ms; }
.hero-product-card:first-child { background: var(--accent); }
.hero-product-card__image { position: relative; display: block; width: 100%; aspect-ratio: 1; overflow: hidden; border-radius: 50%; background: var(--surface-strong); }
.hero-product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms var(--ease-out); }
.hero-product-card:hover .hero-product-card__image img { transform: scale(1.04); }
.hero-product-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 0.8rem 0.25rem 0.2rem; }
.hero-product-card__category { margin: 0; color: var(--accent-deep); font-size: 0.74rem; font-weight: 750; }
.hero-product-card:first-child .hero-product-card__category { color: var(--black); }
.hero-product-card h2 { margin: 0.3rem 0 0.8rem; font-family: var(--font-display); font-size: clamp(1.05rem, 1.25vw, 1.35rem); font-weight: 600; line-height: 1.12; }
.hero-product-card__link { display: inline-flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; min-height: 44px; margin-top: auto; padding: 0.6rem 0.9rem; border-radius: 999px; background: var(--black); color: var(--white); font-weight: 800; }
.hero-product-card__link:hover { background: var(--accent-deep); }
.hero-product-card:first-child .hero-product-card__link:hover { background: var(--white); color: var(--black); }
.catalog-hero__footer { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; margin-top: 1.4rem; font-weight: 750; }
.catalog-hero__footer a { display: inline-flex; align-items: center; gap: 0.5rem; padding-bottom: 0.2rem; border-bottom: 2px solid var(--accent); }

.store-benefits { background: var(--black); color: var(--white); }
.store-benefits__inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.store-benefits__inner.benefits-marquee {
  display: block;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  overflow: hidden;
}
.benefits-marquee__track {
  display: flex;
  width: max-content;
  animation: benefits-marquee 30s linear infinite;
  will-change: transform;
}
.benefits-marquee__group {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  flex: none;
  width: max-content;
  min-width: 100vw;
}
.store-benefits:hover .benefits-marquee__track,
.store-benefits:focus-within .benefits-marquee__track { animation-play-state: paused; }
.store-benefits p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  min-height: 68px;
  margin: 0;
  padding: 0.75rem clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.15;
}
.store-benefits p + p { border-left: 1px solid oklch(1 0 0 / 0.14); }
.benefit-icon {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
}
.benefit-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-copy { min-width: 0; }
.store-benefits strong { display: block; font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; letter-spacing: 0.01em; text-transform: uppercase; }
.benefit-copy > span { display: block; margin-top: 0.16rem; color: oklch(0.83 0.01 95); font-size: 0.79rem; line-height: 1.2; }

.catalog-section, .story-section, .how-section { padding-block: clamp(4.5rem, 8vw, 8rem); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-heading > p { flex: 1; max-width: none; margin: 0 0 0.45rem; color: var(--muted); font-size: 1.05rem; }
.section-intro { margin: 0 0 0.6rem; color: var(--accent-deep); font-weight: 750; }
.section-heading h2, .story-copy h2, .how-copy h2, .contact-strip h2, .related-products__heading h2, .consultation-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.8vw, 4.7rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
}

.catalog-section { background: var(--white); }
.catalog-section--page { padding-top: clamp(2rem, 4vw, 4rem); }
.catalog-breadcrumb { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.catalog-heading__title { min-width: 0; }
.catalog-heading__title .section-intro { margin-bottom: 0.65rem; }
.catalog-heading__title h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 6.25rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.catalog-heading { align-items: center; margin-bottom: 1.75rem; }
.catalog-heading h2 { max-width: none; white-space: nowrap; }
.catalog-heading > p { margin: 0; color: var(--muted); }
.catalog-heading > p strong { color: var(--ink); }
.catalog-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: 2rem;
}
.sort-wrap { display: flex; align-items: center; gap: 0.7rem; }
.sort-wrap label { color: var(--muted); font-weight: 700; white-space: nowrap; }
.sort-wrap select {
  min-height: 60px;
  padding: 0.65rem 2.6rem 0.65rem 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.catalog-filters { padding-block: 1.5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.catalog-filters__heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.catalog-filters__heading h2, .catalog-filters__heading h3 { margin: 0; font-family: var(--font-display); font-size: 1.55rem; line-height: 1; }
.catalog-filters__heading button { min-height: 40px; padding: 0.45rem 0.8rem; border: 0; border-radius: 999px; background: var(--accent-soft); color: var(--accent-deep); font-weight: 750; cursor: pointer; }
.category-filters { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.7rem; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  width: 100%;
  min-height: 72px;
  padding: 0.55rem 0.8rem 0.55rem 0.55rem;
  border: 0;
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 650;
  line-height: 1.08;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.filter-chip img, .filter-chip__all { display: grid; place-items: center; flex: 0 0 54px; width: 54px; height: 54px; border-radius: 50%; object-fit: cover; background: var(--accent); color: var(--white); }
.filter-chip__label { flex: 1; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.filter-chip small { min-width: 1.5rem; color: var(--muted); font-size: 0.8rem; text-align: right; }
.filter-chip:hover { background: var(--accent-soft); }
.filter-chip[aria-pressed="true"] { background: var(--accent); color: var(--black); }
.filter-chip[aria-pressed="true"] img { outline: 2px solid var(--black); outline-offset: -2px; }
.filter-chip[aria-pressed="true"] .filter-chip__all { background: var(--black); color: var(--white); }
.filter-chip[aria-pressed="true"] small { color: var(--black); }
.catalog-results { min-width: 0; margin-top: clamp(2.5rem, 5vw, 4rem); }
.product-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(2.25rem, 3vw, 3.25rem) clamp(0.9rem, 1.5vw, 1.4rem); }
.product-card { min-width: 0; }
.product-image { position: relative; display: block; width: 100%; aspect-ratio: 1; overflow: hidden; border-radius: 50%; background: var(--surface-strong); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 480ms var(--ease-out), filter 260ms ease; }
.product-card:hover .product-image img { transform: scale(1.045); filter: saturate(1.05); }
.product-badge { position: absolute; right: 7%; bottom: 7%; padding: 0.4rem 0.65rem; border-radius: 999px; background: var(--accent); color: var(--black); font-size: 0.82rem; font-weight: 800; }
.product-body { padding-top: 1.25rem; text-align: center; }
.product-category { margin: 0; color: var(--accent-deep); font-size: 0.9rem; font-weight: 750; }
.product-card h3 { margin: 0.45rem 0 0; font-family: var(--font-display); font-size: clamp(1.15rem, 1.25vw, 1.45rem); font-weight: 600; line-height: 1.15; }
.product-card h3 a:hover { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.product-description { min-height: 3em; margin: 0.7rem auto 0; color: var(--muted); line-height: 1.45; }
.product-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.4rem; margin: 0.85rem 0 1rem; }
.product-meta span { padding: 0.25rem 0.55rem; border-radius: 999px; background: var(--white); color: var(--muted); font-size: 0.83rem; }
.product-cta { width: 100%; padding: 0.7rem 1rem; background: var(--black); color: var(--white); }
.product-cta:hover { background: var(--accent); color: var(--black); transform: translateY(-2px); }
.product-actions { display: flex; width: 100%; margin-top: auto; flex-direction: column; gap: 0.55rem; }
.product-actions .product-cta,
.product-add { width: 100%; min-height: 46px; padding: 0.7rem 1rem; border: 0; border-radius: 999px; font: inherit; font-weight: 800; line-height: 1.1; white-space: nowrap; cursor: pointer; }
.product-add { background: var(--accent); color: var(--white); }
.product-add:hover { background: var(--accent-deep); color: var(--white); transform: translateY(-2px); }
.empty-state { padding: clamp(2.5rem, 5vw, 4rem); border-radius: var(--radius-md); background: var(--white); text-align: center; }
.empty-state > span { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: var(--accent); font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.empty-state h3 { margin: 0; font-family: var(--font-display); font-size: 2rem; }
.empty-state p { width: 100%; max-width: none; margin: 0.65rem auto 1.25rem; color: var(--muted); }
.empty-state div { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
.empty-state button, .empty-state a { padding: 0.75rem 1rem; border: 0; border-radius: 999px; background: var(--black); color: var(--white); font-weight: 750; cursor: pointer; }

.story-section { background: var(--white); }
.story-grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 7fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.story-image-wrap { position: relative; aspect-ratio: 1; }
.story-image-wrap::before { content: ""; position: absolute; inset: 7% -4% -4% 7%; border-radius: 50%; background: var(--accent-soft); }
.story-image-wrap img { position: relative; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.story-image-wrap > span { position: absolute; right: -1rem; bottom: 10%; max-width: 220px; padding: 0.9rem 1.2rem; border-radius: 999px; background: var(--black); color: var(--white); font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; line-height: 1.05; }
.story-copy > p:not(.section-intro) { width: 100%; max-width: none; margin: 1.35rem 0 1.6rem; color: var(--muted); font-size: 1.08rem; }
.story-list { margin: 0; padding: 0; list-style: none; }
.story-list li { display: grid; grid-template-columns: minmax(120px, 0.38fr) 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.story-list strong { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; }
.story-list span { color: var(--muted); }
.text-link { display: inline-flex; gap: 0.5rem; margin-top: 1.4rem; padding-bottom: 0.2rem; border-bottom: 2px solid var(--accent); font-weight: 800; }

.how-section { background: var(--black); color: var(--white); }
.how-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr); align-items: start; gap: clamp(2rem, 4vw, 4rem); }
.how-copy h2 { width: 100%; max-width: none; text-wrap: wrap; }
.how-copy > p { width: 100%; max-width: none; margin: 1.3rem 0 1.75rem; color: oklch(0.83 0.01 95); font-size: 1.08rem; }
.button { padding: 0.75rem 1.05rem; }
.button--lime { background: var(--accent); color: var(--black); }
.button--lime:hover { background: var(--white); transform: translateY(-2px); }
.button--dark { background: var(--black); color: var(--white); }
.button--dark:hover { background: var(--black-soft); transform: translateY(-2px); }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 54px 1fr; gap: 1.1rem; padding: 1.3rem 0; border-top: 1px solid oklch(1 0 0 / 0.2); }
.steps-list li > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: var(--black); font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; }
.steps-list strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.steps-list p { margin: 0.25rem 0 0; color: oklch(0.8 0.01 95); }

.contact-strip { padding-block: clamp(3rem, 5vw, 4.5rem); background: var(--accent); color: var(--black); }
.contact-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.contact-strip p { margin: 0 0 0.4rem; font-weight: 750; }
.contact-strip__inner > div { flex: 1; min-width: 0; }
.contact-strip h2 { width: 100%; max-width: none; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.contact-strip .button { flex: none; }

.site-footer { padding: clamp(3.5rem, 6vw, 5rem) 0 1.5rem; background: var(--black); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, minmax(0, 0.8fr)); gap: clamp(2rem, 4vw, 4.5rem); }
.brand--footer { color: var(--white); }
.footer-brand > p { width: 100%; max-width: none; color: oklch(0.77 0.01 95); }
.footer-company { display: grid; gap: 0.15rem; margin-top: 1.25rem; }
.footer-company strong { color: var(--white); font-family: var(--font-display); font-size: 1.05rem; }
.footer-company span { color: oklch(0.72 0.01 95); }
.footer-grid h3 { margin: 0 0 0.85rem; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.footer-grid > div:not(.footer-brand) a, .footer-grid > div:not(.footer-brand) p { display: block; margin: 0.55rem 0; color: oklch(0.77 0.01 95); }
.footer-grid .footer-contact { display: flex; align-items: center; gap: 0.65rem; }
.footer-contact svg { flex: none; width: 21px; height: 21px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-social .social-icon { display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 0.45rem; border-radius: 50%; background: var(--accent); color: var(--black); font-weight: 800; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.25rem; padding-top: 1.25rem; border-top: 1px solid oklch(1 0 0 / 0.16); color: oklch(0.7 0.01 95); font-size: 0.92rem; }
.footer-bottom p { margin: 0; }
.floating-whatsapp {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: var(--z-toast);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 4px 8px oklch(0.18 0.02 145 / 0.24);
}
.floating-whatsapp:hover { transform: translateY(-2px); }

/* Páginas institucionais */
.legal-page { background: var(--surface); }
.legal-nav { display: flex; align-items: center; gap: 1rem; }
.legal-nav a { color: var(--muted); font-weight: 700; }
.legal-nav a:last-child { padding: 0.65rem 1rem; border-radius: 999px; background: var(--black); color: var(--white); }
.legal-main { padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(5rem, 9vw, 8rem); }
.legal-hero { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr); gap: clamp(2rem, 7vw, 7rem); align-items: end; padding-bottom: clamp(2.5rem, 5vw, 4.5rem); border-bottom: 1px solid var(--line); }
.legal-kicker { margin: 0 0 0.65rem; color: var(--accent-deep); font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.legal-hero h1 { width: 100%; max-width: none; margin: 0; font-family: var(--font-display); font-size: clamp(3.3rem, 7vw, 6.7rem); font-weight: 600; line-height: 0.98; letter-spacing: -0.02em; }
.legal-summary { width: 100%; max-width: none; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.legal-updated { display: inline-flex; margin-top: 1.25rem; padding: 0.45rem 0.75rem; border-radius: 999px; background: var(--accent-soft); color: var(--accent-deep); font-weight: 750; }
.legal-content { display: grid; grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 7rem); padding-top: clamp(2.5rem, 5vw, 4.5rem); }
.legal-aside { align-self: start; position: sticky; top: 2rem; }
.legal-aside strong { display: block; margin-bottom: 0.65rem; font-family: var(--font-display); font-size: 1.3rem; }
.legal-aside p { margin: 0; color: var(--muted); }
.legal-article { width: 100%; max-width: none; }
.legal-article section + section { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.legal-article h2 { margin: 0 0 0.85rem; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.legal-article p, .legal-article li { color: var(--muted); }
.legal-article ul { padding-left: 1.2rem; }
.legal-article a { color: var(--accent-deep); font-weight: 750; text-decoration: underline; text-underline-offset: 0.18em; }
.legal-footer-links { display: flex; flex-wrap: wrap; gap: 0.65rem 1.25rem; }
.legal-footer-links a { color: oklch(0.77 0.01 95); }

/* Página de produto */
.product-detail-page { background: var(--white); }
.store-benefits--detail p { min-height: 64px; }
.detail-main { padding: 1.4rem 0 clamp(5rem, 9vw, 8rem); }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem; margin-bottom: 1.15rem; color: var(--muted); font-size: 0.92rem; }
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: var(--accent-deep);
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease;
}
.breadcrumb a:hover { background: var(--accent-soft); color: var(--black); }
.breadcrumb__separator { color: oklch(0.66 0.015 95); }
.breadcrumb__current { padding: 0.35rem 0.55rem; color: var(--muted); }
.detail-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr); overflow: hidden; border-radius: var(--radius-md); background: var(--black); }
.detail-image-panel { position: relative; min-height: 660px; overflow: hidden; background: var(--surface); }
.detail-image-panel img { width: 100%; height: 100%; object-fit: cover; }
.detail-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 4.5vw, 4.5rem); color: var(--white); }
.detail-category { margin: 0 0 0.7rem; color: var(--accent); font-weight: 750; }
.detail-content h1 { width: 100%; max-width: none; margin: 0; font-family: var(--font-display); font-size: clamp(3.2rem, 5.3vw, 5.5rem); font-weight: 600; line-height: 0.98; letter-spacing: -0.02em; }
.detail-lead { width: 100%; max-width: none; margin: 1.2rem 0; color: oklch(0.88 0.01 95); font-size: 1.12rem; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.detail-tags span { padding: 0.35rem 0.65rem; border: 1px solid oklch(1 0 0 / 0.28); border-radius: 999px; font-size: 0.86rem; }
.product-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1rem; margin: 1.25rem 0; }
.product-facts div { padding: 0.65rem 0; border-top: 1px solid oklch(1 0 0 / 0.2); }
.product-facts dt { color: oklch(0.74 0.01 95); font-size: 0.84rem; }
.product-facts dd { margin: 0.15rem 0 0; font-weight: 700; }
.detail-contact { padding: 1rem; border-radius: 20px; background: var(--accent); color: var(--black); }
.detail-contact p { margin: 0 0 0.7rem; font-weight: 700; }
.detail-whatsapp { width: 100%; padding: 0.7rem 1rem; background: var(--black); color: var(--white); }
.detail-contact .detail-whatsapp { background: var(--white); color: var(--black); }
.detail-whatsapp:hover { background: var(--accent); color: var(--black); transform: translateY(-2px); }
.detail-contact .detail-whatsapp:hover { background: var(--black); color: var(--white); }

.detail-info-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.detail-info-block { min-width: 0; padding: clamp(1.4rem, 2.5vw, 2rem); border-radius: 18px; background: var(--surface); }
.detail-info-block:nth-child(2) { background: var(--accent-soft); }
.detail-info-block h2 { margin: 0; font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; line-height: 1.08; }
.detail-info-block p, .detail-info-block ul { margin: 0.85rem 0 0; color: var(--muted); }
.detail-info-block ul { padding-left: 1.1rem; }
.detail-disclaimer { margin: 1.25rem 0 0; color: var(--muted); font-size: 0.88rem; }
.back-catalog-strip { margin-top: 1.25rem; border-radius: 22px; background: var(--black); color: var(--white); }
.back-catalog-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.3rem; }
.back-catalog-inner p { margin: 0; }
.back-catalog-inner a { color: var(--accent); font-weight: 800; }

.related-products { padding-top: clamp(4.5rem, 8vw, 7rem); }
.related-products__heading { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.related-products__heading p { margin: 0 0 0.4rem; color: var(--accent-deep); font-weight: 750; }
.related-products__heading h2 { font-size: clamp(2.7rem, 4.5vw, 4.3rem); }
.related-products__heading > a { padding-bottom: 0.2rem; border-bottom: 2px solid var(--accent); font-weight: 800; }
.related-products__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(.85rem, 1.4vw, 1.35rem); }
.related-card { text-align: center; }
.related-card__image { display: block; aspect-ratio: 1; overflow: hidden; border-radius: 50%; background: var(--surface); }
.related-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms var(--ease-out); }
.related-card:hover .related-card__image img { transform: scale(1.045); }
.related-card__body { padding-top: 1rem; }
.related-card__body > p { margin: 0; color: var(--accent-deep); font-size: 0.85rem; font-weight: 700; }
.related-card h3 { margin: 0.4rem 0 0.9rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.12; }
.related-card__link { width: 100%; padding: 0.65rem 0.8rem; background: var(--black); color: var(--white); }
.related-card__link:hover { background: var(--accent); color: var(--black); }

.consultation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  margin-top: clamp(4.5rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 5rem);
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--black);
}
.consultation-copy > p:first-child { margin: 0 0 0.5rem; font-weight: 800; }
.consultation-copy h2 { width: 100%; max-width: none; font-size: clamp(2.6rem, 4.5vw, 4.4rem); }
.consultation-copy > p:not(:first-child) { width: 100%; max-width: none; margin: 1.2rem 0 1.5rem; }
.consultation-copy .detail-whatsapp { width: auto; }
.consultation-points { margin: 0; padding: 0; list-style: none; }
.consultation-points li { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; padding: 1.15rem 0; border-top: 1px solid oklch(0.25 0.04 40 / 0.25); }
.consultation-points li > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--black); color: var(--accent); font-family: var(--font-display); font-weight: 800; }
.consultation-points strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.consultation-points p { margin: 0.2rem 0 0; color: oklch(0.29 0.025 40); }
.detail-footer { padding-top: 1.5rem; }
.detail-footer .footer-grid { grid-template-columns: 1.35fr repeat(3, minmax(0, 0.8fr)); }
.detail-footer .footer-bottom { margin-top: 0; }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes benefits-marquee {
  to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 1360px) {
  .home-header .main-nav > a:not(.header-cta):not(.cart-nav-link) { display: none; }
  .detail-search-header .detail-header-actions > a:first-child { display: none; }
}
@media (max-width: 1220px) {
  .hero-product-grid, .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1180px) {
  .how-grid { grid-template-columns: 1fr; gap: 3rem; }
  .how-copy h2 { font-size: clamp(3rem, 7vw, 5.4rem); }
  .steps-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
  .steps-list li { grid-template-columns: 1fr; align-content: start; padding: 1.25rem; border: 1px solid oklch(1 0 0 / 0.2); border-radius: 16px; }
}
@media (max-width: 1080px) {
  .main-nav { gap: 1rem; }
  .main-nav > a:not(.header-cta):not(.cart-nav-link) { display: none; }
  .catalog-hero h1 { font-size: clamp(2.7rem, 4.7vw, 4rem); }
  .hero-product-grid, .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-filters { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .detail-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .site-header { height: 68px; }
  .home-header, .detail-search-header { height: 132px; }
  .home-header .header-inner, .detail-search-header .header-inner {
    flex-wrap: wrap;
    align-content: center;
    gap: 0.5rem 1rem;
  }
  .home-header .brand, .detail-search-header .brand { order: 1; }
  .home-header .menu-toggle { order: 2; margin-left: auto; }
  .detail-search-header .detail-header-actions { order: 2; margin-left: auto; }
  .home-header .header-search, .detail-search-header .header-search { order: 3; flex: 1 0 100%; max-width: none; margin: 0; }
  .brand-logo { width: 44px; height: 44px; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 1.25rem var(--gutter) 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .home-header .main-nav { inset: 132px 0 auto; }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.header-cta) { display: block; padding: 0.55rem 0; color: var(--ink); }
  .main-nav > .cart-nav-link { display: inline-grid; padding: 0; }
  .catalog-hero__top {
    min-height: 430px;
    gap: 1.35rem;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    background-position: 58% center;
  }
  .hero-product-grid {
    display: flex;
    overflow-x: auto;
    width: calc(100% + var(--gutter));
    padding: 0.15rem var(--gutter) 0.85rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .hero-product-grid::-webkit-scrollbar { display: none; }
  .hero-product-card { flex: 0 0 min(48vw, 220px); scroll-snap-align: start; }
  .store-benefits__inner {
    display: flex;
    overflow-x: auto;
    width: 100%;
    padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .store-benefits__inner::-webkit-scrollbar { display: none; }
  .store-benefits p { flex: 0 0 min(72vw, 270px); min-height: 64px; padding-inline: 1rem; scroll-snap-align: start; }
  .store-benefits p + p { border-left: 1px solid oklch(1 0 0 / 0.14); }
  .section-heading { align-items: start; flex-direction: column; gap: 0.9rem; }
  .catalog-toolbar { grid-template-columns: 1fr; align-items: stretch; }
  .sort-wrap { justify-content: space-between; }
  .category-filters {
    display: flex;
    overflow-x: auto;
    width: calc(100% + var(--gutter));
    padding: 0.15rem var(--gutter) 0.75rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .category-filters::-webkit-scrollbar { display: none; }
  .filter-chip { flex: 0 0 min(72vw, 285px); width: auto; max-width: none; scroll-snap-align: start; }
  .catalog-results { width: 100%; min-width: 0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-grid, .how-grid, .consultation-section { grid-template-columns: 1fr; }
  .steps-list { grid-template-columns: 1fr; }
  .steps-list li { grid-template-columns: 54px 1fr; padding: 1.3rem 0; border-width: 1px 0 0; border-radius: 0; }
  .story-image-wrap { width: min(86vw, 560px); }
  .contact-strip__inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .detail-header-actions > a:first-child { display: none; }
  .detail-hero { grid-template-columns: 1fr; }
  .legal-hero, .legal-content { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
  .detail-content { order: 1; }
  .detail-image-panel { order: 2; min-height: 440px; }
  .related-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap-block: 2.5rem; }
}

@media (max-width: 700px) {
  .detail-search-header .detail-header-actions .header-cta { width: 44px; padding: 0; font-size: 0; }
  .detail-search-header .detail-header-actions .header-cta .whatsapp-icon { width: 19px; }
}

@media (max-width: 560px) {
  :root { --gutter: 1rem; }
  .brand { font-size: 1rem; }
  .brand > span { max-width: none; font-size: inherit; white-space: nowrap; }
  .product-detail-page .detail-header-actions .header-cta { width: 44px; padding: 0; font-size: 0; }
  .product-detail-page .detail-header-actions .header-cta .whatsapp-icon { width: 19px; }
  .brand-logo { width: 40px; height: 40px; }
  .header-cta { min-height: 44px; }
  .detail-header-actions .header-cta { padding-inline: 0.75rem; font-size: 0.9rem; }
  .catalog-hero { padding-block: 1rem 2.25rem; }
  .catalog-hero__top { min-height: 450px; border-radius: 14px; background-position: 61% center; }
  .catalog-hero h1 { font-size: clamp(2.65rem, 10.5vw, 3.45rem); }
  .hero-product-card { flex-basis: min(66vw, 240px); }
  .catalog-hero__footer { align-items: flex-start; flex-direction: column; }
  .catalog-section, .story-section, .how-section { padding-block: 4rem; }
  .section-heading h2, .story-copy h2 { font-size: clamp(2.75rem, 13vw, 3.8rem); }
  .how-copy h2 { font-size: clamp(2.35rem, 10vw, 3.2rem); line-height: 1.02; }
  .catalog-heading { align-items: flex-start; }
  .catalog-heading h2 { font-size: clamp(2.65rem, 12vw, 3.35rem); white-space: nowrap; }
  .catalog-toolbar { margin-inline: 0; }
  .catalog-toolbar, .sort-wrap { width: 100%; }
  .sort-wrap { align-items: stretch; flex-direction: column; gap: 0.4rem; }
  .sort-wrap select { width: 100%; }
  .filter-chip { flex-basis: 82vw; }
  .product-grid { grid-template-columns: minmax(0, 1fr); width: 100%; gap-block: 3.25rem; }
  .product-card { width: 100%; max-width: 430px; margin-inline: auto; }
  .product-description { min-height: auto; }
  .story-image-wrap { width: 94%; }
  .story-image-wrap > span { right: -6%; bottom: 4%; }
  .story-list li { grid-template-columns: 1fr; gap: 0.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .detail-footer .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { width: 54px; height: 54px; padding: 0; justify-content: center; }
  .floating-whatsapp-label { display: none; }
  .detail-main { padding-top: 0.9rem; }
  .legal-nav a:first-child { display: none; }
  .legal-hero h1 { font-size: clamp(3.3rem, 17vw, 5rem); }
  .detail-content { padding: 2rem 1.15rem; }
  .detail-content h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .detail-image-panel { min-height: 300px; height: 48svh; max-height: 420px; }
  .product-facts { gap: 0 0.65rem; }
  .detail-info-grid { grid-template-columns: 1fr; }
  .back-catalog-inner { align-items: flex-start; flex-direction: column; }
  .related-products__heading { align-items: flex-start; flex-direction: column; }
  .related-products__grid { gap: 1rem; }
  .related-card h3 { font-size: 1.15rem; }
  .related-card__link { min-height: 42px; font-size: 0.9rem; }
  .consultation-section { margin-inline: -0.25rem; padding: 2rem 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .store-benefits__inner.benefits-marquee { overflow-x: auto; }
  .benefits-marquee__track { animation: none !important; transform: none; will-change: auto; }
  .benefits-marquee__group[aria-hidden="true"] { display: none; }
}
/* BRAS_COMPACT_FIRST_FOLD_START */
.store-benefits p {
  min-height: 48px;
  padding: .35rem clamp(.85rem, 1.4vw, 1.2rem);
  gap: .65rem;
  white-space: nowrap;
}

.benefits-marquee__group {
  grid-auto-columns: max-content;
}

.benefit-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: var(--white);
}

.benefit-copy {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-width: 0;
  white-space: nowrap;
}

.store-benefits strong {
  display: inline;
  font-size: .82rem;
  line-height: 1;
}

.benefit-copy > span {
  display: inline;
  margin-top: 0;
  font-size: .76rem;
  line-height: 1;
}

.catalog-hero {
  padding-block: clamp(.85rem, 1.5vw, 1.35rem);
}

.catalog-hero__top {
  min-height: clamp(230px, 22vw, 310px);
  margin-bottom: clamp(.8rem, 1.4vw, 1.2rem);
  padding: clamp(1.35rem, 3vw, 2.75rem);
}

.catalog-hero h1 {
  width: min(100%, 1080px);
  font-size: clamp(2.5rem, 4.25vw, 4.25rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.hero-product-grid {
  gap: clamp(.65rem, 1vw, 1rem);
}

.hero-product-card {
  padding: .5rem;
}

.hero-product-card__image {
  width: 72%;
  margin-inline: auto;
}

.hero-product-card__body {
  padding: .5rem .15rem .1rem;
}

.hero-product-card__category {
  font-size: .68rem;
}

.hero-product-card h2 {
  margin: .2rem 0 .5rem;
  font-size: clamp(.9rem, 1vw, 1.05rem);
  line-height: 1.18;
}

.hero-product-card__link {
  min-height: 38px;
  padding: .45rem .7rem;
  font-size: .84rem;
}

.catalog-hero__footer {
  margin-top: .8rem;
  font-size: .9rem;
}

@media (max-width: 820px) {
  .store-benefits p {
    flex: 0 0 auto;
    min-height: 48px;
    padding-inline: .9rem;
  }

  .catalog-hero__top {
    min-height: 260px;
    padding: 1.4rem;
  }

  .catalog-hero h1 {
    font-size: clamp(2.25rem, 7vw, 3.35rem);
  }

  .hero-product-card {
    flex-basis: min(42vw, 190px);
  }
}

@media (max-width: 560px) {
  .catalog-hero {
    padding-block: .75rem 1.5rem;
  }

  .catalog-hero__top {
    min-height: 220px;
    margin-bottom: .75rem;
    padding: 1.15rem;
  }

  .catalog-hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.65rem);
    line-height: 1.02;
  }

  .hero-product-card {
    flex-basis: min(54vw, 200px);
  }

  .hero-product-card__image {
    width: 68%;
  }

  .catalog-hero__footer {
    margin-top: .65rem;
  }
}
/* BRAS_COMPACT_FIRST_FOLD_END */
/* BRAS_MOBILE_OVERFLOW_FIX_START */
@media (max-width: 560px) {
  .section-heading.catalog-heading h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8vw, 2rem);
    white-space: nowrap;
  }
}
/* BRAS_MOBILE_OVERFLOW_FIX_END */

/* BRAS_PRODUCT_CARD_HOVER_START */
.hero-product-card,
.hero-product-card:first-child {
  padding: .85rem;
  background: var(--white);
  color: var(--black);
  transition:
    background-color 220ms var(--ease-out),
    color 220ms var(--ease-out);
}

.hero-product-card:first-child .hero-product-card__category {
  color: var(--accent-deep);
}

.hero-product-card__body {
  padding: .7rem .25rem .2rem;
}

.hero-product-card:first-child .hero-product-card__link:hover {
  background: var(--accent-deep);
  color: var(--white);
}

@media (hover: hover) {
  .hero-product-card:hover {
    background: var(--accent);
    color: var(--white);
  }

  .hero-product-card:hover h2,
  .hero-product-card:hover .hero-product-card__category {
    color: var(--white);
  }
}

@media (max-width: 560px) {
  .hero-product-card,
  .hero-product-card:first-child {
    padding: .75rem;
  }

  .hero-product-card__body {
    padding: .65rem .2rem .15rem;
  }
}
/* BRAS_PRODUCT_CARD_HOVER_END */

/* BRAS_HERO_FOLD_REBALANCE_START */
.catalog-hero__top {
  min-height: clamp(205px, 16vw, 260px);
}

@media (max-width: 820px) {
  .catalog-hero__top {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .catalog-hero__top {
    min-height: 210px;
  }
}
/* BRAS_HERO_FOLD_REBALANCE_END */

/* BRAS_CATALOG_HEADING_TOOLBAR_START */
.catalog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 2.5vw, 3rem);
}

.catalog-heading__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(.85rem, 1.4vw, 1.4rem);
  min-width: 0;
  margin-left: auto;
}

.catalog-heading__count {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  white-space: nowrap;
}

.catalog-heading__count strong {
  color: var(--ink);
}

.catalog-heading__tools .sort-wrap {
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .catalog-heading {
    gap: 1.25rem;
  }

  .catalog-heading h2 {
    font-size: clamp(2.3rem, 4.6vw, 3.3rem);
  }

  .catalog-heading__tools {
    gap: .8rem;
  }

  .sort-wrap {
    gap: .5rem;
  }

  .sort-wrap select {
    min-height: 52px;
    padding-inline: .9rem 2.2rem;
  }
}

@media (max-width: 760px) {
  .catalog-heading__title h1 { font-size: clamp(2.65rem, 12vw, 3.35rem); white-space: normal; }
  .catalog-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .catalog-heading__tools {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }

  .catalog-heading__count {
    align-self: flex-start;
  }

  .catalog-heading__tools .sort-wrap {
    width: 100%;
  }
}
/* BRAS_CATALOG_HEADING_TOOLBAR_END */

/* BRAS_HEADER_BRAND_SIZE_START */
.brand {
  font-size: clamp(1.05rem, 1.15vw, 1.25rem);
}

@media (max-width: 560px) {
  .brand {
    font-size: .92rem;
  }
}
/* BRAS_HEADER_BRAND_SIZE_END */

/* BRAS_STORY_IMAGE_SIZE_START */
.story-image-wrap {
  width: min(100%, 480px);
  justify-self: center;
}

.story-image-wrap > span {
  right: -.5rem;
  max-width: 180px;
  padding: .75rem 1rem;
  font-size: .95rem;
}

@media (max-width: 820px) {
  .story-image-wrap {
    width: min(78vw, 420px);
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .story-image-wrap {
    width: min(78vw, 320px);
  }

  .story-image-wrap > span {
    right: -5%;
    max-width: 150px;
    padding: .65rem .85rem;
    font-size: .82rem;
  }
}
/* BRAS_STORY_IMAGE_SIZE_END */

/* BRAS_SEARCH_SCROLL_TARGET_START */
#catalogo {
  scroll-margin-top: 92px;
}

@media (max-width: 820px) {
  #catalogo {
    scroll-margin-top: 148px;
  }
}
/* BRAS_SEARCH_SCROLL_TARGET_END */

/* BRAS_DETAIL_FIRST_FOLD_START */
.product-detail-page .detail-main {
  padding-top: .65rem;
}

.product-detail-page .breadcrumb {
  margin-bottom: .45rem;
  font-size: .82rem;
}

.product-detail-page .breadcrumb a {
  min-height: 30px;
  padding: .25rem .45rem;
}

.product-detail-page .breadcrumb__current {
  padding: .25rem .45rem;
}

.product-detail-page .detail-hero {
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  min-height: 340px;
}

.product-detail-page .detail-image-panel {
  min-height: 0;
}

.product-detail-page .detail-content {
  justify-content: center;
  padding: 1.15rem 1.4rem;
}

.product-detail-page .detail-category {
  margin-bottom: .3rem;
  font-size: .8rem;
}

.product-detail-page .detail-content h1 {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.025em;
}

.product-detail-page .detail-lead {
  margin: .55rem 0 .65rem;
  font-size: .94rem;
  line-height: 1.3;
}

.product-detail-page .detail-tags {
  gap: .35rem;
}

.product-detail-page .detail-tags span {
  padding: .25rem .5rem;
  font-size: .75rem;
}

.product-detail-page .product-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 .65rem;
  margin: .65rem 0;
}

.product-detail-page .product-facts div {
  padding: .35rem 0;
}

.product-detail-page .product-facts dt {
  font-size: .7rem;
}

.product-detail-page .product-facts dd {
  margin-top: .1rem;
  font-size: .82rem;
  line-height: 1.2;
}

.product-detail-page .detail-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .65rem .75rem;
  border-radius: 14px;
}

.product-detail-page .detail-contact p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.25;
}

.product-detail-page .detail-contact .detail-whatsapp {
  flex: 0 0 auto;
  width: auto;
  min-height: 38px;
  padding: .5rem .75rem;
  font-size: .82rem;
  white-space: nowrap;
}

.product-detail-page .detail-info-grid {
  gap: .65rem;
  margin-top: .65rem;
}

.product-detail-page .detail-info-block {
  padding: .85rem 1rem;
  border-radius: 14px;
}

.product-detail-page .detail-info-block h2 {
  font-size: 1.1rem;
}

.product-detail-page .detail-info-block p,
.product-detail-page .detail-info-block ul {
  margin-top: .45rem;
  font-size: .86rem;
  line-height: 1.3;
}

.product-detail-page .detail-disclaimer {
  margin-top: .7rem;
  font-size: .78rem;
}

@media (max-width: 820px) {
  .product-detail-page .detail-main {
    padding-top: .5rem;
  }

  .product-detail-page .breadcrumb {
    margin-bottom: .35rem;
    font-size: .75rem;
  }

  .product-detail-page .detail-hero {
    position: relative;
    display: block;
    min-height: 0;
  }

  .product-detail-page .detail-image-panel {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    width: 88px;
    height: 88px;
    border-radius: 50%;
  }

  .product-detail-page .detail-image-panel img {
    border-radius: 50%;
  }

  .product-detail-page .detail-image-label {
    display: none;
  }

  .product-detail-page .detail-content {
    padding: 1rem;
  }

  .product-detail-page .detail-category,
  .product-detail-page .detail-content h1 {
    max-width: calc(100% - 104px);
  }

  .product-detail-page .detail-content h1 {
    font-size: clamp(1.55rem, 6vw, 2rem);
    line-height: 1.04;
  }

  .product-detail-page .detail-lead {
    margin-top: .75rem;
  }

  .product-detail-page .product-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-page .detail-contact {
    align-items: stretch;
    flex-direction: column;
    gap: .5rem;
  }

  .product-detail-page .detail-contact .detail-whatsapp {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .product-detail-page .detail-image-panel {
    top: .85rem;
    right: .85rem;
    width: 80px;
    height: 80px;
  }

  .product-detail-page .detail-category,
  .product-detail-page .detail-content h1 {
    max-width: calc(100% - 94px);
  }

  .product-detail-page .detail-content {
    padding: .85rem;
  }

  .product-detail-page .detail-info-grid {
    gap: .5rem;
  }

  .product-detail-page .detail-info-block {
    padding: .75rem;
  }
}
/* BRAS_DETAIL_FIRST_FOLD_END */

/* BRAS_DETAIL_IMAGE_INTRINSIC_FIX_START */
.product-detail-page .detail-image-panel img {
  position: absolute;
  inset: 0;
}
/* BRAS_DETAIL_IMAGE_INTRINSIC_FIX_END */


/* Marquee continuo: cada ciclo e preenchido por JS antes de ser duplicado. */
.benefits-marquee__group {
  min-width: 0;
}

.benefits-marquee__track {
  animation-duration: var(--benefits-marquee-duration, 30s);
}


/* BRAS_HERO_VIEWPORT_FILL_START */
@media (min-width: 1221px) {
  .catalog-hero {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 124px);
  }

  .catalog-hero > .container {
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .catalog-hero__top {
    flex: 1 0 auto;
  }
}
/* BRAS_HERO_VIEWPORT_FILL_END */


/* BRAS_CATALOG_SCROLL_OFFSET_START */
#catalogo {
  scroll-margin-top: 4px;
}

@media (max-width: 820px) {
  #catalogo {
    scroll-margin-top: 60px;
  }
}
/* BRAS_CATALOG_SCROLL_OFFSET_END */


/* BRAS_DETAIL_HERO_COMFORT_START */
@media (min-width: 821px) {
  .product-detail-page .detail-hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
    min-height: clamp(500px, 60svh, 660px);
  }

  .product-detail-page .detail-image-panel {
    min-height: inherit;
  }

  .product-detail-page .detail-content {
    justify-content: center;
    padding: clamp(2rem, 4vw, 4rem);
  }

  .product-detail-page .detail-content h1 {
    font-size: clamp(2.75rem, 4.3vw, 4.6rem);
    line-height: .98;
  }

  .product-detail-page .detail-lead {
    margin: .85rem 0 1rem;
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .product-detail-page .detail-tags {
    gap: .5rem;
  }

  .product-detail-page .detail-tags span {
    padding: .35rem .65rem;
    font-size: .82rem;
  }

  .product-detail-page .product-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.25rem;
    margin: 1rem 0 1.15rem;
  }

  .product-detail-page .product-facts div {
    padding: .65rem 0;
  }

  .product-detail-page .product-facts dt {
    font-size: .78rem;
  }

  .product-detail-page .product-facts dd {
    margin-top: .15rem;
    font-size: .95rem;
    line-height: 1.3;
  }

  .product-detail-page .detail-contact {
    padding: .9rem 1rem;
  }
}

@media (max-width: 820px) {
  .product-detail-page .detail-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .product-detail-page .detail-image-panel {
    position: relative;
    inset: auto;
    order: 0;
    width: 100%;
    height: clamp(280px, 52svh, 420px);
    min-height: 280px;
    border-radius: 0;
  }

  .product-detail-page .detail-image-panel img {
    border-radius: 0;
  }

  .product-detail-page .detail-image-label {
    display: inline-flex;
  }

  .product-detail-page .detail-content {
    order: 1;
    padding: 1.4rem;
  }

  .product-detail-page .detail-category,
  .product-detail-page .detail-content h1 {
    max-width: none;
  }

  .product-detail-page .detail-content h1 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
  }
}
/* BRAS_DETAIL_HERO_COMFORT_END */


/* BRAS_RELATED_SIX_COLUMNS_START */
@media (min-width: 1181px) {
  .related-card h3 {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
  }

  .related-card__body > p {
    font-size: .76rem;
  }

  .related-card__link {
    min-height: 42px;
    font-size: .88rem;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .related-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* BRAS_RELATED_SIX_COLUMNS_END */


/* BRAS_ORANGE_WHITE_CONTRAST_START */
.skip-link,
.header-search__submit,
.benefit-icon,
.filter-chip[aria-pressed="true"],
.product-badge,
.product-cta:hover,
.empty-state > span,
.button--lime,
.steps-list li > span,
.contact-strip,
.footer-social .social-icon,
.detail-contact,
.detail-whatsapp:hover,
.related-card__link:hover,
.consultation-section {
  color: var(--white);
}

.filter-chip[aria-pressed="true"] small,
.filter-chip[aria-pressed="true"] .filter-chip__label,
.contact-strip p,
.contact-strip h2,
.detail-contact p,
.consultation-section h2,
.consultation-section strong,
.consultation-section p {
  color: inherit;
}

.filter-chip[aria-pressed="true"] img {
  outline-color: var(--white);
}

.consultation-points li {
  border-top-color: oklch(1 0 0 / .28);
}

.button--lime:hover {
  color: var(--black);
}

.hero-product-card:hover,
.hero-product-card:hover h2,
.hero-product-card:hover .hero-product-card__category,
.hero-product-card__link:hover,
.hero-product-card:first-child .hero-product-card__link:hover {
  color: var(--white);
}
/* BRAS_ORANGE_WHITE_CONTRAST_END */

/* BRAS_DISTINCT_CATALOG_PRODUCTS_START */
.product-grid {
  column-gap: clamp(1.15rem, 1.6vw, 1.65rem);
}

.product-image {
  flex: 0 0 auto;
  width: calc(100% - clamp(1.1rem, 1.7vw, 1.5rem));
  height: auto;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  overflow: visible;
}

.product-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
}

.product-badge {
  right: -0.35rem;
  bottom: 0.8rem;
  z-index: 2;
  max-width: calc(100% - 0.25rem);
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  box-shadow: 0 0 0 4px var(--white);
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .product-image { width: calc(100% - 1rem); }
  .product-badge { right: 0; }
}

@media (max-width: 560px) {
  .product-image { width: min(88%, 360px); }
  .product-badge { right: 0.25rem; bottom: 1rem; }
}
/* BRAS_DISTINCT_CATALOG_PRODUCTS_END */

/* BRAS_PRODUCT_SEQUENCE_NAV_START */
.product-sequence-nav {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 1.6vw, 1.25rem);
  left: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.product-sequence-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  transition: background 180ms ease, transform 220ms var(--ease-out);
}

.product-sequence-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-sequence-link:hover {
  background: oklch(0.61 0.19 36);
}

.product-sequence-link--previous:hover { transform: translateX(-3px); }
.product-sequence-link--next:hover { transform: translateX(3px); }

.product-sequence-link:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
  background: oklch(0.61 0.19 36);
}

@media (max-width: 560px) {
  .product-sequence-nav { top: 0.85rem; right: 0.85rem; }
}
/* BRAS_PRODUCT_SEQUENCE_NAV_END */

/* BRAS_PRODUCT_GALLERY_NAV_START */
.product-detail-page .detail-content {
  position: relative;
}

.product-detail-page .detail-category {
  padding-right: 6.25rem;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  right: clamp(0.85rem, 1.6vw, 1.25rem);
  left: clamp(0.85rem, 1.6vw, 1.25rem);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.detail-image-panel:hover .product-gallery-nav,
.detail-image-panel:focus-within .product-gallery-nav {
  opacity: 1;
  pointer-events: auto;
}

.product-gallery-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: 3px solid oklch(1 0 0 / 0.82);
  outline-offset: 0;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, transform 220ms var(--ease-out);
}

.product-gallery-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-gallery-link:hover {
  background: oklch(0.61 0.19 36);
}

.product-gallery-link--previous:hover { transform: translateX(-2px); }
.product-gallery-link--next:hover { transform: translateX(2px); }

.product-gallery-link:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.product-detail-page .detail-image-panel [data-gallery-image] {
  transition: opacity 180ms ease, transform 360ms var(--ease-out);
}

.product-detail-page .detail-image-panel [data-gallery-image].is-changing {
  opacity: 0.18;
  transform: scale(1.015);
}

@media (hover: none) {
  .product-gallery-nav {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery-nav,
  .product-gallery-link,
  .product-detail-page .detail-image-panel [data-gallery-image] {
    transition: none;
  }
}

@media (max-width: 560px) {
  .product-detail-page .detail-category { padding-right: 5.75rem; }
  .product-gallery-nav { right: 0.8rem; left: 0.8rem; }
}

@media (max-width: 820px) {
  .product-detail-page .detail-content {
    padding-top: 4.75rem;
  }
}
/* BRAS_PRODUCT_GALLERY_NAV_END */

/* BRAS_ALIGNED_PRODUCT_ACTIONS_START */
.product-card,
.related-card {
  display: flex;
  flex-direction: column;
}

.product-body,
.related-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-cta,
.related-card__link {
  margin-top: auto;
}
/* BRAS_ALIGNED_PRODUCT_ACTIONS_END */

/* BRAS_RELATED_ACTION_BASELINE_START */
.related-products__grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.related-card {
  height: 100%;
  min-height: 0;
  align-self: stretch;
}

.related-card__body {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.related-card h3 {
  align-self: start;
}

.related-card__link {
  align-self: end;
  margin-top: 0;
}
/* BRAS_RELATED_ACTION_BASELINE_END */

/* BRAS_FOOTER_WHATSAPP_ICON_START */
.footer-contact .whatsapp-icon {
  width: 21px;
  height: 21px;
  color: var(--accent);
  fill: currentColor;
  stroke: none;
}

.site-footer .footer-grid > div:not(.footer-brand) a.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
/* BRAS_FOOTER_WHATSAPP_ICON_END */

/* BRAS_FOOTER_CONTACT_ICONS_START */
.site-footer .footer-grid .footer-contact,
.site-footer .footer-grid .footer-social a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 32px;
  line-height: 1.2;
}

.site-footer .footer-grid a:not([href]) {
  cursor: default;
}

.footer-icon {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
}

.footer-icon svg,
.footer-contact .footer-icon .whatsapp-icon {
  width: 16px;
  height: 16px;
  color: inherit;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-icon--brand svg,
.footer-contact .footer-icon--brand .whatsapp-icon {
  fill: currentColor;
  stroke: none;
}

.footer-icon .footer-icon__dot {
  fill: currentColor;
  stroke: none;
}
/* BRAS_FOOTER_CONTACT_ICONS_END */

/* BRAS_MOBILE_HEADER_SINGLE_ROW_START */
@media (max-width: 820px) {
  .site-header.home-header .header-inner {
    column-gap: 0.65rem;
    row-gap: 0.5rem;
  }

  .site-header.home-header .brand {
    flex: 1 1 0;
    min-width: 0;
  }

  .site-header.home-header .brand > span {
    min-width: 0;
    overflow: hidden;
    font-size: clamp(0.7rem, 3.4vw, 0.95rem);
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header.home-header .menu-toggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: 0;
  }
}
/* BRAS_MOBILE_HEADER_SINGLE_ROW_END */
