:root {
  --bg: #f2ebe3;
  --bg-strong: #fffaf4;
  --panel: rgba(255, 250, 244, 0.93);
  --panel-deep: #160d10;
  --ink: #151012;
  --muted: #5f5458;
  --line: rgba(83, 36, 42, 0.1);
  --line-strong: rgba(83, 36, 42, 0.18);
  --accent: #b88948;
  --accent-strong: #8b5e2f;
  --rose: #a1142d;
  --shadow: 0 28px 80px rgba(74, 18, 28, 0.13);
  --radius: 26px;
  --content: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgba(161, 20, 45, 0.18), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(184, 137, 72, 0.2), transparent 24%),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(145deg, #fffaf4 0%, #f1e8dd 46%, #eaded2 100%);
  background-attachment: fixed;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  padding-bottom: 6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1rem 0;
  background: rgba(255, 249, 243, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
}

.brand span {
  display: grid;
  gap: 0.15rem;
}

.brand strong,
.hero h1,
.section-head h2,
.story-copy h3,
.atacado-copy h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand strong {
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.95rem 1.15rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(23, 18, 22, 0.06);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.hero,
.section-block,
.commercial-banner,
.site-footer {
  width: var(--content);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100svh - 88px);
  padding: 2rem 0 3rem;
}

.eyebrow,
.section-tag,
.mini-tag,
.proof-label {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  max-width: 10ch;
}

.hero-lead,
.section-head p,
.product-description,
.proof-card p,
.operations-grid p,
.atacado-card li,
.contact-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  max-width: 56ch;
  margin: 1.15rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button,
.product-cta,
.collection-nav a,
.mobile-sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.product-cta:hover,
.collection-nav a:hover,
.mobile-sticky-cta:hover {
  transform: translateY(-2px);
}

.button-primary,
.product-cta,
.mobile-sticky-cta {
  background: var(--panel-deep);
  color: #fff;
}

.button-secondary,
.collection-nav a {
  background: rgba(255, 250, 245, 0.78);
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-benefits span {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 680px;
  border-radius: 34px;
  overflow: hidden;
  background: #1c1619;
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-panel {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(18, 14, 17, 0.7);
  color: #fff;
}

.hero-panel p {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-panel strong {
  font-size: 1.15rem;
  line-height: 1.55;
}

.commercial-banner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 5rem;
}

.commercial-banner div,
.proof-card,
.atacado-card,
.operations-grid article,
.client-blocks article,
.story-copy,
.section-block.alt-surface,
.contact-panel {
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.commercial-banner div {
  padding: 1rem 1.1rem;
}

.commercial-banner strong,
.product-prices strong,
.proof-card strong,
.operations-grid h3,
.client-blocks h3,
.section-head h2,
.story-copy h3,
.atacado-card h3,
.atacado-copy h3,
.product-card h3 {
  display: block;
  margin: 0;
}

.commercial-banner strong {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.commercial-banner span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.section-block {
  padding-bottom: 5.5rem;
}

.alt-surface {
  padding: 1.5rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.section-head p:last-child {
  margin: 1rem 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-grid-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  content-visibility: auto;
  contain-intrinsic-size: 620px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: scale(1.012);
  box-shadow: 0 30px 82px rgba(43, 15, 33, 0.18);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-media img,
.product-card > img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.stock-badges {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  display: grid;
  gap: 0.4rem;
  max-width: calc(100% - 1.6rem);
}

.stock-badge {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(12, 8, 10, 0.22);
}

.stock-badge-low {
  background: #b92332;
}

.stock-badge-best {
  background: linear-gradient(135deg, #c9963d, #f2d384);
  color: #21150d;
}

.stock-badge-new {
  background: #2f7d51;
}

.product-body {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
}

.badge-row,
.product-colors,
.trust-strip,
.collection-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.badge {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-novidade {
  background: rgba(215, 108, 138, 0.16);
  color: #9d3457;
}

.badge-reposicao {
  background: rgba(183, 134, 68, 0.16);
  color: #8e6130;
}

.badge-best-seller {
  background: rgba(23, 18, 22, 0.08);
  color: var(--ink);
}

.badge-poucas-unidades {
  background: rgba(201, 71, 71, 0.14);
  color: #8b1f1f;
}

.badge-outlet {
  background: rgba(94, 122, 87, 0.16);
  color: #3d5d36;
}

.product-card h3 {
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-family: "Cormorant Garamond", serif;
}

.product-code {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-description {
  margin: 0;
}

.starting-price {
  margin: -0.15rem 0 0;
  color: var(--accent-strong);
  font-size: 1.08rem;
  font-weight: 900;
}

.product-prices {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(23, 18, 22, 0.05);
}

.product-prices span {
  color: var(--muted);
  font-size: 0.8rem;
}

.about-pillars,
.testimonials-track {
  display: grid;
  gap: 1rem;
}

.about-pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-pillars article,
.testimonial-card,
.outlet-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-pillars article {
  display: grid;
  gap: 0.4rem;
  padding: 1.2rem;
  background: rgba(255, 250, 245, 0.86);
}

.about-pillars span {
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.9;
}

.about-pillars strong {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.outlet-banner {
  width: var(--content);
  margin: 0 auto 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(215, 108, 138, 0.22), transparent 28%),
    linear-gradient(135deg, #171216, #2b2025);
  color: #fff;
}

.outlet-banner .section-tag {
  color: #f2d384;
}

.outlet-banner h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.outlet-banner p:last-child {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.testimonials-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem;
  background: rgba(255, 250, 245, 0.88);
}

.testimonial-avatar {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(183, 134, 68, 0.22), rgba(215, 108, 138, 0.18));
  color: var(--ink);
  font-weight: 900;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-card .stars {
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 900;
}

.product-meta {
  display: grid;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.product-colors span {
  padding: 0.4rem 0.68rem;
  border-radius: 999px;
  background: rgba(23, 18, 22, 0.06);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
}

.product-note {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.compact-section .section-head {
  margin-bottom: 1.25rem;
}

.collection-nav a {
  min-height: 3rem;
  padding: 0 1rem;
}

.flare-story,
.atacado-layout,
.client-blocks,
.operations-grid,
.proof-grid {
  display: grid;
  gap: 1rem;
}

.flare-story,
.atacado-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  margin-bottom: 1.4rem;
}

.story-copy,
.atacado-copy,
.atacado-card {
  padding: 1.3rem;
}

.story-copy ul,
.atacado-copy ol,
.atacado-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.story-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-media img {
  height: 100%;
  object-fit: cover;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  padding: 1.2rem;
}

.proof-card strong {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.trust-strip {
  margin-top: 1rem;
}

.trust-strip span {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: rgba(23, 18, 22, 0.05);
  font-size: 0.82rem;
  font-weight: 700;
}

.client-blocks,
.operations-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.client-blocks article,
.operations-grid article {
  padding: 1.2rem;
}

.client-blocks h3,
.operations-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 1.02rem;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.4rem;
  padding: 1.35rem;
}

.contact-panel p {
  margin: 0.25rem 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.8fr;
  gap: 0.75rem 1rem;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 0.25rem 0;
  line-height: 1.65;
}

.site-footer a {
  color: var(--accent-strong);
  font-weight: 800;
}

.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 40;
  transform: translateX(-50%);
  width: min(calc(100% - 1rem), 440px);
  box-shadow: 0 18px 50px rgba(21, 12, 18, 0.25);
}

.filter-section {
  position: relative;
  border: 1px solid rgba(23, 18, 22, 0.08);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
}

.filter-tab {
  border: 1px solid rgba(23, 18, 22, 0.12);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.filter-tab:hover,
.filter-tab.is-active {
  transform: translateY(-1px);
  border-color: rgba(161, 20, 45, 0.34);
  background: var(--ink);
  color: #fff;
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: auto;
}

.product-actions .product-cta {
  grid-column: 1 / -1;
}

.product-gallery-button,
.product-cart-button {
  min-height: 42px;
  border: 1px solid rgba(23, 18, 22, 0.12);
  border-radius: 999px;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.product-gallery-button:hover,
.product-cart-button:hover,
.product-cart-button.is-selected {
  transform: translateY(-1px);
  border-color: rgba(161, 20, 45, 0.34);
  background: rgba(161, 20, 45, 0.08);
}

.product-cart-button.is-selected {
  background: var(--ink);
  color: #fff;
}

.empty-filter {
  grid-column: 1 / -1;
  padding: 1.2rem;
  border: 1px dashed rgba(23, 18, 22, 0.2);
  border-radius: 1.2rem;
  color: var(--muted);
}

/* MELHORIA OUTLET — aviso "em breve" quando a aba Outlet está vazia */
.outlet-coming-soon {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.95rem;
  padding: 2.4rem 1.6rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 108, 138, 0.22), transparent 36%),
    linear-gradient(135deg, #171216, #2b2025);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.outlet-coming-soon-tag {
  justify-self: center;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(242, 211, 132, 0.18);
  border: 1px solid rgba(242, 211, 132, 0.42);
  color: #f2d384;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.outlet-coming-soon h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4.2vw, 2.6rem);
  line-height: 1.05;
}

.outlet-coming-soon p {
  margin: 0 auto;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 0.94rem;
}

.outlet-coming-soon .button {
  justify-self: center;
  margin-top: 0.4rem;
  background: linear-gradient(135deg, #f7e5b0, #d39b43);
  color: #21150d;
  border: 0;
}

.budget-bar {
  position: fixed;
  left: 50%;
  bottom: 0.8rem;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.55rem;
  width: min(calc(100% - 1rem), 680px);
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(23, 18, 22, 0.92);
  box-shadow: 0 22px 60px rgba(21, 12, 18, 0.32);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.budget-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.budget-summary span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.budget-summary strong {
  font-size: 0.9rem;
}

.budget-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 1rem;
  background: linear-gradient(135deg, #f7e5b0, #d39b43);
  color: #171216;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-sticky-cta {
  display: none;
}

.budget-drawer,
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: end center;
  padding: 1rem;
  background: rgba(12, 9, 12, 0.52);
  backdrop-filter: blur(10px);
}

.budget-drawer[hidden],
.gallery-modal[hidden] {
  display: none;
}

.budget-drawer-card,
.gallery-card {
  position: relative;
  width: min(100%, 620px);
  max-height: min(86vh, 820px);
  overflow: auto;
  border-radius: 1.45rem;
  padding: 1.25rem;
  background: #fffaf5;
  box-shadow: 0 24px 70px rgba(9, 6, 9, 0.28);
}

.drawer-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(23, 18, 22, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
}

.cart-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(23, 18, 22, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.68);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.38rem;
}

.cart-controls span {
  min-width: 1.6rem;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.cart-item button {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: rgba(161, 20, 45, 0.08);
  color: var(--accent-strong);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  cursor: pointer;
}

.cart-empty {
  color: var(--muted);
}

.cart-progress {
  margin: 0.6rem 0 0;
  border-radius: 999px;
  padding: 0.68rem 0.85rem;
  background: rgba(183, 134, 68, 0.14);
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 850;
}

.cart-progress.is-complete {
  background: rgba(47, 125, 81, 0.14);
  color: #2f7d51;
}

.floating-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 58;
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.38);
  animation: whatsappPulse 1.9s ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.gallery-card {
  display: grid;
  gap: 0.85rem;
  max-width: 760px;
}

.gallery-main {
  width: 100%;
  max-height: 68vh;
  border-radius: 1.15rem;
  object-fit: contain;
  background: rgba(23, 18, 22, 0.04);
}

.gallery-thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.gallery-thumbs button {
  flex: 0 0 74px;
  height: 94px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0.85rem;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-thumbs button.is-active {
  border-color: #d39b43;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.drawer-open {
  overflow: hidden;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .product-grid,
  .product-grid-featured,
  .proof-grid,
  .client-blocks,
  .operations-grid,
  .about-pillars,
  .testimonials-track,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero,
  .flare-story,
  .atacado-layout,
  .commercial-banner,
  .outlet-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero-media {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    padding: 0.9rem 0 0.8rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding-top: 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-benefits,
  .product-grid,
  .product-grid-featured,
  .proof-grid,
  .client-blocks,
  .operations-grid,
  .about-pillars,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .outlet-banner {
    display: grid;
  }

  .testimonials-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.4rem;
  }

  .testimonial-card {
    flex: 0 0 min(86vw, 340px);
    scroll-snap-align: start;
  }

  .section-block {
    padding-bottom: 4.5rem;
  }

  .alt-surface {
    padding: 1rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .hero-media {
    min-height: 360px;
  }

  .contact-panel {
    align-items: flex-start;
  }

  .budget-bar {
    grid-template-columns: 1fr;
    border-radius: 1.1rem;
  }

  .budget-whatsapp {
    width: 100%;
  }

  .floating-whatsapp {
    bottom: 7rem;
  }
}

@media (max-width: 560px) {
  :root {
    --content: min(100% - 1rem, 1180px);
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .budget-drawer,
  .gallery-modal {
    padding: 0.5rem;
  }

  .budget-drawer-card,
  .gallery-card {
    border-radius: 1.15rem;
    padding: 1rem;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 359px) {
  .floating-whatsapp {
    display: none;
  }
}

/* MELHORIA 1 - precos de varejo, atacado e outlet nos cards */
.card-preco {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.7rem 0.8rem;
  border-radius: 16px;
  background: rgba(23, 18, 22, 0.04);
}

.preco-linha,
.preco-outlet {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  width: 100%;
}

.preco-varejo,
.preco-de {
  color: #70686d;
  font-size: 13px;
  line-height: 1.35;
}

.preco-atacado {
  color: #1f5a3d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.badge-atacado {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #dff4e7;
  color: #1f5a3d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preco-separador {
  color: rgba(23, 18, 22, 0.28);
  font-size: 13px;
}

.preco-por {
  color: #b4212d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

/* MELHORIA NOVIDADES — preço sob consulta */
.preco-consulta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  width: 100%;
}

.preco-consulta strong {
  color: var(--accent-strong);
  font-size: 0.95rem;
}

.preco-consulta span {
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 560px) {
  .card-preco {
    padding: 0.65rem 0.7rem;
  }

  .preco-linha,
  .preco-outlet {
    gap: 0.28rem 0.38rem;
  }
}

/* MELHORIA 3 — progresso dinamico do orcamento de atacado */
.orcamento-progresso {
  background: var(--surface-soft, #f8f8f6);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border, #e0e0e0);
}

.prog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 8px;
  font-size: 13px;
}

.prog-contador {
  font-weight: 600;
  color: var(--ink, #1a1a1a);
}

.prog-status {
  font-size: 11px;
  color: var(--muted, #666);
}

.prog-barra-bg {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.prog-barra-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 0.4s ease, background-color 0.3s ease;
  background: #ef9f27;
}

.prog-barra-fill.ativo {
  background: #1d9e75;
}

.prog-valores {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--muted, #666);
}

.prog-sep {
  color: #ccc;
}

.prog-atacado-label {
  font-weight: 500;
}

.prog-atacado-label strong {
  color: #1d9e75;
}

.prog-mensagem {
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
  min-height: 18px;
  transition: all 0.3s ease;
}

.prog-mensagem.inativo {
  color: #ef9f27;
}

.prog-mensagem.ativo {
  color: #1d9e75;
}

/* MELHORIA 4 — toggle varejo/atacado no catalogo */
.preco-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--surface-soft, #f8f8f6);
  border-radius: 10px;
  border: 1px solid var(--border, #e0e0e0);
}

.preco-toggle-label {
  font-size: 12px;
  color: var(--muted, #666);
}

.preco-toggle {
  display: flex;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 6px;
  overflow: hidden;
}

.toggle-btn {
  font-size: 12px;
  padding: 5px 14px;
  border: none;
  background: transparent;
  color: var(--muted, #666);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 400;
}

.toggle-btn.active {
  background: var(--ink, #1a1a1a);
  color: #fff;
  font-weight: 500;
}

.toggle-btn:first-child {
  border-right: 1px solid var(--border, #e0e0e0);
}

.preco-toggle-hint {
  font-size: 11px;
  color: #1d9e75;
  font-weight: 500;
}

.preco-mode-label {
  color: #70686d;
  font-size: 13px;
}

.preco-valor-dinamico {
  color: #63585f;
  font-size: 14px;
  font-weight: 600;
}

.preco-valor-dinamico.preco-atacado-ativo {
  color: #1f5a3d;
}

.preco-resumo {
  color: #1f5a3d;
  font-size: 12px;
  font-weight: 600;
}

/* MELHORIA 1 — selos incorporados na secao de depoimentos reais */
.trust-strip-testimonials {
  margin-top: 1.1rem;
}

/* MELHORIA 9 — calculadora interativa de atacado */
.secao-calculadora {
  padding: 60px 20px;
  background: var(--surface-soft, #f8f8f6);
}

.calc-container {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border, #e0e0e0);
}

.calc-titulo {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink, #1a1a1a);
}

.calc-sub {
  font-size: 14px;
  color: var(--muted, #666);
  margin-bottom: 28px;
}

.calc-linha {
  margin-bottom: 20px;
}

.calc-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink, #1a1a1a);
  margin-bottom: 8px;
}

.calc-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border, #e0e0e0);
  font-size: 14px;
  background: #fff;
  color: var(--ink, #1a1a1a);
  appearance: none;
  cursor: pointer;
}

.calc-qtd-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calc-qtd-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border, #e0e0e0);
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.calc-qtd-btn:hover {
  background: var(--ink, #1a1a1a);
  color: #fff;
}

.calc-qtd-num {
  font-size: 24px;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
  color: var(--ink, #1a1a1a);
}

.calc-resultado {
  background: var(--surface-soft, #f8f8f6);
  border-radius: 10px;
  padding: 16px;
  margin: 20px 0;
}

.calc-res-linha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border, #e0e0e0);
}

.calc-res-linha:last-of-type {
  border-bottom: none;
}

.calc-res-linha.destaque {
  font-weight: 600;
  font-size: 15px;
}

.calc-res-linha.economia {
  color: #1d9e75;
  font-weight: 600;
}

.calc-res-label {
  color: var(--muted, #666);
}

.calc-res-val {
  color: var(--ink, #1a1a1a);
  text-align: right;
}

.calc-res-val.verde {
  color: #1d9e75;
}

.calc-aviso {
  font-size: 12px;
  color: #ef9f27;
  margin-top: 8px;
  font-weight: 500;
}

.calc-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--ink, #1a1a1a);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.calc-cta:hover {
  opacity: 0.85;
}

/* MELHORIA 10 — secao Seja Jump Revendedora */
.secao-revendedoras {
  background: var(--ink, #1a1a1a);
  color: #fff;
  padding: 80px 20px;
}

.rev-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.rev-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px;
}

.rev-titulo {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}

.rev-sub {
  font-size: 15px;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 24px;
}

.rev-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.rev-lista li {
  font-size: 14px;
  color: #ddd;
  padding: 6px 0;
  border-bottom: 1px solid #2a2a2a;
  line-height: 1.5;
}

.rev-lista li:last-child {
  border-bottom: none;
}

.rev-cta {
  display: inline-block;
  padding: 13px 28px;
  background: #fff;
  color: #1a1a1a;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.rev-cta:hover {
  opacity: 0.88;
}

.rev-faq-titulo {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #eee;
}

.rev-faq-item {
  padding: 16px 0;
  border-bottom: 1px solid #2a2a2a;
}

.rev-faq-item:last-child {
  border-bottom: none;
}

.rev-faq-item strong {
  font-size: 14px;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.rev-faq-item p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .rev-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .calc-container {
    padding: 24px;
  }
}

/* MELHORIA 1 — hero com CTAs comerciais e hierarquia mobile-first */
.button-tertiary {
  background: #fff;
  color: var(--panel-deep);
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 30px rgba(43, 15, 33, 0.08);
}

.button-tertiary:hover {
  background: #fff7f5;
}

/* MELHORIA SHOPIFY — CTA de compra direta no varejo */
.button-shopify {
  background: linear-gradient(135deg, var(--accent), #5b0718);
  color: #fff;
  border: 1px solid rgba(161, 20, 45, 0.32);
  box-shadow: 0 16px 34px rgba(161, 20, 45, 0.18);
}

.button-shopify:hover {
  background: linear-gradient(135deg, #b71937, #3f0410);
}

.product-shopify-button {
  display: inline-flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(161, 20, 45, 0.22);
  border-radius: 999px;
  background: rgba(161, 20, 45, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.product-shopify-button:hover {
  transform: translateY(-1px);
  border-color: rgba(161, 20, 45, 0.38);
  background: rgba(161, 20, 45, 0.14);
}

/* MELHORIA 9 — bloco de confiança objetivo */
.why-jump {
  padding-top: 1rem;
}

.why-grid,
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-grid article,
.journey-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 245, 0.82);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.why-grid strong,
.journey-card h3 {
  color: var(--ink);
}

.why-grid p,
.journey-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

/* MELHORIA 2 — separação de jornadas */
.journey-section {
  padding-top: 1rem;
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
}

.journey-card span {
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 0.98;
}

.journey-card .button {
  margin-top: auto;
}

.journey-card-featured {
  background: var(--panel-deep);
  color: #fff;
}

.journey-card-featured h3,
.journey-card-featured p {
  color: #fff;
}

.journey-card-featured span {
  color: #ffd9d0;
}

/* MELHORIA 3 — cards de produto mais próximos de e-commerce premium */
.product-category {
  margin: -0.15rem 0 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-tech-tags span {
  border: 1px solid rgba(43, 15, 33, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.32rem 0.55rem;
}

.prog-economia {
  color: #1d9e75;
  font-weight: 600;
}

/* MELHORIA 10 — reforços de responsividade e toque no mobile */
@media (max-width: 1180px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .why-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: auto;
  }

  .mobile-sticky-cta {
    display: inline-flex;
    width: min(92vw, 420px);
    min-height: 3.45rem;
  }

  .product-tech-tags span {
    font-size: 0.7rem;
  }
}

/* MELHORIA 2 — badge discreto de atualização do estoque */
.estoque-badge {
  width: fit-content;
  margin: -0.4rem auto 1rem;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(29, 158, 117, 0.16);
  border-radius: 999px;
  background: rgba(29, 158, 117, 0.08);
  color: #1f6b55;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* MELHORIA 4 — aviso de política de troca próximo aos CTAs */
.troca-aviso {
  margin-top: 0.75rem;
  color: rgba(48, 39, 44, 0.62);
  font-size: 0.72rem;
  line-height: 1.45;
}

.contact-panel .troca-aviso {
  grid-column: 1 / -1;
  margin-top: -0.25rem;
}

/* MELHORIA 5 — badge de tamanho nos cards do catálogo */
.badge-tamanho {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  margin-top: -0.25rem;
  padding: 0.22rem 0.52rem;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ================================================================
   MELHORIA MOBILE — home orientada à conversão
   ================================================================ */

/* Rolagem por âncora não fica escondida sob o cabeçalho fixo */
section[id] {
  scroll-margin-top: 96px;
}

/* Cabeçalho de seção compacto: menos texto, h2 menor */
.section-head-compact {
  margin-bottom: 1.2rem;
}

.section-head-compact h2 {
  font-size: clamp(1.6rem, 4.6vw, 2.6rem);
  line-height: 1.08;
}

.section-head-compact p {
  margin-top: 0.6rem;
  font-size: 0.95rem;
}

/* Destaque do WhatsApp no menu */
.site-nav-whatsapp {
  color: #1c8c4d;
  font-weight: 800;
}

/* --- Categorias visuais --- */
.category-section {
  padding-bottom: 3rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #1c1619;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 82px rgba(43, 15, 33, 0.2);
}

.category-card img {
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 320ms ease;
}

.category-card:hover img {
  transform: scale(1.04);
}

.category-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.6rem 1rem 0.95rem;
  background: linear-gradient(to top, rgba(13, 9, 11, 0.88), rgba(13, 9, 11, 0));
  color: #fff;
}

.category-card-body strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.category-card-body small {
  flex: 0 0 auto;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.category-card-outlet small {
  background: #b92332;
  border-color: #b92332;
}

.category-card-atacado small {
  background: linear-gradient(135deg, #c9963d, #f2d384);
  border-color: transparent;
  color: #21150d;
}

.category-card-leggings small {
  background: linear-gradient(135deg, #a1142d, #d76c8a);
  border-color: transparent;
  color: #fff;
}

/* --- Selos de benefícios --- */
.benefits-section {
  padding-bottom: 3rem;
}

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.benefits-strip article {
  display: grid;
  gap: 0.3rem;
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.benefits-strip strong {
  font-size: 1rem;
}

.benefits-strip span {
  color: var(--muted);
  font-size: 0.84rem;
}

/* --- Barra fixa inferior (mobile) --- */
.mobile-tabbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  grid-template-columns: repeat(3, 1fr);
  padding: 0.4rem 0.4rem calc(0.4rem + env(safe-area-inset-bottom, 0px));
  background: rgba(23, 18, 22, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-tabbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.5rem 0.25rem;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mobile-tabbar-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mobile-tabbar-item:active {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-tabbar-whatsapp {
  color: #5ce08a;
}

/* --- Ajustes mobile dos elementos flutuantes --- */
@media (max-width: 760px) {
  .page-shell {
    padding-bottom: 5.5rem;
  }

  .mobile-tabbar {
    display: grid;
  }

  .floating-whatsapp {
    display: none;
  }

  .budget-bar {
    bottom: calc(4.6rem + env(safe-area-inset-bottom, 0px));
  }

  .budget-bar.is-empty {
    display: none;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 8.6vw, 3.2rem);
  }

  /* Catálogo em 2 colunas — mais produtos por tela, menos rolagem */
  .product-grid,
  .product-grid-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  /* Cards de produto mais enxutos no mobile: imagem, nome, preço e ação */
  .product-meta,
  .product-note,
  .product-description,
  .product-tech-tags,
  .product-colors,
  .starting-price,
  .product-code,
  .badge-tamanho,
  .badge-row {
    display: none;
  }

  .product-body {
    gap: 0.5rem;
    padding: 0.8rem;
  }

  .product-card h3 {
    font-size: 1.08rem;
    line-height: 1.14;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-category {
    font-size: 0.68rem;
  }

  .card-preco {
    padding: 0.55rem 0.6rem;
  }

  .product-actions {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .product-cta,
  .product-gallery-button,
  .product-cart-button,
  .product-shopify-button {
    min-height: 40px;
    font-size: 0.78rem;
  }
}

@media (max-width: 560px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .category-card-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.4rem 0.8rem 0.8rem;
  }

  .category-card-body strong {
    font-size: 1.3rem;
  }

  .benefits-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
}
