/* ════ ACELERARTE v2 — fiel ao Figma (light, clean) ════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* bloqueia popup de salvar/compartilhar imagem no iOS (long-press) */
img { -webkit-touch-callout: none; -webkit-user-select: none; user-select: none; }
/* remove o flash azul/cinza padrão do navegador ao tocar/clicar em link ou
   botão — como o card inteiro (.pcard) é um link, sem isso o card inteiro
   pintava dessa cor por um instante a cada toque */
a, button { -webkit-tap-highlight-color: transparent; outline: none; }
:root {
  --gold: #E8B400; --gold-h: #C99B00; --gold-soft: rgba(232,180,0,.16);
  --ink: #212121; --ink2: #424242;
  --gray: #9E9E9E; --line: #E0E0E0; --line2: #BDBDBD;
  --bg-card: #F5F5F5; --white: #fff;
  --f-display: 'Anton SC', 'Arial Black', sans-serif;
  --f-head: 'Lufga', 'Poppins', sans-serif;
  --f-body: 'Poppins', sans-serif;
}
/* overflow-x:hidden no <html> (2026-07-07, tentativa de travar o arrasto
   lateral no Android) quebrou o scroll vertical da página do catálogo
   inteiro (mobile E desktop) -- revertido, ficou só no body como estava
   antes. touch-action:pan-y sozinho (sem o overflow-x no html) é
   touch-only e não devia afetar scroll de mouse/desktop -- mantido. */
html { scroll-behavior: smooth; touch-action: pan-y; }
body { font-family: var(--f-body); background: var(--white); color: var(--ink); overflow-x: hidden; touch-action: pan-y; }
img { max-width: 100%; }
/* Suprime o botão de Visual Search que o Microsoft Edge injeta sobre <img> no
   hover. Seguro aqui porque nenhuma <img> é alvo de clique direto — todo clique/
   hover de imagem é tratado por um ancestral (card <a>, .pdp-stage, <button> da
   miniatura, e o zoom do card é .pcard:hover). onLoad/onError não são eventos de
   ponteiro, seguem funcionando. */
img { pointer-events: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 28px 80px; transition: background .3s, box-shadow .3s, padding .3s;
}
nav.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(0,0,0,.06); padding: 16px 80px; }
.logo { font-family: var(--f-head); font-weight: 700; font-size: 24px; color: var(--ink); letter-spacing: 0; text-decoration: none; }
.logo b { color: var(--gold); font-weight: 700; }
.nav-links { display: flex; gap: 24px; list-style: none; justify-self: center; }
.nav-links a { color: var(--ink2); text-decoration: none; font-size: 14px; font-weight: 500; padding: 4px 8px; transition: color .2s; }
.nav-links a:hover { color: var(--gold-h); }
.nav-actions { display: flex; align-items: center; gap: 12px; justify-self: end; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,.5);
  backdrop-filter: blur(10px); border: 1px solid rgba(232,180,0,.8);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink2); transition: all .2s;
}
.icon-btn:hover { background: var(--gold-soft); color: var(--gold-h); }

/* ── CARRINHO ── */
.cart-btn {
  position: relative; width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,.5); backdrop-filter: blur(10px);
  border: 1px solid rgba(232,180,0,.8);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink2); transition: all .2s;
}
.cart-btn:hover { background: var(--gold-soft); color: var(--gold-h); }
.cart-badge {
  position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px;
  border-radius: 999px; background: var(--gold); color: #15140F;
  font-family: var(--f-body); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.cart-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.5);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 301;
  width: 100%; max-width: 400px; background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -12px 0 40px rgba(0,0,0,.25);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--line);
  font-family: var(--f-head); font-weight: 700; font-size: 18px; color: var(--ink);
}
.cart-close {
  width: 32px; height: 32px; border-radius: 999px; border: none;
  background: var(--bg-card); color: var(--ink2); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-empty { padding: 60px 24px; text-align: center; color: var(--gray); font-family: var(--f-body); }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; gap: 14px; align-items: flex-start; }
.cart-item img { width: 68px; height: 68px; object-fit: contain; background: var(--bg-card); border-radius: 14px; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; font-family: var(--f-body); }
.cart-item-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.cart-item-size { font-size: 12px; color: var(--gray); }
.cart-item-price { font-weight: 700; font-size: 13px; color: var(--ink); }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.cart-item-qty button {
  width: 24px; height: 24px; border-radius: 999px; border: none;
  background: var(--bg-card); color: var(--ink); cursor: pointer; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-item-qty span { font-family: var(--f-body); font-weight: 700; font-size: 13px; min-width: 16px; text-align: center; }
.cart-item-remove {
  width: 28px; height: 28px; border-radius: 999px; border: none; background: none;
  color: var(--gray); cursor: pointer; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-item-remove:hover { color: #D64545; }
.cart-drawer-foot { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-head); font-weight: 700; font-size: 17px; color: var(--ink);
  margin-bottom: 16px;
}
.cart-checkout {
  width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px;
  border-radius: 999px; gap: 8px;
}
@media (max-width: 480px) { .cart-drawer { max-width: 100%; } }
.avatar { width: 36px; height: 36px; border-radius: 999px; background: linear-gradient(135deg, var(--gold), #C99B00); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 700; font-size: 13px; color: var(--ink); }
.hamburger { display: none; width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(232,180,0,.8); background: rgba(255,255,255,.6); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 16px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--f-display); font-size: 40px; color: var(--ink); text-decoration: none; padding: 8px 24px; transition: color .2s; }
.mobile-menu a:hover { color: var(--gold-h); }

/* ── HERO ── */
.hero { background: var(--white); min-height: 100vh; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; right: 0; top: 0; bottom: 0; width: 60%;
  pointer-events: none; overflow: hidden;
}
.hero-wm {
  position: absolute; right: 96px; top: -40px; height: 120%;
  font-family: var(--f-display); font-size: 232px; color: var(--gold-soft);
  writing-mode: vertical-rl; transform: rotate(180deg);
  user-select: none; letter-spacing: -.01em; line-height: 1; white-space: nowrap;
}
.hero-wm2 {
  position: absolute; right: 8px; top: -20px; height: 120%;
  font-family: var(--f-display); font-size: 118px; color: var(--gold-soft);
  writing-mode: vertical-rl; transform: rotate(180deg);
  user-select: none; letter-spacing: -.01em; line-height: 1; white-space: nowrap;
}
.hero-img {
  position: absolute; right: 13%; top: 47%; transform: translateY(-50%) rotate(-10deg);
  width: 540px; z-index: 2; will-change: transform;
  aspect-ratio: 4 / 3; border-radius: 24px;
}
.hero-img:has(img.loaded) { aspect-ratio: auto; }
/* shimmer enquanto o produto do hero (sorteado) ou a foto dele ainda carregam */
.hero-img::after {
  content: ''; position: absolute; inset: 0; z-index: 0; border-radius: 24px;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--line2) 50%, var(--bg-card) 75%);
  background-size: 200% 100%; animation: pcard-shimmer 1.4s ease-in-out infinite;
  transition: opacity .25s;
}
.hero-img:has(img.loaded)::after { opacity: 0; }
.hero-img img {
  width: 100%; height: auto; object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(0 50px 70px rgba(0,0,0,.18));
  opacity: 0; transition: opacity .3s;
}
.hero-img img.loaded { opacity: 1; }
/* marca d'água horizontal atrás do capacete — só aparece no mobile (estilo Figma) */
.hero-img-wm { display: none; }
.hero-content {
  position: relative; z-index: 3; max-width: 560px;
  padding: 0 0 0 80px; margin-top: 284px;
}
.hero h1 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 96px; line-height: 1.12; color: var(--ink); margin-bottom: 8px;
  /* nomes tipo "Vermelho/Azul" (sem espaço, só barra) contam como 1 palavra só
     pro navegador — sem isso, em vez de quebrar linha ele estoura pra fora
     da tela no lugar de quebrar */
  overflow-wrap: break-word; word-break: break-word;
}
.line-wrap { display: block; overflow: hidden; }
.line { display: block; }
.hero-sub { font-family: var(--f-body); font-weight: 500; font-size: 16px; letter-spacing: .2px; color: var(--gray); line-height: 1.4; margin-bottom: 48px; max-width: 517px; }
/* enquanto o produto sorteado não chega, o texto genérico fica invisível e
   "tampado" por um shimmer — evita mostrar frase de placeholder legível */
.hero-loading { position: relative; }
.hero-loading .line, .hero-loading.hero-sub { color: transparent; }
.hero-loading::after {
  content: ''; position: absolute; inset: 0; border-radius: 8px; z-index: 1;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--line2) 50%, var(--bg-card) 75%);
  background-size: 200% 100%; animation: pcard-shimmer 1.4s ease-in-out infinite;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-gl {
  background: var(--gold); color: var(--ink); border: none; border-radius: 999999px;
  padding: 16px 48px; font-family: var(--f-body); font-weight: 700; font-size: 14px; letter-spacing: .2px;
  cursor: pointer; transition: all .2s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-gl:hover { background: var(--gold-h); transform: translateY(-2px); }
.btn-ol {
  background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink);
  border: none; border-radius: 999999px; padding: 16px 48px; font-family: var(--f-body);
  font-weight: 700; font-size: 14px; letter-spacing: .2px; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-ol:hover { box-shadow: inset 0 0 0 1.5px var(--gold-h); color: var(--gold-h); }
.hero-carousel {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; align-items: center; gap: 8px;
  width: fit-content;
}
.car-arrow { background: none; border: none; cursor: pointer; color: var(--gray); display: flex; padding: 6px; transition: color .2s; }
.car-arrow:hover { color: var(--ink); }
.car-thumb {
  width: 88px; height: 56px; border-radius: 999px; background: var(--bg-card);
  border: 1.5px solid transparent; cursor: pointer; display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: border-color .2s, transform .2s;
}
.car-thumb img { width: 44px; height: 44px; object-fit: contain; }
.car-thumb:hover { transform: translateY(-2px); }
.car-thumb.active { border-color: var(--gold); background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.08); }

/* ── BRANDS STRIP ── */
.brands-strip {
  padding: 32px 80px; background: var(--white);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.brands-label {
  font-family: var(--f-body); font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray); margin-bottom: 20px;
}
.brands-row {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.brand-chip {
  display: inline-flex; align-items: center; padding: 8px 18px;
  border-radius: 999px; border: 1.5px solid var(--line2);
  font-family: var(--f-body); font-size: 13px; font-weight: 700;
  color: var(--ink2); text-decoration: none; letter-spacing: .5px;
  transition: border-color .2s, color .2s, background .2s;
}
.brand-chip:hover { border-color: var(--gold); color: var(--ink); background: var(--gold-soft); }
@media (max-width: 1024px) { .brands-strip { padding: 28px 32px; } }
@media (max-width: 768px)  { .brands-strip { padding: 24px 24px; } .brands-row { gap: 8px; } .brand-chip { font-size: 12px; padding: 7px 14px; } }

/* ── SECTIONS ── */
.sec { padding: 80px; background: var(--white); scroll-margin-top: 100px; }
.sec-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; gap: 16px; flex-wrap: wrap; }
.sec-title { font-family: var(--f-head); font-weight: 600; font-size: 40px; color: var(--ink); line-height: 1.5; }
.xbtn {
  display: inline-flex; align-items: center; gap: 8px; box-shadow: inset 0 0 0 1px var(--line2);
  border: none; border-radius: 999999px; padding: 16px 24px; background: none;
  font-family: var(--f-body); font-weight: 700; font-size: 14px; letter-spacing: .2px;
  cursor: pointer; color: var(--ink); transition: all .2s;
}
.xbtn:hover { box-shadow: inset 0 0 0 1.5px var(--gold-h); color: var(--gold-h); }

/* ── PRODUCT CARDS (Figma: imagem cinza + info embaixo) ── */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* Vistos Recentemente: no computador só 1 fileira (3 cards); no mobile o
   .pgrid vira scroll horizontal (ver @media 768px mais abaixo) e mantém
   os 6 pra dar a sensação de "mais coisa pra ver" no scroll */
@media (min-width: 769px) {
  #vistos-recentemente .pgrid > :nth-child(n+4) { display: none; }
}
.pcard { display: flex; flex-direction: column; gap: 20px; cursor: pointer; height: 100%; }
.pcard-img {
  width: 100%; aspect-ratio: 1; border-radius: 24px; background: var(--bg-card);
  display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
}
/* shimmer enquanto a foto real carrega — some assim que <img> dispara onLoad
   (classe "loaded" adicionada via JS) e some com a real por trás */
.pcard-img::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--line2) 50%, var(--bg-card) 75%);
  background-size: 200% 100%; animation: pcard-shimmer 1.4s ease-in-out infinite;
  transition: opacity .25s;
}
.pcard-img:has(img.loaded)::before { opacity: 0; }
@keyframes pcard-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.pcard-img img {
  width: 80%; height: 80%; object-fit: contain; transform: rotate(-8deg);
  position: relative; z-index: 1; opacity: 0;
  transition: transform .35s, opacity .3s;
}
.pcard-img img.loaded { opacity: 1; }
.pcard:hover .pcard-img img { transform: rotate(-4deg) scale(1.06); }
.pcard-info { display: flex; flex: 1; justify-content: space-between; align-items: center; }
/* altura reservada pra 2 linhas, sempre — sem isso, um nome de 1 linha e um
   de 2 linhas deixam o botão "Compre Agora" em alturas diferentes entre
   cards vizinhos (bug reportado no carrossel mobile) */
.pcard-name {
  font-weight: 700; font-size: 15px; line-height: 1.3; letter-spacing: .2px; color: var(--ink);
  min-height: calc(1.3em * 2);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pcard-price { font-weight: 700; font-size: 14px; letter-spacing: .2px; color: var(--ink); margin-top: 8px; }
.pcard-price-old { font-weight: 500; text-decoration: line-through; color: var(--ink2); margin-right: 6px; }
.pcard-price-promo { color: #c0392b; }
.pcard-sold {
  display: inline-flex; align-items: center; gap: 5px; align-self: flex-start;
  font-family: var(--f-body); font-size: 11px; font-weight: 700;
  color: var(--gold-h); letter-spacing: .2px; margin-top: 8px;
  padding: 5px 11px; border-radius: 999px;
  background: color-mix(in srgb, var(--white) 80%, transparent);
  box-shadow: inset 0 0 0 1px var(--line);
}
.pcard-sold svg { opacity: .85; width: 12px; height: 12px; }
.pcard-cat {
  font-family: var(--f-body); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-h); margin-bottom: 2px;
}
.pcard-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gold); color: #15140F;
  font-family: var(--f-body); font-size: 11px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.pcard-buy-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: 999999px; flex-shrink: 0;
  background: var(--gold); color: #15140F; font-family: var(--f-body);
  font-size: 14px; font-weight: 700; letter-spacing: .2px;
  box-shadow: 0 2px 8px rgba(232,180,0,.25); transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap; cursor: pointer; text-decoration: none;
}
.pcard:hover .pcard-buy-btn { background: var(--gold-h); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(232,180,0,.35); }
/* produto esgotado: card ainda leva pro PDP (útil ver detalhes/outras cores),
   mas o botão não pode parecer um convite pra comprar */
.pcard-buy-btn.disabled { background: rgba(128,128,128,.22); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line2); }
.pcard:hover .pcard-buy-btn.disabled { background: rgba(128,128,128,.22); transform: none; box-shadow: inset 0 0 0 1.5px var(--line2); }

/* ── COLLECTION MOSAIC (Figma: 400 | 504 dois empilhados | 400) ── */
/* Alturas determinísticas: fixar a altura dos filhos do grid impede o
   desalinhamento em telas largas (bug de tela cheia no desktop). */
.cgrid { display: grid; grid-template-columns: 1fr 1.26fr 1fr; gap: 24px; align-items: stretch; }
.cgrid > .ccard, .cgrid > .cmid { height: 400px; min-height: 0; }
.ccard {
  border-radius: 24px; background: var(--bg-card); overflow: hidden;
  display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer;
}
.ccard img { width: 65%; height: 80%; object-fit: contain; transform: rotate(-8deg); transition: transform .4s; }
.ccard:hover img { transform: rotate(-3deg) scale(1.07); }
.cmid { display: flex; flex-direction: column; gap: 24px; min-height: 0; }
.cmid .ccard { flex: 1 1 0; min-height: 0; }
.cmid .ccard img { width: 40%; height: 78%; }
a.ccard { text-decoration: none; color: inherit; cursor: pointer; }
.ccard-lbl {
  position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,.92);
  border-radius: 999999px; padding: 8px 18px; font-size: 13px; font-weight: 700; letter-spacing: .2px; color: var(--ink);
}

/* ── FEATURED (Figma: card cinza 400h, pad 64) ── */
.feat-card {
  background: var(--bg-card); border-radius: 32px; padding: 46px 64px;
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 24px;
  overflow: hidden; position: relative; min-height: 400px;
}
.feat-title { font-family: var(--f-display); font-weight: 400; font-size: 80px; color: var(--ink); line-height: 1.18; margin-bottom: 8px; }
.feat-sub { font-family: var(--f-body); font-weight: 500; font-size: 18px; letter-spacing: .2px; color: var(--gray); line-height: 1.4; margin-bottom: 48px; max-width: 517px; }
.feat-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.feat-img { display: flex; justify-content: center; align-items: center; position: relative; }
.feat-img-inner { position: relative; display: inline-block; line-height: 0; }
.feat-img img { position: relative; z-index: 1; width: 460px; max-width: 100%; height: auto; object-fit: contain; transform: rotate(9deg); filter: drop-shadow(0 26px 38px rgba(0,0,0,.16)); }
.feat-tag {
  position: absolute; z-index: 3; top: 5%; left: -6%; transform: rotate(-15deg); transform-origin: center; white-space: nowrap;
  display: flex; align-items: center; justify-content: center; text-align: center;
  border-radius: 22px; border: 2px solid #1a1a1a; box-shadow: 0 10px 28px rgba(0,0,0,.14); padding: 20px 42px 18px;
  font-family: var(--f-body); font-weight: 700; font-size: 27px; letter-spacing: .2px; color: #1a1a1a; background: #fff;
}
.feat-tag::before {
  content: '';
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid #1a1a1a; background: var(--bg-card);
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.fitem { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--white); transition: border-color .2s; }
.fitem:hover { border-color: var(--line2); }
.fq {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px; background: var(--white); border: none; cursor: pointer;
  font-family: var(--f-body); font-size: 16px; font-weight: 600; letter-spacing: .2px;
  color: var(--ink); text-align: left; gap: 16px;
}
.fq-icon {
  width: 32px; height: 32px; border-radius: 999px; background: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 20px; color: var(--ink); transition: transform .3s; font-weight: 300; line-height: 1;
}
.fq.open .fq-icon { transform: rotate(45deg); }
.fa { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.fa.open { max-height: 240px; }
.fa-inner { padding: 0 28px 24px; font-size: 14px; letter-spacing: .2px; color: var(--gray); line-height: 1.8; max-width: 900px; }

/* ── FOOTER (Figma: #212121) ── */
footer { background: var(--ink); padding: 80px; color: #fff; }
.foot-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-headline { font-family: var(--f-head); font-weight: 600; font-size: 40px; line-height: 1.5; color: #fff; }
.foot-headline span { color: var(--gold); }
/* base = tamanho do computador (site é desktop-first); encolhe no mobile
   via @media(max-width:768px) mais abaixo — no telefone a coluna do
   rodapé é bem mais estreita, então o cartão grande sobraria espaço vazio
   do jeito errado (achado ao comparar print do computador com o mobile:
   no desktop o cartão pequeno ficava "boiando" numa coluna larga) */
.insta-card {
  display: flex; align-items: center; gap: 24px; width: fit-content;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px; padding: 24px 30px;
}
.insta-badge {
  flex: none; width: 92px; height: 92px; border-radius: 14px;
  background: #000; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.insta-badge img { width: 82%; height: 82%; object-fit: contain; }
.insta-info { max-width: 220px; }
.insta-info .insta-num { font-family: var(--f-head); font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.insta-info .insta-lbl { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 6px; line-height: 1.4; }
.insta-follow-btn {
  display: inline-block; margin-top: 16px;
  background: var(--gold); color: var(--ink); border-radius: 999999px;
  padding: 11px 26px; font-family: var(--f-body); font-weight: 700; font-size: 14px;
  text-decoration: none; transition: background .2s, transform .15s;
}
.insta-follow-btn:hover { background: var(--gold-h); transform: translateY(-1px); }
.foot-bottom { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .logo { color: #fff; display: block; margin-bottom: 14px; }
.foot-brand p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 260px; }
.fcol h4 { font-family: var(--f-body); font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 20px; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fcol a { color: rgba(255,255,255,.4); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.fcol a:hover { color: var(--gold); }
.foot-copy {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.foot-copy p { font-size: 13px; color: rgba(255,255,255,.25); }

.nav-store-loc {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--f-body); font-size: 13px; font-weight: 600;
  color: var(--ink2); text-decoration: none;
  box-shadow: inset 0 0 0 1.5px var(--line); transition: all .2s; white-space: nowrap;
}
.nav-store-loc:hover { color: var(--gold-h); box-shadow: inset 0 0 0 1.5px var(--gold); background: var(--gold-soft); }
@media (max-width: 768px) { .nav-store-loc span { display: none; } }
@media (max-width: 480px) { .nav-store-loc { padding: 8px; border-radius: 999px; } }

/* ── RESPONSIVE ── */
@media (max-width: 1360px) {
  .hero h1 { font-size: 80px; }
  .hero-img { width: 460px; right: 9%; }
  .hero-wm { font-size: 180px; right: 72px; }
  .hero-wm2 { font-size: 90px; }
}
@media (max-width: 1180px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .hero-img { width: 400px; right: 5%; }
  .feat-title { font-size: 64px; }
}
@media (max-width: 1024px) {
  nav, nav.scrolled { padding-left: 32px; padding-right: 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sec { padding: 64px 32px; }
  footer { padding: 64px 32px; }
  .hero-content { padding-left: 32px; margin-top: 220px; }
  .hero h1 { font-size: 68px; }
  .hero-img { width: 360px; right: 2%; top: 42%; }
  .hero-wm { font-size: 130px; right: 40px; }
  .cgrid { grid-template-columns: 1fr 1fr; height: auto; }
  .cgrid > .ccard, .cgrid > .cmid { height: auto; }
  .cgrid > .ccard:first-child { min-height: 300px; }
  .cgrid > .ccard:last-child { grid-column: 1 / -1; min-height: 280px; }
  .cmid .ccard { min-height: 200px; }
  .feat-card { padding: 40px; }
  .foot-top { grid-template-columns: 1fr; gap: 40px; }
  .foot-bottom { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-actions .icon-btn, .nav-actions .avatar { display: none; }
  nav, nav.scrolled { padding-top: 20px; padding-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
  .nav-actions { justify-self: auto; gap: 10px; }
  .hero { min-height: auto; padding-top: 104px; overflow-x: clip; overflow-y: hidden; display: flex; flex-direction: column; align-items: center; }
  .hero-bg { display: none; }
  .hero-wm, .hero-wm2 { display: none; }
  /* ordem do Figma (mobile): imagem → carrossel → título/subtítulo/botões */
  .hero-img { order: 1; }
  .hero-carousel { order: 2; }
  .hero-content { order: 3; }
  .hero-content { margin-top: 6px; padding: 0 24px; max-width: 100%; }
  .hero h1 { font-size: 50px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-img {
    position: relative; right: auto; top: auto; transform: none;
    width: 72%; max-width: 320px; margin: 8px auto 0;
  }
  .hero-img img { position: relative; z-index: 1; }
  .hero-img-wm { display: none; }
  .hero-img::before {
    content: ''; position: absolute; inset: -16% -22%;
    background: radial-gradient(circle at 50% 47%, rgba(232,180,0,.17) 0%, rgba(232,180,0,.06) 40%, transparent 66%);
    z-index: 0; pointer-events: none;
  }
  .hero-carousel { order: 2; position: relative; bottom: auto; left: auto; transform: none; width: 100%; max-width: 100%; margin: 20px auto 26px; padding-top: 0; gap: 8px; justify-content: center; flex-wrap: nowrap; overflow: visible; }
  .hero-carousel .car-arrow { display: none; }
  .car-thumb { width: 52px; height: 44px; flex-shrink: 0; }
  .car-thumb img { width: 30px; height: 30px; }
  .sec { padding: 56px 24px; }
  footer { padding: 56px 24px; }
  .sec-title { font-size: 28px; }
  .xbtn { padding: 12px 20px; font-size: 13px; }
  .insta-card { flex-wrap: wrap; gap: 14px; padding: 16px 20px; }
  .insta-badge { width: 68px; height: 68px; border-radius: 12px; }
  .insta-info .insta-num { font-size: 22px; }
  .insta-info .insta-lbl { font-size: 12px; margin-top: 4px; }
  .insta-follow-btn { margin-top: 12px; padding: 9px 20px; font-size: 13px; }
}
@media (max-width: 768px) {
  /* scroll horizontal com snap — mostra 1.3 cards, hint de mais */
  .pgrid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; padding-bottom: 12px;
    scrollbar-width: none;
    /* pan-x sozinho BLOQUEIA o gesto vertical dentro do carrossel (não só
       "permite" o horizontal) — por isso passar o dedo aqui pra rolar a
       página pra baixo travava, só deixava arrastar pros lados (achado
       2026-07-08). pan-x + pan-y deixa o navegador decidir pela direção
       real do gesto, como o scroll nativo sempre funcionou. */
    touch-action: pan-x pan-y;
    /* sangra até as bordas da tela, eliminando a faixa branca à esquerda */
    margin-left: -24px; margin-right: -24px;
    padding-left: 24px; padding-right: 24px;
    /* esmaece o card espiado na borda direita, em vez de cortar seco —
       deixa claro que é scroll horizontal (hint de mais), não corte quebrado */
    -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, black 88%, transparent 100%);
  }
  .pgrid::-webkit-scrollbar { display: none; }
  .pgrid .pcard {
    flex: 0 0 75vw; max-width: 280px;
    scroll-snap-align: start;
  }
  .pgrid .pcard-info { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pgrid .pcard-buy-btn { width: 100%; justify-content: center; font-size: 13px; padding: 10px 12px; }
  .pgrid .pcard-name { font-size: 14px; }
}
@media (max-width: 768px) {
  .cgrid { grid-template-columns: 1fr; }
  /* coesão no mobile: TODOS os cards e capacetes do mesmo tamanho */
  .cgrid > .ccard:first-child, .cgrid > .ccard:last-child { min-height: 280px; }
  .cmid { gap: 24px; }
  .cmid .ccard { min-height: 280px; }
  .cgrid .ccard img, .cmid .ccard img { width: 64%; height: 80%; }
  .feat-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .feat-title { font-size: 52px; }
  .feat-sub { font-size: 15px; margin-bottom: 32px; }
  .feat-img img { width: 300px; }
  .feat-tag { font-size: 19px; padding: 14px 28px 12px; border-radius: 16px; }
  .btn-gl, .btn-ol { padding: 13px 24px; font-size: 15px; }
  .hero-btns { gap: 16px; }
  .foot-bottom { grid-template-columns: 1fr; gap: 32px; }
  .foot-headline { font-size: 28px; line-height: 1.3; }
  .fq { padding: 18px 20px; font-size: 14px; }
  .fa-inner { padding: 0 20px 18px; }
}
@media (max-width: 768px) {
  /* hero mobile: esconde btn Comprar Agora, mostra só Ver Todos */
  .hero-btns .btn-gl { display: none; }
  .hero-btns .hero-ver-todos { display: inline-flex; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  .sec-title { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* easter egg de carregamento — logo antiga (só o ícone) pulsando; usado na
   tela de compra e no catálogo (ver assets/logo-icone-loading.png) */
.pdp-loading-pulse { animation: pdpPulse 1.6s ease-in-out infinite; }
@keyframes pdpPulse { 0%,100% { opacity: .35; transform: scale(.96); } 50% { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .pdp-loading-pulse { animation: none; opacity: .8; } }
