/* M&C Studio — tema escuro neon */
:root {
  --bg: #08070d;
  --bg-soft: #0f0d18;
  --card: #14111f;
  --card-2: #191527;
  --text: #f7f3ff;
  --muted: #b9b1c7;
  --line: rgba(255,255,255,.11);
  --pink: #ff2fa7;
  --purple: #8a3ffc;
  --orange: #ff8a1f;
  --yellow: #ffd24a;
  --green: #22c96b;
  --shadow: 0 24px 70px rgba(0,0,0,.42);
  --radius: 24px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(138,63,252,.16), transparent 32rem),
    radial-gradient(circle at 88% 14%, rgba(255,47,167,.11), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}

.site-header {
  height: 82px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--max))/2));
  background: rgba(8,7,13,.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.header-left { display: flex; align-items: center; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .08em; }
.brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 16px; }
.brand.compact img { width: 48px; height: 48px; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { color: var(--muted); font-weight: 700; font-size: .94rem; }
.desktop-nav a:hover { color: white; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .cart-button, .menu-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.icon-button { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; }
.icon-button svg, .cart-button svg, .mobile-search svg, .search-field svg {
  width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round;
}
.cart-button {
  height: 44px;
  display: flex; align-items: center; gap: 9px;
  padding: 0 13px;
  border-radius: 14px;
  font-weight: 800;
}
.cart-button b {
  min-width: 23px; height: 23px; border-radius: 999px;
  display: grid; place-items: center;
  color: #100b12; background: linear-gradient(135deg, var(--pink), var(--orange));
  font-size: .76rem;
}
.menu-button { display: block; width: 44px; height: 44px; border-radius: 14px; padding: 11px; }
.menu-button span { display: block; height: 2px; background: white; margin: 5px 0; border-radius: 9px; }

.hero {
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100svh - 82px);
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 52px;
  padding: 72px 0;
}
.eyebrow {
  display: inline-block;
  color: #f6a4dc;
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .18em;
}
.hero h1, .section-heading h2, .steps-copy h2, .cta-section h2 {
  margin: 16px 0 18px;
  line-height: .96;
  letter-spacing: -.055em;
}
.hero h1 { font-size: clamp(3.35rem, 7vw, 6.8rem); max-width: 720px; }
.slogan {
  margin: 0 0 16px;
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.28rem);
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-description { color: var(--muted); font-size: 1.08rem; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: #110a14;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 16px 42px rgba(255,47,167,.24);
}
.button.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.05); }
.button.whatsapp { background: var(--green); color: #04160b; }
.button.whatsapp svg { width: 23px; height: 23px; margin-right: 10px; fill: currentColor; }
.button.full { width: 100%; }
.hero-benefits { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: var(--muted); font-size: .86rem; font-weight: 700; }

.hero-art {
  min-height: 550px;
  position: relative;
  display: grid;
  place-items: center;
}
.hero-art img {
  width: min(100%, 610px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 42px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 70px rgba(255,47,167,.19));
}
.logo-halo {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 40deg, var(--purple), var(--pink), var(--orange), var(--purple));
  filter: blur(64px);
  opacity: .26;
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe { 50% { transform: scale(1.08) rotate(8deg); opacity: .38; } }

.quick-categories {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.035);
}
.quick-categories a { min-height: 110px; display: flex; flex-direction: column; justify-content: center; padding: 20px 26px; border-right: 1px solid var(--line); }
.quick-categories a:last-child { border-right: 0; }
.quick-categories strong { font-size: 1.6rem; color: #ff9cda; }
.quick-categories span { color: var(--muted); font-size: .89rem; }

.products-section, .services-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}
.products-section { border-top: 1px solid var(--line); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
  margin-bottom: 42px;
}
.section-heading h2, .steps-copy h2, .cta-section h2 { font-size: clamp(2.55rem, 5.4vw, 5.2rem); }
.section-heading p { max-width: 700px; color: var(--muted); font-size: 1.03rem; }
.section-heading.centered { justify-content: center; text-align: center; }
.section-heading.centered p { margin-left: auto; margin-right: auto; }
.price-highlight {
  flex: 0 0 auto;
  min-width: 205px;
  padding: 20px 24px;
  border: 1px solid rgba(255,138,31,.35);
  background: rgba(255,138,31,.08);
  border-radius: 20px;
}
.price-highlight small { display: block; color: var(--muted); font-weight: 800; letter-spacing: .12em; }
.price-highlight strong { display: block; margin-top: 4px; font-size: 1.6rem; color: #ffc266; }

.toolbar { display: flex; gap: 14px; margin-bottom: 28px; }
.search-field {
  flex: 1;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 0 17px;
}
.search-field svg { color: var(--muted); flex: 0 0 auto; }
.search-field input {
  width: 100%;
  border: 0; outline: 0;
  color: white; background: transparent;
}
.search-field input::placeholder { color: #847d91; }
.toolbar select {
  min-width: 210px;
  border: 1px solid var(--line);
  color: white;
  background: #14111f;
  border-radius: 16px;
  padding: 0 16px;
  outline: none;
}

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  transition: transform .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(255,47,167,.34); }
.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #050507;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.stock-badge {
  position: absolute;
  top: 14px; left: 14px;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .72rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.stock-badge.available { background: rgba(34,201,107,.88); color: #03150a; }
.stock-badge.low { background: rgba(255,194,63,.92); color: #211502; }
.stock-badge.out { background: rgba(255,75,75,.9); color: white; }
.product-info { padding: 19px; }
.product-title-row { display: flex; justify-content: space-between; align-items: start; gap: 18px; }
.product-info h3 { margin: 0; font-size: 1.25rem; }
.product-info p { margin: 6px 0 14px; color: var(--muted); font-size: .88rem; }
.product-info .price { font-size: 1.25rem; color: #ffb65f; }
.product-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.add-button {
  min-height: 46px;
  border: 0;
  border-radius: 13px;
  color: #120a14;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-weight: 900;
  cursor: pointer;
}
.add-button:disabled { cursor: not-allowed; filter: grayscale(1); opacity: .45; }
.direct-whatsapp {
  width: 48px; min-height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.04);
}
.direct-whatsapp svg { width: 21px; height: 21px; fill: var(--green); }
.no-results { color: var(--muted); text-align: center; padding: 50px 0; }
.stock-note { display: flex; gap: 11px; align-items: start; margin-top: 24px; padding: 16px 18px; color: var(--muted); border: 1px dashed var(--line); border-radius: 16px; font-size: .86rem; }
.stock-note span { color: var(--green); }
.stock-note p { margin: 0; }

.services-section { padding-top: 100px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.services-grid article {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.service-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 17px;
  font-size: 1.55rem;
  color: #1b0d18;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}
.services-grid h3 { margin: 26px 0 10px; font-size: 1.45rem; }
.services-grid p { color: var(--muted); }
.services-grid a { display: inline-block; margin-top: 18px; color: #ff9cda; font-weight: 900; }

.steps-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 80px auto 130px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.steps-image {
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  background: #030304;
  box-shadow: var(--shadow);
}
.steps-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.steps-copy ol { margin: 35px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.steps-copy li { display: flex; align-items: center; gap: 16px; padding: 16px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.025); }
.steps-copy li b { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; color: #140b12; background: linear-gradient(135deg, var(--pink), var(--orange)); }
.steps-copy li div { display: flex; flex-direction: column; }
.steps-copy li span { color: var(--muted); font-size: .88rem; }

.cta-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 110px;
  padding: 54px;
  border: 1px solid rgba(255,47,167,.26);
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 30%, rgba(255,47,167,.22), transparent 22rem),
    radial-gradient(circle at 95% 80%, rgba(255,138,31,.17), transparent 25rem),
    var(--card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-section h2 { max-width: 760px; }
.cta-section p { max-width: 720px; color: var(--muted); }

footer {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 45px;
}
footer > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; color: var(--muted); font-size: .9rem; }
footer > div > strong { color: white; margin-bottom: 7px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 68px; height: 68px; object-fit: cover; border-radius: 18px; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand span { color: var(--muted); }
.copyright { grid-column: 1/-1; margin: 28px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: #817a8d; font-size: .82rem; }

.floating-whatsapp {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 40;
  min-height: 54px;
  display: flex; align-items: center; gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: #04160b;
  background: var(--green);
  box-shadow: 0 16px 44px rgba(0,0,0,.4);
  font-weight: 900;
}
.floating-whatsapp svg { width: 24px; height: 24px; fill: currentColor; }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(5px);
  transition: .25s ease;
}
.overlay.open { opacity: 1; visibility: visible; }

.mobile-menu, .cart-drawer {
  position: fixed;
  top: 0; bottom: 0;
  z-index: 90;
  overflow: auto;
  background: #0d0b14;
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}
.mobile-menu { left: 0; width: min(420px, 92vw); transform: translateX(-105%); padding: 22px; }
.mobile-menu.open { transform: translateX(0); }
.cart-drawer { right: 0; width: min(500px, 100vw); transform: translateX(105%); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.panel-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 4px 0 22px; }
.cart-drawer .panel-top { padding: 24px; border-bottom: 1px solid var(--line); }
.cart-drawer .panel-top h2 { margin: 5px 0 0; }
.close-button {
  width: 45px; height: 45px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: white;
  background: rgba(255,255,255,.05);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}
.mobile-search { height: 54px; display: flex; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.mobile-search input { flex: 1; min-width: 0; border: 0; outline: 0; color: white; background: transparent; padding: 0 16px; }
.mobile-search button { width: 54px; border: 0; color: white; background: transparent; }
.mobile-menu nav { display: flex; flex-direction: column; margin-top: 22px; border-top: 1px solid var(--line); }
.mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; min-height: 64px; border-bottom: 1px solid var(--line); font-weight: 800; }
.mobile-menu nav span { font-size: 1.8rem; color: var(--muted); }

.cart-items { flex: 1; overflow: auto; padding: 20px 24px; }
.cart-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 76px; height: 90px; object-fit: cover; border-radius: 12px; }
.cart-item-info { display: flex; flex-direction: column; }
.cart-item-info strong { font-size: .98rem; }
.cart-item-info span { color: #ffb65f; font-weight: 800; font-size: .9rem; }
.quantity-control { display: flex; align-items: center; gap: 6px; margin-top: 9px; }
.quantity-control button {
  width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 8px;
  color: white; background: rgba(255,255,255,.04); cursor: pointer;
}
.quantity-control b { min-width: 20px; text-align: center; }
.remove-item { align-self: start; border: 0; color: #ff8080; background: transparent; cursor: pointer; font-size: 1.15rem; }
.empty-cart { flex: 1; min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--muted); text-align: center; padding: 30px; }
.empty-cart div { font-size: 3rem; }
.empty-cart strong { color: white; margin-top: 12px; }
.cart-summary { padding: 22px 24px 28px; border-top: 1px solid var(--line); background: #0b0910; }
.cart-summary > div { display: flex; justify-content: space-between; margin-bottom: 8px; }
.cart-total { font-size: 1.25rem; }
.cart-total strong { color: #ffb65f; }
.cart-summary p { color: var(--muted); font-size: .8rem; }
.clear-cart { width: 100%; border: 0; color: #9d96a8; background: transparent; margin-top: 10px; cursor: pointer; }
.toast {
  position: fixed;
  left: 50%; bottom: 24px;
  z-index: 120;
  transform: translate(-50%, 30px);
  opacity: 0;
  visibility: hidden;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: white;
  background: #1d1828;
  box-shadow: var(--shadow);
  transition: .25s ease;
  font-weight: 800;
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-copy { text-align: center; }
  .hero-copy > * { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-benefits { justify-content: center; }
  .hero-art { min-height: auto; }
  .hero-art img { width: min(78vw, 560px); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-section { gap: 36px; }
}

@media (max-width: 760px) {
  .site-header { height: 70px; padding: 0 16px; }
  .brand span { display: none; }
  .brand img { width: 46px; height: 46px; border-radius: 14px; }
  .icon-button { display: none; }
  .cart-button span { display: none; }
  .cart-button { width: 46px; padding: 0; justify-content: center; position: relative; }
  .cart-button b { position: absolute; top: -7px; right: -7px; }
  .hero { width: min(100% - 32px, var(--max)); min-height: auto; padding: 48px 0 70px; gap: 38px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 5.2rem); }
  .hero-description { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-art img { width: 100%; border-radius: 28px; }
  .quick-categories { width: calc(100% - 32px); grid-template-columns: 1fr 1fr; margin-bottom: 60px; }
  .quick-categories a:nth-child(2) { border-right: 0; }
  .quick-categories a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .products-section, .services-section { width: calc(100% - 32px); padding: 72px 0; }
  .section-heading { align-items: stretch; flex-direction: column; }
  .section-heading h2, .steps-copy h2, .cta-section h2 { font-size: clamp(2.6rem, 13vw, 4.3rem); }
  .price-highlight { min-width: 0; }
  .toolbar { flex-direction: column; }
  .toolbar select { min-height: 52px; width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid article { min-height: 0; }
  .steps-section { width: calc(100% - 32px); grid-template-columns: 1fr; margin: 45px auto 80px; }
  .steps-image { order: 2; }
  .cta-section { width: calc(100% - 32px); margin-bottom: 75px; padding: 34px 24px; flex-direction: column; align-items: stretch; }
  footer { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
  .floating-whatsapp { width: 54px; height: 54px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display: none; }
  .toast { width: calc(100% - 32px); bottom: 86px; }
}


/* Atualização: action figures premium e aviso de imagem ilustrativa */
.figure-section {
  border-top: 1px solid var(--line);
  padding-top: 110px;
}
.illustrative-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: -8px 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 194, 63, .34);
  border-radius: 18px;
  color: #ded6e8;
  background: rgba(255, 194, 63, .075);
}
.illustrative-notice strong {
  flex: 0 0 auto;
  color: #ffc866;
}
.figure-toolbar {
  max-width: 620px;
}
.figure-card .product-image {
  aspect-ratio: 3 / 4;
}
.illustrative-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: white;
  background: rgba(7, 5, 12, .78);
  backdrop-filter: blur(10px);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .03em;
}
.card-disclaimer {
  min-height: 38px;
  margin: 0 0 15px !important;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #a9a1b7 !important;
  font-size: .76rem !important;
}
.cart-item-info small {
  color: var(--muted);
  font-size: .72rem;
}

@media (max-width: 760px) {
  .header-left { gap: 8px; }
  .site-header .menu-button { order: -1; }
  .illustrative-notice { flex-direction: column; }
  .figure-section { padding-top: 72px; }
}


/* =========================================================
   V4 — DESKTOP + CELULAR + GALERIA DE PRODUTOS
   ========================================================= */

:root { --max: 1380px; }

/* PC: menu completo; celular/tablet: botão de menu no lado esquerdo */
.menu-button { display: none; }

@media (min-width: 1181px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1.06fr .94fr; }
  .products-section, .services-section { padding-top: 124px; padding-bottom: 124px; }
}

@media (min-width: 1021px) and (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1020px) {
  .menu-button { display: block; }
}

/* Cartões com acesso claro à galeria */
.product-image-button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.product-image-button:focus-visible,
.view-product-button:focus-visible,
.gallery-stage:focus-visible,
.gallery-thumb:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

.gallery-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: white;
  background: rgba(7,5,12,.78);
  backdrop-filter: blur(10px);
  font-size: .69rem;
  font-weight: 900;
}
.gallery-badge svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.product-actions {
  grid-template-columns: minmax(0, 1fr) auto;
}
.view-product-button {
  grid-column: 1 / -1;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: rgba(255,255,255,.045);
  font-weight: 900;
  cursor: pointer;
}
.view-product-button:hover { background: rgba(255,255,255,.08); }

/* Modal de produto estilo e-commerce */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
  transition: opacity .22s ease, visibility .22s ease;
}
.product-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 34px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.product-modal.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.product-modal-shell {
  position: relative;
  width: min(1250px, 100%);
  max-height: min(860px, calc(100vh - 68px));
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, .72fr);
  gap: 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #0d0b14;
  box-shadow: 0 35px 100px rgba(0,0,0,.62);
}

.modal-close {
  position: absolute;
  z-index: 8;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: white;
  background: rgba(8,7,13,.78);
  backdrop-filter: blur(10px);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.modal-gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
}
.gallery-thumbnails {
  max-height: 720px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 3px;
}
.gallery-thumb {
  flex: 0 0 auto;
  width: 78px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 13px;
  padding: 0;
  background: #050507;
  cursor: pointer;
  opacity: .62;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.gallery-thumb:hover { opacity: .9; }
.gallery-thumb.active {
  border-color: var(--pink);
  opacity: 1;
  transform: translateX(2px);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 45%, rgba(138,63,252,.12), transparent 50%),
    #050507;
}
.gallery-stage {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  touch-action: pan-y;
}
.gallery-stage img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.zoom-hint {
  position: absolute;
  left: 50%;
  bottom: 17px;
  transform: translateX(-50%);
  padding: 7px 11px;
  border-radius: 999px;
  color: #eee9f6;
  background: rgba(8,7,13,.72);
  backdrop-filter: blur(8px);
  font-size: .72rem;
  font-weight: 800;
  pointer-events: none;
}
.gallery-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: white;
  background: rgba(8,7,13,.72);
  backdrop-filter: blur(10px);
  font-size: 2rem;
  cursor: pointer;
}
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }
.gallery-arrow:disabled { display: none; }

.gallery-dots {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: flex;
  gap: 6px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,.32);
  cursor: pointer;
}
.gallery-dot.active { width: 24px; background: linear-gradient(90deg, var(--pink), var(--orange)); }

.gallery-counter {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(8,7,13,.72);
  backdrop-filter: blur(8px);
  font-size: .72rem;
  font-weight: 900;
}

.modal-product-info {
  align-self: center;
  padding: 36px 18px 26px 2px;
}
.modal-product-info h2 {
  margin: 12px 0 17px;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.modal-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.modal-price-row > strong {
  font-size: 2rem;
  color: #ffb65f;
}
.modal-stock {
  position: static;
  display: inline-flex;
}
.modal-characteristics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.modal-characteristic {
  min-height: 70px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}
.modal-characteristic small {
  display: block;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.modal-characteristic strong {
  display: block;
  margin-top: 3px;
  font-size: .92rem;
}
.modal-description {
  color: var(--muted);
  font-size: .96rem;
}
.modal-warning {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 20px 0;
  padding: 15px 16px;
  border: 1px solid rgba(255,194,63,.30);
  border-radius: 15px;
  color: #d9d2df;
  background: rgba(255,194,63,.07);
  font-size: .83rem;
}
.modal-warning strong { color: #ffc866; }
.modal-warning[hidden] { display: none; }

.modal-actions {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

/* Lightbox / zoom */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  opacity: 0;
  visibility: hidden;
  display: grid;
  place-items: center;
  padding: 30px 90px;
  background: rgba(0,0,0,.96);
  transition: opacity .2s ease, visibility .2s ease;
}
.image-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.image-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 60px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  color: white;
  background: rgba(20,17,31,.82);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.lightbox-close {
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  font-size: 2rem;
}
.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 70px;
  border-radius: 16px;
  font-size: 2.3rem;
}
.lightbox-arrow.prev { left: 22px; }
.lightbox-arrow.next { right: 22px; }
.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(20,17,31,.82);
  font-size: .8rem;
  font-weight: 900;
}

/* Tablet */
@media (max-width: 1020px) {
  .product-modal { padding: 18px; }
  .product-modal-shell {
    max-height: calc(100vh - 36px);
    grid-template-columns: 1fr;
  }
  .modal-gallery {
    grid-template-columns: 78px 1fr;
  }
  .gallery-main, .gallery-stage { min-height: 520px; }
  .modal-product-info { padding: 8px 4px 20px; }
}

/* Celular: menu à esquerda, logo central, carrinho à direita */
@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    gap: 8px;
    align-items: center;
  }
  .header-left { display: contents; }
  .site-header .menu-button {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .site-header .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }
  .site-header .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .product-modal {
    display: block;
    padding: 0;
    overflow: auto;
    background: #0d0b14;
  }
  .product-modal-shell {
    width: 100%;
    min-height: 100svh;
    max-height: none;
    overflow: visible;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 28px;
    border: 0;
    border-radius: 0;
  }
  .modal-close {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 102;
  }
  .modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .gallery-main {
    order: 1;
    min-height: 64svh;
    border: 0;
    border-radius: 0 0 24px 24px;
  }
  .gallery-stage {
    min-height: 64svh;
  }
  .gallery-stage img {
    max-height: 72svh;
  }
  .gallery-thumbnails {
    order: 2;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    flex-direction: row;
    gap: 8px;
    padding: 0 16px 4px;
    scrollbar-width: none;
  }
  .gallery-thumbnails::-webkit-scrollbar { display: none; }
  .gallery-thumb {
    width: 64px;
    flex-basis: 64px;
  }
  .gallery-thumb.active { transform: translateY(-2px); }
  .gallery-arrow {
    width: 42px;
    height: 52px;
  }
  .gallery-arrow.prev { left: 10px; }
  .gallery-arrow.next { right: 10px; }
  .gallery-dots {
    left: 50%;
    right: auto;
    bottom: 18px;
    transform: translateX(-50%);
  }
  .zoom-hint { bottom: 48px; }
  .modal-product-info {
    padding: 26px 18px 8px;
  }
  .modal-product-info h2 {
    padding-right: 44px;
    font-size: clamp(2.2rem, 12vw, 3.8rem);
  }
  .modal-characteristics { grid-template-columns: 1fr 1fr; }
  .image-lightbox { padding: 70px 8px 60px; }
  .lightbox-arrow {
    width: 44px;
    height: 58px;
  }
  .lightbox-arrow.prev { left: 8px; }
  .lightbox-arrow.next { right: 8px; }
}

/* Telas pequenas */
@media (max-width: 420px) {
  .modal-characteristics { grid-template-columns: 1fr; }
  .gallery-main, .gallery-stage { min-height: 58svh; }
}


/* =========================================================
   V5 — ARQUITETURA MULTIPÁGINAS
   ========================================================= */
.desktop-nav a.active { color: white; }
.desktop-nav a.active::after { content:""; display:block; height:2px; margin-top:5px; border-radius:99px; background:linear-gradient(90deg,var(--pink),var(--orange)); }
.mobile-menu nav a.active { color:#ff9cda; }
.home-page .hero { min-height: calc(100svh - 82px); }
.quick-categories strong { font-size: clamp(1.15rem,2.2vw,1.7rem); }
.home-catalog-section { width:min(var(--max),calc(100% - 48px)); margin:0 auto; padding:30px 0 120px; }
.category-page-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.category-page-card { min-height:270px; display:flex; flex-direction:column; justify-content:flex-end; padding:28px; border:1px solid var(--line); border-radius:var(--radius); background:radial-gradient(circle at 80% 10%,rgba(138,63,252,.16),transparent 16rem),var(--card); transition:.25s ease; }
.category-page-card:hover { transform:translateY(-5px); border-color:rgba(255,47,167,.34); }
.category-page-card>span { color:#ef9bd5; font-size:.72rem; font-weight:900; letter-spacing:.15em; }
.category-page-card h3 { margin:10px 0 8px; font-size:1.55rem; }
.category-page-card p { margin:0 0 24px; color:var(--muted); }
.category-page-card b { color:#ffb25c; }
.category-figure { background:radial-gradient(circle at 80% 10%,rgba(255,47,167,.20),transparent 16rem),var(--card); }
.category-sign { background:radial-gradient(circle at 80% 10%,rgba(255,138,31,.16),transparent 16rem),var(--card); }

.inner-hero { width:min(var(--max),calc(100% - 48px)); margin:0 auto; min-height:470px; padding:95px 0 68px; display:flex; align-items:flex-end; justify-content:space-between; gap:60px; border-bottom:1px solid var(--line); }
.inner-hero>div:first-child { max-width:850px; }
.inner-hero h1 { margin:15px 0 18px; font-size:clamp(3.25rem,7vw,7rem); line-height:.92; letter-spacing:-.06em; }
.inner-hero p { max-width:760px; margin:0; color:var(--muted); font-size:1.06rem; }
.inner-hero-stat { flex:0 0 225px; padding:24px; border:1px solid var(--line); border-radius:22px; background:rgba(255,255,255,.035); }
.inner-hero-stat small,.inner-hero-stat span { display:block; color:var(--muted); }
.inner-hero-stat small { font-weight:900; letter-spacing:.1em; }
.inner-hero-stat strong { display:block; margin:6px 0; font-size:1.55rem; color:#ff9cda; }
.category-catalog-section { padding-top:58px; }
.page-notice { width:min(var(--max),calc(100% - 48px)); margin:30px auto; }

.material-section { width:min(var(--max),calc(100% - 48px)); margin:70px auto; display:grid; grid-template-columns:1fr .82fr; gap:48px; align-items:center; padding:38px; border:1px solid var(--line); border-radius:32px; background:var(--card); }
.material-section.reverse .material-copy { order:2; }.material-section.reverse .material-visual { order:1; }
.material-copy h2,.future-catalog h2,.project-brief h2 { margin:12px 0 14px; font-size:clamp(2.2rem,4.5vw,4.4rem); line-height:.98; letter-spacing:-.05em; }
.material-copy p { color:var(--muted); }
.feature-pills { display:flex; flex-wrap:wrap; gap:8px; margin:22px 0 27px; }
.feature-pills span { padding:8px 11px; border:1px solid var(--line); border-radius:999px; color:#ddd5e8; font-size:.8rem; }
.material-visual { min-height:390px; display:flex; flex-direction:column; align-items:center; justify-content:center; border-radius:25px; border:1px solid var(--line); text-align:center; overflow:hidden; }
.material-visual strong { font-size:clamp(3rem,7vw,6rem); letter-spacing:-.07em; }
.material-visual span { color:var(--muted); }
.resin-visual { background:radial-gradient(circle,rgba(255,47,167,.30),transparent 55%),#08070d; }.resin-visual strong { color:#ff80cb; }
.filament-visual { background:radial-gradient(circle,rgba(255,138,31,.28),transparent 55%),#08070d; }.filament-visual strong { color:#ffad55; }
.project-brief,.future-catalog,.service-feature-grid,.buy-flow,.contact-grid { width:min(var(--max),calc(100% - 48px)); margin:90px auto; }
.project-brief { padding:45px; border:1px solid var(--line); border-radius:30px; background:rgba(255,255,255,.025); }
.brief-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:30px; }.brief-grid article { padding:20px; border:1px solid var(--line); border-radius:18px; }.brief-grid b { display:block; color:#ff8ccf; font-size:1.35rem; }.brief-grid strong,.brief-grid span { display:block; }.brief-grid span { margin-top:5px; color:var(--muted); font-size:.86rem; }
.future-catalog { padding:48px; border:1px dashed rgba(255,255,255,.18); border-radius:30px; }.future-catalog-head { max-width:800px; }.future-catalog-head p { color:var(--muted); }.empty-category-state { min-height:220px; margin-top:28px; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:28px; border:1px solid var(--line); border-radius:22px; background:rgba(255,255,255,.02); text-align:center; }.empty-category-icon { width:58px;height:58px;display:grid;place-items:center;border-radius:18px;background:linear-gradient(135deg,var(--pink),var(--orange));color:#180c15;font-size:2rem;font-weight:900; }.empty-category-state strong { margin-top:16px;font-size:1.15rem; }.empty-category-state span { max-width:620px;margin-top:6px;color:var(--muted); }
.service-feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }.service-feature-grid article { min-height:280px; padding:30px; border:1px solid var(--line); border-radius:24px; background:var(--card); }.service-feature-grid article>span { font-size:2rem; }.service-feature-grid h2 { margin:28px 0 8px; }.service-feature-grid p { color:var(--muted); }
.buy-flow { display:grid; gap:14px; }.buy-flow article { display:grid; grid-template-columns:85px 1fr; gap:20px; align-items:center; padding:26px; border:1px solid var(--line); border-radius:22px; background:var(--card); }.buy-flow b { width:64px;height:64px;display:grid;place-items:center;border-radius:18px;background:linear-gradient(135deg,var(--pink),var(--orange));color:#160b12;font-size:1.3rem; }.buy-flow h2 { margin:0 0 5px; }.buy-flow p { margin:0;color:var(--muted); }
.contact-grid { display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:18px; }.contact-card { min-height:300px; display:flex; flex-direction:column; justify-content:flex-end; padding:30px; border:1px solid var(--line); border-radius:25px; background:var(--card); }.contact-card>span { color:#ef9bd5;font-size:.74rem;font-weight:900;letter-spacing:.14em; }.contact-card h2 { margin:12px 0 8px;font-size:2rem; }.contact-card p { color:var(--muted); }.contact-card b { color:#60e894;margin-top:14px; }.whatsapp-card { background:radial-gradient(circle at 80% 10%,rgba(34,201,107,.20),transparent 17rem),var(--card); }

@media(max-width:1120px){.category-page-grid{grid-template-columns:repeat(2,1fr)}.desktop-nav{gap:17px}.desktop-nav a{font-size:.82rem}}
@media(max-width:860px){.inner-hero{min-height:390px;align-items:flex-start;flex-direction:column;gap:25px}.inner-hero-stat{width:100%;flex:auto}.material-section{grid-template-columns:1fr}.material-section.reverse .material-copy,.material-section.reverse .material-visual{order:initial}.brief-grid{grid-template-columns:1fr 1fr}.service-feature-grid,.contact-grid{grid-template-columns:1fr}}
@media(max-width:760px){.home-catalog-section,.project-brief,.future-catalog,.service-feature-grid,.buy-flow,.contact-grid{width:calc(100% - 32px)}.category-page-grid{grid-template-columns:1fr}.category-page-card{min-height:230px}.inner-hero{width:calc(100% - 32px);padding:60px 0 42px}.inner-hero h1{font-size:clamp(3rem,15vw,5rem)}.material-section{width:calc(100% - 32px);margin:35px auto;padding:24px}.material-visual{min-height:260px}.project-brief,.future-catalog{padding:26px 20px}.brief-grid{grid-template-columns:1fr}.buy-flow article{grid-template-columns:58px 1fr;padding:19px}.buy-flow b{width:50px;height:50px}.page-notice{width:calc(100% - 32px)}.quick-categories strong{font-size:1rem}}


/* =========================================================
   V6 — MENU POR CATEGORIAS E SUBCATEGORIAS
   ========================================================= */

.desktop-nav {
  gap: 10px;
  align-self: stretch;
}

.desktop-menu-group {
  position: relative;
  display: flex;
  align-items: center;
}

.desktop-menu-trigger,
.desktop-simple-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 12px;
  padding: 0 11px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  font-size: .86rem;
  white-space: nowrap;
  cursor: pointer;
}

.desktop-menu-trigger:hover,
.desktop-simple-link:hover,
.desktop-menu-group.active .desktop-menu-trigger,
.desktop-simple-link.active {
  color: white;
  background: rgba(255,255,255,.045);
}

.menu-caret {
  display: inline-block;
  color: #a99fb8;
  font-size: .95rem;
  transition: transform .2s ease;
}

.desktop-menu-group.open .menu-caret {
  transform: rotate(180deg);
}

.desktop-dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  z-index: 80;
  min-width: 220px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(13,11,20,.98);
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  transition: .18s ease;
}

.desktop-menu-group.open .desktop-dropdown,
.desktop-menu-group:hover .desktop-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 750;
}

.desktop-dropdown a:hover {
  color: white;
  background: rgba(255,255,255,.06);
}

/* Menu lateral */
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.mobile-accordion,
.mobile-simple-link {
  border-bottom: 1px solid var(--line);
}

.mobile-menu-parent,
.mobile-simple-link {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  padding: 0;
  color: white;
  background: transparent;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.mobile-simple-link {
  text-decoration: none;
}

.mobile-accordion.active > .mobile-menu-parent,
.mobile-simple-link.active {
  color: #ff9cda;
}

.menu-chevron {
  flex: 0 0 auto;
  color: #b6adca;
  font-size: 1.8rem;
  transition: transform .2s ease;
}

.mobile-accordion.open .menu-chevron {
  transform: rotate(90deg);
}

.mobile-submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease;
}

.mobile-submenu > a {
  overflow: hidden;
}

.mobile-accordion.open .mobile-submenu {
  grid-template-rows: 1fr;
}

.mobile-submenu {
  overflow: hidden;
}

.mobile-submenu a {
  display: block;
  min-height: 0;
  padding: 0 16px 0 18px;
  color: var(--muted);
  border-left: 2px solid rgba(255,47,167,.2);
  font-size: .92rem;
  font-weight: 700;
  transition: padding .2s ease, color .2s ease, background .2s ease;
}

.mobile-accordion.open .mobile-submenu a {
  padding-top: 11px;
  padding-bottom: 11px;
}

.mobile-submenu a:hover,
.mobile-submenu a.active {
  color: white;
  background: rgba(255,255,255,.035);
}

/* Filtros dentro das páginas */
.catalog-category-head {
  margin-bottom: 28px;
}

.catalog-category-head h2 {
  margin: 10px 0 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.catalog-category-head > p {
  max-width: 760px;
  color: var(--muted);
}

.subcategory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.subcategory-tabs a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  font-size: .82rem;
  font-weight: 850;
}

.subcategory-tabs a:hover,
.subcategory-tabs a.active {
  color: #130b12;
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.category-empty {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
  padding: 34px;
  border: 1px dashed var(--line);
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  background: rgba(255,255,255,.02);
}

.category-empty strong {
  color: white;
}

.category-empty[hidden] {
  display: none;
}

.print-catalog,
.rpg-category-catalog {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 110px;
}

.rpg-placeholder {
  min-height: 270px;
}

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
}

@media (max-width: 760px) {
  .subcategory-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: -16px;
    margin-right: -16px;
    padding: 2px 16px 8px;
    scrollbar-width: none;
  }
  .subcategory-tabs::-webkit-scrollbar { display: none; }
  .subcategory-tabs a {
    flex: 0 0 auto;
  }
  .print-catalog,
  .rpg-category-catalog {
    width: calc(100% - 32px);
    padding: 68px 0 78px;
  }
}


/* =========================================================
   V7 — FILTRO MOBILE MELHORADO
   ========================================================= */

.mobile-filter-toggle {
  display: none;
}

@media (max-width: 760px) {
  .catalog-category-head {
    margin-bottom: 20px;
  }

  .mobile-filter-toggle {
    width: 100%;
    min-height: 58px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--text);
    background: rgba(255,255,255,.045);
    text-align: left;
    cursor: pointer;
  }

  .mobile-filter-toggle > span:first-child {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  .mobile-filter-current {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: white;
    font-size: .95rem;
  }

  .mobile-filter-arrow {
    color: #ff9cda;
    font-size: 1.25rem;
    transition: transform .2s ease;
  }

  .mobile-filter-toggle.open .mobile-filter-arrow {
    transform: rotate(180deg);
  }

  /* Em vez do carrossel horizontal apertado, vira uma caixa vertical limpa. */
  .catalog-category-head .subcategory-tabs {
    display: none;
    width: 100%;
    max-height: 330px;
    overflow-y: auto;
    overflow-x: hidden;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 8px 0 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #110e19;
    box-shadow: 0 18px 50px rgba(0,0,0,.32);
  }

  .catalog-category-head .subcategory-tabs.mobile-open {
    display: grid;
  }

  .catalog-category-head .subcategory-tabs a {
    width: 100%;
    min-height: 46px;
    flex: none;
    padding: 0 12px;
    border-radius: 12px;
    font-size: .82rem;
  }

  .catalog-category-head .subcategory-tabs a.active {
    box-shadow: 0 7px 22px rgba(255,47,167,.18);
  }

  .print-catalog,
  .rpg-category-catalog,
  .category-catalog-section {
    scroll-margin-top: 82px;
  }
}

@media (max-width: 390px) {
  .catalog-category-head .subcategory-tabs {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   V8 — CORREÇÃO DEFINITIVA DO ACORDEÃO MOBILE
   ========================================================= */

@media (max-width: 1020px) {
  /* O submenu fica realmente fora do fluxo quando fechado. */
  .mobile-submenu {
    display: none !important;
    overflow: hidden !important;
    grid-template-rows: none !important;
    max-height: none !important;
  }

  .mobile-accordion.open > .mobile-submenu {
    display: block !important;
  }

  .mobile-submenu > a {
    display: block !important;
    min-height: 48px !important;
    padding: 12px 16px 12px 20px !important;
    border-left: 2px solid rgba(255,47,167,.25);
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: var(--muted);
  }

  .mobile-submenu > a:last-child {
    border-bottom: 0;
  }

  .mobile-accordion:not(.open) > .mobile-submenu > a {
    display: none !important;
  }

  .mobile-menu-parent {
    cursor: pointer;
    user-select: none;
  }

  .mobile-menu-parent .menu-chevron {
    transform: rotate(0deg);
    transition: transform .18s ease;
  }

  .mobile-accordion.open > .mobile-menu-parent .menu-chevron {
    transform: rotate(90deg);
  }
}


/* =========================================================
   V8.2 — TIPOGRAFIA DO MENU MOBILE
   ========================================================= */
@media (max-width: 1020px) {
  .mobile-menu-parent > span:first-child {
    font-size: 1rem !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    color: inherit !important;
  }

  .mobile-menu-parent .menu-chevron {
    font-size: 1.8rem !important;
  }
}

/* =========================================================
   V11 — PREPARAÇÃO PROFISSIONAL
   desempenho, checkout/entrega, páginas legais e acabamento mobile
   ========================================================= */

/* Rodapé agora comporta a área institucional/legal. */
footer { grid-template-columns: 1.45fr .9fr .95fr .95fr; }
footer a { transition: color .18s ease; }
footer a:hover { color: #fff; }

/* Checkout */
.checkout-hero { min-height: 410px; }
.checkout-layout {
  width: min(var(--max), calc(100% - 48px));
  margin: 58px auto 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  gap: 28px;
  align-items: start;
}
.checkout-main { display: grid; gap: 18px; }
.checkout-card,
.checkout-summary-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(20,17,31,.9);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.checkout-card { padding: 28px; }
.checkout-title { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.checkout-title > span {
  width: 44px; height: 44px; flex: 0 0 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  color: #170b13;
  background: linear-gradient(135deg,var(--pink),var(--orange));
  font-weight: 950;
}
.checkout-title h2 { margin: 1px 0 3px; font-size: 1.35rem; }
.checkout-title p { margin: 0; color: var(--muted); font-size: .9rem; }
.checkout-items { display: grid; gap: 10px; }
.checkout-item {
  display: grid;
  grid-template-columns: 70px minmax(0,1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.025);
}
.checkout-item img { width:70px; height:82px; object-fit:cover; border-radius:12px; }
.checkout-item > div { min-width:0; display:flex; flex-direction:column; }
.checkout-item strong { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.checkout-item small { color:var(--muted); }
.checkout-item span { margin-top:4px; color:#ffc06e; font-size:.88rem; }
.checkout-item > b { white-space:nowrap; }
.checkout-empty {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}
.checkout-empty a { color:#ff9cda; font-weight:850; }
.checkout-products-total {
  display:flex; justify-content:space-between; align-items:center;
  margin-top:18px; padding-top:18px;
  border-top:1px solid var(--line);
}
.checkout-products-total span { color:var(--muted); }
.checkout-products-total strong { font-size:1.2rem; color:#ffc06e; }
.delivery-options { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.delivery-option {
  position:relative;
  display:flex; align-items:flex-start; gap:12px;
  min-height:112px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.025);
  cursor:pointer;
}
.delivery-option:has(input:checked) { border-color:rgba(255,47,167,.6); box-shadow:0 0 0 1px rgba(255,47,167,.18) inset; background:rgba(255,47,167,.06); }
.delivery-option input { margin-top:4px; accent-color:var(--pink); }
.delivery-option span { display:flex; flex-direction:column; gap:5px; }
.delivery-option small { color:var(--muted); line-height:1.35; }
.checkout-form { display:grid; gap:15px; }
.checkout-form label { display:flex; flex-direction:column; gap:7px; color:var(--muted); font-size:.82rem; font-weight:800; }
.checkout-form input {
  width:100%; min-height:50px;
  border:1px solid var(--line); outline:0;
  border-radius:14px; padding:0 14px;
  color:white; background:#0f0c17;
}
.checkout-form input:focus { border-color:rgba(255,47,167,.7); box-shadow:0 0 0 3px rgba(255,47,167,.10); }
.form-grid { display:grid; gap:12px; }
.form-grid.two { grid-template-columns:1fr 1fr; }
.address-grid { grid-template-columns:1.4fr .55fr .9fr; }
.address-grid .wide { grid-column:span 2; }
.cep-row { display:grid; grid-template-columns:minmax(180px,280px) auto; gap:10px; align-items:end; }
.cep-row .button { min-height:50px; }
.cep-status { min-height:20px; margin:-4px 0 0; color:var(--muted); font-size:.82rem; }
.cep-status.success { color:#66e59a; }
.cep-status.error { color:#ff9292; }
.checkout-sidebar { position:sticky; top:104px; }
.checkout-summary-card { padding:28px; }
.checkout-summary-card h2 { margin:10px 0 24px; font-size:2rem; }
.summary-line,
.summary-total { display:flex; justify-content:space-between; gap:18px; }
.summary-line { padding:8px 0; color:var(--muted); }
.summary-line strong { color:white; }
.summary-total { margin-top:15px; padding:18px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.summary-total strong { color:#ffb75e; font-size:1.25rem; }
.shipping-explainer { color:var(--muted); font-size:.82rem; }
.terms-check { display:flex; align-items:flex-start; gap:10px; margin:18px 0; color:var(--muted); font-size:.78rem; line-height:1.45; cursor:pointer; }
.terms-check input { margin-top:3px; accent-color:var(--pink); }
.terms-check a { color:#f8a2dc; text-decoration:underline; text-underline-offset:2px; }
.secure-note { display:block; margin-top:10px; color:#8e879a; text-align:center; }
[hidden] { display:none !important; }

/* Páginas legais */
.legal-hero { min-height:360px; }
.legal-content {
  width:min(960px,calc(100% - 48px));
  margin:58px auto 120px;
  display:grid;
  gap:14px;
}
.legal-content article {
  padding:28px 30px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.025);
}
.legal-content h2 { margin:0 0 10px; font-size:1.2rem; }
.legal-content p { margin:0; color:var(--muted); line-height:1.75; }

/* V11: pequenas melhorias de estabilidade visual e carregamento. */
.product-image img,
.gallery-stage img,
.gallery-thumb img,
.cart-item img { background:#0d0b13; }
.product-card { contain: layout paint style; }
.cart-drawer { overscroll-behavior:contain; }
.mobile-menu { overscroll-behavior:contain; }

@media (max-width: 1120px) {
  footer { grid-template-columns:1.35fr 1fr 1fr; }
  footer > div:last-of-type { grid-column:2 / -1; }
  .checkout-layout { grid-template-columns:1fr 360px; }
}

@media (max-width: 860px) {
  .checkout-layout { grid-template-columns:1fr; }
  .checkout-sidebar { position:static; }
  .address-grid { grid-template-columns:1fr 1fr; }
  .address-grid .wide { grid-column:1 / -1; }
}

@media (max-width: 760px) {
  body { padding-bottom: env(safe-area-inset-bottom); }
  .site-header { padding-left:max(14px,env(safe-area-inset-left)); padding-right:max(14px,env(safe-area-inset-right)); }
  .hero { padding-top:36px; }
  .hero-benefits { gap:8px 14px; font-size:.78rem; }
  .hero-art { display:none; }
  .home-page .hero { min-height:auto; }
  .category-page-card { min-height:205px; padding:23px; }
  .product-card { border-radius:20px; }
  .product-info { padding:17px; }
  .product-title-row { gap:12px; }
  .product-title-row h3 { font-size:1.08rem; }
  .product-title-row .price,.price { font-size:1rem; }
  .product-actions { gap:8px; }
  .view-product-button,.add-button { min-height:46px; }
  .cart-drawer { width:min(100%,430px); padding-bottom:max(18px,env(safe-area-inset-bottom)); }
  .mobile-menu { width:min(92vw,390px); padding-bottom:max(18px,env(safe-area-inset-bottom)); }
  footer { grid-template-columns:1fr; gap:28px; width:calc(100% - 32px); }
  footer > div:last-of-type { grid-column:auto; }
  .copyright { grid-column:auto; }
  .checkout-layout { width:calc(100% - 32px); margin:34px auto 75px; gap:16px; }
  .checkout-card,.checkout-summary-card { border-radius:20px; padding:20px 17px; }
  .checkout-title { gap:12px; }
  .checkout-title > span { width:40px;height:40px;flex-basis:40px; }
  .delivery-options { grid-template-columns:1fr; }
  .form-grid.two,.address-grid { grid-template-columns:1fr; }
  .address-grid .wide { grid-column:auto; }
  .cep-row { grid-template-columns:1fr; }
  .cep-row .button { width:100%; }
  .checkout-item { grid-template-columns:58px minmax(0,1fr); }
  .checkout-item img { width:58px;height:70px; }
  .checkout-item > b { grid-column:2; }
  .legal-content { width:calc(100% - 32px); margin:34px auto 75px; }
  .legal-content article { padding:22px 19px; }
  .legal-content p { line-height:1.65; }
}

@media (max-width: 390px) {
  .checkout-card,.checkout-summary-card { padding:18px 14px; }
  .checkout-title h2 { font-size:1.15rem; }
  .product-actions { grid-template-columns:1fr auto; }
  .direct-whatsapp { width:46px; }
}

/* V11.1 — evita largura intrínseca do texto estourar a home em celulares estreitos. */
@media (max-width: 760px) {
  .hero > *, .hero-copy { min-width:0; max-width:100%; width:100%; }
  .hero-copy { overflow-wrap:break-word; }
  .hero h1 { max-width:100%; font-size:clamp(2.72rem,13vw,4.15rem); letter-spacing:-.045em; text-wrap:balance; }
  .slogan { max-width:100%; font-size:.96rem; line-height:1.35; text-wrap:balance; }
  .hero-description { max-width:100%; width:100%; }
}

/* V11.2 — contraste de botões secundários e largura do buscador de CEP. */
.button.secondary { color: var(--text); }
.cep-row { grid-template-columns:minmax(180px,280px) max-content; }
@media (max-width:760px){ .cep-row { grid-template-columns:1fr; } }


/* =========================================================
   V12 — CONTAS, ENDEREÇOS, PEDIDOS, ESTOQUE E ADMIN
   ========================================================= */
.account-button{min-height:44px;padding:0 13px;border:1px solid var(--line);border-radius:14px;display:flex;align-items:center;gap:8px;color:var(--text);font-size:.82rem;font-weight:850;background:rgba(255,255,255,.025)}
.account-button:hover{border-color:rgba(255,47,167,.45);background:rgba(255,47,167,.06)}.account-button svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round}.checkout-account-state{display:flex;justify-content:space-between;gap:16px;align-items:center;padding:18px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.025)}.account-inline-copy{display:flex;flex-direction:column;gap:4px}.account-inline-copy small{color:var(--muted);line-height:1.45}.account-inline-copy code,.setup-notice code{color:#ffc3e7}.saved-address-picker{display:flex;align-items:end;gap:14px;margin-bottom:18px;padding:16px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.025)}.saved-address-picker label{flex:1;display:flex;flex-direction:column;gap:7px;color:var(--muted);font-size:.82rem;font-weight:800}.saved-address-picker select,.account-form select,.admin-order-grid select{min-height:48px;border:1px solid var(--line);border-radius:13px;background:#0f0c17;color:white;padding:0 12px}.saved-address-picker a{color:#f8a2dc;font-weight:850;white-space:nowrap}.save-address-check{display:flex!important;flex-direction:row!important;align-items:flex-start;gap:9px!important;color:var(--muted)!important}.save-address-check input{width:auto!important;min-height:auto!important;margin-top:2px;accent-color:var(--pink)}.checkout-whatsapp-fallback{margin-top:10px}
.account-hero,.admin-hero,.order-hero{min-height:380px}.account-shell,.admin-shell,.order-layout{width:min(var(--max),calc(100% - 48px));margin:54px auto 120px}.setup-notice{padding:22px 24px;border:1px solid rgba(255,183,94,.32);border-radius:18px;background:rgba(255,183,94,.06);margin-bottom:24px}.setup-notice strong{display:block;font-size:1.05rem}.setup-notice p{color:var(--muted);margin:6px 0 12px}.auth-layout{display:grid;grid-template-columns:1fr minmax(390px,.82fr);gap:36px;align-items:center;min-height:480px}.auth-copy h2{font-size:clamp(2rem,4vw,3.6rem);margin:10px 0}.auth-copy p{color:var(--muted);max-width:620px;line-height:1.7}.auth-copy ul{list-style:none;padding:0;display:grid;gap:10px;color:#d5d0db}.auth-card,.account-card{border:1px solid var(--line);border-radius:24px;background:rgba(20,17,31,.92);box-shadow:0 22px 70px rgba(0,0,0,.18)}.auth-card{padding:24px}.auth-tabs,.admin-tabs{display:flex;gap:7px;padding:5px;border:1px solid var(--line);border-radius:14px;background:#0d0b13;margin-bottom:22px}.auth-tabs button,.admin-tabs button{flex:1;min-height:42px;border:0;border-radius:10px;background:transparent;color:var(--muted);font-weight:900;cursor:pointer}.auth-tabs button.active,.admin-tabs button.active{background:linear-gradient(135deg,var(--pink),var(--orange));color:#170b13}.account-form{display:grid;gap:14px}.account-form label{display:flex;flex-direction:column;gap:7px;color:var(--muted);font-size:.82rem;font-weight:800}.account-form input,.admin-order-grid input,.admin-product-row input{min-height:48px;border:1px solid var(--line);border-radius:13px;background:#0f0c17;color:white;padding:0 13px;outline:0}.account-form input:focus,.admin-order-grid input:focus{border-color:rgba(255,47,167,.65)}.link-button{border:0;background:transparent;color:#f8a2dc;font-weight:850;cursor:pointer;padding:5px}.form-message{min-height:20px;color:var(--muted);font-size:.84rem}.form-message.error{color:#ff9292}.form-message.success{color:#66e59a}.customer-layout{display:grid;grid-template-columns:270px minmax(0,1fr);gap:28px;align-items:start}.account-nav{position:sticky;top:100px;border:1px solid var(--line);border-radius:22px;background:rgba(20,17,31,.92);padding:18px}.account-user{display:flex;gap:12px;align-items:center;padding:7px 6px 18px;border-bottom:1px solid var(--line)}.account-user>span{width:44px;height:44px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(135deg,var(--pink),var(--orange));color:#170b13;font-weight:950;font-size:1.2rem}.account-user div{display:flex;min-width:0;flex-direction:column}.account-user small{color:var(--muted);overflow:hidden;text-overflow:ellipsis}.account-nav nav{display:grid;gap:5px;padding:14px 0}.account-nav nav button,.account-nav nav a,.account-signout{border:0;background:transparent;color:var(--muted);min-height:44px;border-radius:11px;padding:0 12px;text-align:left;font-weight:850;cursor:pointer;display:flex;align-items:center}.account-nav nav button.active,.account-nav nav button:hover,.account-nav nav a:hover{background:rgba(255,47,167,.08);color:#fff}.account-signout{width:100%;border-top:1px solid var(--line);border-radius:0;color:#ff9d9d}.account-content{min-width:0}.account-heading{margin-bottom:22px}.account-heading h2{font-size:2rem;margin:7px 0 5px}.account-heading p{margin:0;color:var(--muted)}.account-heading.with-action{display:flex;justify-content:space-between;gap:18px;align-items:end}.account-stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.account-stat-grid article{padding:22px;border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.025);display:flex;flex-direction:column}.account-stat-grid span{color:var(--muted);font-size:.82rem}.account-stat-grid strong{font-size:2rem;margin:7px 0;color:#ffc06e}.account-stat-grid small{color:var(--muted)}.account-shortcuts{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:16px}.account-shortcuts a,.account-shortcuts button{min-height:70px;border:1px solid var(--line);border-radius:17px;background:rgba(255,255,255,.025);color:white;padding:0 18px;display:flex;justify-content:space-between;align-items:center;font-weight:850;cursor:pointer}.account-shortcuts a:hover,.account-shortcuts button:hover{border-color:rgba(255,47,167,.45)}.account-card{padding:24px}.address-list,.orders-list{display:grid;gap:12px}.address-card{border:1px solid var(--line);border-radius:19px;background:rgba(255,255,255,.025);padding:20px;display:flex;justify-content:space-between;gap:22px}.address-card>div:first-child{display:flex;flex-direction:column}.address-card span{color:#ffb75e;font-size:.78rem;font-weight:900}.address-card span b{display:inline-block;margin-left:5px;color:#160d14;background:linear-gradient(135deg,var(--pink),var(--orange));border-radius:999px;padding:3px 7px;font-size:.65rem}.address-card strong{font-size:1.05rem;margin-top:5px}.address-card p{color:var(--muted);line-height:1.55;margin:8px 0 0}.address-actions{display:flex;gap:7px;align-items:flex-start;flex-wrap:wrap;justify-content:flex-end}.address-actions button{border:1px solid var(--line);border-radius:10px;background:transparent;color:#ddd;padding:8px 10px;cursor:pointer}.address-actions button.danger{color:#ff9292}.form-actions{display:flex;gap:9px}.account-empty{padding:32px;border:1px dashed var(--line);border-radius:18px;text-align:center;color:var(--muted);display:flex;flex-direction:column;gap:5px}.account-empty strong{color:#fff}.order-card{border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.025);padding:18px 20px;display:flex;justify-content:space-between;gap:18px;align-items:center}.order-card>div{display:flex;flex-direction:column;gap:3px}.order-card>div:last-child{align-items:flex-end}.order-card span,.order-card small{color:var(--muted)}.order-status{display:inline-flex!important;padding:5px 9px;border:1px solid var(--line);border-radius:999px;font-size:.72rem!important}.status-entregue{color:#66e59a!important}.status-cancelado{color:#ff9292!important}.status-em_producao,.status-pagamento_aprovado{color:#ffc06e!important}
.order-layout{max-width:1100px}.order-top-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.order-summary h2{margin:8px 0 18px;font-size:2rem}.order-summary-lines{display:grid;gap:9px}.order-summary-lines>div{display:flex;justify-content:space-between;color:var(--muted)}.order-summary-lines strong{color:#fff}.order-summary-lines .total{border-top:1px solid var(--line);padding-top:14px;margin-top:5px}.order-summary-lines .total strong{font-size:1.2rem;color:#ffc06e}.order-top-grid article>p{color:var(--muted);line-height:1.65}.tracking-box{margin-top:18px;padding:15px;border:1px solid rgba(102,229,154,.25);border-radius:15px;background:rgba(102,229,154,.05);display:flex;flex-direction:column;gap:5px}.tracking-box span{color:var(--muted);font-size:.76rem}.tracking-box a{color:#86e9b0;font-weight:850}.order-items-card,.order-timeline-card{margin-top:16px}.order-item-placeholder{width:58px;height:58px;border-radius:13px;background:linear-gradient(135deg,rgba(255,47,167,.22),rgba(255,183,94,.16));display:grid;place-items:center;font-weight:950;font-size:1.3rem}.order-timeline{display:grid}.timeline-event{display:grid;grid-template-columns:20px minmax(0,1fr);gap:14px;position:relative;padding-bottom:24px}.timeline-event>span{width:13px;height:13px;margin-top:5px;border-radius:50%;background:#635d6b;border:3px solid #26212f;z-index:1}.timeline-event:not(:last-child):after{content:"";position:absolute;left:6px;top:18px;bottom:0;width:1px;background:var(--line)}.timeline-event.current>span{background:var(--orange);box-shadow:0 0 0 4px rgba(255,183,94,.12)}.timeline-event div{display:flex;flex-direction:column}.timeline-event small{color:var(--muted)}.timeline-event strong{margin:2px 0 3px}.timeline-event p{margin:0;color:var(--muted)}
.admin-shell{max-width:1280px}.admin-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:26px}.admin-metrics article{border:1px solid var(--line);border-radius:17px;padding:18px;background:rgba(255,255,255,.025);display:flex;flex-direction:column}.admin-metrics span{color:var(--muted)}.admin-metrics strong{font-size:1.8rem;color:#ffc06e}.admin-panel-head{display:flex;justify-content:space-between;align-items:end;margin:25px 0 16px}.admin-panel-head h2{margin:5px 0 0}.admin-order-list{display:grid;gap:14px}.admin-order-card{border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.025);padding:20px}.admin-order-head{display:flex;justify-content:space-between;gap:20px;border-bottom:1px solid var(--line);padding-bottom:15px;margin-bottom:15px}.admin-order-head>div{display:flex;flex-direction:column}.admin-order-head span,.admin-order-head small{color:var(--muted)}.admin-order-head a{color:#f8a2dc;font-size:.8rem}.admin-order-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:14px}.admin-order-grid label{display:flex;flex-direction:column;gap:6px;color:var(--muted);font-size:.78rem}.admin-order-grid .wide{grid-column:span 2}.admin-product-table{border:1px solid var(--line);border-radius:18px;overflow:hidden}.admin-product-row{display:grid;grid-template-columns:minmax(240px,1.5fr) 120px 100px 100px 90px 100px;gap:10px;align-items:center;padding:11px 14px;border-bottom:1px solid var(--line)}.admin-product-row:last-child{border-bottom:0}.admin-product-row.head{background:rgba(255,255,255,.04);color:var(--muted);font-size:.76rem;font-weight:900}.admin-product-row>div{display:flex;flex-direction:column}.admin-product-row small{color:var(--muted)}.switch-cell{display:flex;align-items:center;gap:7px;color:var(--muted);font-size:.8rem}.admin-customer-list{display:grid;grid-template-columns:1fr 1fr;gap:12px}.admin-customer-card{border:1px solid var(--line);border-radius:17px;padding:16px;display:grid;grid-template-columns:44px 1fr auto;gap:12px;align-items:center;background:rgba(255,255,255,.025)}.admin-customer-card>span{width:44px;height:44px;border-radius:13px;display:grid;place-items:center;background:rgba(255,47,167,.12);font-weight:950}.admin-customer-card>div{display:flex;flex-direction:column}.admin-customer-card small,.admin-customer-card p{color:var(--muted);margin:0}.admin-customer-card>b{font-size:.68rem;color:#ffc06e}
@media(max-width:1020px){.account-button span{display:none}.account-button{width:44px;padding:0;justify-content:center}.customer-layout{grid-template-columns:1fr}.account-nav{position:static}.account-nav nav{grid-template-columns:repeat(4,1fr)}.account-nav nav button,.account-nav nav a{justify-content:center;text-align:center}.admin-product-table{overflow-x:auto}.admin-product-row{min-width:820px}.admin-order-grid{grid-template-columns:1fr 1fr}.admin-customer-list{grid-template-columns:1fr}}
@media(max-width:760px){.account-shell,.admin-shell,.order-layout{width:calc(100% - 32px);margin:34px auto 75px}.auth-layout{grid-template-columns:1fr;gap:24px}.auth-copy h2{font-size:2.35rem}.auth-card{padding:19px}.checkout-account-state{align-items:stretch;flex-direction:column}.saved-address-picker{align-items:stretch;flex-direction:column}.account-nav nav{grid-template-columns:1fr 1fr}.account-stat-grid,.account-shortcuts,.order-top-grid,.admin-metrics{grid-template-columns:1fr}.account-heading.with-action,.admin-panel-head{align-items:stretch;flex-direction:column}.address-card,.order-card{flex-direction:column}.address-actions{justify-content:flex-start}.order-card>div:last-child{align-items:flex-start}.admin-order-grid{grid-template-columns:1fr}.admin-order-grid .wide{grid-column:auto}.admin-order-head{flex-direction:column}.admin-product-row{min-width:760px}.form-actions{flex-direction:column}.form-actions .button{width:100%}}

/* V12.1 — autenticação, confirmação e recuperação de senha */
.link-button{display:block;text-align:center;text-decoration:none}
.auth-success-panel{text-align:center;padding:12px 2px 4px}
.auth-success-panel h1,.auth-success-panel h2,.auth-success-panel h3{margin:10px 0 8px}
.auth-success-panel p{color:var(--muted);line-height:1.6;margin:0 0 18px}
.auth-success-icon{width:58px;height:58px;border-radius:18px;display:grid;place-items:center;margin:0 auto;background:linear-gradient(135deg,var(--pink),var(--orange));color:#190b14;font-size:1.65rem;font-weight:950;box-shadow:0 12px 35px rgba(255,47,167,.22)}
.auth-error-panel .auth-success-icon{background:linear-gradient(135deg,#ff5575,#ffb75e)}
.security-card{margin-top:18px}
.security-card h3{font-size:1.3rem;margin:7px 0 5px}
.security-card p,.password-hint{color:var(--muted);line-height:1.55;margin:0}
.auth-header{justify-content:space-between;padding-inline:max(24px,calc((100% - var(--max))/2))}
.auth-single-page{min-height:calc(100vh - 88px);display:grid;place-items:center;padding:64px 18px}
.auth-single-card{width:min(100%,520px);padding:34px}
.auth-single-card>h1{font-size:clamp(2rem,5vw,3rem);margin:9px 0 10px}
.auth-single-card>p{color:var(--muted);line-height:1.65;margin:0 0 22px}
.auth-single-card .form-message{display:block;margin-top:14px}
@media(max-width:760px){.auth-header .brand span{display:inline}.auth-header .account-button{font-size:.76rem}.auth-single-page{padding:34px 16px;align-items:start}.auth-single-card{padding:22px}.security-card .form-grid.two{grid-template-columns:1fr}}
