:root{
  --bg: #0b0f0c;
  --surface: #0f1511;
  --card: #121a14;
  --text: #eaf3ec;
  --muted: #b7c7bc;
  --line: rgba(255,255,255,.10);

  --green: #19c37d;
  --yellow: #f7c948;
  --blue: #4da3ff;

  --shadow: 0 14px 40px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(25,195,125,.18), transparent 55%),
    radial-gradient(900px 600px at 85% 15%, rgba(77,163,255,.14), transparent 50%),
    radial-gradient(900px 700px at 65% 85%, rgba(247,201,72,.10), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }

.container{ width: min(100% - 40px, var(--max)); margin: 0 auto; }
.small{ font-size:.95rem; color: var(--muted); }

.badge{
  display:inline-flex; gap:10px; align-items:center;
  padding: 10px 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:999px;
  backdrop-filter: blur(6px);
}

/* ===== Header ===== */
.header{
  position: sticky; top:0; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(11,15,12,.72);
  backdrop-filter: blur(10px);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}

/* Brand (logo horizontal) */
.brand{
  display:flex;
  align-items:center;
}
.brand-logo{
  height: 40px;
  width: auto;
  display:block;
}
@media (max-width:600px){
  .brand-logo{ height: 32px; }
}

/* Nav */
.nav{ display:flex; gap: 10px; flex-wrap:wrap; justify-content:flex-end; }
.nav a{
  padding: 10px 12px;
  border-radius: 999px;
  border:1px solid transparent;
  color: var(--muted);
}
.nav a:hover{
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,.03);
}
.nav a.active{
  border-color: rgba(25,195,125,.35);
  background: rgba(25,195,125,.10);
  color: var(--text);
}

/* ===== Hero ===== */
.hero{ padding: 56px 0 26px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.hero h2{
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  margin: 10px 0 10px;
  line-height: 1.12;
}
.hero p{
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 1.05rem;
}

/* Hero Mascot (pug em pé) */
.hero-pug{
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-pug img{
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.55));
  animation: pugFloat 6s ease-in-out infinite;
}
@keyframes pugFloat{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0); }
}
@media (max-width: 900px){
  .hero-pug img{ max-width: 240px; }
}

/* ===== Buttons ===== */
.actions{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 14px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  transition: transform .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.18); }

.btn.primary{
  border-color: rgba(25,195,125,.55);
  background: linear-gradient(135deg, rgba(25,195,125,.22), rgba(25,195,125,.08));
}
.btn.secondary{
  border-color: rgba(247,201,72,.55);
  background: linear-gradient(135deg, rgba(247,201,72,.22), rgba(247,201,72,.08));
}
.btn.ghost{
  border-color: rgba(77,163,255,.45);
  background: linear-gradient(135deg, rgba(77,163,255,.20), rgba(77,163,255,.06));
}

/* ===== Panels / Cards ===== */
.panel{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
}
.panel h3{ margin: 0 0 10px; }
.panel ul{ margin:0; padding-left: 18px; color: var(--muted); }

.section{ padding: 26px 0; }

.section-title{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap: 14px; margin-bottom: 14px;
}
.section-title h3{ margin:0; font-size: 1.35rem; }

.grid{
  display:grid; gap: 14px;
  grid-template-columns: repeat(12, 1fr);
}

.card{
  grid-column: span 4;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
@media (max-width: 900px){ .card{ grid-column: span 6; } }
@media (max-width: 600px){ .card{ grid-column: span 12; } }

.card h4{ margin: 0 0 8px; }
.card p{ margin: 0; color: var(--muted); }
.card .meta{ margin-top:10px; display:flex; gap:10px; flex-wrap:wrap; }

.pill{
  font-size:.86rem;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}
.pill.green{ border-color: rgba(25,195,125,.35); color: #dff7eb; background: rgba(25,195,125,.08); }
.pill.yellow{ border-color: rgba(247,201,72,.35); color: #fff4d0; background: rgba(247,201,72,.08); }
.pill.blue{ border-color: rgba(77,163,255,.35); color: #d7ecff; background: rgba(77,163,255,.08); }

.cta{
  margin-top: 18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  border-radius: var(--radius2);
  border:1px solid rgba(25,195,125,.30);
  background: linear-gradient(135deg, rgba(25,195,125,.18), rgba(255,255,255,.03));
  padding: 18px;
}
.cta h4{ margin:0 0 6px; }
.cta p{ margin:0; color: var(--muted); }

/* ===== Footer ===== */
.footer{
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  color: var(--muted);
}

.footer-grid{
  display:grid; gap: 12px;
  grid-template-columns: 1.4fr .6fr;
  align-items:flex-start;
}
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* Pug selo no rodapé */
.footer-mascot{
  margin-top: 16px;
  opacity: .85;
}
.footer-mascot img{
  width: 84px;
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.45));
}

.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:.9rem;
  padding: 2px 8px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
}

/* ===== Forms ===== */
.form{
  display:grid; gap: 12px; margin-top: 10px;
}
.input, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 12px 12px;
  color: var(--text);
  outline: none;
}
textarea{ min-height: 140px; resize: vertical; }
.input:focus, textarea:focus{ border-color: rgba(25,195,125,.45); }

.help{ color: var(--muted); font-size:.92rem; margin: 0; }

.notice{
  border:1px solid rgba(247,201,72,.25);
  background: rgba(247,201,72,.08);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #fff3c9;
}

/* ===== Interactive Images (hover + click) ===== */
.zoomable{
  cursor: zoom-in;
  transition: transform .18s ease, filter .18s ease;
  will-change: transform;
}
.zoomable:hover{
  transform: scale(1.04);
  filter: brightness(1.03) contrast(1.02);
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.lightbox.open{ display:flex; }
.lightbox-inner{
  width: min(1100px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(11,15,12,.55);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.lightbox-media{
  width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  background: rgba(0,0,0,.25);
}
.lightbox-close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor: pointer;
}
.lightbox-close:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.18); }

/* ===== Custom Cursor ===== */
@media (pointer: fine){
  body{ cursor: none; }
  a, button, .zoomable{ cursor: none; }
  .cursor-dot, .cursor-ring{
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
  }
  .cursor-dot{
    width: 8px; height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 10px 24px rgba(0,0,0,.35);
  }
  .cursor-ring{
    width: 34px; height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.25);
    background: radial-gradient(circle at 30% 30%, rgba(25,195,125,.20), transparent 60%);
    transition: width .14s ease, height .14s ease, border-color .14s ease, background .14s ease;
    backdrop-filter: blur(2px);
  }
  .cursor-ring.active{
    width: 52px; height: 52px;
    border-color: rgba(25,195,125,.45);
    background: radial-gradient(circle at 30% 30%, rgba(25,195,125,.30), transparent 60%);
  }
}

/* ===== Carousel (up to 10 items) ===== */
.hero-carousel{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  min-height: 340px;
}
.hero-carousel-track{
  display:flex;
  width:100%;
  transition: transform .55s ease;
}
.hero-carousel-slide{
  min-width:100%;
  position: relative;
}
.hero-carousel-media{
  width:100%;
  height: 360px;
  object-fit: cover;
  display:block;
  filter: saturate(1.02) contrast(1.02);
}
@media (max-width: 900px){
  .hero-carousel-media{ height: 280px; }
}
.hero-carousel-overlay{
  position:absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,15,12,.78) 0%, rgba(11,15,12,.32) 55%, rgba(11,15,12,.10) 100%),
    radial-gradient(700px 350px at 18% 25%, rgba(25,195,125,.16), transparent 60%),
    radial-gradient(700px 350px at 80% 30%, rgba(77,163,255,.12), transparent 60%);
  pointer-events:none;
}
.hero-carousel-caption{
  position:absolute;
  left: 18px;
  top: 18px;
  max-width: 70%;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(11,15,12,.45);
  backdrop-filter: blur(8px);
}
.hero-carousel-caption strong{ display:block; margin-bottom: 4px; }
.hero-carousel-caption span{ color: var(--muted); font-size: .95rem; }

.hero-carousel-controls{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 10px;
  pointer-events:none;
}
.hero-carousel-btn{
  pointer-events:auto;
  width: 44px; height: 44px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.hero-carousel-btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.18); }

.hero-carousel-dots{
  position:absolute;
  left: 16px;
  bottom: 14px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: calc(100% - 32px);
}
.hero-carousel-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.10);
  cursor:pointer;
}
.hero-carousel-dot.active{
  background: rgba(25,195,125,.55);
  border-color: rgba(25,195,125,.35);
}

/* ===== "Video as GIF" look ===== */
.gif-video{
  width:100%;
  height: 360px;
  object-fit: cover;
  display:block;
}

/* ===== Pug watermark on hero carousel ===== */
.hero-mascot-watermark{
  position:absolute;
  right: 14px;
  bottom: 10px;
  width: 150px;
  opacity: .18;
  pointer-events:none;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.35));
}
.hero-mascot-watermark img{
  width:100%;
  height:auto;
}
@media (max-width:900px){
  .hero-mascot-watermark{ width: 110px; opacity: .14; }
}

/* ===== Mascot blocks (Sobre/Personalizados) ===== */
.about-mascot{
  display:flex;
  align-items:center;
  justify-content:center;
}
.about-mascot-inner{
  width: 100%;
  text-align: center;
}
.about-mascot-inner img{
  max-width: 230px;
  margin: 6px auto 0;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.55));
}
@media (max-width: 900px){
  .about-mascot-inner img{ max-width: 190px; }
}

/* ===== Vitrine: filtros + busca + ordenação ===== */
.filters-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
  margin: 10px 0 16px;
}

.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.filters-tools{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  min-width: min(520px, 100%);
}
.filters-tools .input{
  min-width: 220px;
}

/* ===== Chips ===== */
.filter-chip{
  padding: 10px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease, color .15s ease;
}
.filter-chip:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-1px);
}
.filter-chip.active{
  color: var(--text);
  border-color: rgba(25,195,125,.35);
  background: rgba(25,195,125,.10);
}

/* ===== Products Grid ===== */
.products-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.product-card{
  grid-column: span 4;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease;
}
.product-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
}

@media (max-width: 900px){ .product-card{ grid-column: span 6; } }
@media (max-width: 600px){ .product-card{ grid-column: span 12; } }

.product-media{ position: relative; background: rgba(0,0,0,.25); }
.product-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,15,12,.55));
  pointer-events:none;
}

.product-thumb{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
}

.product-body{ padding: 14px; }
.product-body h4{ margin: 0 0 8px; }
.product-body p{ margin: 0; color: var(--muted); }

.product-tags{
  margin-top: 10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ===== Product Modal ===== */
.product-modal{
  position: fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 10001;
  padding: 18px;
  background: rgba(0,0,0,.70);
}
.product-modal.open{ display:flex; }

.product-modal-inner{
  width: min(1100px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(11,15,12,.65);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 16px;
  position: relative;
}

.product-modal-grid{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(12, 1fr);
}
.product-modal-item{
  grid-column: span 6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.03);
}
@media (max-width: 900px){ .product-modal-item{ grid-column: span 12; } }

.product-modal-media{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
}

/* ===== Reveal animation on scroll ===== */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}
/* ===== Products grid: mais itens por tela ===== */
.products-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

/* Desktop: 4 por linha (span 3) */
.product-card{
  grid-column: span 3;
}

/* Ajuste responsivo */
@media (max-width: 1100px){
  .product-card{ grid-column: span 4; } /* 3 por linha */
}
@media (max-width: 900px){
  .product-card{ grid-column: span 6; } /* 2 por linha */
}
@media (max-width: 520px){
  .product-card{ grid-column: span 12; } /* 1 por linha */
}

/* Thumb menor e mais elegante */
.product-thumb{
  height: 160px;         /* era 220 */
  object-fit: cover;
}

/* Card mais “compacto” */
.product-body{
  padding: 12px;
}
.product-body p{
  display: -webkit-box;
  -webkit-line-clamp: 2; /* limita descrição */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-tags .pill{
  padding: 5px 9px;
  font-size: .82rem;
}

/* Modal: mídia mais equilibrada */
.product-modal-media{
  height: 260px;  /* era 320 */
}

.ig-qr{
  width: 92px;
  height: 92px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  object-fit: cover;
}

/* ===== Lightbox (garante que imagem/vídeo apareçam) ===== */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.78);
  z-index: 10000;
  padding: 18px;
}

.lightbox.open{ display:flex; }

.lightbox-inner{
  width: min(1100px, 100%);
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(11,15,12,.65);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 14px;
}

.lightbox-close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
}

.lightbox-media{
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display:block;
  border-radius: 16px;
  background: #000;
}

.product-media{ position:relative; }
.product-thumb{ position:relative; z-index:1; }
.product-overlay{ z-index:2; pointer-events:none; }

/* ===== Cursor custom: só ponto ===== */
.cursor-dot{
  position: fixed;
  left: 0; top: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  transform: translate(-100px, -100px);
  z-index: 20000;
  pointer-events: none; /* importantíssimo */
}

/* se existir ring antigo, desliga */
.cursor-ring{ display:none !important; }

/* ============================= */
/* CURSOR CONTEXTUAL */
/* ============================= */

.cursor-dot{
  position: fixed;
  left:0;
  top:0;
  width:6px;
  height:6px;
  border-radius:999px;
  background:white;
  z-index:20000;
  pointer-events:none;
  transform:translate(-100px,-100px);
}

.cursor-label{
  position:fixed;
  left:0;
  top:0;
  transform:translate(-100px,-100px);
  z-index:20000;
  font-size:11px;
  letter-spacing:.12em;
  padding:6px 10px;
  border-radius:20px;
  background:rgba(0,0,0,.75);
  color:white;
  backdrop-filter:blur(6px);
  pointer-events:none;
  opacity:0;
  transition:opacity .18s ease;
}

.cursor-label.active{
  opacity:1;
}

/* ===== Hover 3D nos cards (desktop) ===== */
.products-grid{ perspective: 900px; }

.product-card{
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .14s ease, border-color .15s ease, box-shadow .15s ease;
}

.product-card:hover{
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 16px 44px rgba(0,0,0,.55);
}

/* “Glow” sutil que acompanha o mouse (via CSS var) */
.product-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events:none;
  opacity:0;
  transition: opacity .15s ease;
  background:
    radial-gradient(320px 220px at var(--mx, 50%) var(--my, 50%),
      rgba(25,195,125,.18),
      transparent 60%);
}

.product-card:hover::before{ opacity:1; }

/* Garantir que o card tenha contexto para ::before */
.product-card{ position: relative; }

/* levanta um pouco a thumb (efeito depth) */
.product-media, .product-body{
  transform: translateZ(0);
}

.product-card:hover .product-media{
  transform: translateZ(18px);
}
.product-card:hover .product-body{
  transform: translateZ(10px);
}

/* no mobile desliga 3D */
@media (pointer: coarse){
  .product-card, .product-card:hover{
    transform: none !important;
  }
  .product-card::before{ display:none; }
}

.product-card:hover .product-thumb{
  filter: saturate(1.05) contrast(1.04);
}

/* ===== Hover 3D também nos cards da Home (cards padrão) ===== */
.grid{ perspective: 900px; }

.card{
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .14s ease, border-color .15s ease, box-shadow .15s ease;
}

.card:hover{
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 16px 44px rgba(0,0,0,.55);
}

/* Glow suave seguindo o mouse */
.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events:none;
  opacity:0;
  transition: opacity .15s ease;
  background:
    radial-gradient(300px 220px at var(--mx, 50%) var(--my, 50%),
      rgba(77,163,255,.14),
      transparent 60%);
}

.card:hover::before{ opacity:1; }

/* “Profundidade” no conteúdo */
.card > *{
  transform: translateZ(0);
}
.card:hover > *{
  transform: translateZ(10px);
}

/* no mobile desliga */
@media (pointer: coarse){
  .card, .card:hover{ transform:none !important; }
  .card::before{ display:none; }
}

/* ===== Hover 3D premium base ===== */
.product-card, .card{
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
}

/* Respeita acessibilidade */
@media (prefers-reduced-motion: reduce){
  .product-card, .card{
    transition: none !important;
    transform: none !important;
  }
  .product-card::before, .card::before{ display:none !important; }
}

/* ===========================
   PRODUCT PAGE (Premium)
=========================== */

.product-page{ display:block; }

.product-shell{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}
@media (max-width: 980px){
  .product-shell{ grid-template-columns: 1fr; }
}

.product-gallery{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.product-stage{
  background: rgba(0,0,0,.22);
  aspect-ratio: 4/3;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-stage-media{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.product-thumbs{
  display:flex;
  gap:10px;
  padding: 12px;
  border-top: 1px solid var(--line);
  overflow:auto;
}

.pthumb{
  width: 78px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  cursor:pointer;
  position:relative;
}
.pthumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.pthumb.active{
  border-color: rgba(77,163,255,.45);
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
}

.pthumb-video{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--text);
  background: rgba(0,0,0,.25);
}

.product-buy{
  position: sticky;
  top: 78px; /* abaixo do header sticky */
  display:grid;
  gap: 12px;
}
@media (max-width: 980px){
  .product-buy{ position: static; }
}

.product-topline{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.product-badges{ display:flex; gap:8px; flex-wrap:wrap; }
.product-cat{ text-transform: uppercase; letter-spacing:.12em; font-size:.78rem; }

.product-title{
  margin: 10px 0 6px;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  line-height: 1.12;
}
.product-short{ margin: 0 0 10px; }

.product-specs{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  overflow:hidden;
}
.spec-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}
.spec-row:first-child{ border-top:0; }
.spec-row strong{ font-weight: 650; }

.product-actions{
  display:grid;
  gap: 10px;
}
.product-actions .btn{ width:100%; }

.product-details{
  margin-top: 16px;
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 980px){
  .product-details{ grid-template-columns: 1fr; }
}

.product-details details{
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,.02);
  margin-top: 10px;
}
.product-details summary{
  cursor:pointer;
  color: var(--text);
}
.product-details details p{ margin: 8px 0 0; }

.product-sticky{
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 10002;
  padding: 10px 12px;
  background: rgba(11,15,12,.72);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  display:none;
  gap: 10px;
}
.product-sticky .btn{ flex:1; }

@media (max-width: 980px){
  .product-sticky{ display:flex; }
  body{ padding-bottom: 78px; }
}