:root {
  --bg: #080706;
  --bg-card: #100e0c;
  --bg-card-inner: #181512;
  --text: #faf6f0;
  --muted: #9a9286;
  --accent: #c9bfb2;
  --accent-soft: #ada296;
  --cta: #c4ae72;
  --cta-hover: #dcc48a;
  --cta-muted: rgba(196, 174, 114, 0.12);
  --border: rgba(210, 198, 180, 0.1);
  --border-strong: rgba(210, 198, 180, 0.18);
  --danger: #e08080;
  --ok: #8fbc9a;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Outfit", "Segoe UI", system-ui, sans-serif;
  --shadow-card:
    0 20px 50px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 252, 245, 0.04);
  --shadow-card-hover:
    0 28px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 252, 245, 0.06),
    0 0 0 1px rgba(196, 174, 114, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --tap-min: 44px;
}

* { box-sizing: border-box; }
img,
video {
  max-width: 100%;
  height: auto;
}
picture {
  display: block;
  max-width: 100%;
}
iframe {
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 400;
  font-feature-settings: "kern" 1, "liga" 1;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 50% at 50% -5%, rgba(196, 174, 114, 0.09), transparent 50%),
    radial-gradient(ellipse 50% 38% at 100% 12%, rgba(160, 130, 110, 0.05), transparent 42%),
    radial-gradient(ellipse 40% 32% at 0% 88%, rgba(90, 110, 125, 0.04), transparent 48%),
    linear-gradient(180deg, #0a0908 0%, var(--bg) 42%, #060504 100%);
  color: var(--text);
  line-height: 1.58;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: clip;
}

.site-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  background-image: var(--grain);
  mix-blend-mode: overlay;
}
/**
 * Ruído atrás do conteúdo no login do painel: evita que mix-blend-mode/fixed
 * roube cliques ou foco em alguns navegadores (campos não digitavam).
 */
.login-page .site-noise--under {
  z-index: -1;
  mix-blend-mode: normal;
  opacity: 0.38;
}

::selection {
  background: rgba(196, 174, 114, 0.35);
  color: var(--text);
}

a { color: var(--cta); text-decoration: none; }
a:hover { color: var(--cta-hover); text-decoration: underline; }
a:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 14, 12, 0.96) 0%, rgba(8, 7, 6, 0.9) 100%);
  backdrop-filter: blur(16px) saturate(1.15);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(196, 174, 114, 0.07);
  padding-top: env(safe-area-inset-top, 0px);
}

/* Overlay do menu mobile (elemento criado em JS no body) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(4, 3, 2, 0.58);
  backdrop-filter: blur(4px);
  -webkit-tap-highlight-color: transparent;
}
.nav-backdrop.nav-backdrop--visible {
  display: block;
}
@media (max-width: 719px) {
  .nav-backdrop {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }
  .nav-backdrop.nav-backdrop--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (min-width: 720px) {
  .nav-backdrop,
  .nav-backdrop.nav-backdrop--visible {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-backdrop {
    transition: none !important;
  }
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 174, 114, 0.22) 22%,
    rgba(220, 200, 150, 0.38) 50%,
    rgba(196, 174, 114, 0.22) 78%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0.85;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem clamp(1rem, 4vw, 1.25rem) 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}
.site-header__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap-min);
  height: var(--tap-min);
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-card-inner);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover {
  border-color: rgba(196, 174, 114, 0.42);
  background: rgba(196, 174, 114, 0.08);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
.nav-toggle__bars {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.nav-toggle.is-open .nav-toggle__bars {
  box-shadow: none;
  transform: rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform: rotate(-90deg);
}
.header-nav-search {
  display: none;
}
@media (min-width: 960px) {
  .header-nav-search {
    display: flex;
    flex: 1 1 auto;
    align-items: stretch;
    gap: 0.4rem;
    min-width: 0;
    max-width: 17rem;
    margin: 0 0.75rem 0 0.25rem;
  }
  .header-nav-search__input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.45rem 0.75rem;
    font-size: 0.86rem;
    font-family: var(--font-ui);
    color: var(--text);
    background: rgba(12, 11, 10, 0.85);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .header-nav-search__input::placeholder {
    color: rgba(154, 146, 134, 0.85);
  }
  .header-nav-search__input:focus {
    border-color: rgba(196, 174, 114, 0.55);
    box-shadow: 0 0 0 2px rgba(196, 174, 114, 0.12);
  }
  .header-nav-search__btn {
    flex-shrink: 0;
    padding: 0.45rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-ui);
    color: #141008;
    cursor: pointer;
    border: 1px solid rgba(196, 174, 114, 0.45);
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, #c9b06e 0%, var(--cta) 48%, #a89258 100%);
    transition: filter 0.2s ease;
  }
  .header-nav-search__btn:hover {
    filter: brightness(1.06);
  }
}
@media (min-width: 720px) {
  .site-header__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 0.75rem;
    gap: 0.75rem 1rem;
    min-width: 0;
  }
  .site-header__brand-row {
    display: contents;
  }
  .nav-toggle {
    display: none !important;
  }
}
.brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
  text-decoration: none;
  line-height: 1.15;
}
.brand--prestige {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none !important;
  line-height: 1.12;
}
.brand-prestige__seal {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(196, 174, 114, 0.48);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 252, 245, 0.06) 0%, transparent 52%),
    linear-gradient(155deg, rgba(38, 33, 28, 0.99) 0%, rgba(10, 9, 8, 1) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(196, 174, 114, 0.12),
    inset 0 1px 0 rgba(255, 252, 245, 0.08),
    0 8px 26px rgba(0, 0, 0, 0.42);
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  color: var(--cta);
  line-height: 1;
  transition:
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    transform 0.4s var(--ease-out),
    color 0.25s var(--ease-out);
}
.brand-prestige__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.14rem, 3.4vw, 1.52rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  color: var(--text);
  min-width: 0;
}
.brand:hover { color: var(--accent); text-decoration: none; }
.brand--prestige:hover {
  color: inherit;
  filter: brightness(1.03);
}
.brand--prestige:hover .brand-prestige__seal {
  border-color: rgba(220, 196, 138, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(220, 196, 138, 0.18),
    inset 0 1px 0 rgba(255, 252, 245, 0.11),
    0 0 0 1px rgba(196, 174, 114, 0.14),
    0 10px 32px rgba(0, 0, 0, 0.48);
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .brand-prestige__seal {
    transition: none;
  }
  .brand--prestige:hover .brand-prestige__seal {
    transform: none;
  }
}
.brand--prestige:hover .brand-prestige__wordmark {
  color: var(--text);
}
.brand--prestige:hover .brand__accent {
  color: var(--cta-hover);
}
.brand__accent {
  font-style: italic;
  font-weight: 400;
  color: var(--cta);
}
.brand__mark {
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  min-width: 0;
}
.brand-tag {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 500;
  opacity: 0.92;
}
.brand-tag--prestige {
  letter-spacing: 0.12em;
  max-width: min(26rem, 94vw);
  line-height: 1.6;
  color: rgba(154, 146, 134, 0.92);
  font-weight: 400;
  opacity: 1;
  text-wrap: balance;
  padding-left: 0.55rem;
  border-left: 1px solid rgba(196, 174, 114, 0.2);
  margin-top: 0.05rem;
}
@media (max-width: 380px) {
  .brand--prestige {
    gap: 0.55rem;
  }
  .brand-prestige__seal {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.46rem;
  }
  .brand-prestige__wordmark {
    font-size: clamp(1.02rem, 4.5vw, 1.2rem);
  }
}

.site-nav {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
  padding: 0.25rem 0 0.35rem;
  width: 100%;
}
.site-nav.is-open {
  display: flex;
  border-top: 1px solid var(--border);
  margin-top: 0.15rem;
  padding-top: 0.5rem;
  max-height: 72vh;
  max-height: min(72vh, calc(100dvh - 9.5rem));
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  scrollbar-width: thin;
}
.site-nav.is-open::-webkit-scrollbar {
  width: 5px;
}
.site-nav.is-open::-webkit-scrollbar-thumb {
  background: rgba(196, 174, 114, 0.35);
  border-radius: 3px;
}
@media (min-width: 720px) {
  .site-nav.is-open {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }
}
.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transition: color 0.22s var(--ease-out), background 0.22s var(--ease-out);
}
.site-nav a:hover { color: var(--text); text-decoration: none; background: rgba(196, 174, 114, 0.09); }
@media (min-width: 720px) {
  .site-nav {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem 0.15rem;
    padding: 0;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    min-width: 0;
  }
  .site-nav a {
    padding: 0.45rem 0.75rem;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(180, 172, 162, 0.95);
  }
  .site-nav a:hover {
    color: var(--text);
    background: rgba(196, 174, 114, 0.07);
  }
}
.nav-cta {
  color: #141008 !important;
  background: linear-gradient(145deg, #c9b06e 0%, var(--cta) 48%, #a89258 100%);
  padding: 0.48rem 1.05rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 250, 235, 0.12) inset;
  justify-content: center;
  margin-top: 0.35rem;
}
@media (min-width: 720px) {
  .nav-cta { margin-top: 0; }
  .site-nav a.nav-cta {
    text-transform: none;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    font-weight: 600;
  }
}
.nav-cta:hover {
  background: linear-gradient(145deg, var(--cta-hover) 0%, #c9b06e 100%);
  color: #141008 !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 250, 235, 0.16) inset;
}
.nav-cta:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.nav-conta.nav-conta--soft {
  opacity: 0.92;
  font-weight: 400;
}
.nav-conta-form {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  align-self: stretch;
}
.nav-conta-out {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  min-height: var(--tap-min);
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.nav-conta-out:hover {
  color: var(--text);
  background: rgba(196, 174, 114, 0.09);
}
@media (min-width: 720px) {
  .nav-conta-out {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(180, 172, 162, 0.95);
    padding: 0.45rem 0.65rem;
  }
  .nav-conta-out:hover {
    color: var(--text);
    background: rgba(196, 174, 114, 0.07);
  }
}

/* Área logada do cliente */
.conta-page {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.conta-page--painel {
  max-width: 42rem;
}
main.conta-page--pedido {
  max-width: 56rem;
}
.conta-page .alert {
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 252, 245, 0.04);
}
.conta-hero {
  margin-bottom: 1.35rem;
}
.conta-hero--compact {
  margin-bottom: 1rem;
}
.conta-hero__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
  font-weight: 600;
}
.conta-hero__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.conta-hero__lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}
.conta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem clamp(1rem, 3vw, 1.35rem);
  box-shadow: var(--shadow-card);
}
.conta-card__h {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.conta-form__grid {
  gap: 0.85rem;
}
.conta-form__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.conta-form__actions--stack .btn {
  max-width: 22rem;
}
.conta-painel-footer {
  margin: 0 0 1.25rem;
  padding-bottom: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}
.conta-painel-footer__link {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.conta-painel-footer__link:hover {
  color: #d4a0a0;
}
.conta-painel-footer__sep {
  opacity: 0.55;
  user-select: none;
}
.conta-painel-footer__link:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
  border-radius: 2px;
}
.conta-excluir-check {
  margin-top: 0.35rem;
}
.conta-checkbox-label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(250, 246, 240, 0.82);
  cursor: pointer;
}
.conta-checkbox-label input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.conta-form__alt {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.conta-form__alt a {
  color: var(--cta);
  font-weight: 500;
}
.conta-back {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.conta-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--cta);
  font-weight: 600;
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  margin: -0.35rem -0.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.conta-back a:hover {
  color: var(--cta-hover);
  background: rgba(196, 174, 114, 0.1);
  border-color: rgba(196, 174, 114, 0.28);
}
.conta-back a:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
.conta-empty {
  padding: 1.65rem clamp(1.1rem, 3vw, 1.5rem);
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 174, 114, 0.22);
  background: linear-gradient(168deg, rgba(24, 21, 18, 0.9) 0%, rgba(12, 11, 10, 0.78) 55%, rgba(8, 7, 6, 0.85) 100%);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 252, 245, 0.045);
}
.conta-empty__title {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.conta-empty__text {
  margin: 0 0 0.65rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}
.conta-pedidos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.conta-pedido-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 1.05rem 1.15rem;
  background: linear-gradient(168deg, rgba(26, 23, 20, 0.98) 0%, rgba(14, 12, 10, 0.94) 50%, rgba(10, 9, 8, 0.92) 100%);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 252, 245, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .conta-pedido-card:hover {
    border-color: rgba(196, 174, 114, 0.35);
    box-shadow:
      0 14px 40px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 252, 245, 0.055);
    transform: translateY(-2px);
  }
}
.conta-pedido-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}
.conta-pedido-card__id {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.conta-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  border: 1px solid transparent;
}
.conta-tag--ok {
  background: rgba(143, 188, 154, 0.22);
  color: var(--ok);
  border-color: rgba(143, 188, 154, 0.35);
}
.conta-tag--wait {
  background: rgba(196, 174, 114, 0.2);
  color: var(--cta);
  border-color: rgba(196, 174, 114, 0.35);
}
.conta-tag--muted {
  background: rgba(143, 136, 124, 0.2);
  color: var(--muted);
  border-color: rgba(143, 136, 124, 0.28);
}
.conta-pedido-card__nome {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.conta-pedido-card__var {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.9rem;
}
.conta-pedido-card__meta {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}
.conta-pedido-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.conta-detail-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .conta-page--pedido .conta-detail-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    max-width: 52rem;
    margin: 0 auto;
  }
}
.conta-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.conta-timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.65rem;
  padding-bottom: 1.1rem;
}
.conta-timeline__step:last-child {
  padding-bottom: 0;
}
.conta-timeline__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 1.1rem;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.conta-timeline__step--done:not(:last-child)::before {
  background: linear-gradient(var(--cta), var(--border));
}
.conta-timeline__dot {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--border);
  justify-self: center;
}
.conta-timeline__step--done .conta-timeline__dot {
  background: var(--cta);
  box-shadow: 0 0 0 3px rgba(196, 174, 114, 0.25);
}
.conta-timeline__step--current .conta-timeline__dot {
  background: var(--cta);
  animation: conta-pulse 2s ease-in-out infinite;
}
@keyframes conta-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(196, 174, 114, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(196, 174, 114, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .conta-timeline__step--current .conta-timeline__dot {
    animation: none;
  }
}
.conta-timeline__body strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.92rem;
}
.conta-timeline__body p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}
.conta-dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.conta-dl > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
  font-size: 0.88rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 250, 235, 0.06);
}
.conta-dl > div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.conta-dl dt {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}
.conta-dl dd {
  margin: 0;
  color: var(--text);
}
.conta-obs {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.conta-card__cta {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
  align-items: center;
}
.conta-page--pedido .conta-card {
  border-color: rgba(196, 174, 114, 0.12);
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255, 252, 245, 0.035);
}

.checkout-conta-banner {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 174, 114, 0.35);
  background: rgba(196, 174, 114, 0.1);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
}
.checkout-conta-banner p {
  margin: 0;
}
.checkout-conta-banner a {
  color: var(--cta);
  font-weight: 600;
}
.checkout-conta-banner a:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
  border-radius: 2px;
}
.checkout-conta-banner__em {
  font-weight: 600;
  word-break: break-all;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.65rem clamp(1rem, 4vw, 1.75rem) 3.75rem;
  flex: 1;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  main { padding-top: 2.15rem; padding-bottom: 4.5rem; }
}

#conteudo-principal {
  scroll-margin-top: 6.5rem;
}
@media (min-width: 720px) {
  #conteudo-principal {
    scroll-margin-top: 5.5rem;
  }
}

.hero {
  text-align: center;
  padding: 2.15rem 0 2.65rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.15rem;
}
.hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 5vw, 2.95rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
  font-optical-sizing: auto;
}
.hero p { margin: 0; color: var(--muted); max-width: 36rem; margin-inline: auto; }

.hero--sell {
  position: relative;
  background:
    linear-gradient(155deg, rgba(196, 174, 114, 0.07) 0%, transparent 46%),
    linear-gradient(180deg, rgba(22, 19, 16, 0.98) 0%, rgba(8, 7, 6, 0.55) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 252, 245, 0.04);
  padding: 2.65rem 1.4rem 2.35rem;
  margin-bottom: 2.15rem;
  overflow: hidden;
}
.hero--atelier .hero-atelier__frame {
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(196, 174, 114, 0.14);
  border-radius: calc(var(--radius-lg) - 9px);
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 252, 245, 0.03);
}
.hero--atelier {
  padding-top: 2.85rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 899px) and (min-width: 720px) {
  .hero--sell {
    padding: 2.15rem clamp(1rem, 3vw, 1.35rem) 1.95rem;
  }
  .hero--atelier {
    padding-top: 2.25rem;
    padding-bottom: 2rem;
  }
}
.hero--apex.hero--sell {
  isolation: isolate;
}
.hero-apex-glow {
  position: absolute;
  inset: -40% -30% auto -30%;
  height: 85%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 18% 35%, rgba(196, 174, 114, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 25%, rgba(140, 110, 160, 0.09), transparent 50%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(80, 120, 140, 0.06), transparent 45%);
  opacity: 0.85;
}
.hero--apex .hero-kicker,
.hero--apex h1,
.hero--apex .hero-sub,
.hero--apex .hero-lead,
.hero--apex .hero-promo-chips,
.hero--apex .trust-strip,
.hero--apex .cro-magnet-stats,
.hero--apex .cro-hero-cta,
.hero--apex .busca,
.hero--apex .cro-social-proof {
  position: relative;
  z-index: 1;
}
.hero-kicker {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 0.75rem !important;
  max-width: none !important;
  font-weight: 600;
  opacity: 0.95;
}
.hero-sub { max-width: 34rem !important; margin-top: 0.85rem !important; line-height: 1.65; }
.hero-sub strong { color: var(--text); font-weight: 600; }

/* Home hero refinado: marca + chips + busca */
.hero--home-refined .hero-kicker--split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.75rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.65rem !important;
}
.hero-kicker__line {
  opacity: 0.9;
}
.hero-kicker__badge {
  letter-spacing: 0.2em;
  font-size: 0.62rem;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(196, 174, 114, 0.38);
  border-radius: var(--radius-sm);
  background: rgba(8, 7, 6, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.05);
}
.hero-lead {
  max-width: 36rem;
  margin: 0.95rem auto 0;
  padding: 0 0.35rem;
  font-size: clamp(0.92rem, 2.1vw, 1.02rem);
  line-height: 1.65;
  color: var(--muted);
  text-align: center;
}
.hero-lead a {
  color: var(--cta);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 174, 114, 0.38);
}
.hero-lead a:hover {
  color: var(--cta-hover);
  border-bottom-color: var(--cta-hover);
}
.hero-promo-chips {
  list-style: none;
  margin: 1.15rem auto 0;
  padding: 0 0.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.5rem 0.55rem;
  max-width: 42rem;
}
.hero-promo-chips__i {
  margin: 0;
  padding: 0.5rem 0.85rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(8, 7, 6, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.04);
  text-align: center;
  min-width: min(100%, 9.5rem);
}
.hero-promo-chips__k {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(168, 160, 148, 0.95);
  margin-bottom: 0.2rem;
}
.hero-promo-chips__v {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.hero-promo-chips__v strong {
  color: var(--cta);
  font-weight: 700;
}
.hero-promo-chips__i--terms {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.hero-promo-chips__i--terms a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cta);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 174, 114, 0.4);
}
.hero-promo-chips__i--terms a:hover {
  color: var(--cta-hover);
  border-bottom-color: var(--cta-hover);
}
.home-search-strip {
  max-width: 1120px;
  margin: 0 auto 1.85rem;
  padding: 0 clamp(1rem, 4vw, 1.25rem);
}
.home-search-strip__inner {
  padding: 1.05rem clamp(0.9rem, 2.5vw, 1.4rem);
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 174, 114, 0.18);
  background: linear-gradient(168deg, rgba(24, 21, 18, 0.92) 0%, rgba(12, 11, 10, 0.78) 52%, rgba(8, 7, 6, 0.82) 100%);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 252, 245, 0.045);
}
.home-search-strip .busca,
.home-search-strip .busca--cro {
  margin-top: 0;
}
.home-search-strip .busca {
  max-width: 36rem;
}

.trust-strip {
  list-style: none;
  padding: 0;
  margin: 1.6rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  max-width: 40rem;
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--muted);
}
.trust-strip li {
  padding-left: 1.1rem;
  position: relative;
}
.trust-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta);
}

.section-title {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  letter-spacing: 0.02em;
  font-family: var(--font-ui);
  font-weight: 600;
}
.section-title--display {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
  line-height: 1.15;
}
.section-loja .section-title--display::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0.9rem 0 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cta), transparent);
  opacity: 0.85;
}
.section-sub {
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}

.busca {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.busca input {
  flex: 1 1 12rem;
  padding: 0.7rem 1rem;
  min-height: var(--tap-min);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-card-inner);
  color: var(--text);
  min-width: 0;
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.busca input:hover { border-color: rgba(196, 174, 114, 0.35); }
.busca .btn { min-height: var(--tap-min); padding-left: 1.35rem; padding-right: 1.35rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: linear-gradient(145deg, #c9b06e 0%, var(--cta) 45%, #a89258 100%);
  color: #141008;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 250, 235, 0.1) inset;
}
.btn:hover {
  background: linear-gradient(145deg, var(--cta-hover) 0%, #c9b06e 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 250, 235, 0.14) inset;
}
.btn:focus-visible {
  outline: 2px solid var(--cta-hover);
  outline-offset: 3px;
}
button:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
.btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover { color: var(--text); border-color: var(--accent); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn:active:not(:disabled) { transform: scale(0.98); transition: transform 0.08s var(--ease-out); }
.btn--sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
  border-radius: 999px;
}
.btn--danger-outline {
  border-color: rgba(224, 128, 128, 0.55) !important;
  color: var(--danger) !important;
}
.btn--danger-outline:hover {
  background: rgba(224, 128, 128, 0.12) !important;
  border-color: var(--danger) !important;
}
.btn--danger-text {
  color: var(--danger) !important;
  border-color: transparent !important;
}
.btn--danger-text:hover {
  background: rgba(224, 128, 128, 0.1) !important;
}
.btn[aria-busy="true"] {
  cursor: wait;
  opacity: 0.88;
  pointer-events: none;
}
.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
}
.btn--disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}
a.btn--disabled {
  pointer-events: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.1rem, 3vw, 1.65rem);
}
.section-loja > .grid {
  gap: clamp(1.15rem, 2.8vw, 1.85rem);
}
@media (min-width: 480px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  }
}
@media (min-width: 900px) {
  .section-loja > .grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 272px), 1fr));
  }
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  min-width: 0;
  transition: border-color 0.35s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.card a { display: block; color: inherit; text-decoration: none; }
.card a:hover { text-decoration: none; }
.card a:focus-visible {
  outline: none;
}
.card:hover,
.card:focus-within {
  border-color: rgba(196, 174, 114, 0.38);
  box-shadow: var(--shadow-card-hover);
}
.card:focus-within {
  box-shadow: var(--shadow-card-hover), 0 0 0 2px rgba(196, 174, 114, 0.22);
}
@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .card:focus-within {
    transform: translateY(-4px);
  }
  .card:hover .card__img,
  .card:focus-within .card__img {
    transform: scale(1.045);
  }
}
.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(165deg, #161412 0%, #0d0c0b 55%, #090807 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.card--cro .card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 36%,
    rgba(255, 252, 245, 0.14) 48%,
    transparent 60%
  );
  transform: translateX(-130%) skewX(-10deg);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
}
.card--cro:hover .card__media::after,
.card--cro:focus-within .card__media::after {
  opacity: 1;
  transform: translateX(130%) skewX(-10deg);
}
.card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  background: transparent;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .card:hover,
  .card:focus-within {
    transform: none;
  }
  .card__img {
    transition: none;
  }
  .card:hover .card__img,
  .card:focus-within .card__img {
    transform: none;
  }
  .card--cro .card__media::after {
    transition: none;
  }
  .card--cro:hover .card__media::after,
  .card--cro:focus-within .card__media::after {
    opacity: 0;
    transform: translateX(-130%) skewX(-10deg);
  }
}

/* Marca d'água — elemento real sobre a foto (evita ::before no link do combo, que inclui a legenda) */
.ddm-watermark {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  width: clamp(1.75rem, 16%, 3.1rem);
  height: clamp(1.75rem, 16%, 3.1rem);
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NCA2NCI+PHJlY3Qgd2lkdGg9IjY0IiBoZWlnaHQ9IjY0IiByeD0iMTQiIGZpbGw9IiMwODA3MDYiLz48Y2lyY2xlIGN4PSIzMiIgY3k9IjMyIiByPSIyMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjYzRhZTcyIiBzdHJva2Utd2lkdGg9IjIiLz48Y2lyY2xlIGN4PSIzMiIgY3k9IjMyIiByPSI4IiBmaWxsPSIjYzRhZTcyIi8+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.92;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}
.ddm-watermark--thumb {
  right: 0.12rem;
  bottom: 0.12rem;
  width: 1.35rem;
  height: 1.35rem;
  opacity: 0.88;
}
.home-promo-combo__pic {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.card__body { padding: 1.15rem 1.2rem 1.45rem; }
.card--cro .card__body {
  border-top: 1px solid rgba(255, 250, 235, 0.06);
  background: linear-gradient(180deg, rgba(255, 250, 235, 0.028) 0%, transparent 52%);
}
.card__title {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-weight: 500;
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  line-height: 1.22;
  font-optical-sizing: auto;
}
.card__price {
  margin: 0;
  color: var(--cta);
  font-weight: 600;
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.card__price-was {
  margin-right: 0.35rem;
  font-weight: 500;
  font-size: 0.92em;
  color: var(--muted, #8a8278);
  text-decoration: line-through;
}
.card__guarantee {
  margin: 0.35rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ok);
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.92;
}
.card__cta {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cta);
  letter-spacing: 0.02em;
}
.card a:hover .card__cta { color: var(--cta-hover); }

.preco {
  font-weight: 600;
  color: var(--cta);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.breadcrumb {
  display: block;
  margin: 0 0 1.25rem;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  margin: 0 -0.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.breadcrumb a:hover {
  color: var(--cta);
  background: rgba(196, 174, 114, 0.08);
  text-decoration: none;
}

.produto-loja {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 1.35rem;
  font-weight: 500;
  max-width: 36rem;
  line-height: 1.5;
}
.produto-loja a {
  color: var(--cta);
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 600;
  text-decoration: none;
}
.produto-loja a:hover {
  color: var(--cta-hover);
  text-decoration: underline;
}
.produto-loja strong {
  color: rgba(250, 246, 240, 0.88);
  font-weight: 600;
}
.produto-trust-links {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.15rem;
  font-size: 0.84rem;
  font-weight: 500;
}
.produto-trust-links a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 174, 114, 0.35);
}
.produto-trust-links a:hover {
  color: var(--cta);
  border-bottom-color: var(--cta);
}
.produto-cta-pledge {
  margin: 0.5rem 0 0.35rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(250, 246, 240, 0.88);
  background: rgba(196, 174, 114, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 174, 114, 0.2);
  max-width: 36rem;
}
.produto-cta-pledge a {
  color: var(--cta);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 174, 114, 0.35);
}
.produto-cta-pledge a:hover {
  color: var(--cta-hover);
}
.produto-micro--secure {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}
.produto-micro--secure .ic-https {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: var(--cta);
  opacity: 0.9;
}
.produto-micro--secure .ic-https svg {
  display: block;
}
.produto-envio {
  margin: 0 0 1.05rem;
  padding: 0.78rem 1rem;
  font-size: 0.87rem;
  line-height: 1.55;
  color: rgba(220, 212, 195, 0.92);
  font-weight: 400;
  background: rgba(16, 14, 12, 0.65);
  border: 1px solid rgba(255, 250, 235, 0.07);
  border-radius: var(--radius-md);
  border-left: 3px solid rgba(196, 174, 114, 0.5);
  max-width: 36rem;
  box-shadow: inset 0 1px 0 rgba(255, 250, 235, 0.03);
}
.produto-envio strong {
  color: var(--cta);
  font-weight: 600;
}
.produto-cta-wrap {
  margin-top: 1.65rem;
}
.page-produto .produto-cta-wrap .btn--lg {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}
.produto-micro {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 28rem;
}
.produto-hint {
  font-size: 0.88rem;
  color: var(--cta);
  margin-top: 0.5rem;
}

.checkout-page {
  width: 100%;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.5rem;
}
.checkout-page .breadcrumb {
  text-align: center;
  margin-bottom: 1rem;
}
.checkout-page .breadcrumb a {
  justify-content: center;
}
.checkout-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-optical-sizing: auto;
  margin: 0 0 0.65rem;
  text-align: center;
}
.checkout-value-line {
  margin: 0 0 0.65rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(250, 246, 240, 0.92);
  background: rgba(196, 174, 114, 0.1);
  border: 1px solid rgba(196, 174, 114, 0.22);
  border-radius: var(--radius-sm);
  max-width: 38rem;
}
.checkout-value-line strong {
  color: var(--cta);
}
.checkout-lead {
  margin: 0 auto 0.55rem;
  max-width: 32rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.62;
}
.checkout-lead-sub {
  margin: 0 auto 1.15rem;
  max-width: 30rem;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(180, 172, 162, 0.95);
  line-height: 1.55;
}
.checkout-prazo-entrega {
  margin: -0.35rem auto 1.25rem;
  max-width: 32rem;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(232, 224, 210, 0.92);
  padding: 0.65rem 1rem;
  background: rgba(196, 174, 114, 0.08);
  border: 1px solid rgba(196, 174, 114, 0.2);
  border-radius: var(--radius-sm);
}
.checkout-prazo-entrega strong {
  color: var(--cta);
  font-weight: 600;
}
.checkout-prazo-entrega--inline {
  margin-top: 0.15rem;
  margin-bottom: 0.65rem;
  color: rgba(232, 224, 210, 0.9);
}
.checkout-prazo-entrega--inline strong {
  color: var(--cta);
}

.checkout-pix-total-hint {
  margin: 0.35rem 0 0.75rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(232, 224, 210, 0.9);
  background: rgba(40, 44, 52, 0.45);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 174, 114, 0.15);
}
.checkout-pix-total-hint strong {
  color: var(--cta);
  font-weight: 600;
}
.checkout-pix-app-hint {
  margin-top: 0.35rem;
  margin-bottom: 0.85rem;
}

.checkout-resumo { margin: 0.5rem 0 0.25rem; line-height: 1.45; }
.checkout-preco {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cta);
  font-variant-numeric: tabular-nums;
}
.checkout-seguro {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  padding: 0.95rem 1.1rem;
  background: rgba(18, 16, 14, 0.65);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  line-height: 1.62;
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.03);
}
.panel-hint { font-size: 0.88rem; color: var(--muted); margin: 0 0 1rem; }
.checkout-panel--pix h2 { color: var(--cta); }

.produto-layout {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2.25rem);
  grid-template-columns: 1fr;
  align-items: start;
}
.produto-layout > * {
  min-width: 0;
}
@media (min-width: 900px) {
  .produto-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.75rem, 3.5vw, 2.85rem);
  }
}

/* Ficha do produto — ritmo geral e galeria “âncora” no desktop */
.page-produto {
  padding-top: 0.25rem;
}
.page-produto .breadcrumb--cro {
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 250, 235, 0.06);
}
@media (min-width: 900px) and (min-height: 620px) {
  .page-produto .produto-layout > div:first-child {
    position: sticky;
    top: 5.5rem;
    align-self: start;
    z-index: 2;
  }
}

.produto-related {
  margin: 2.5rem auto 0;
  padding: 1.65rem clamp(1rem, 3vw, 1.5rem) 2.15rem;
  max-width: 1200px;
  border-top: 1px solid rgba(196, 174, 114, 0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, rgba(22, 19, 16, 0.55) 0%, rgba(12, 10, 9, 0.2) 45%, transparent 100%);
  box-shadow: inset 0 1px 0 rgba(255, 250, 235, 0.04);
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}
.produto-related__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.produto-related__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}
.produto-related__sub {
  margin: 0;
  max-width: 40rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 300;
}
.produto-related__sub strong {
  color: rgba(250, 246, 240, 0.92);
  font-weight: 600;
}
.produto-related__grid {
  margin-top: 1.5rem;
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

/* Avaliações na ficha do produto */
.produto-avaliacao-banner {
  margin-top: 1.5rem;
  max-width: 52rem;
}
.produto-avaliacoes {
  margin-top: 2rem;
  padding: 1.25rem clamp(1rem, 3vw, 1.35rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  max-width: 52rem;
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}
.produto-avaliacoes__head {
  margin-bottom: 1rem;
}
.produto-avaliacoes__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.8vw, 1.25rem);
  font-weight: 600;
}
.produto-avaliacoes__resumo {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.produto-avaliacoes__avg {
  font-weight: 700;
  color: var(--cta);
  font-variant-numeric: tabular-nums;
}
.produto-avaliacoes__stars {
  color: var(--cta);
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}
.produto-avaliacoes__empty-lead {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
.produto-avaliacoes__cta-wrap {
  margin: 0 0 1rem;
}
.produto-avaliacoes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.produto-avaliacao {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.produto-avaliacoes__list .produto-avaliacao:first-child {
  padding-top: 0;
  border-top: 0;
}
.produto-avaliacao__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
}
.produto-avaliacao__nome {
  font-weight: 600;
  color: var(--text);
}
.produto-avaliacao__stars {
  color: var(--cta);
  letter-spacing: 0.05em;
}
.produto-avaliacao__data {
  color: var(--muted);
  font-size: 0.78rem;
}
.produto-avaliacao__titulo {
  margin: 0 0 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.produto-avaliacao__texto {
  margin: 0;
  font-size: 0.88rem;
  color: var(--accent-soft);
  line-height: 1.55;
  white-space: pre-wrap;
}
.produto-avaliacao__fotos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}
.produto-avaliacao__foto-a {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  line-height: 0;
}
.produto-avaliacao__foto {
  width: min(112px, 100%);
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.conta-avaliar__hint {
  margin: 0;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  color: rgba(232, 224, 210, 0.92);
  line-height: 1.55;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 174, 114, 0.22);
  background: rgba(196, 174, 114, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.03);
}
.conta-form--avaliar input[type='file'] {
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.produto-galeria {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 24px 60px rgba(0, 0, 0, 0.22);
}
.produto-galeria__main {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  background: var(--bg-card);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0.16s ease;
}
.produto-galeria__main.is-switching {
  opacity: 0.88;
}
@media (min-width: 720px) {
  .produto-galeria__main {
    max-height: min(88vh, 920px);
  }
}
.thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.ddm-thumb-wrap {
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 auto;
}
.ddm-thumb-idx {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.2rem 0.34rem;
  border-radius: 6px;
  background: rgba(10, 9, 8, 0.88);
  color: var(--cta);
  border: 1px solid rgba(196, 174, 114, 0.4);
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.ddm-thumb-wrap img {
  display: block;
  vertical-align: top;
}
.thumbs img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.thumbs img:hover {
  border-color: rgba(196, 174, 114, 0.45);
}
.thumbs img.is-active {
  border-color: var(--cta);
  box-shadow: 0 0 0 1px rgba(196, 174, 114, 0.35), 0 6px 18px rgba(0, 0, 0, 0.35);
}
.thumbs img:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
@media (min-width: 720px) {
  .thumbs img {
    width: 88px;
    height: 88px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .thumbs img {
    transition: none;
  }
}

.produto-video {
  margin-top: 1.25rem;
}
.produto-video__el {
  display: block;
  width: 100%;
  max-height: min(70vh, 640px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: #0a0a0a;
  box-shadow: var(--shadow-card);
}
.produto-video__wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 9;
  background: #0d0d0d;
}
.produto-video__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-produto .produto-swipe-hint {
  display: block;
  margin: 0.7rem auto 0.15rem;
  padding: 0.42rem 0.85rem;
  max-width: min(100%, 26rem);
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(205, 196, 178, 0.95);
  text-align: center;
  background: rgba(14, 12, 10, 0.72);
  border: 1px solid rgba(255, 250, 235, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 250, 235, 0.04);
}
.page-produto .produto-swipe-hint--split {
  max-width: min(100%, 32rem);
  border-radius: 14px;
  border-color: rgba(196, 174, 114, 0.22);
  background: linear-gradient(165deg, rgba(36, 32, 26, 0.88) 0%, rgba(14, 12, 10, 0.78) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.06),
    0 8px 22px rgba(0, 0, 0, 0.2);
}
.page-produto .produto-swipe-hint--split strong {
  color: rgba(248, 242, 228, 0.98);
  font-weight: 700;
}
.produto-swipe-hint__mob,
.produto-var-picker__lead-mob {
  display: none;
}
.produto-swipe-hint__desk,
.produto-var-picker__lead-desk {
  display: inline;
}
.produto-passos-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(232, 224, 206, 0.96);
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 174, 114, 0.28);
  background: linear-gradient(165deg, rgba(34, 30, 26, 0.92) 0%, rgba(14, 12, 10, 0.88) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.05),
    0 8px 22px rgba(0, 0, 0, 0.18);
}
.produto-passos-mobile__step {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  white-space: nowrap;
}
.produto-passos-mobile__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(12, 10, 8, 0.92);
  background: linear-gradient(145deg, rgba(214, 196, 140, 1) 0%, rgba(196, 174, 114, 0.92) 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}
.produto-passos-mobile__arr {
  color: rgba(196, 174, 114, 0.55);
  font-weight: 700;
  font-size: 0.72rem;
  user-select: none;
}

.form-row input:-webkit-autofill,
.form-row input:-webkit-autofill:hover,
.form-row input:-webkit-autofill:focus,
.form-row textarea:-webkit-autofill,
.form-row textarea:-webkit-autofill:hover,
.form-row textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #181512 inset;
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  border-color: var(--border-strong);
}

.form-grid {
  display: grid;
  gap: 1rem;
  min-width: 0;
}
@media (min-width: 640px) {
  .form-grid--checkout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .form-row--full {
    grid-column: 1 / -1;
  }
}
.form-row { display: grid; gap: 0.4rem; min-width: 0; }
.form-row label {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  min-height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-card-inner);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row textarea { min-height: 6.5rem; resize: vertical; }
.form-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23a89888'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a89888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}
.form-row input:hover, .form-row select:hover, .form-row textarea:hover {
  border-color: rgba(196, 174, 114, 0.35);
}
.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible,
.busca input:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 0;
  border-color: var(--cta);
}
.cep-status {
  min-height: 1.25rem;
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--cta);
}
.checkout-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem 1.5rem;
  margin-top: 1.35rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 252, 245, 0.03);
}
.checkout-panel h2 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  font-optical-sizing: auto;
}

.turnstile-row {
  margin: 0.65rem 0 0.35rem;
  min-height: 4.25rem;
}
.turnstile-row .cf-turnstile > iframe {
  border-radius: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.pay-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.65rem;
}
.pay-option {
  display: block;
  cursor: pointer;
}
.pay-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pay-option__box {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
}
.pay-option input:focus-visible + .pay-option__box {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
.pay-option input:checked + .pay-option__box {
  border-color: var(--cta);
  background: rgba(196, 174, 114, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.04);
}
.pay-option__box strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.pay-option__box small { display: block; color: var(--muted); font-size: 0.8rem; line-height: 1.35; }

/* Checkout — grade de meios (referência tipo app delivery, tema DDM) */
.checkout-pay-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.checkout-pay-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1.15rem;
}
.checkout-pay-lock__ic {
  display: flex;
  align-items: center;
  color: var(--cta);
  opacity: 0.92;
}
.checkout-pay-lock__ic svg {
  display: block;
}

.ddm-pay-fieldset {
  margin-bottom: 1.5rem;
}
.ddm-pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.ddm-pay-card .pay-option__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 5.75rem;
  padding: 0.85rem 0.6rem;
}
.ddm-pay-card--pix {
  grid-column: 1 / -1;
}
.ddm-pay-card--pix .pay-option__box {
  min-height: 4.5rem;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
}
.ddm-pay-card--pix .pay-option__box strong { margin-bottom: 0; }
.ddm-pay-card--pix .pay-option__box small {
  width: 100%;
  order: 3;
  margin-top: -0.15rem;
}
.ddm-pay-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.4rem;
  border-radius: 10px;
  background: rgba(10, 9, 8, 0.5);
  border: 1px solid var(--border);
  color: var(--muted);
}
.ddm-pay-card__icon--card { color: #c8c0b4; }
.ddm-pay-card__icon--debit { color: #9a9288; }
.ddm-pay-card__icon--pix {
  color: var(--ok);
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.35);
  margin-bottom: 0;
}
.ddm-pay-card--pix .ddm-pay-card__icon--pix {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
}
.pay-option.ddm-pay-card.is-active .pay-option__box,
.pay-option.ddm-pay-card input:checked + .pay-option__box {
  border-color: var(--cta);
  background: rgba(196, 174, 114, 0.1);
}
.ddm-pay-card--pix input:checked + .pay-option__box,
.ddm-pay-card--pix.is-active .pay-option__box {
  border-color: rgba(74, 222, 128, 0.55);
  background: rgba(74, 222, 128, 0.1);
}

.ddm-pay-card--wallet {
  grid-column: 1 / -1;
}
.ddm-pay-card__icon--wallet {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--cta);
  background: rgba(196, 174, 114, 0.15);
  border-color: rgba(196, 174, 114, 0.45);
}
.ddm-pay-card--wallet input:checked + .pay-option__box,
.ddm-pay-card--wallet.is-active .pay-option__box {
  border-color: rgba(196, 174, 114, 0.65);
  background: rgba(196, 174, 114, 0.12);
}
.checkout-wallet-gate {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: rgba(10, 9, 8, 0.35);
}
.conta-hero__lead--wallet {
  margin-top: 0.65rem;
  padding: 0.55rem 0.85rem;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(220, 212, 196, 0.95);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 174, 114, 0.28);
  background: rgba(196, 174, 114, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.04);
}
.conta-hero__lead--wallet strong {
  color: var(--cta);
  font-weight: 700;
}

.checkout-panel--cartao h2 { color: var(--accent); }

.sim-cartao-bloco {
  border-style: dashed;
  border-color: var(--danger);
  background: rgba(248, 113, 113, 0.06);
}
.ddm-cartao-bloco {
  margin-top: 0;
  margin-bottom: 1.25rem;
  border: 1px dashed rgba(196, 174, 114, 0.45);
  background: rgba(196, 174, 114, 0.06);
}
.ddm-cartao-bloco h2 { color: var(--cta); }
.admin-sim-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(248, 113, 113, 0.25);
  color: var(--danger);
  margin-right: 0.25rem;
  vertical-align: middle;
}
.pix-box { text-align: center; margin-top: 1rem; }
.pix-box img { max-width: 260px; border-radius: 8px; }
.pix-payload {
  word-break: break-all;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.pix-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.pix-copiado {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ok);
}

.toast {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--bg-card);
  color: var(--text);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  z-index: 9000;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  max-width: 90vw;
  font-size: 0.95rem;
}
.toast--show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.alert {
  padding: 0.85rem 1.05rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.92rem;
}
.alert--err {
  background: rgba(224, 128, 128, 0.12);
  color: #f0b0b0;
  border: 1px solid rgba(224, 128, 128, 0.4);
}
.alert--ok {
  background: rgba(143, 188, 154, 0.12);
  color: #b8e0c8;
  border: 1px solid rgba(143, 188, 154, 0.35);
}
.checkout-page .alert {
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 252, 245, 0.04);
}

.site-footer {
  border-top: 1px solid var(--border-strong);
  padding: 3rem 1.25rem calc(2.35rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgba(196, 174, 114, 0.07), transparent 52%),
    linear-gradient(180deg, transparent, rgba(6, 5, 4, 0.94));
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-crest {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-indent: 0.38em;
  color: var(--cta);
  opacity: 0.9;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 3.5rem;
  min-height: 3.5rem;
  padding: 0 0.5rem;
  border: 1px solid rgba(196, 174, 114, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.06);
}
.footer-lead { max-width: 38rem; margin: 0 auto 0.65rem; line-height: 1.6; color: var(--text); }
.footer-lead__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
}
.footer-trust { margin: 0 0 1.25rem; font-size: 0.85rem; color: var(--accent-soft); letter-spacing: 0.04em; }
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem 0.5rem;
  margin: 0 0 1.25rem;
}
.site-footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-min);
  padding: 0.35rem 0.9rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.site-footer__link:hover {
  color: var(--cta-hover);
  background: rgba(196, 174, 114, 0.1);
  border-color: rgba(196, 174, 114, 0.25);
  text-decoration: none;
}
.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.9;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1.15rem;
  z-index: 90;
  width: 3rem;
  height: 3rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  color: #141008;
  cursor: pointer;
  border: 1px solid rgba(196, 174, 114, 0.45);
  border-radius: 50%;
  background: linear-gradient(145deg, #c9b06e 0%, var(--cta) 50%, #a89258 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  filter: brightness(1.06);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
.wa-fab {
  position: fixed;
  left: max(0.85rem, env(safe-area-inset-left, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 85;
  width: 3.35rem;
  height: 3.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s var(--ease-out), filter 0.2s ease;
}
.wa-fab:hover {
  filter: brightness(1.07);
  transform: scale(1.05);
}
.wa-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.wa-fab__ic {
  display: block;
  margin: 0;
}

/* Assistente de ajuda (FAQ) — canto inferior direito, acima do “voltar ao topo” */
.help-assist {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right, 0px));
  bottom: max(5.1rem, calc(1.15rem + 3.35rem + 0.45rem));
  z-index: 88;
  font-family: var(--font-body, inherit);
}
.help-assist__fab {
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(196, 174, 114, 0.55);
  background: linear-gradient(145deg, #1a1814 0%, #0d0c0a 100%);
  color: var(--cta, #c4ae72);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s var(--ease-out, ease), filter 0.2s ease;
}
.help-assist__fab:hover {
  filter: brightness(1.12);
  transform: scale(1.04);
}
.help-assist__fab:focus-visible {
  outline: 2px solid var(--cta, #c4ae72);
  outline-offset: 3px;
}
.help-assist--open .help-assist__fab {
  opacity: 0.92;
}
.help-assist__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.65rem);
  width: min(22rem, calc(100vw - 1.75rem));
  max-height: min(28rem, 70vh);
  max-height: min(28rem, calc(100dvh - 9rem));
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: var(--radius-md, 12px);
  border: 1px solid rgba(196, 174, 114, 0.35);
  background: linear-gradient(180deg, #12110f 0%, #0a0908 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  color: rgba(250, 246, 240, 0.92);
}
.help-assist__panel[hidden] {
  display: none !important;
}
.help-assist__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.help-assist__title {
  margin: 0;
  font-family: var(--font-display, inherit);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f5edd4;
}
.help-assist__close {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(250, 246, 240, 0.85);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}
.help-assist__close:hover {
  background: rgba(255, 255, 255, 0.12);
}
.help-assist__intro {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(250, 246, 240, 0.72);
}
.help-assist__faqs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.help-assist__details {
  border: 1px solid rgba(196, 174, 114, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.help-assist__summary {
  padding: 0.55rem 0.65rem;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: #e8d9a8;
}
.help-assist__summary::-webkit-details-marker {
  display: none;
}
.help-assist__answer {
  margin: 0;
  padding: 0 0.65rem 0.65rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(250, 246, 240, 0.78);
}
.help-assist__answer a {
  color: #e8d9a8;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.help-assist__cta {
  margin: 0.9rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(196, 174, 114, 0.22);
}
.help-assist__wa {
  display: block;
  text-align: center;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  background: #25d366;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: filter 0.15s ease;
}
.help-assist__wa:hover {
  filter: brightness(1.08);
}
.help-assist__wa--mail {
  background: linear-gradient(145deg, #c9b06e 0%, var(--cta, #c4ae72) 50%, #a89258 100%);
  color: #141008 !important;
}
@media (min-width: 1100px) {
  .back-to-top {
    right: calc(50% - min(520px, 50vw) + 0.5rem);
  }
  .help-assist {
    right: calc(50% - min(520px, 50vw) + 0.5rem);
  }
}

.legal {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0.35rem 0 1.5rem;
  text-wrap: pretty;
}
.page-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cta);
  font-weight: 600;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.05rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
  font-optical-sizing: auto;
  margin: 0 0 1.5rem;
  color: var(--text);
}
.legal h1::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 1rem 0 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cta), transparent);
  opacity: 0.85;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 1.75rem 0 0.65rem;
  line-height: 1.25;
}
.legal p {
  color: var(--muted);
  margin: 0 0 1.15rem;
  line-height: 1.72;
  font-size: 1.02rem;
  font-weight: 300;
}
.legal p strong { font-weight: 600; color: var(--text); }
.legal .lead {
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.68;
}
.legal p:last-child { margin-bottom: 0; }
.legal .btn { margin-top: 0.65rem; }

/* —— Admin —— */
.admin-wrap { max-width: 1100px; margin: 0 auto; }
.admin-page { scroll-margin-top: 1rem; }

.admin-top {
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-strong);
}
.admin-top__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.admin-top__kicker {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 600;
}
.admin-top__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.admin-top__logout { margin: 0; align-self: center; }

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.admin-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-min);
  padding: 0.35rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.admin-nav__link:hover {
  color: var(--text);
  background: rgba(196, 174, 114, 0.08);
  text-decoration: none;
}
.admin-nav__link.is-active {
  color: #141008;
  background: linear-gradient(145deg, #c9b06e 0%, var(--cta) 45%, #a89258 100%);
  border-color: rgba(196, 174, 114, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 250, 235, 0.1) inset;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 252, 245, 0.03);
}
.admin-toolbar--split { align-items: flex-start; }
.admin-scroll-hint {
  display: none;
  margin: 0 0 0.7rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.76rem;
  line-height: 1.45;
  font-weight: 400;
  color: var(--muted);
  text-align: center;
  background: rgba(196, 174, 114, 0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
@media (max-width: 960px) {
  .admin-scroll-hint { display: block; }
}
.admin-toolbar__hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 36rem;
}
.admin-toolbar__form { margin: 0; flex-shrink: 0; display: flex; flex-wrap: wrap; align-items: flex-end; gap: 0.5rem 0.75rem; }
.admin-toolbar__confirm { display: flex; flex-direction: column; gap: 0.2rem; }
.admin-toolbar__confirm-lbl { font-size: 0.78rem; color: var(--muted); max-width: 14rem; line-height: 1.35; }
.admin-toolbar__confirm-input { max-width: 11rem; font-family: ui-monospace, monospace; }

.admin-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
}
.admin-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  min-width: 5.75rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.03);
}
.admin-stat:hover {
  border-color: var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.04), 0 6px 20px rgba(0, 0, 0, 0.15);
}
.admin-stat__n { display: block; font-size: 1.4rem; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.admin-stat__l { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 0.15rem; display: block; }
.admin-stat--pend .admin-stat__n { color: var(--cta); }
.admin-stat--ok .admin-stat__n { color: var(--ok); }
.admin-stat--can .admin-stat__n { color: var(--danger); }

.admin-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 252, 245, 0.03);
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.admin-table th, .admin-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0.6rem;
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.admin-th--actions { text-align: right !important; }
.admin-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--bg-card-inner);
  box-shadow: 0 1px 0 var(--border);
}
.admin-table__row:hover td { background: rgba(196, 174, 114, 0.04); }
.admin-table tbody tr:last-child td { border-bottom: none; }

.admin-status-form {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.admin-select {
  font: inherit;
  font-size: 0.8rem;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  min-width: 7.5rem;
  cursor: pointer;
}
.admin-select:focus-visible { outline: 2px solid var(--cta); outline-offset: 2px; }

.admin-cell--stack .admin-cell__strong { font-weight: 600; color: var(--text); }
.admin-cell--stack .admin-cell__muted { font-size: 0.78rem; color: var(--muted); word-break: break-all; margin-top: 0.2rem; }
.admin-cell--stack .admin-cell__mono { font-size: 0.75rem; font-family: ui-monospace, monospace; color: var(--accent-soft); margin-top: 0.15rem; }
.admin-cell--money { font-weight: 600; font-variant-numeric: tabular-nums; color: var(--cta); white-space: nowrap; }
.admin-cell--id { font-variant-numeric: tabular-nums; color: var(--muted); }
.admin-cell--name { font-weight: 500; max-width: 10rem; }
.admin-cell--obs { font-size: 0.72rem; max-width: 12rem; color: var(--muted); line-height: 1.45; }
.admin-cell--date { font-size: 0.78rem; color: var(--muted); white-space: nowrap; }
.admin-cell__warn { font-size: 0.72rem; color: #c9a090; line-height: 1.4; }

.admin-address-card {
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(10, 9, 8, 0.35);
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 16rem;
}
.admin-address-card__title {
  font-weight: 700;
  color: var(--cta);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.admin-address-card__k { color: var(--muted); margin-right: 0.25rem; }

.admin-cartao-block {
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(196, 174, 114, 0.08);
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 18rem;
}
.admin-cartao-block__title {
  font-weight: 700;
  color: var(--cta);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.admin-cartao-block__k { color: var(--muted); margin-right: 0.35rem; }
.admin-cartao-block__mono { font-family: ui-monospace, monospace; word-break: break-all; }

.admin-pay-tag {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(196, 174, 114, 0.12);
  color: var(--cta-hover);
}

.admin-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.admin-badge--ok { background: rgba(143, 188, 154, 0.2); color: var(--ok); }
.admin-badge--muted { background: rgba(143, 136, 124, 0.2); color: var(--muted); }
.admin-muted { font-size: 0.85em; color: var(--muted); font-weight: 400; }

.admin-link-out { font-weight: 500; text-decoration: none; }
.admin-link-out:hover { text-decoration: underline; }

.admin-cell--actions { text-align: right; white-space: nowrap; }
.admin-actions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
  align-items: center;
}
.admin-inline-form { display: inline; margin: 0; }

.admin-variante-intro {
  margin: 0 0 0.65rem;
  line-height: 1.55;
  max-width: 40rem;
}
.admin-grade-gen {
  margin: 0 0 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(196, 174, 114, 0.06);
}
.admin-grade-gen__summary {
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  list-style: none;
}
.admin-grade-gen__summary::-webkit-details-marker {
  display: none;
}
.admin-grade-gen__body {
  padding: 0.65rem 0.75rem 0.85rem;
  border-top: 1px solid var(--border);
}

.admin-cliente-acoes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
}

.admin-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  background: rgba(20, 18, 16, 0.35);
}
.admin-empty__title { margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 600; }
.admin-empty__text { margin: 0 0 1rem; color: var(--muted); line-height: 1.55; }

.admin-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 252, 245, 0.03);
}
.admin-panel--narrow { max-width: 28rem; }
.admin-panel__lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.admin-form__grid { max-width: 36rem; gap: 1.15rem; }
.admin-form__stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.admin-card-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(10, 9, 8, 0.35);
  padding: 1rem 1.1rem 1.15rem;
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.02);
}
.admin-card-block__title {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.admin-form__grid-sub {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .admin-form__grid-sub--2col {
    grid-template-columns: 1fr 1fr;
  }
  .admin-form__grid-sub--2col .form-row--full {
    grid-column: 1 / -1;
  }
}
.admin-slug-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}
.admin-slug-row__input {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  min-height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-card-inner);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.admin-slug-row__input:hover {
  border-color: rgba(196, 174, 114, 0.35);
}
.admin-slug-row__input:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 0;
  border-color: var(--cta);
}
.admin-slug-row__btn {
  flex: 0 0 auto;
  align-self: center;
}
.admin-slug-preview {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  word-break: break-all;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}
.admin-slug-preview__url {
  font-family: ui-monospace, monospace;
  font-size: 0.76rem;
  color: var(--cta-hover);
  flex: 1 1 10rem;
  min-width: 0;
}
.admin-slug-preview__copy {
  flex: 0 0 auto;
}

.admin-produto-op-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.admin-produto-op-bar__id {
  font-size: 0.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  margin-right: 0.25rem;
}

.admin-preset-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin-top: 0.45rem;
}
.admin-preset-row__lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  width: 100%;
  margin: 0;
}
@media (min-width: 520px) {
  .admin-preset-row__lbl { width: auto; margin-right: 0.25rem; }
}
.admin-preset-chip {
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(196, 174, 114, 0.1);
  color: var(--cta-hover);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.admin-preset-chip:hover {
  background: rgba(196, 174, 114, 0.18);
  border-color: rgba(196, 174, 114, 0.45);
}

.admin-form-check--inline {
  margin: 0;
  max-width: 40rem;
}
.admin-form-check--inline span {
  font-size: 0.86rem;
  color: var(--muted);
}

.admin-form__actions-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: center;
  width: 100%;
}
.admin-form__actions-hint {
  margin: 0.55rem 0 0;
  width: 100%;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--muted);
}
.admin-preco-wrap {
  max-width: 14rem;
}
.admin-file-preview {
  margin: 0.4rem 0 0;
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
  background: var(--bg-card-inner);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
  min-height: 2.5rem;
}
.admin-file-preview:empty {
  display: none;
}
.admin-file-preview__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  margin-top: 0.28rem;
}
.admin-file-preview__count {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--text);
}
.admin-file-preview__thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.admin-variante-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 0.45rem;
}
.admin-variante-meta .form-hint {
  margin: 0;
}
.admin-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.admin-form__actions--sticky {
  position: sticky;
  bottom: 0;
  z-index: 4;
  margin-top: 1.5rem;
  margin-left: -1.1rem;
  margin-right: -1.1rem;
  margin-bottom: -0.25rem;
  padding: 1rem 1.1rem calc(1rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(to top, var(--bg-card) 70%, rgba(22, 20, 18, 0.92));
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.35);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
@media (min-width: 720px) {
  .admin-form__actions--sticky {
    margin-left: -1.35rem;
    margin-right: -1.35rem;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }
}

.admin-help {
  margin-top: 0.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-strong);
  background: rgba(20, 18, 16, 0.4);
}
.admin-help__title {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.admin-help__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}
.admin-help__list code {
  font-size: 0.8rem;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  background: var(--bg-card-inner);
  color: var(--cta-hover);
}

.ui-back { margin: 0 0 1.25rem; }
.ui-back__link {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-min);
  padding: 0.25rem 0;
}
.ui-back__link:hover { color: var(--cta); text-decoration: underline; }

.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}
.form-hint code { font-size: 0.78rem; color: var(--cta); }
.form-row--narrow { max-width: 12rem; }
.form-row--checks { display: flex; flex-direction: column; gap: 0.65rem; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.4;
}
.form-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--cta);
  cursor: pointer;
}

.admin-thumb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
  transition: opacity 0.2s ease;
}
.admin-thumb-cell {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0.3rem;
  border: 1px solid var(--border);
  background: rgba(14, 12, 10, 0.5);
  border-radius: var(--radius-sm);
}
.admin-thumb-cell--over {
  border-color: rgba(196, 174, 114, 0.65);
  box-shadow: 0 0 0 2px rgba(196, 174, 114, 0.18);
}
.admin-thumb-cell--dragging {
  opacity: 0.5;
}
.admin-thumb-cell__num {
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 0.12rem 0.28rem;
  border-radius: 5px;
  background: rgba(10, 9, 8, 0.88);
  color: var(--cta);
  border: 1px solid rgba(196, 174, 114, 0.45);
  line-height: 1;
  pointer-events: none;
}
.admin-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: block;
  vertical-align: top;
}
.admin-thumb-actions {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.admin-gallery-toolbar {
  margin: 0.45rem 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.admin-thumb-grid--upload {
  margin-top: 0.55rem;
}

.admin-foto-guia {
  margin: 0.75rem 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 174, 114, 0.22);
  background: rgba(22, 19, 16, 0.55);
}
.admin-foto-guia__title {
  margin: 0 0 0.6rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}
.admin-foto-guia__title code {
  font-size: 0.82em;
  padding: 0.08rem 0.22rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
}
.admin-foto-guia__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: flex-end;
}
.admin-foto-guia__cell {
  position: relative;
  text-align: center;
}
.admin-foto-guia__num {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--cta);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}
.admin-foto-guia__thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  display: block;
}
.admin-foto-guia__foot {
  margin: 0.65rem 0 0 !important;
  font-size: 0.8rem !important;
}
.admin-foto-guia--empty {
  margin: 0.5rem 0 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  background: rgba(0, 0, 0, 0.15);
}

.admin-var-editor {
  margin-top: 0.85rem;
  padding: 0.65rem 0.85rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 174, 114, 0.2);
  background: rgba(14, 12, 10, 0.55);
}
.admin-var-editor__summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  list-style: none;
}
.admin-var-editor__summary::-webkit-details-marker {
  display: none;
}
.admin-var-editor__summary::before {
  content: '▸ ';
  opacity: 0.65;
}
.admin-var-editor[open] .admin-var-editor__summary::before {
  content: '▾ ';
}
.admin-var-editor__lead {
  margin: 0.5rem 0 0.35rem !important;
  font-size: 0.82rem !important;
}
.admin-var-editor__invalid {
  margin: 0 0 0.5rem !important;
  color: #e8a090 !important;
  font-size: 0.82rem !important;
}
.admin-var-table-scroll {
  overflow-x: auto;
  margin: 0.35rem 0 0.5rem;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.admin-var-table {
  width: 100%;
  min-width: 26rem;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.admin-var-table th,
.admin-var-table td {
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}
.admin-var-table thead th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.2);
}
.admin-var-table tbody tr:hover {
  background: rgba(255, 250, 235, 0.03);
}
.admin-var-table__nome,
.admin-var-table__qtd,
.admin-var-table__foto {
  width: 100%;
  max-width: 100%;
  padding: 0.38rem 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--border-strong);
  background: rgba(8, 7, 6, 0.65);
  color: var(--text);
  font-size: 0.86rem;
}
.admin-var-table__qtd {
  max-width: 5.5rem;
}
.admin-var-table__del {
  white-space: nowrap;
}
.admin-var-editor__actions {
  margin: 0.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.produto-galeria__skip {
  margin: 0.5rem 0 0;
  text-align: center;
}
.produto-galeria__skip-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  row-gap: 0.45rem;
}
.produto-galeria__skip-dot {
  color: rgba(168, 160, 148, 0.75);
  font-weight: 700;
  user-select: none;
}
.produto-galeria__skip-a {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cta);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 174, 114, 0.45);
  background: rgba(196, 174, 114, 0.08);
}
.produto-galeria__skip-a--hint {
  font-size: 0.8rem;
  font-weight: 600;
  border-color: rgba(255, 250, 235, 0.14);
  background: rgba(12, 11, 9, 0.35);
  color: rgba(220, 210, 188, 0.98);
}
.produto-galeria__skip-a--hint:hover {
  border-color: rgba(196, 174, 114, 0.35);
  color: var(--cta-hover);
  background: rgba(196, 174, 114, 0.1);
}
.produto-galeria__skip-a--primary {
  border-color: rgba(196, 174, 114, 0.55);
  background: rgba(196, 174, 114, 0.14);
}
.produto-galeria__skip-a:hover {
  background: rgba(196, 174, 114, 0.16);
  color: var(--cta-hover);
}

.produto-galeria__fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}
.produto-galeria__img-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: inherit;
  transition: box-shadow 0.28s ease;
}
@media (hover: hover) and (pointer: fine) {
  .page-produto .produto-galeria__img-wrap:hover {
    box-shadow: 0 0 0 1px rgba(196, 174, 114, 0.22);
  }
}
.produto-galeria__cap {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
  text-align: center;
  min-height: 1.25em;
  transition: color 0.2s ease;
}
.produto-galeria__cap:not(:empty) {
  color: rgba(220, 210, 185, 0.92);
}
.produto-var-opt__foto-ref {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  margin-bottom: 0.25rem;
  background: rgba(196, 174, 114, 0.18);
  color: var(--cta);
  border: 1px solid rgba(196, 174, 114, 0.35);
}
.produto-var-opt__picked {
  display: none;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(200, 232, 195, 0.98);
  padding: 0.2rem 0.42rem;
  border-radius: 999px;
  background: rgba(55, 95, 58, 0.42);
  border: 1px solid rgba(120, 175, 125, 0.35);
}
.produto-var-opt__input:checked + .produto-var-opt__card .produto-var-opt__picked {
  display: inline-flex;
  align-items: center;
}
.checkout-var-opt__foto-ref {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.12rem 0.32rem;
  border-radius: 5px;
  margin-bottom: 0.2rem;
  display: inline-block;
  background: rgba(196, 174, 114, 0.15);
  color: var(--cta);
}

.input-file {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Login admin */
.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.login-shell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  position: relative;
  z-index: 0;
  pointer-events: auto;
}
.login-card {
  width: 100%;
  max-width: 400px;
  padding: 2.15rem 1.85rem 1.85rem;
  background: linear-gradient(165deg, rgba(22, 19, 16, 0.98) 0%, var(--bg-card) 55%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  text-align: center;
}
.login-card__brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text);
}
.login-card__brand::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin: 0.65rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--cta), transparent);
  opacity: 0.85;
}
.login-card__brand--prestige {
  font-style: normal;
  margin: 0 auto 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.brand-prestige__seal--lg {
  width: 3.45rem;
  height: 3.45rem;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
}
.login-prestige__wordmark {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-optical-sizing: auto;
  color: var(--text);
}
.login-card__brand--prestige::after {
  margin-top: 0.75rem;
  opacity: 0.75;
}
.login-card__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  font-optical-sizing: auto;
}
.login-card__subtitle {
  margin: 0 0 1.35rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}
.login-form { display: flex; flex-direction: column; gap: 0.15rem; text-align: left; }
.login-page .login-card,
.login-page .login-form {
  position: relative;
  pointer-events: auto;
}
.login-form .form-row { margin-bottom: 0.25rem; }
.login-form__submit { width: 100%; margin-top: 1rem; justify-content: center; }
.login-card__footer {
  margin: 1.35rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.88rem;
}
.login-card__footer a { color: var(--muted); }
.login-card__footer a:hover { color: var(--cta); }

.login-box {
  max-width: 380px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-card);
}

/* Acessibilidade e páginas */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 9999;
  padding: 0.65rem 1.1rem;
  background: var(--cta);
  color: #141008 !important;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none !important;
  box-shadow: var(--shadow-card);
}
.skip-link:focus,
.skip-link:focus-visible {
  top: max(1rem, env(safe-area-inset-top, 0px));
  left: max(1rem, env(safe-area-inset-left, 0px));
  outline: 2px solid var(--text);
  outline-offset: 3px;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
}

.produto-form-row--tam {
  margin-top: 1.25rem;
}

/* Ficha do produto — escolha de variação (cor / tamanho) */
.produto-var-picker {
  border: 0;
  padding: 1.05rem 0 0.25rem;
  margin: 1.35rem 0 0;
  min-inline-size: 0;
  scroll-margin-top: 5.5rem;
  background: transparent;
}
.produto-var-picker__legend {
  padding: 0;
  float: none;
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.06rem, 2.6vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.produto-var-picker__legend::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-top: 0.42rem;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(196, 174, 114, 0.95), rgba(196, 174, 114, 0.15));
  opacity: 0.9;
}
.produto-var-picker__surface {
  padding: 0.85rem 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 174, 114, 0.16);
  background: linear-gradient(168deg, rgba(26, 23, 19, 0.5) 0%, rgba(12, 11, 9, 0.35) 55%, rgba(10, 9, 8, 0.42) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.045),
    0 10px 28px rgba(0, 0, 0, 0.18);
}
.produto-var-picker__lead {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: none;
}
.produto-var-picker__lead--short {
  margin-bottom: 0.4rem;
}
.produto-var-picker__flow {
  list-style: none;
  margin: 0 0 0.55rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
}
.produto-var-picker__flow-i {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(232, 224, 206, 0.96);
}
.produto-var-picker__flow-i--sep {
  color: rgba(196, 174, 114, 0.65);
  font-weight: 700;
  font-size: 0.85rem;
  user-select: none;
}
.produto-var-picker__flow-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(12, 10, 8, 0.92);
  background: linear-gradient(145deg, rgba(214, 196, 140, 1) 0%, rgba(196, 174, 114, 0.92) 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}
.produto-var-picker__flow-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(168, 160, 148, 0.95);
  letter-spacing: 0.02em;
}
.produto-var-picker__scroll-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(200, 192, 176, 0.96);
  max-width: 36rem;
}
.produto-var-picker__scroll-hint::before {
  content: "\2194";
  flex-shrink: 0;
  margin-top: 0.06rem;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(196, 174, 114, 0.75);
}
.produto-var-picker__details {
  margin: 0 0 0.65rem;
  max-width: none;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 250, 235, 0.05);
  background: rgba(0, 0, 0, 0.16);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.produto-var-picker__details[open] {
  border-color: rgba(196, 174, 114, 0.2);
  background: rgba(0, 0, 0, 0.22);
}
.produto-var-picker__details-sum {
  list-style: none;
  cursor: pointer;
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(210, 198, 170, 0.95);
  text-decoration: none;
  padding: 0.5rem 0.65rem;
  user-select: none;
}
.produto-var-picker__details-sum::-webkit-details-marker {
  display: none;
}
.produto-var-picker__details-sum:hover {
  color: rgba(235, 228, 210, 0.98);
}
.produto-var-picker__details[open] .produto-var-picker__details-sum {
  color: rgba(235, 228, 210, 0.98);
  border-bottom: 1px solid rgba(255, 250, 235, 0.06);
}
.produto-var-picker__details-body {
  padding: 0.45rem 0.65rem 0.6rem;
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--muted);
}
.produto-var-picker__details-body p {
  margin: 0.45rem 0 0;
}
.produto-var-picker__details-body p:first-child {
  margin-top: 0;
}
.produto-var-resumo {
  margin: 0.75rem 0 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 250, 235, 0.08);
  background: rgba(14, 12, 10, 0.52);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.produto-var-resumo--has {
  border-color: rgba(196, 174, 114, 0.22);
  background: linear-gradient(105deg, rgba(196, 174, 114, 0.07) 0%, rgba(14, 12, 10, 0.58) 38%, rgba(12, 10, 9, 0.55) 100%);
  box-shadow:
    inset 3px 0 0 rgba(196, 174, 114, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.16);
}
.produto-var-resumo__inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  min-height: 3rem;
}
.produto-var-resumo__thumb-slot {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 235, 0.1);
  background: rgba(0, 0, 0, 0.28);
}
.produto-var-resumo--empty .produto-var-resumo__thumb-slot {
  opacity: 0.5;
  border-color: rgba(255, 250, 235, 0.08);
  background: rgba(0, 0, 0, 0.18);
}
.produto-var-resumo--has .produto-var-resumo__thumb-slot {
  opacity: 1;
  border-color: rgba(196, 174, 114, 0.35);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.produto-var-resumo__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.produto-var-resumo__body {
  flex: 1;
  min-width: 0;
}
.produto-var-resumo__kicker {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(168, 160, 148, 0.9);
  margin-bottom: 0.12rem;
}
.produto-var-resumo__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  word-break: break-word;
}
.produto-var-resumo--has .produto-var-resumo__label {
  color: rgba(235, 228, 210, 0.98);
}
.produto-var-resumo__edit {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  padding: 0.35rem 0.3rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.produto-var-resumo__edit:hover {
  color: var(--cta-hover);
  background: rgba(196, 174, 114, 0.08);
}
.produto-var-resumo__edit:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}
.produto-var-resumo:focus-within {
  outline: 1px solid rgba(196, 174, 114, 0.22);
  outline-offset: 3px;
  border-radius: calc(var(--radius-md) + 2px);
}
.produto-var-filtros,
.checkout-var-filtros {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  margin: 0 0 0.65rem;
  max-width: 40rem;
}
.produto-var-filtros__hint,
.checkout-var-filtros__hint {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(210, 200, 180, 0.92);
  flex-shrink: 0;
  padding: 0.32rem 0.5rem;
  border-radius: 8px;
  background: rgba(196, 174, 114, 0.1);
  border: 1px solid rgba(196, 174, 114, 0.2);
}
.produto-var-filtros__scroll,
.checkout-var-filtros__scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.12rem;
  max-width: min(100%, 32rem);
}
.produto-var-filtro,
.checkout-var-filtro {
  flex: 0 0 auto;
  appearance: none;
  margin: 0;
  border: 1px solid rgba(255, 250, 235, 0.1);
  background: linear-gradient(165deg, rgba(28, 25, 22, 0.95) 0%, rgba(16, 14, 12, 0.92) 100%);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 250, 235, 0.04);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    transform 0.12s ease,
    box-shadow 0.18s ease;
}
.produto-var-filtro:not(.produto-var-filtro--todas),
.checkout-var-filtro:not(.checkout-var-filtro--todas) {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  min-width: 4.5rem;
  max-width: 7.4rem;
  padding: 0.4rem 0.55rem 0.36rem;
  text-align: center;
  line-height: 1.18;
}
.produto-var-filtro--todas,
.checkout-var-filtro--todas {
  padding: 0.38rem 0.85rem;
}
.produto-var-filtro__tag,
.checkout-var-filtro__tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(196, 174, 114, 0.96);
  line-height: 1;
}
.produto-var-filtro__name,
.checkout-var-filtro__name {
  width: 100%;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.produto-var-filtro:hover,
.checkout-var-filtro:hover {
  border-color: rgba(196, 174, 114, 0.45);
}
.produto-var-filtro:active,
.checkout-var-filtro:active {
  transform: scale(0.96);
}
.produto-var-filtro.is-on,
.checkout-var-filtro.is-on {
  border-color: rgba(196, 174, 114, 0.48);
  background: linear-gradient(165deg, rgba(196, 174, 114, 0.2) 0%, rgba(196, 174, 114, 0.08) 100%);
  color: rgba(248, 242, 228, 0.99);
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 245, 0.12),
    0 2px 10px rgba(0, 0, 0, 0.2);
}
.produto-var-filtro:focus-visible,
.checkout-var-filtro:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
.produto-var-selects {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
  max-width: 22rem;
}
.produto-var-selects--solo {
  max-width: 24rem;
}
.produto-var-selects[data-prod-var-grid="split"],
.checkout-var-selects[data-prod-var-grid="split"] {
  max-width: min(100%, 42rem);
}
.checkout-var-selects {
  max-width: 100%;
}
.produto-var-select-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.produto-var-select-lbl {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(168, 160, 148, 0.92);
}
.produto-var-select {
  width: 100%;
  max-width: 22rem;
  padding: 0.62rem 0.85rem;
  min-height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 250, 235, 0.12);
  background: rgba(12, 11, 9, 0.55);
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23a89888'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a89888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.35rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.produto-var-select:hover {
  border-color: rgba(196, 174, 114, 0.35);
}
.produto-var-select:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
  border-color: rgba(196, 174, 114, 0.45);
}

.produto-var-select-row--cor {
  max-width: min(100%, 40rem);
}
.produto-var-select-row--cor + .produto-var-select-row--tam {
  margin-top: 0.15rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 250, 235, 0.1);
}
.produto-var-selects[data-prod-var-grid="split"] .produto-var-select-row--tam .produto-var-select,
.checkout-var-selects[data-prod-var-grid="split"] .produto-var-select-row--tam .produto-var-select {
  max-width: 100%;
}
.produto-var-cor-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.1rem;
  contain: layout;
}
.produto-var-cor-opt {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.produto-var-cor-opt__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.produto-var-cor-opt:focus-within .produto-var-cor-opt__card {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}
.produto-var-cor-opt__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.55rem 0.45rem;
  min-width: 4.75rem;
  max-width: 6.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 250, 235, 0.1);
  background: linear-gradient(
    165deg,
    rgba(26, 23, 20, 0.9) 0%,
    rgba(14, 12, 10, 0.88) 100%
  );
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.18s ease;
}
.produto-var-cor-opt:active .produto-var-cor-opt__card {
  transform: scale(0.98);
}
.produto-var-cor-opt__input:checked + .produto-var-cor-opt__card {
  position: relative;
  border-color: rgba(196, 174, 114, 0.58);
  box-shadow:
    0 0 0 1px rgba(196, 174, 114, 0.38),
    0 10px 26px rgba(0, 0, 0, 0.22);
}
.produto-var-cor-opt__input:checked + .produto-var-cor-opt__card::after {
  content: "\2713";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 1.15rem;
  height: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  border-radius: 999px;
  color: rgba(12, 10, 8, 0.95);
  background: linear-gradient(145deg, rgba(214, 196, 140, 1) 0%, rgba(196, 174, 114, 0.95) 100%);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.produto-var-cor-opt:hover .produto-var-cor-opt__card {
  border-color: rgba(196, 174, 114, 0.28);
}
#prodVarGaleriaBridge {
  scroll-margin-top: 5.5rem;
}
.page-produto #imgMain {
  scroll-margin-top: 5.5rem;
}
.produto-var-galeria-bridge {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.76rem;
  line-height: 1.42;
  color: rgba(210, 202, 186, 0.96);
  margin: 0 0 0.55rem;
  max-width: 38rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(196, 174, 114, 0.2);
  background: linear-gradient(120deg, rgba(196, 174, 114, 0.1) 0%, rgba(14, 12, 10, 0.55) 55%);
  box-shadow: inset 0 1px 0 rgba(255, 250, 235, 0.05);
}
.produto-var-galeria-bridge__k {
  flex-shrink: 0;
  margin-top: 0.06rem;
  padding: 0.2rem 0.45rem;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(12, 10, 8, 0.92);
  background: linear-gradient(145deg, rgba(214, 196, 140, 1) 0%, rgba(196, 174, 114, 0.92) 100%);
}
.produto-var-galeria-bridge__txt {
  min-width: 0;
}
.produto-var-galeria-bridge__a {
  font-weight: 700;
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.produto-var-galeria-bridge__a:hover {
  color: var(--cta-hover);
}
.produto-var-galeria-bridge__a:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
  border-radius: 4px;
}
.produto-var-cor-opt__img-wrap {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.25);
}
.produto-var-cor-opt__gal-idx {
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 2;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.2rem 0.32rem;
  border-radius: 6px;
  background: rgba(10, 9, 8, 0.9);
  color: var(--cta);
  border: 1px solid rgba(196, 174, 114, 0.42);
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.produto-var-cor-opt__img-wrap--empty {
  background: linear-gradient(
    135deg,
    rgba(60, 54, 48, 0.45),
    rgba(26, 23, 20, 0.65)
  );
}
.produto-var-cor-opt__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.produto-var-cor-opt__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  text-align: center;
  min-width: 0;
  width: 100%;
}
@media (max-width: 899px) {
  .produto-var-cor-pick {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: 0.6rem;
    padding: 0.15rem 0.25rem 0.45rem;
    margin-inline: -0.15rem;
    padding-right: 1.25rem;
    scrollbar-width: thin;
  }
  .produto-var-cor-pick::-webkit-scrollbar {
    height: 5px;
  }
  .produto-var-cor-pick::-webkit-scrollbar-thumb {
    background: rgba(196, 174, 114, 0.35);
    border-radius: 999px;
  }
  .produto-var-cor-opt {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .produto-var-cor-opt__img-wrap {
    width: 4rem;
    height: 4rem;
  }
  .produto-var-cor-opt__gal-idx {
    font-size: 0.62rem;
    padding: 0.22rem 0.36rem;
  }
  .produto-var-cor-opt__card {
    min-width: 5.35rem;
    max-width: 7.25rem;
    min-height: 6.5rem;
    padding: 0.6rem 0.65rem 0.55rem;
    justify-content: center;
  }
  .produto-var-cor-opt__name {
    font-size: 0.8rem;
  }
  .page-produto .produto-var-select,
  .checkout-page .produto-var-select {
    min-height: var(--tap-min);
    font-size: max(16px, 0.95rem);
  }
  .produto-var-resumo__edit {
    min-height: var(--tap-min);
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.65rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .produto-var-cor-opt:active .produto-var-cor-opt__card {
    transform: none;
  }
}
@media (prefers-contrast: more) {
  .produto-var-cor-opt__card {
    border-color: rgba(255, 250, 235, 0.35);
  }
  .produto-var-cor-opt__input:checked + .produto-var-cor-opt__card {
    border-color: rgba(248, 236, 200, 0.95);
    box-shadow:
      0 0 0 2px rgba(248, 236, 200, 0.55),
      0 10px 26px rgba(0, 0, 0, 0.22);
  }
  .produto-var-galeria-bridge {
    border-color: rgba(248, 236, 200, 0.45);
  }
}
.produto-var-cor-opt__tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(196, 174, 114, 0.85);
  margin-bottom: 0.08rem;
}
.produto-var-cor-opt__name {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(248, 242, 228, 0.96);
  word-break: break-word;
}

/* Cor + tamanho — bloco editorial (ficha + checkout) */
.ddm-var-spec {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 250, 235, 0.08);
  gap: 0;
  min-height: 3.35rem;
}
.ddm-var-spec__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
}
.ddm-var-spec__col--cor {
  flex: 1.2;
  padding-right: 0.45rem;
}
.ddm-var-spec__col--tam {
  flex: 0.95;
  align-items: center;
  padding-left: 0.45rem;
  text-align: center;
}
.ddm-var-spec__div {
  width: 1px;
  flex-shrink: 0;
  margin: 0.05rem 0;
  background: linear-gradient(
    180deg,
    rgba(196, 174, 114, 0) 0%,
    rgba(196, 174, 114, 0.42) 22%,
    rgba(196, 174, 114, 0.42) 78%,
    rgba(196, 174, 114, 0) 100%
  );
}
.ddm-var-spec__lbl {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(168, 160, 148, 0.88);
  margin-bottom: 0.22rem;
  line-height: 1.2;
}
.ddm-var-spec__cor {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
}
.ddm-var-spec__cor-tag {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: rgba(196, 174, 114, 0.92);
  line-height: 1.1;
}
.ddm-var-spec__cor-name {
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 2.4vw, 0.95rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: rgba(248, 242, 228, 0.97);
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.ddm-var-spec__tam {
  display: flex;
  justify-content: center;
  width: 100%;
}
.ddm-var-spec__tam-val {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  max-width: 100%;
  padding: 0.32rem 0.62rem;
  font-family: var(--font-ui);
  font-size: clamp(0.98rem, 3.2vw, 1.12rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #14110e;
  background: linear-gradient(155deg, #f0e4d2 0%, var(--cta) 42%, #b8a46e 100%);
  border-radius: 11px;
  box-shadow:
    0 1px 0 rgba(255, 252, 245, 0.35) inset,
    0 4px 14px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 250, 235, 0.22);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}
.produto-var-opt:not(.produto-var-opt--disabled):hover .ddm-var-spec__tam-val,
.checkout-var-opt:not(.checkout-var-opt--disabled):hover .ddm-var-spec__tam-val {
  transform: translateY(-1px);
}
.produto-var-opt__input:checked + .produto-var-opt__card .ddm-var-spec__tam-val,
.checkout-var-opt__input:checked + .checkout-var-opt__card .ddm-var-spec__tam-val {
  box-shadow:
    0 0 0 2px rgba(196, 174, 114, 0.95),
    0 1px 0 rgba(255, 252, 245, 0.4) inset,
    0 6px 20px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 250, 235, 0.45);
}
.produto-var-opt--disabled .ddm-var-spec__tam-val {
  filter: grayscale(0.45);
  opacity: 0.75;
}
.checkout-var-opt--disabled .ddm-var-spec__tam-val {
  filter: grayscale(0.45);
  opacity: 0.75;
}
.checkout-var-opt__card .ddm-var-spec {
  margin-top: 0.28rem;
  padding-top: 0.48rem;
  min-height: 3.05rem;
}
.checkout-var-opt__card .ddm-var-spec__tam-val {
  font-size: clamp(0.9rem, 2.8vw, 1.02rem);
  padding: 0.26rem 0.52rem;
  border-radius: 9px;
}
.produto-var-opt {
  display: flex;
  flex-direction: column;
  margin: 0;
  cursor: pointer;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
}
.produto-var-opt--disabled {
  cursor: not-allowed;
}
.produto-var-opt__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.produto-var-opt__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  padding: 0.72rem 0.8rem 0.78rem;
  min-height: 100%;
  border: 1px solid rgba(255, 250, 235, 0.09);
  border-radius: 14px;
  background: linear-gradient(168deg, rgba(30, 27, 23, 0.98) 0%, rgba(16, 14, 12, 0.9) 52%, rgba(12, 10, 9, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.045),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.produto-var-opt:not(.produto-var-opt--disabled):hover .produto-var-opt__card {
  border-color: rgba(196, 174, 114, 0.45);
  transform: translateY(-2px);
}
.produto-var-opt:has(.produto-var-opt__input:focus-visible) .produto-var-opt__card {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
.produto-var-opt__input:checked + .produto-var-opt__card {
  border-color: rgba(196, 174, 114, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.05),
    0 4px 16px rgba(0, 0, 0, 0.2);
}
.produto-var-opt--disabled .produto-var-opt__card {
  opacity: 0.52;
  filter: grayscale(0.35);
}
.produto-var-opt__thumb-wrap {
  position: relative;
  width: 100%;
  border-radius: 11px;
  overflow: hidden;
  margin: 0 0 0.15rem;
  border: 1px solid rgba(255, 250, 235, 0.1);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.produto-var-opt__foto-idx {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.2rem 0.34rem;
  border-radius: 6px;
  background: rgba(10, 9, 8, 0.9);
  color: var(--cta);
  border: 1px solid rgba(196, 174, 114, 0.42);
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.produto-var-opt__thumb {
  display: block;
  width: 100%;
  height: 6.5rem;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.produto-var-opt__input:checked + .produto-var-opt__card .produto-var-opt__thumb {
  transform: scale(1.02);
}
.produto-var-opt__input:checked + .produto-var-opt__card .produto-var-opt__thumb-wrap {
  border-color: rgba(196, 174, 114, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}
.produto-var-opt__name {
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  word-break: break-word;
}
.produto-var-opt__name--solo {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: rgba(242, 236, 222, 0.96);
  margin-top: 0.15rem;
}
.produto-var-opt__badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}
.produto-var-opt__badge--ok {
  color: rgba(180, 220, 175, 0.95);
  background: rgba(60, 110, 65, 0.35);
}
.produto-var-opt__badge--low {
  color: #1a1510;
  background: linear-gradient(135deg, rgba(212, 175, 95, 0.95), rgba(196, 174, 114, 0.88));
}
.produto-var-opt__badge--out {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}
.produto-var-opt__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin-top: auto;
  padding-top: 0.15rem;
  min-height: 1.2rem;
}
.produto-var-opt__foot:has(.produto-var-opt__picked:only-child) {
  justify-content: flex-end;
}

/* Checkout — mesma lógica visual */
.checkout-var-picker {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
  grid-column: 1 / -1;
  min-inline-size: 0;
}
.checkout-var-picker--combo {
  padding-top: 0.35rem;
  margin-top: 0.25rem;
  border-top: 1px dashed var(--border);
}
.checkout-var-picker__legend {
  padding: 0;
  float: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.35rem;
}
.checkout-var-picker__hint {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 40rem;
}
.checkout-var-picker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.45rem, 1fr));
  gap: 0.62rem;
}
.checkout-var-opt {
  display: flex;
  flex-direction: column;
  margin: 0;
  cursor: pointer;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
}
.checkout-var-opt--disabled {
  cursor: not-allowed;
}
.checkout-var-opt__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.checkout-var-opt__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.32rem;
  padding: 0.72rem 0.82rem 0.78rem;
  min-height: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: linear-gradient(168deg, rgba(28, 25, 22, 0.96) 0%, rgba(16, 14, 12, 0.88) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 250, 235, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.checkout-var-opt:not(.checkout-var-opt--disabled):hover .checkout-var-opt__card {
  border-color: rgba(196, 174, 114, 0.4);
  transform: translateY(-2px);
}
.checkout-var-opt:has(.checkout-var-opt__input:focus-visible) .checkout-var-opt__card {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
.checkout-var-opt__input:checked + .checkout-var-opt__card {
  border-color: var(--cta);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.06),
    0 0 0 1px rgba(196, 174, 114, 0.55),
    0 6px 18px rgba(0, 0, 0, 0.22);
}
.checkout-var-opt--disabled .checkout-var-opt__card {
  opacity: 0.5;
}
.checkout-var-opt__thumb-wrap {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 0.12rem;
  border: 1px solid rgba(255, 250, 235, 0.1);
  background: rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.checkout-var-opt__foto-idx {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 2;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.16rem 0.28rem;
  border-radius: 5px;
  background: rgba(10, 9, 8, 0.9);
  color: var(--cta);
  border: 1px solid rgba(196, 174, 114, 0.4);
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.checkout-var-opt__thumb {
  display: block;
  width: 100%;
  height: 4.45rem;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.checkout-var-opt__input:checked + .checkout-var-opt__card .checkout-var-opt__thumb {
  transform: scale(1.04);
}
.checkout-var-opt__input:checked + .checkout-var-opt__card .checkout-var-opt__thumb-wrap {
  border-color: rgba(196, 174, 114, 0.32);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
}
.checkout-var-opt__name {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  word-break: break-word;
}
.checkout-var-opt__name--solo {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.012em;
  color: rgba(240, 234, 220, 0.96);
  margin-top: 0.08rem;
}
.checkout-var-opt__badge {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  align-self: flex-start;
}
.checkout-var-opt__badge--ok {
  color: rgba(175, 215, 170, 0.95);
  background: rgba(55, 95, 58, 0.4);
}
.checkout-var-opt__badge--low {
  color: #1a1510;
  background: linear-gradient(135deg, rgba(210, 175, 90, 0.95), rgba(185, 160, 95, 0.85));
}
.checkout-var-opt__badge--out {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}
.checkout-var-opt__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.45rem;
  margin-top: auto;
  padding-top: 0.08rem;
  min-height: 1rem;
}

.produto-hint--hidden {
  display: none !important;
}
.produto-alert--esgotado {
  margin-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card,
  .pay-option__box,
  .toast {
    transition: none !important;
  }
  .card:hover,
  .card:focus-within {
    transform: none;
  }
  .card:hover .card__img,
  .card:focus-within .card__img {
    transform: none;
  }
  .card--cro .card__media::after {
    display: none !important;
  }
  .btn--pulse { animation: none !important; }
  .btn--hero-magnet { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 250, 235, 0.1) inset !important; }
  .cro-shimmer-edge { animation: none !important; box-shadow: 0 0 0 1px rgba(196, 174, 114, 0.35); }
  .cro-ip-banner__dot { animation: none !important; }
  .nav-toggle__bars,
  .nav-toggle.is-open .nav-toggle__bars { transition: none !important; }
  .grid .card--cro { animation: none !important; }
  .hero-apex-glow { opacity: 0.4 !important; }
  .cat-hub-card:hover,
  .home-cat-discovery__card.is-live:hover {
    transform: none !important;
  }
  .cat-hub-card:hover .cat-hub-card__media img {
    transform: none !important;
  }
  .conta-pedido-card {
    transition: none !important;
  }
  .conta-pedido-card:hover {
    transform: none !important;
  }
  .back-to-top {
    transition: none !important;
  }
  .produto-var-opt__card,
  .checkout-var-opt__card,
  .produto-var-opt__thumb-wrap,
  .checkout-var-opt__thumb-wrap,
  .produto-var-opt__thumb,
  .checkout-var-opt__thumb,
  .ddm-var-spec__tam-val,
  .produto-var-filtro,
  .checkout-var-filtro {
    transition: none !important;
  }
  .produto-var-opt:not(.produto-var-opt--disabled):hover .produto-var-opt__card,
  .checkout-var-opt:not(.checkout-var-opt--disabled):hover .checkout-var-opt__card {
    transform: none !important;
  }
  .produto-var-opt__input:checked + .produto-var-opt__card .produto-var-opt__thumb,
  .checkout-var-opt__input:checked + .checkout-var-opt__card .checkout-var-opt__thumb {
    transform: none !important;
  }
  .produto-var-opt:not(.produto-var-opt--disabled):hover .ddm-var-spec__tam-val {
    transform: none !important;
  }
  .produto-var-filtro:active,
  .checkout-var-filtro:active {
    transform: none !important;
  }
  .produto-var-picker__details {
    transition: none !important;
  }
}

.section-loja {
  scroll-margin-top: 6.5rem;
}
@media (min-width: 720px) {
  .section-loja { scroll-margin-top: 5.5rem; }
}

.empty-state {
  text-align: center;
  padding: 2.65rem 1.35rem 2.5rem;
  margin-top: 1rem;
  border: 1px solid rgba(196, 174, 114, 0.22);
  border-radius: var(--radius-md);
  background: linear-gradient(168deg, rgba(24, 21, 18, 0.88) 0%, rgba(12, 11, 10, 0.72) 55%, rgba(8, 7, 6, 0.85) 100%);
  max-width: 30rem;
  margin-inline: auto;
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 252, 245, 0.05),
    inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.empty-state__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}
.empty-state__text {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}
.empty-state__text a {
  color: var(--cta);
  font-weight: 600;
}
.empty-state__text a:hover {
  color: var(--cta-hover);
}

.page-404 {
  text-align: center;
  padding: 2.75rem 1.35rem 3.25rem;
  max-width: 32rem;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.88) 0%, rgba(10, 9, 8, 0.55) 100%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(196, 174, 114, 0.1), transparent 55%);
  border: 1px solid rgba(196, 174, 114, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.page-404__code {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 5.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cta);
  opacity: 0.95;
  margin: 0 0 0.5rem;
  line-height: 1;
  text-shadow: 0 0 40px rgba(196, 174, 114, 0.2);
}
.page-404 h1 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.page-404__lead {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1.75rem;
  font-size: 1.02rem;
  font-weight: 300;
}
.page-404__search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: stretch;
  margin: 0 0 1.5rem;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}
.page-404__search-input {
  flex: 1 1 12rem;
  min-width: 0;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
}
.page-404__search-input:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}
.page-404__search-btn {
  flex: 0 0 auto;
}
.page-404__actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.page-404__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-top: 1.75rem;
  font-size: 0.88rem;
}
.page-404__nav a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 174, 114, 0.3);
}
.page-404__nav a:hover {
  color: var(--cta);
  border-bottom-color: var(--cta);
}

.page-500 .page-404__code {
  color: rgba(196, 130, 108, 0.95);
  text-shadow: 0 0 28px rgba(196, 130, 108, 0.2);
}
.page-500__ref {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.page-500__tech {
  text-align: left;
  max-width: 42rem;
  margin: 1.5rem auto 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.page-500__tech summary {
  cursor: pointer;
  color: var(--cta);
}
.page-500__pre {
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  overflow: auto;
  max-height: 14rem;
  font-size: 0.72rem;
  line-height: 1.45;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
}

.site-header--error-fallback .site-header__inner {
  padding: 0.85rem 1rem;
}
.site-footer--error-fallback {
  margin-top: 2rem;
  padding: 1.5rem 1rem 2.5rem;
  border-top: 1px solid rgba(196, 174, 114, 0.15);
}
.site-footer--error-fallback .site-footer__inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.produto-titulo {
  font-family: var(--font-display);
  font-size: clamp(1.48rem, 3.3vw, 2.05rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 500;
  font-optical-sizing: auto;
  margin: 0 0 0.55rem;
  text-wrap: balance;
}
.produto-descricao-details {
  margin: 1rem 0 0;
  max-width: 36rem;
}
.produto-descricao-summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  user-select: none;
}
.produto-descricao-summary::-webkit-details-marker {
  display: none;
}
.produto-descricao-summary:hover {
  color: var(--cta-hover);
}
.produto-descricao-details[open] .produto-descricao-summary__when-closed {
  display: none;
}
.produto-descricao-details:not([open]) .produto-descricao-summary__when-open {
  display: none;
}
.produto-descricao {
  color: var(--muted);
  line-height: 1.65;
  margin: 1rem 0 0;
  max-width: 36rem;
  white-space: pre-line;
}
.produto-descricao-details .produto-descricao {
  margin-top: 0.65rem;
  margin-bottom: 0;
}
.produto-descricao--expand {
  padding-top: 0.15rem;
}

/* —— CRO / conversão —— */
.header-trust {
  margin: 0;
  padding: 0.5rem clamp(1rem, 4vw, 1.5rem) 0.65rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.55) 0%, rgba(5, 4, 3, 0.72) 100%);
}
.header-trust__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(168, 160, 148, 0.92);
  line-height: 1.45;
  text-align: center;
}
.header-trust__item {
  white-space: normal;
  text-wrap: balance;
  max-width: 100%;
}
@media (min-width: 960px) {
  .header-trust__item {
    white-space: nowrap;
  }
}
.header-trust__sep {
  display: block;
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(196, 174, 114, 0.55), rgba(196, 174, 114, 0.2));
  box-shadow: 0 0 0 1px rgba(196, 174, 114, 0.12);
}
@media (max-width: 520px) {
  .header-trust__inner {
    font-size: 0.58rem;
    letter-spacing: 0.09em;
    gap: 0.35rem 0.5rem;
  }
}

@keyframes cro-pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 174, 114, 0.4); }
  55% { box-shadow: 0 0 0 10px rgba(196, 174, 114, 0); }
}
.btn--pulse {
  animation: cro-pulse-soft 2.8s ease-out infinite;
}

.hero--cro .hero-sub { max-width: 34rem !important; }
.hero--cro.hero--home-refined .hero-lead { max-width: 36rem !important; }
.hero-highlight {
  color: var(--cta);
  display: inline-block;
}
.cro-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 1.35rem 0 1rem;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}
.cro-hero-cta__micro {
  display: block;
  order: 2;
  width: 100%;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0.1rem 0 0.15rem;
  line-height: 1.45;
}
.cro-hero-cta__micro a {
  display: inline-block;
  margin: 0.08rem 0.12rem;
  padding: 0.38rem 0.55rem;
  color: var(--cta);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 174, 114, 0.28);
  background: rgba(12, 11, 10, 0.45);
}
.cro-hero-cta__micro a:hover {
  color: var(--cta-hover);
  border-color: rgba(196, 174, 114, 0.45);
  background: rgba(196, 174, 114, 0.1);
}
.cro-hero-cta__micro a:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}
.cro-hero-cta .btn--hero-magnet { order: 1; width: 100%; max-width: 22rem; justify-content: center; }
.cro-hero-cta .cro-hero-cta__wa { order: 3; width: 100%; max-width: 22rem; justify-content: center; }
.btn--hero-magnet {
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 250, 235, 0.14) inset,
    0 0 42px rgba(196, 174, 114, 0.22);
}
.cro-magnet-stats {
  list-style: none;
  margin: 1.35rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 36rem;
  width: 100%;
}
.cro-magnet-stats__i {
  margin: 0;
  padding: 0.65rem 0.5rem 0.75rem;
  text-align: center;
  background: rgba(8, 7, 6, 0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.cro-magnet-stats__i:hover {
  border-color: rgba(196, 174, 114, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.06), 0 8px 28px rgba(0, 0, 0, 0.25);
}
.cro-magnet-stats__glyph {
  display: block;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}
.cro-magnet-stats__glyph--orn {
  width: 0.55rem;
  height: 0.55rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.45rem;
  border-radius: 1px;
  background: linear-gradient(135deg, var(--cta), rgba(196, 174, 114, 0.35));
  box-shadow: 0 0 0 1px rgba(196, 174, 114, 0.2);
  transform: rotate(45deg);
  opacity: 1;
}
.cro-magnet-stats__sub a {
  color: var(--cta);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 174, 114, 0.35);
}
.cro-magnet-stats__sub a:hover {
  color: var(--cta-hover);
  border-bottom-color: var(--cta-hover);
}
.cro-magnet-stats__main {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
}
.cro-magnet-stats__sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}
@media (max-width: 840px) {
  .cro-magnet-stats {
    grid-template-columns: 1fr;
    max-width: none;
  }
}
.cro-trust-band--apex {
  border: 1px solid rgba(196, 174, 114, 0.22);
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.88) 0%, rgba(14, 12, 10, 0.75) 100%);
}
.cro-hero-cta__wa {
  color: var(--text) !important;
  border-color: var(--cta) !important;
}
.cro-hero-cta__wa:hover {
  border-color: var(--cta-hover) !important;
  color: var(--cta) !important;
}
.busca--cro { margin-top: 1rem; }
.trust-strip--cro { margin-top: 1.15rem; }
.cro-social-proof {
  margin: 1.25rem 0 0;
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 26rem;
  margin-inline: auto;
  line-height: 1.55;
}
.cro-social-proof a {
  color: var(--cta);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 174, 114, 0.35);
}
.cro-social-proof a:hover {
  color: var(--cta-hover);
  border-bottom-color: var(--cta-hover);
}

.cro-trust-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 1.1rem clamp(0.9rem, 3vw, 1.35rem);
  margin: 0 0 1.85rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
  background: rgba(18, 16, 14, 0.65);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.03);
}
.cro-trust-band__item {
  text-align: center;
  max-width: min(22rem, 100%);
}
.cro-trust-band__item a {
  color: var(--cta);
  font-weight: 600;
}
.cro-trust-band__item a:hover { color: var(--cta-hover); }
.cro-trust-band__item--gold a {
  color: var(--cta-hover);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cro-trust-band__item--gold a:hover {
  color: var(--text);
}

.home-social-proof {
  margin: -0.35rem auto 1.75rem;
  padding: 0.85rem clamp(1rem, 3vw, 1.35rem);
  max-width: 720px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 174, 114, 0.28);
  background: linear-gradient(135deg, rgba(28, 24, 18, 0.92) 0%, rgba(14, 12, 10, 0.82) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.home-social-proof__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.home-social-proof__line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem 0.65rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(250, 246, 240, 0.9);
}
.home-social-proof__line--extra {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(196, 174, 114, 0.18);
  width: 100%;
}
.home-social-proof__stars {
  color: var(--cta);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.home-social-proof__text strong {
  color: var(--cta);
  font-weight: 700;
}
.home-social-proof--cro-narrow {
  margin: 0.5rem auto 1.25rem;
  max-width: 38rem;
}

/* Destaque de combos promocionais na home (animado via public/js/home-promo.js) */
.home-promo-combo {
  position: relative;
  margin: 0 auto 2.25rem;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 1.5rem);
  max-width: 1200px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.home-promo-combo--visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .home-promo-combo {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.home-promo-combo__inner {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 174, 114, 0.35);
  background: linear-gradient(145deg, rgba(196, 174, 114, 0.12), rgba(8, 7, 6, 0.92));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: clamp(1.1rem, 3vw, 1.75rem);
  overflow: hidden;
}
.home-promo-combo__inner::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(196, 174, 114, 0.22), transparent 65%);
  pointer-events: none;
}
.home-promo-combo__head {
  position: relative;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.25rem;
}
.home-promo-combo__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
  font-weight: 600;
}
.home-promo-combo__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}
.home-promo-combo__sub {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
}
.home-promo-combo__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #080706;
  background: linear-gradient(135deg, var(--cta), #e8d9a8);
  box-shadow: 0 0 0 1px rgba(196, 174, 114, 0.5), 0 6px 20px rgba(196, 174, 114, 0.25);
  animation: home-promo-badge-pulse 2.8s ease-in-out infinite;
}
@keyframes home-promo-badge-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 1px rgba(196, 174, 114, 0.5), 0 6px 20px rgba(196, 174, 114, 0.2);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 2px rgba(196, 174, 114, 0.45), 0 10px 28px rgba(196, 174, 114, 0.35);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-promo-combo__badge {
    animation: none;
  }
}
.home-promo-combo__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
}
.home-promo-combo__card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease calc(var(--stagger, 0s) + 0.1s),
    transform 0.55s ease calc(var(--stagger, 0s) + 0.1s);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}
.home-promo-combo--visible .home-promo-combo__card {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .home-promo-combo__card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.home-promo-combo__pair {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.home-promo-combo__thumb {
  position: relative;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.home-promo-combo__thumb:hover {
  border-color: rgba(196, 174, 114, 0.55);
  transform: translateY(-2px);
}
.home-promo-combo__thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.home-promo-combo__cap {
  display: block;
  padding: 0.4rem 0.45rem;
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(8, 7, 6, 0.35);
}
.home-promo-combo__plus {
  align-self: center;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--cta);
  opacity: 0.85;
  padding: 0 0.15rem;
}
.home-promo-combo__price {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 0.88rem;
}
.home-promo-combo__was {
  display: block;
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.82rem;
}
.home-promo-combo__now {
  display: block;
  font-weight: 600;
  color: var(--cta);
  margin-top: 0.15rem;
}
.home-promo-combo__cta {
  width: 100%;
  justify-content: center;
}

.home-welcome {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 clamp(1rem, 4vw, 1.25rem);
}
.home-welcome__kicker {
  margin: 0 0 0.45rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cta);
}
.home-welcome__title {
  margin: 0 auto 1.15rem;
  max-width: 36rem;
  text-align: center;
  line-height: 1.2;
}
.home-welcome__cta-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-top: 1.35rem;
}
.home-welcome__cta-wrap .btn {
  min-width: min(100%, 14rem);
  justify-content: center;
}
.home-welcome__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.home-welcome__i {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 0;
  padding: 1.05rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.home-welcome__mark {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.42rem;
  border-radius: 1px;
  background: linear-gradient(135deg, var(--cta), rgba(196, 174, 114, 0.35));
  box-shadow: 0 0 0 1px rgba(196, 174, 114, 0.2);
  transform: rotate(45deg);
}
.home-welcome__h {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.home-welcome__p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
}
.home-welcome__p a {
  color: var(--cta);
  font-weight: 500;
}
.home-welcome__p a:hover {
  color: var(--cta-hover);
}
@media (max-width: 900px) {
  .home-welcome__list {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin: 0 auto;
  }
}

.home-faq {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  padding: 0 clamp(1rem, 4vw, 1.25rem);
}
.home-faq__title {
  margin-bottom: 1.1rem;
  text-align: center;
}
.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.home-faq__item {
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: rgba(14, 12, 10, 0.75);
  overflow: hidden;
}
.home-faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}
.home-faq__item summary::-webkit-details-marker {
  display: none;
}
.home-faq__item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.1rem;
  border-right: 2px solid var(--cta);
  border-bottom: 2px solid var(--cta);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease-out);
}
.home-faq__item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}
.home-faq__item p {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  border-top: 1px solid var(--border);
}
.home-faq__item p a {
  color: var(--cta);
  font-weight: 500;
}
.home-faq__item p a:hover {
  color: var(--cta-hover);
}

.section-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cta);
}
.section-loja .section-kicker--cro {
  text-align: left;
}
.section-sub--cro { max-width: 38rem; }
.section-sale-nudge {
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.9rem;
  max-width: 40rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(250, 246, 240, 0.92);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 174, 114, 0.35);
  background: linear-gradient(120deg, rgba(196, 174, 114, 0.14) 0%, rgba(18, 16, 14, 0.75) 55%);
}
.section-sale-nudge strong {
  color: var(--cta);
}

.card__badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 3;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
  background: rgba(248, 113, 113, 0.92);
  color: #1a0a0a;
}
.card__badge--destaque {
  left: auto;
  right: 0.55rem;
  background: linear-gradient(135deg, var(--cta) 0%, #e0c878 100%);
  color: #141008;
}
.card__badge--promo {
  top: auto;
  right: auto;
  bottom: 0.55rem;
  left: 0.55rem;
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.28rem 0.52rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(212, 188, 118, 0.98) 0%, #b8943c 100%);
  color: #100d06;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.card__pix-hint {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}
.card__cta--cro {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  margin-top: 0.5rem !important;
}
.card__rating {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.45rem;
  line-height: 1.3;
}
.card__rating-score {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #e4c56e;
}
.card__rating-stars {
  letter-spacing: -0.04em;
  color: #c9a227;
  font-size: 0.74rem;
}
.card__rating-n {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.92;
}
.card__quick-hint {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  line-height: 1.38;
  color: rgba(200, 192, 176, 0.88);
  max-width: 22rem;
}
.card__quick-hint strong {
  color: rgba(236, 228, 208, 0.95);
  font-weight: 700;
}

.produto-price-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin: -0.15rem 0 0.85rem;
  max-width: 34rem;
  line-height: 1.58;
}
.produto-benefits {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 34rem;
}
.produto-benefits li { margin-bottom: 0.35rem; }
.produto-benefits a { font-weight: 600; }
.cro-urgency {
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 174, 114, 0.45);
  background: rgba(196, 174, 114, 0.1);
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 34rem;
}
.cro-urgency--high {
  border-color: rgba(248, 180, 100, 0.55);
  background: linear-gradient(135deg, rgba(120, 52, 28, 0.35) 0%, rgba(196, 174, 114, 0.12) 100%);
  animation: cro-urgency-pulse 2.4s ease-in-out infinite;
}
.cro-urgency--soft {
  border-color: rgba(196, 174, 114, 0.32);
  background: rgba(18, 16, 14, 0.65);
  color: var(--muted);
  font-size: 0.86rem;
}
@keyframes cro-urgency-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248, 180, 100, 0.12); }
  50% { box-shadow: 0 0 0 4px rgba(248, 180, 100, 0.08); }
}
@media (prefers-reduced-motion: reduce) {
  .cro-urgency--high {
    animation: none;
  }
}

@media (max-width: 899px) {
  .page-produto { padding-bottom: 5.5rem; }
}
.produto-sticky {
  display: none;
}
@media (max-width: 899px) {
  .produto-sticky:not([hidden]) {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    padding: 0.6rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(10, 9, 8, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.4);
  }
}
.produto-sticky__inner {
  max-width: 1200px;
  margin: 0 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-left: max(0px, env(safe-area-inset-left, 0px));
  padding-right: max(0px, env(safe-area-inset-right, 0px));
}
.produto-sticky__info {
  min-width: 0;
  flex: 1;
}
.produto-sticky__name {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.produto-sticky__var {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(210, 200, 175, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 56vw;
}
.produto-sticky__price {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cta);
  font-variant-numeric: tabular-nums;
}
.produto-sticky__btn {
  flex-shrink: 0;
  padding: 0.65rem 1rem !important;
  font-size: 0.95rem !important;
}

.checkout-steps {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0.55rem 1rem 0.6rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem 1.15rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(18, 16, 14, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.03);
}
.checkout-steps__i {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.5;
}
.checkout-steps__i + .checkout-steps__i::before {
  content: "›";
  margin-right: 0.35rem;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1;
  color: var(--cta);
  opacity: 0.38;
}
.checkout-steps__i--on { opacity: 1; color: var(--text); }
.checkout-steps__i span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(255, 252, 245, 0.06);
  border: 1px solid var(--border-strong);
  font-weight: 700;
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}
.checkout-steps__i--on span {
  background: linear-gradient(145deg, #c9b06e 0%, var(--cta) 100%);
  color: #141008;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(255, 250, 235, 0.12) inset;
}
.checkout-submit-wrap { margin-top: 1.35rem; }
.checkout-trust-line {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}
.checkout-trust-line span { color: var(--ok); margin-right: 0.15rem; }

/* —— CRO / ofertas com brilho dourado —— */
@keyframes cro-shimmer-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(196, 174, 114, 0.28),
      0 0 18px rgba(196, 174, 114, 0.07);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(232, 206, 140, 0.5),
      0 0 32px rgba(196, 174, 114, 0.2);
  }
}
.cro-shimmer-edge {
  animation: cro-shimmer-glow 3.2s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

.cro-ip-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  margin: 0;
  background: linear-gradient(105deg, rgba(22, 18, 12, 0.98) 0%, rgba(40, 32, 22, 0.96) 45%, rgba(28, 24, 18, 0.98) 100%);
  border-bottom: 1px solid rgba(196, 174, 114, 0.38);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text);
}
.cro-ip-banner--expired {
  opacity: 0.72;
  filter: saturate(0.85);
}
.cro-ip-banner__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 12px rgba(196, 174, 114, 0.9);
  animation: cro-pulse-dot 1.8s ease-out infinite;
}
@keyframes cro-pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}
.cro-ip-banner__text { margin: 0; flex: 1; text-align: center; }
.cro-ip-banner__text strong { color: var(--cta-hover); }
.cro-ip-banner__code {
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
  color: #f0e6c8 !important;
}
.cro-ip-banner__timer {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--cta);
}

.checkout-trust-panel {
  margin: 0 0 1.2rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(175deg, rgba(18, 16, 14, 0.94) 0%, rgba(10, 9, 8, 0.9) 100%);
  border: 1px solid rgba(196, 174, 114, 0.2);
  border-radius: var(--radius-md);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 252, 245, 0.05);
}
.checkout-trust-panel__title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  text-align: center;
  color: var(--text);
  line-height: 1.25;
}
.checkout-trust-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.checkout-trust-panel__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 300;
}
.checkout-trust-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 1px;
  background: var(--cta);
  transform: rotate(45deg);
  opacity: 0.55;
}
.checkout-trust-panel__list a {
  color: var(--cta);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 174, 114, 0.35);
}
.checkout-trust-panel__list a:hover {
  color: var(--cta-hover);
  border-bottom-color: var(--cta-hover);
}

.cro-combo-curadoria {
  margin: 1.35rem 0 1rem;
  padding: 1.15rem 1.2rem;
  background: rgba(18, 16, 14, 0.82);
  border: 1px solid rgba(196, 174, 114, 0.28);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.03);
}
.cro-combo-curadoria__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.45rem;
  color: var(--cta-hover);
}
.cro-combo-curadoria__lead { margin: 0 0 0.5rem; font-size: 0.92rem; color: var(--text); line-height: 1.55; }
.cro-combo-curadoria__hint { margin: 0; font-size: 0.8rem; color: var(--muted); line-height: 1.45; }

.cro-warranty-seal {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  margin: 1rem 0 0;
  background: rgba(196, 174, 114, 0.08);
  border: 1px solid rgba(196, 174, 114, 0.32);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
}
.cro-warranty-seal a {
  color: var(--cta-hover);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cro-warranty-seal a:hover {
  color: var(--text);
}
.cro-warranty-seal__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(196, 174, 114, 0.25);
  color: #141008;
  font-weight: 800;
  font-size: 0.75rem;
}
.cro-warranty-seal--compact { margin-top: 0.75rem; font-size: 0.85rem; }
.cro-warranty-seal--below-btn {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  border-style: dashed;
}

.checkout-resumo-cro {
  margin: 0 0 1rem;
  padding: 1.05rem 1.15rem;
  background: linear-gradient(168deg, rgba(26, 23, 20, 0.98) 0%, rgba(14, 12, 10, 0.94) 48%, rgba(10, 9, 8, 0.92) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 252, 245, 0.045),
    inset 0 2px 0 rgba(196, 174, 114, 0.1);
}
.checkout-resumo-cro__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cta);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.checkout-resumo-cro__single { margin: 0 0 0.35rem; font-size: 1rem; }
.checkout-resumo-cro__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}
.checkout-resumo-cro__lines li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border);
}
.checkout-resumo-cro__lines li:last-child { border-bottom: none; }
.checkout-resumo-cro__val { font-variant-numeric: tabular-nums; color: var(--muted); white-space: nowrap; }
.checkout-resumo-cro__sub { color: var(--muted); font-size: 0.85rem; }
.checkout-resumo-cro__discount {
  color: var(--cta) !important;
  font-weight: 600;
}
.checkout-preco--final {
  margin: 0.75rem 0 0;
  padding: 0.72rem 1rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(240, 234, 220, 0.95);
  background: rgba(196, 174, 114, 0.12);
  border: 1px solid rgba(196, 174, 114, 0.32);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.06);
}
.checkout-preco--final strong {
  color: var(--cta-hover);
  font-size: clamp(1.22rem, 4vw, 1.38rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}
.checkout-nudge-final {
  margin: 0.65rem 0 0;
  padding: 0.55rem 0.85rem;
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: center;
  color: var(--muted);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 174, 114, 0.22);
  background: rgba(18, 16, 14, 0.55);
}
.checkout-nudge-final strong {
  color: rgba(232, 224, 206, 0.95);
  font-weight: 600;
}

.cro-progressive-hint {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.58;
  margin: 0 0 1rem;
  padding: 0.7rem 0.95rem;
  border-left: 3px solid var(--cta);
  background: rgba(196, 174, 114, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.02);
}
.cro-progressive-hint strong { color: var(--cta-hover); }

.produto-cta-wrap--duo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.cro-btn-look {
  border-width: 2px !important;
  border-color: rgba(196, 174, 114, 0.45) !important;
  color: var(--cta) !important;
}
.cro-btn-look:hover {
  border-color: var(--cta) !important;
  color: var(--cta-hover) !important;
  background: rgba(196, 174, 114, 0.08) !important;
}

.cro-trust-band__item--gold strong { color: var(--cta); }

/* Entrada da vitrine: hierarquia visual sem depender de JS */
@media (prefers-reduced-motion: no-preference) {
  @keyframes cro-grid-pop {
    from {
      opacity: 0;
      transform: translateY(22px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  .grid .card--cro {
    animation: cro-grid-pop 0.62s var(--ease-out) both;
  }
  .grid .card--cro:nth-child(1) { animation-delay: 0.04s; }
  .grid .card--cro:nth-child(2) { animation-delay: 0.1s; }
  .grid .card--cro:nth-child(3) { animation-delay: 0.16s; }
  .grid .card--cro:nth-child(4) { animation-delay: 0.22s; }
  .grid .card--cro:nth-child(5) { animation-delay: 0.28s; }
  .grid .card--cro:nth-child(6) { animation-delay: 0.34s; }
  .grid .card--cro:nth-child(7) { animation-delay: 0.4s; }
  .grid .card--cro:nth-child(8) { animation-delay: 0.46s; }
  .grid .card--cro:nth-child(9) { animation-delay: 0.52s; }
  .grid .card--cro:nth-child(10) { animation-delay: 0.58s; }
  .grid .card--cro:nth-child(11) { animation-delay: 0.64s; }
  .grid .card--cro:nth-child(12) { animation-delay: 0.7s; }
}

/* Página de produto: bloco de compra “âncora” */
.produto-buybox {
  padding: 1.1rem 1.15rem 1.25rem;
  margin: 0 0 0.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: linear-gradient(168deg, rgba(26, 23, 19, 0.98) 0%, rgba(14, 12, 10, 0.78) 55%, rgba(10, 9, 8, 0.88) 100%);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 252, 245, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}
.produto-buybox .produto-titulo {
  margin-top: 0;
  line-height: 1.16;
}
.produto-buybox .preco {
  margin-bottom: 0.2rem;
  font-size: clamp(1.28rem, 2.8vw, 1.58rem);
  letter-spacing: 0.03em;
}
.produto-buybox__promo-chip,
.checkout-promo-chip {
  margin: 0.4rem 0 0;
  padding: 0.38rem 0.65rem;
  max-width: 26rem;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(210, 202, 186, 0.95);
  border-radius: 999px;
  border: 1px solid rgba(196, 174, 114, 0.32);
  background: rgba(196, 174, 114, 0.1);
}
.checkout-promo-chip {
  margin: 0.55rem auto 0;
  max-width: 100%;
  text-align: center;
}
.produto-buybox__promo-chip strong,
.checkout-promo-chip strong {
  color: var(--cta);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.produto-buybox__save {
  margin: 0.55rem 0 0;
  padding: 0.45rem 0.65rem;
  max-width: 30rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(245, 236, 214, 0.95);
  border-radius: 8px;
  border: 1px solid rgba(90, 168, 120, 0.35);
  background: linear-gradient(135deg, rgba(32, 72, 48, 0.45) 0%, rgba(18, 26, 20, 0.5) 100%);
}
.produto-buybox__save strong {
  color: #b8e6c8;
  font-weight: 700;
}
.produto-buybox__pay-modes,
.produto-buybox__parcelas-hint {
  margin: 0.45rem 0 0;
  max-width: 32rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}
.produto-buybox__parcelas-hint strong {
  color: rgba(230, 218, 196, 0.92);
  font-weight: 700;
}
.produto-buybox__rating {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.88rem;
}
.produto-buybox__rating-a {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.35rem 0.55rem;
  margin: 0 -0.55rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.produto-buybox__rating-a:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(196, 174, 114, 0.08);
  text-decoration: none;
}
.produto-buybox__rating-score {
  font-weight: 700;
  color: var(--cta);
  font-variant-numeric: tabular-nums;
}
.produto-buybox__rating-stars {
  color: var(--cta);
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}
.produto-buybox__rating-count {
  font-size: 0.8rem;
  color: var(--muted);
}
.produto-buybox__loja-pedidos {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(200, 192, 178, 0.95);
}
.produto-buybox__loja-pedidos strong {
  color: var(--cta);
  font-weight: 700;
}
.produto-buybox .produto-price-sub {
  margin: 0 0 0.15rem;
  max-width: none;
}
.produto-hot-bar {
  margin: 1rem 0 0;
  padding: 0.75rem 0.95rem;
  max-width: 36rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 174, 114, 0.4);
  background: linear-gradient(165deg, rgba(196, 174, 114, 0.16) 0%, rgba(14, 12, 10, 0.88) 70%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.produto-hot-bar__line {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(250, 246, 240, 0.95);
}
.produto-hot-bar__line strong {
  color: var(--cta);
}
.produto-hot-bar__cupom {
  margin: 0.55rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(196, 174, 114, 0.22);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}
.produto-hot-bar__cupom strong {
  color: var(--cta);
  font-weight: 700;
}
.produto-wa-cta {
  margin: 0.65rem 0 0;
  max-width: 36rem;
}
.btn--wa-inline {
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem !important;
  line-height: 1.35 !important;
  padding: 0.55rem 0.85rem !important;
  white-space: normal;
}
.btn--cta-now {
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}
.produto-benefits.produto-benefits--apex {
  list-style: none;
  padding: 0.85rem 0 0;
  margin: 1rem 0 0;
  padding-left: 0;
  border-top: 1px solid var(--border);
}
.produto-benefits--apex li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}
.produto-benefits--apex li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 2px rgba(196, 174, 114, 0.25);
}
.produto-benefits--apex li:last-child { margin-bottom: 0; }
.produto-benefits--apex a { font-weight: 600; }

.site-footer__conv {
  margin: 1rem auto 0;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cta);
  border: 1px solid rgba(196, 174, 114, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(196, 174, 114, 0.06);
  max-width: 32rem;
  line-height: 1.5;
}
.site-footer__conv a {
  display: inline-block;
  margin: -0.15rem -0.25rem;
  padding: 0.28rem 0.45rem;
  color: var(--cta-hover);
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  border-radius: var(--radius-sm);
}
.site-footer__conv a:hover {
  color: var(--text);
}

.footer-legal {
  margin: 1.15rem auto 0;
  padding: 0.85rem 1rem;
  max-width: 34rem;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.65;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-legal__line {
  display: block;
}
.footer-legal a {
  display: inline-block;
  margin: -0.12rem -0.2rem;
  padding: 0.25rem 0.4rem;
  color: var(--cta);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-sm);
}
.footer-legal a:hover {
  color: var(--cta-hover);
  text-decoration: underline;
}

/* ——— Breadcrumb em linha (produto / categorias) ——— */
.breadcrumb--cro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.35rem;
  margin-bottom: 1rem;
}
.breadcrumb--cro a {
  display: inline;
  padding: 0.15rem 0;
  margin: 0;
  font-size: 0.82rem;
}
.breadcrumb__sep {
  color: var(--muted);
  font-size: 0.75rem;
  user-select: none;
  opacity: 0.65;
}

/* ——— Hub de categorias (/categoria) ——— */
.page-cat-hub {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}
.cat-hub-hero {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.cat-hub-hero__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cta);
  margin: 0 0 0.5rem;
}
.cat-hub-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 0.65rem;
}
.cat-hub-hero__title em {
  font-style: italic;
  color: var(--cta);
}
.cat-hub-hero__sub {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}
.cat-hub-hero__proof {
  margin: 0.85rem 0 0;
  max-width: none;
}
.cat-hub-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}
.cat-hub-card {
  position: relative;
  min-width: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.35s var(--ease-spring);
}
.cat-hub-card--live {
  border-color: rgba(196, 174, 114, 0.22);
}
.cat-hub-card:hover {
  border-color: rgba(196, 174, 114, 0.35);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.cat-hub-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.cat-hub-card__link:hover {
  text-decoration: none;
  color: inherit;
}
.cat-hub-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-card-inner);
}
.cat-hub-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s var(--ease-out);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cat-hub-card:hover .cat-hub-card__media img {
  transform: scale(1.04);
}
.cat-hub-card__ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(196, 174, 114, 0.12), transparent 55%);
}
.cat-hub-card__shine {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  inset: -40% -20%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 250, 240, 0.06) 50%, transparent 60%);
  transform: translateX(-30%);
  transition: transform 0.7s var(--ease-out);
}
.cat-hub-card:hover .cat-hub-card__shine {
  transform: translateX(20%);
}
.cat-hub-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
}
.cat-hub-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}
.cat-hub-card__desc {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.cat-hub-card__meta {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}
.cat-hub-card__cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cta);
}
.cat-hub-card__pills {
  list-style: none;
  margin: 0;
  padding: 0 1rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.cat-hub-card__pills a {
  font-size: 0.72rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  text-decoration: none;
}
.cat-hub-card__pills a:hover {
  border-color: var(--cta);
  color: var(--cta-hover);
  text-decoration: none;
}
.cat-hub-empty {
  margin-top: 2rem;
}

/* ——— Listagem categoria + tipo ——— */
.page-cat-loja {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}
.cat-loja-hero {
  margin-bottom: 1.25rem;
}
.cat-loja-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  margin: 0 0 0.4rem;
}
.cat-loja-hero__sub {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}
.cat-loja-hero__wa {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
}
.cat-loja-sale-strip {
  margin: 0 0 1.35rem;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
  color: rgba(232, 224, 206, 0.95);
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 174, 114, 0.28);
  background: linear-gradient(135deg, rgba(196, 174, 114, 0.12) 0%, rgba(18, 16, 14, 0.75) 100%);
  max-width: 52rem;
}
.cat-loja-sale-strip strong {
  color: var(--cta);
  font-weight: 700;
}
.cat-loja-micro-proof {
  margin: -0.35rem auto 1.25rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
  color: rgba(200, 192, 178, 0.95);
  max-width: 48rem;
}
.cat-loja-micro-proof strong {
  color: var(--cta);
  font-weight: 700;
}
.cat-loja-catalog-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--text);
}
.cat-loja-catalog-lead {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 36rem;
}
.cat-loja-facets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
}
.cat-loja-facet {
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cat-loja-facet:hover {
  color: var(--cta);
  border-color: rgba(196, 174, 114, 0.35);
  text-decoration: none;
}
.cat-loja-facet.is-active {
  background: rgba(196, 174, 114, 0.14);
  border-color: rgba(196, 174, 114, 0.45);
  color: var(--text);
  font-weight: 600;
}
.cat-loja-facet:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
.page-cat-loja .section-loja--cat {
  padding: clamp(1.1rem, 3vw, 1.65rem);
  margin-top: 0.35rem;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, rgba(22, 20, 17, 0.62) 0%, rgba(14, 12, 10, 0.28) 48%, transparent 100%);
  border: 1px solid rgba(255, 250, 235, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.035);
}

/* ——— Home: trilho “comprar por estilo” ——— */
.home-cat-discovery {
  position: relative;
  margin: 0 0 2.5rem;
  padding: 2.5rem 1.25rem 2.75rem;
  overflow: hidden;
}
.home-cat-discovery__glow {
  pointer-events: none;
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(196, 174, 114, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 70%, rgba(130, 150, 180, 0.08), transparent 50%);
  opacity: 0.9;
}
.home-cat-discovery__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}
.home-cat-discovery__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 1.75rem;
}
.home-cat-discovery__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cta);
  margin: 0 0 0.45rem;
}
.home-cat-discovery__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.55rem;
}
.home-cat-discovery__accent {
  color: var(--cta);
  font-style: italic;
}
.home-cat-discovery__sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.home-cat-discovery__all {
  display: inline-flex;
}
.home-cat-discovery__rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
}
.home-cat-discovery__card {
  min-width: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.25s;
}
.home-cat-discovery__card.is-live:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.home-cat-discovery__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.home-cat-discovery__card-link:hover {
  color: inherit;
  text-decoration: none;
}
.home-cat-discovery__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-card-inner);
}
.home-cat-discovery__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.home-cat-discovery__ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(196, 174, 114, 0.1), transparent 60%);
}
.home-cat-discovery__card-body {
  padding: 1rem 1rem 0.35rem;
}
.home-cat-discovery__card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}
.home-cat-discovery__card-desc {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-cat-discovery__card-cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cta);
}
.home-cat-discovery__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0 1rem 1rem;
}
.home-cat-discovery__chip {
  font-size: 0.68rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--accent);
  text-decoration: none;
}
.home-cat-discovery__chip:hover {
  border-color: var(--cta);
  color: var(--cta);
  text-decoration: none;
}

/* ——— Admin categorias ——— */
.admin-subtitle {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.admin-subtitle--sm {
  font-size: 0.92rem;
  margin-top: 1.25rem;
}
.admin-table--compact td,
.admin-table--compact th {
  font-size: 0.85rem;
  padding: 0.45rem 0.55rem;
}
.admin-cell--cat {
  font-size: 0.85rem;
  max-width: 12rem;
}

.admin-badge--gold {
  background: rgba(196, 174, 114, 0.22);
  color: var(--cta-hover);
  font-weight: 600;
}

.admin-cat-flash {
  margin: 0 0 1rem;
}

.admin-page--categorias .admin-top {
  border-bottom-color: rgba(196, 174, 114, 0.15);
}

.admin-cat-hero {
  display: grid;
  gap: 1.25rem;
  margin: 0 0 1.5rem;
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 174, 114, 0.22);
  background:
    linear-gradient(155deg, rgba(24, 21, 18, 0.98) 0%, rgba(12, 10, 9, 0.88) 100%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(196, 174, 114, 0.12), transparent 55%);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 252, 245, 0.05);
}
@media (min-width: 840px) {
  .admin-cat-hero {
    grid-template-columns: 1fr minmax(280px, 340px);
    align-items: start;
    gap: 1.75rem;
  }
}
.admin-cat-hero__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cta);
}
.admin-cat-hero__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}
.admin-cat-hero__sub {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38rem;
}
.admin-cat-hero__code {
  font-size: 0.78em;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  color: var(--accent-soft);
}
.admin-cat-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.admin-cat-quick {
  margin: 0;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: rgba(8, 7, 6, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.04);
}
.admin-cat-quick__label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.admin-cat-quick__fields {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.admin-cat-quick__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.admin-cat-quick__hint {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.admin-cat-quick__opt {
  font-weight: 400;
  color: var(--muted);
}
.admin-cat-quick__input {
  font: inherit;
  font-size: 0.88rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  width: 100%;
}
.admin-cat-quick__input:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}
.admin-cat-quick__check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.75rem 0 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
  cursor: pointer;
}
.admin-cat-quick__check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--cta);
}
.admin-cat-quick__submit {
  width: 100%;
  justify-content: center;
  font-weight: 600;
}

.admin-toolbar--categorias {
  border-color: rgba(196, 174, 114, 0.12);
}

.admin-table-wrap--categorias {
  border-color: rgba(196, 174, 114, 0.12);
}
.admin-table--categorias .admin-cell--cat-name {
  font-weight: 600;
  color: var(--text);
  max-width: 14rem;
}
.admin-cat-url {
  font-size: 0.78rem;
  word-break: break-all;
}
.admin-pill-num {
  display: inline-flex;
  min-width: 1.65rem;
  justify-content: center;
  padding: 0.2rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  border-radius: 999px;
  background: rgba(196, 174, 114, 0.1);
  color: var(--cta);
}

.admin-empty--categorias {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  background: rgba(196, 174, 114, 0.04);
}

.admin-cat-form-card,
.admin-cat-types-card {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.3rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 252, 245, 0.03);
}
.admin-cat-form-card__head,
.admin-cat-types-card__head {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.admin-cat-form-card__title,
.admin-cat-types-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.admin-cat-form-card__lead,
.admin-cat-types-card__lead {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}
.admin-table-wrap--nested {
  margin-bottom: 1rem;
}
.admin-cat-types-empty {
  margin: 0 0 1rem;
}
.admin-cat-slug-code {
  font-size: 0.78rem;
}
.admin-cat-tipo-form__grid {
  grid-template-columns: 1fr 1fr minmax(5rem, 6rem) auto;
  align-items: end;
}
@media (max-width: 720px) {
  .admin-cat-tipo-form__grid {
    grid-template-columns: 1fr;
  }
  .admin-cat-tipo-form__check {
    align-self: start;
  }
}

.admin-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
}
.admin-quick-links__a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.admin-quick-links__a:hover {
  color: var(--text);
  border-color: rgba(196, 174, 114, 0.35);
  background: rgba(196, 174, 114, 0.08);
  text-decoration: none;
}
.admin-quick-links__a--accent {
  color: #141008;
  border-color: rgba(196, 174, 114, 0.45);
  background: linear-gradient(145deg, #c9b06e 0%, var(--cta) 50%, #a89258 100%);
}
.admin-quick-links__a--accent:hover {
  color: #141008;
  filter: brightness(1.05);
  text-decoration: none;
}

.form-row--cat-block .admin-cat-field-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.35rem;
}
.form-row--cat-block .admin-cat-field-head label {
  margin: 0;
}
.admin-cat-field-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.admin-cat-field-actions__btn {
  white-space: nowrap;
}

/* Ficha do produto — tablet e telemóvel (até 899px): galeria, escolha e CTAs */
@media (max-width: 899px) {
  .produto-swipe-hint__desk,
  .produto-var-picker__lead-desk {
    display: none !important;
  }
  .produto-swipe-hint__mob,
  .produto-var-picker__lead-mob {
    display: inline;
  }
  .produto-passos-mobile {
    display: flex;
  }
  .produto-col-compra {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
  }
  .page-produto .produto-swipe-hint {
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
    line-height: 1.45;
    border-radius: 12px;
  }
  .page-produto .produto-galeria__main {
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
  }
  .page-produto .produto-galeria,
  .page-produto .produto-video__el,
  .page-produto .produto-video__wrap {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }
  .page-produto .produto-galeria__img-wrap {
    contain: layout paint style;
  }
  .page-produto .thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: 0.5rem;
    justify-content: flex-start;
    margin-top: 0.7rem;
    padding: 0.2rem 0 0.5rem;
    margin-inline: -0.35rem;
    padding-inline: 0.35rem 1.25rem;
    scrollbar-width: thin;
  }
  .page-produto .thumbs::-webkit-scrollbar {
    height: 5px;
  }
  .page-produto .thumbs::-webkit-scrollbar-thumb {
    background: rgba(196, 174, 114, 0.35);
    border-radius: 3px;
  }
  .page-produto .thumbs .ddm-thumb-wrap {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .page-produto .thumbs img {
    width: 72px;
    height: 72px;
  }
  .produto-buybox .preco {
    font-size: clamp(1.28rem, 5.5vw, 1.62rem);
  }
  .produto-var-selects,
  .produto-var-selects--solo {
    max-width: none;
  }
  .produto-var-select {
    max-width: none;
    width: 100%;
    min-height: var(--tap-min);
    font-size: max(16px, 1rem);
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
  }
  .produto-var-picker__surface {
    padding: 1rem 0.85rem 1.05rem;
  }
  .produto-galeria__skip {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
  }
  .produto-galeria__skip-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
  }
  .produto-galeria__skip-a {
    min-height: var(--tap-min);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(196, 174, 114, 0.25);
    background: rgba(16, 14, 12, 0.55);
    font-weight: 600;
  }
  .produto-var-resumo__inner {
    padding: 0.72rem 0.85rem;
    min-height: 3.35rem;
  }
  .produto-var-resumo__label {
    font-size: 0.95rem;
  }
  .produto-sticky__name {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.28;
    max-height: 2.65em;
  }
  .page-produto .produto-cta-wrap .btn--lg {
    min-height: 3.1rem;
  }
}

/* Mobile / touch — fim do ficheiro para vencer a cascata das regras base */
@media (max-width: 719px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  main {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    padding-top: 1.35rem;
    padding-bottom: max(3.25rem, calc(2.25rem + env(safe-area-inset-bottom, 0px)));
  }
  .hero {
    padding: 1.45rem 0 1.65rem;
    margin-bottom: 1.45rem;
  }
  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.5rem);
    letter-spacing: -0.03em;
    line-height: 1.12;
  }
  .hero--sell {
    padding: 1.55rem 0.8rem 1.45rem;
    margin-bottom: 1.45rem;
    border-radius: var(--radius-md);
  }
  .hero--atelier {
    padding-top: 1.65rem;
    padding-bottom: 1.45rem;
  }
  .hero-kicker {
    letter-spacing: 0.16em;
  }
  .trust-strip {
    font-size: 0.84rem;
    gap: 0.45rem 0.85rem;
    margin-top: 1.25rem;
  }
  .busca {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    width: 100%;
    gap: 0.6rem;
  }
  .busca input {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
  .busca .btn {
    width: 100%;
    justify-content: center;
  }
  .section-title--display {
    font-size: clamp(1.32rem, 5.5vw, 1.82rem);
  }
  .section-sub {
    font-size: 0.9rem;
    margin-bottom: 1.15rem;
  }
  .header-trust__inner {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    gap: 0.35rem 0.5rem;
  }
  .header-trust__item {
    white-space: normal;
    text-wrap: balance;
    max-width: 100%;
  }
  .site-nav a {
    white-space: normal;
    justify-content: flex-start;
    text-align: left;
  }
  .site-nav .nav-cta {
    width: 100%;
    max-width: 22rem;
    margin-top: 0.35rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
  }
  .site-nav.is-open {
    gap: 0.2rem;
  }
  .cro-ip-banner {
    padding-left: max(0.65rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.65rem, env(safe-area-inset-right, 0px));
    padding-top: max(0.45rem, env(safe-area-inset-top, 0px));
    font-size: 0.76rem;
    line-height: 1.35;
  }
  .cro-trust-band {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 0.95rem max(0.75rem, env(safe-area-inset-left, 0px)) 1rem max(0.75rem, env(safe-area-inset-right, 0px));
    gap: 0.55rem;
    margin-bottom: 1.35rem;
  }
  .cro-trust-band__item {
    max-width: none;
  }
  .cro-magnet-stats {
    max-width: none;
  }
  .cro-hero-cta {
    max-width: none;
    width: 100%;
  }
  .cro-hero-cta .btn--hero-magnet,
  .cro-hero-cta .cro-hero-cta__wa {
    max-width: none;
  }
  .hero-promo-chips {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    gap: 0.55rem;
  }
  .hero-promo-chips__i {
    min-width: 0;
    width: 100%;
    padding: 0.55rem 1rem 0.6rem;
  }
  .hero-promo-chips__i--terms {
    min-height: var(--tap-min);
  }
  .home-search-strip {
    margin-bottom: 1.5rem;
    padding-left: max(0.65rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.65rem, env(safe-area-inset-right, 0px));
  }
  .home-search-strip__inner {
    padding-bottom: 1.05rem;
  }
  .hero-lead {
    padding-left: max(0.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.25rem, env(safe-area-inset-right, 0px));
    line-height: 1.68;
  }
  .page-produto .breadcrumb--cro {
    font-size: 0.82rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    padding-bottom: 0.55rem;
  }
  .produto-layout {
    gap: 1.25rem;
  }
  .produto-var-picker__surface {
    padding: 0.72rem 0.65rem 0.88rem;
  }
  .produto-titulo {
    font-size: clamp(1.35rem, 5.2vw, 1.85rem);
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .produto-sticky:not([hidden]) {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }
  .produto-sticky__btn {
    min-height: var(--tap-min);
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
  }
  .page-produto .produto-swipe-hint {
    margin: 0.55rem 0 0.2rem;
    max-width: none;
    font-size: 0.74rem;
    padding-inline: 0.65rem;
  }
  .card:hover {
    transform: none;
    box-shadow: var(--shadow-card);
    border-color: var(--border);
  }
  .card:hover .card__img {
    transform: none;
  }
  .home-cat-discovery {
    margin-bottom: 2rem;
    padding: 1.65rem max(0.75rem, env(safe-area-inset-left, 0px)) 2rem max(0.75rem, env(safe-area-inset-right, 0px));
  }
  .home-cat-discovery__rail {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .home-promo-combo__grid {
    grid-template-columns: 1fr;
  }
  .cat-hub-grid {
    grid-template-columns: 1fr;
    gap: 1.05rem;
  }
  .page-cat-hub,
  .page-cat-loja {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }
  .cat-loja-facets {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.35rem;
    gap: 0.45rem;
  }
  .cat-hub-card:hover {
    transform: none;
    box-shadow: var(--shadow-card);
  }
  .cat-hub-card:hover .cat-hub-card__media img {
    transform: none;
  }
  .home-cat-discovery__card.is-live:hover {
    transform: none;
    box-shadow: var(--shadow-card);
  }
  .site-header__inner {
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 1.05rem;
  }
  .card__body {
    padding: 1rem 1.05rem 1.25rem;
  }
  .card__title {
    font-size: 1.02rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .card--cro:hover .card__media::after {
    opacity: 0;
    transform: none;
  }
  .checkout-page {
    max-width: 100%;
    padding-left: max(0, env(safe-area-inset-left, 0px));
    padding-right: max(0, env(safe-area-inset-right, 0px));
  }
  .checkout-page .form-row input,
  .checkout-page .form-row select,
  .checkout-page .form-row textarea,
  .conta-page .form-row input,
  .conta-page .form-row select,
  .conta-page .form-row textarea,
  .busca input {
    font-size: max(16px, 1rem);
  }
  .checkout-panel {
    padding: 1.1rem 0.9rem 1.35rem;
  }
  .ddm-pay-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .ddm-pay-card--pix {
    grid-column: auto;
  }
  .ddm-pay-card .pay-option__box {
    min-height: 4.75rem;
    padding: 0.75rem 0.85rem;
  }
  .checkout-resumo-cro {
    padding: 0.95rem 0.85rem;
  }
  .checkout-resumo-cro__lines li {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.45rem 0;
  }
  .checkout-resumo-cro__val {
    white-space: normal;
    text-align: right;
    align-self: flex-end;
  }
  .checkout-submit-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .checkout-submit-wrap .btn {
    width: 100%;
    justify-content: center;
  }
  .pix-box img {
    max-width: min(100%, 280px);
    height: auto;
  }
  .pix-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.25rem;
  }
  .pix-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .produto-cta-wrap--duo {
    flex-direction: column;
    align-items: stretch;
  }
  .produto-cta-wrap--duo .btn {
    width: 100%;
    justify-content: center;
  }
  .produto-var-opt__card,
  .checkout-var-opt__card {
    min-height: var(--tap-min);
  }
  .produto-var-opt__name,
  .checkout-var-opt__name {
    font-size: max(15px, 0.93rem);
  }
  .produto-var-filtro--todas,
  .checkout-var-filtro--todas {
    min-height: var(--tap-min);
    padding-left: 1rem;
    padding-right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .produto-var-filtro:not(.produto-var-filtro--todas),
  .checkout-var-filtro:not(.checkout-var-filtro--todas) {
    min-height: var(--tap-min);
    min-width: 4.85rem;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .produto-var-resumo__edit {
    min-height: var(--tap-min);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .cat-loja-facet {
    flex-shrink: 0;
    min-height: var(--tap-min);
    display: inline-flex;
    align-items: center;
  }
  .checkout-steps {
    border-radius: var(--radius-md);
    padding: 0.65rem max(0.65rem, env(safe-area-inset-left, 0px)) 0.7rem max(0.65rem, env(safe-area-inset-right, 0px));
    gap: 0.45rem 0.65rem;
    font-size: 0.74rem;
  }
  .checkout-promo-chip {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    line-height: 1.5;
  }
  .checkout-page__title {
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
  .conta-pedido-card__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .conta-pedido-card__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .conta-empty .btn {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    justify-content: center;
  }
  .conta-page--pedido .conta-card__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .conta-page--pedido .conta-card__cta .btn {
    width: 100%;
    justify-content: center;
  }
  .conta-dl > div {
    grid-template-columns: 1fr;
    gap: 0.15rem 0;
    padding-bottom: 0.75rem;
  }
  .conta-dl dt {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(168, 160, 148, 0.95);
  }
  .conta-dl dd {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .conta-hero__lead--wallet {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }
  .conta-page .form-row select,
  .conta-page .form-row textarea {
    font-size: max(16px, 1rem);
  }
  .conta-page--avaliar .conta-form__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }
  .conta-page--avaliar .conta-form__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .produto-var-selects,
  .checkout-var-selects {
    max-width: none;
  }
  .produto-var-galeria-bridge {
    font-size: max(15px, 0.82rem);
    line-height: 1.42;
  }
  .produto-var-select {
    max-width: none;
  }
  .produto-descricao-summary {
    min-height: var(--tap-min);
    display: flex;
    align-items: center;
    padding: 0.35rem 0.15rem;
  }
  .cat-hub-card__pills a {
    min-height: var(--tap-min);
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
  }
  .page-404 {
    margin-left: max(0.5rem, env(safe-area-inset-left, 0px));
    margin-right: max(0.5rem, env(safe-area-inset-right, 0px));
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    max-width: calc(100vw - 1.25rem);
  }
  .page-404__search {
    flex-direction: column;
    max-width: none;
    width: 100%;
  }
  .page-404__search-input {
    width: 100%;
    font-size: max(16px, 1rem);
    min-height: var(--tap-min);
  }
  .page-404__search-btn {
    width: 100%;
    justify-content: center;
  }
  .page-404__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
  .page-404__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .site-footer__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer__link {
    width: 100%;
    justify-content: center;
  }
  .site-footer {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .legal {
    padding-left: max(0.35rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.35rem, env(safe-area-inset-right, 0px));
    padding-bottom: 2.5rem;
  }
  .help-assist {
    right: max(0.6rem, env(safe-area-inset-right, 0px));
    left: max(0.6rem, env(safe-area-inset-left, 0px));
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .help-assist__panel {
    left: 0;
    right: 0;
    width: auto;
    max-height: min(65vh, calc(100dvh - 10rem));
    padding-bottom: max(1.1rem, calc(0.75rem + env(safe-area-inset-bottom, 0px)));
  }
  .help-assist__summary {
    min-height: var(--tap-min);
    display: flex;
    align-items: center;
  }
  .home-social-proof {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .breadcrumb--cro a {
    display: inline-block;
    padding: 0.32rem 0.28rem;
    margin: -0.12rem -0.08rem;
    border-radius: 4px;
  }
  .back-to-top {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    width: 3.25rem;
    height: 3.25rem;
  }
}

@media (max-width: 899px) {
  body:has(.page-produto) .back-to-top.is-visible {
    bottom: max(5.85rem, calc(0.9rem + env(safe-area-inset-bottom, 0px)));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
  }
  body:has(.page-produto) .wa-fab {
    bottom: max(5.85rem, calc(0.9rem + env(safe-area-inset-bottom, 0px)));
  }
  body:has(.page-produto) .help-assist {
    bottom: max(9.55rem, calc(5.85rem + 3.35rem + 0.45rem + env(safe-area-inset-bottom, 0px)));
  }
}

/* Barra de consentimento (Meta / Google) */
.ddm-consent {
  position: fixed;
  z-index: 120;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem max(0.75rem, env(safe-area-inset-right, 0px))
    calc(0.85rem + env(safe-area-inset-bottom, 0px)) max(0.75rem, env(safe-area-inset-left, 0px));
  background: linear-gradient(180deg, rgba(10, 9, 8, 0), rgba(10, 9, 8, 0.97) 18%);
  border-top: 1px solid rgba(196, 174, 114, 0.38);
  box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.45);
}
.ddm-consent__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}
.ddm-consent__text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(250, 246, 240, 0.88);
}
.ddm-consent__text a {
  color: #e8d9a8;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.ddm-consent__text a:hover {
  color: #f5edd4;
}
.ddm-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
body.ddm-consent--open {
  padding-bottom: 5.75rem;
}
body:has(.ddm-consent:not([hidden])) .back-to-top.is-visible {
  bottom: max(6.5rem, calc(1rem + env(safe-area-inset-bottom, 0px)));
}
body:has(.ddm-consent:not([hidden])) .wa-fab {
  bottom: max(6.5rem, calc(1rem + env(safe-area-inset-bottom, 0px)));
}
body:has(.ddm-consent:not([hidden])) .help-assist {
  bottom: max(10.2rem, calc(6.5rem + 3.35rem + 0.45rem + env(safe-area-inset-bottom, 0px)));
}
@media (max-width: 719px) {
  .ddm-consent__actions .btn {
    min-height: var(--tap-min);
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }
}
@media (max-width: 899px) {
  body:has(.page-produto):has(.ddm-consent:not([hidden])) .back-to-top.is-visible,
  body:has(.page-produto):has(.ddm-consent:not([hidden])) .wa-fab {
    bottom: max(11.5rem, calc(5.5rem + env(safe-area-inset-bottom, 0px)));
  }
  body:has(.page-produto):has(.ddm-consent:not([hidden])) .help-assist {
    bottom: max(15.2rem, calc(11.5rem + 3.35rem + 0.45rem + env(safe-area-inset-bottom, 0px)));
  }
}
