/* ============================================================
   TONE HUNTER v6 — Retrô Pôster / Só Usadas
   Font: Oswald (display) + Inter (corpo)
   Paleta: areia #F2E8D9 / mogno #1C150D / turquesa #0FA7A6
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

:root {
  --teal:    #0FA7A6;
  --teal-d:  #0a8a89;
  --black:   #0FA7A6;   /* turquesa como cor de destaque primária */
  --black-t: #1C150D;   /* preto real para texto e fundo dark */
  --ink:     #2A2016;
  --sand:    #F2E8D9;
  --sand2:   #E8DAC8;
  --sand3:   #D4C4AC;
  --muted:   #8A7A65;
  --white:   #FBF7F2;

  --H: 'Oswald', sans-serif;
  --B: 'Inter', sans-serif;

  --header-h: 80px;
  --max-w: 1200px;
}

body {
  background: var(--sand);
  color: var(--black-t);
  font-family: var(--B);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 780px; }

/* ── Botões ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 28px;
  font-family: var(--H); font-size: 1rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: 0;
  cursor: pointer; line-height: 1; transition: all .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #ffffff; border-color: var(--teal); font-weight: 600; }
.btn-primary:hover { background: var(--teal-d); border-color: var(--teal-d); color: #ffffff; transform: translateY(-1px); }
.btn-dark { background: var(--black-t); color: var(--sand); border-color: var(--black-t); }
.btn-dark:hover { background: var(--ink); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--sand); }
.btn-outline-light { background: transparent; color: #ffffff; border-color: rgba(255,255,255,.55); letter-spacing: .08em; }
.btn-outline-light:hover { background: rgba(255,255,255,.15); color: #ffffff; border-color: #ffffff; }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; border-radius: 2px; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }
.btn-vendido { background: var(--sand2); color: var(--muted); border-color: var(--sand2); cursor: not-allowed; border-radius: 2px; }
.btn-secondary { background: var(--sand2); color: var(--black); border-color: var(--sand3); border-radius: 2px; }
.btn-secondary:hover { background: var(--sand3); }
.btn-danger { background: #b83228; color: #fff; border-color: #b83228; border-radius: 2px; }
.btn-danger:hover { background: #d63b2f; }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }
.btn-sm { padding: 7px 14px; font-size: .8rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Flash / Alert / Modal ──────────────────────────────── */
.flash {
  position: fixed; top: 82px; right: 24px; z-index: 9999;
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
  max-width: 400px; font-weight: 500; border-left: 4px solid;
  animation: fadeIn .3s ease; box-shadow: 4px 4px 0 rgba(0,0,0,.15);
}
.flash--sucesso { background: #ecf9f1; border-color: #27ae60; color: #1a5c32; }
.flash--erro    { background: #fdf0ef; border-color: #c0392b; color: #7a1f1f; }
.flash button   { background: none; border: none; color: inherit; font-size: 1.1rem; }
@keyframes fadeIn { from { opacity:0; transform:translateX(14px); } to { opacity:1; } }

.alert { padding: 14px 18px; margin-bottom: 20px; border-left: 4px solid; }
.alert--erro    { background: #fdf0ef; border-color: #c0392b; color: #7a1f1f; }
.alert--sucesso { background: #ecf9f1; border-color: #27ae60; color: #1a5c32; }
.alert--erro ul { margin-top: 8px; padding-left: 18px; list-style: disc; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(28,21,13,.85);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.modal-box {
  background: var(--sand); border-top: 4px solid var(--teal);
  padding: 32px; max-width: 440px; width: 100%;
  box-shadow: 8px 8px 0 var(--black-t);
}
.modal-box h3 { font-family: var(--H); font-size: 1.8rem; font-weight: 600; margin-bottom: 12px; }
.modal-box p  { color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.modal-actions { display: flex; gap: 10px; margin-top: 24px; justify-content: flex-end; }

/* ═══════════════════════════
   HEADER
═══════════════════════════ */
.site-header {
  position: fixed; top: 0; width: 100%; z-index: 900;
  height: var(--header-h);
  background: #000000;
  border-bottom: 3px solid #0FA7A6;
}

.header-inner {
  display: flex; align-items: center;
  height: var(--header-h); gap: 32px;
  overflow: visible; /* logo pode sair para baixo */
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}
.logo-img {
  height: 121px;
  width: auto;
  max-width: 351px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: transform .2s ease;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.45));
}
.logo:hover .logo-img { transform: scale(1.04) rotate(-1deg); }

/* Na home: logo grande sobrepõe o hero */
body.page-home .logo {
  align-items: flex-start;
  margin-bottom: -70px;
}
body.page-home .logo-img {
  height: 224px;
  max-width: 280px;
  border-radius: 18px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.55));
}
/* O header na home precisa de overflow visível */
body.page-home .site-header {
  overflow: visible;
}
/* Demais páginas: logo 50% maior sem ser cortado pelo header */
body:not(.page-home) .site-header { overflow: visible; }
body:not(.page-home) .logo { position: relative; z-index: 10; }
@media (max-width: 768px) {
  body:not(.page-home) .logo-img { height: 52px; max-width: 160px; }
}
.logo:hover .logo-img { transform: scale(1.04) rotate(-1.5deg); }

.nav-main { display: flex; align-items: center; margin-left: auto; }
.nav-link {
  padding: 0 20px;
  height: var(--header-h);
  display: flex; align-items: center;
  color: #999999;
  font-family: var(--H); font-size: .95rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  transition: color .12s; position: relative;
}
.nav-link:hover { color: #ffffff; }
.nav-link.active { color: #ffffff; }
.nav-link.active::after {
  content: '';
  position: absolute; bottom: 0; left: 20px; right: 20px;
  height: 3px; background: #0FA7A6;
}
.nav-badge {
  background: #0FA7A6; color: #000000;
  padding: 4px 12px; font-family: var(--H);
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
}

.header-actions { display: flex; gap: 8px; margin-left: auto; }
.btn-search-toggle {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid rgba(255,255,255,.15);
  color: #999; transition: all .12s;
}
.btn-search-toggle:hover { border-color: #0FA7A6; color: #0FA7A6; }

.hamburger {
  display: none; width: 38px; height: 38px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: 1px solid rgba(255,255,255,.12);
}
.hamburger span { width: 16px; height: 1.5px; background: #999; display: block; transition: all .25s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

.search-bar {
  background: #111111; border-top: 1px solid rgba(255,255,255,.08);
  max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s;
}
.search-bar.open { max-height: 80px; padding: 14px 0; }
.search-form { display: flex; gap: 0; }
.search-input {
  flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  border-right: none; color: var(--sand); padding: 10px 16px;
  font-family: var(--B); font-size: .95rem; outline: none;
}
.search-input:focus { border-color: var(--teal); }
.search-input::placeholder { color: var(--muted); }
.btn-search {
  width: 44px; height: 44px; background: var(--teal); color: var(--black);
  border: none; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.btn-search:hover { background: var(--teal-d); }

.main-content { margin-top: var(--header-h); }

/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  background: #0d0d0d;
}

/* 3 fotos das guitarras — 3 colunas lado a lado, alinhadas à direita */
.hero-photos {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  left: 25%;
  display: flex;
  z-index: 0;
}
.hero-photo {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}
.hero-photo:hover img { transform: scale(1.04); }

/* Divisor sutil entre fotos */
.hero-photo + .hero-photo {
  border-left: 1px solid rgba(15,167,166,.35);
}

/* Overlay gradiente: cobre texto à esquerda */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(
    to right,
    #0FA7A6 0%,
    #0FA7A6 50%,
    rgba(15,167,166,.82) 68%,
    rgba(15,167,166,.2) 88%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Sombra escura no topo e base para profundidade */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15) 0%, transparent 20%),
    linear-gradient(to top,    rgba(0,0,0,.2)  0%, transparent 20%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  justify-content: flex-start;
  flex: 1; padding: 100px 0 56px;
}
.hero-text { max-width: 480px; flex-shrink: 0; }

.hero-eyebrow {
  display: inline-block;
  font-family: var(--B); font-size: .72rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 6px;
}

.hero-title {
  font-family: var(--H); font-weight: 700;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .92; color: #ffffff;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-title span { color: rgba(255,255,255,.85); display: block; }

.hero-desc {
  font-family: var(--B); font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.75); max-width: 420px; margin-bottom: 40px;
  line-height: 1.75;
  border-left: 2px solid rgba(255,255,255,.5); padding-left: 16px;
}
.hero-desc strong { color: #ffffff; font-weight: 600; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Visual hero — tipografia do logo sem fundo */
.hero-visual { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.hero-logo-text {
  display: flex; flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.hero-logo-text .hl-tone {
  font-family: var(--H); font-weight: 700;
  font-size: clamp(4.5rem, 8vw, 8rem);
  line-height: .85; color: var(--sand);
  text-transform: uppercase; letter-spacing: .04em;
}
.hero-logo-text .hl-hunter {
  font-family: var(--H); font-weight: 700;
  font-size: clamp(4.5rem, 8vw, 8rem);
  line-height: .85; color: var(--teal);
  text-transform: uppercase; letter-spacing: .04em;
}
.hero-logo-text .hl-sub {
  font-family: var(--B); font-weight: 300;
  font-size: .75rem; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(242,232,217,.35);
  margin-top: 14px; display: block;
  border-top: 1px solid rgba(15,167,166,.2);
  padding-top: 10px; width: 100%;
}
/* Linha decorativa lateral */
.hero-logo-text::before {
  content: '';
  position: absolute; left: -24px; top: 0; bottom: 0;
  width: 3px; background: var(--teal);
}

/* Stats bar */
.hero-stats {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.15);
  display: grid; grid-template-columns: repeat(3,1fr);
}
.hero-stat { padding: 20px 28px; border-right: 1px solid rgba(242,232,217,.06); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num   { font-family: var(--H); font-size: 1.6rem; font-weight: 600; color: #ffffff; line-height: 1; }
.hero-stat-label { font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.65); letter-spacing: .14em; text-transform: uppercase; margin-top: 3px; }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: #0FA7A6; padding: 52px 0;
  border-bottom: 3px solid var(--teal); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.page-title { font-family: var(--H); font-weight: 700; font-size: clamp(2.8rem, 5vw, 5rem); color: #ffffff; line-height: 1; text-transform: uppercase; position: relative; }
.page-title em { font-style: normal; color: rgba(255,255,255,.75); }
.page-subtitle { font-family: var(--B); color: rgba(255,255,255,.65); margin-top: 8px; font-size: .88rem; }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--sand  { background: var(--sand); }
.section--sand2 { background: var(--sand2); }
.section--dark  { background: var(--black-t); }

.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px; gap: 16px;
}
.section-title { font-family: var(--H); font-weight: 700; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1; text-transform: uppercase; color: var(--black-t); }
.section-title em { font-style: normal; color: var(--teal); }
.section-title-wrap { border-left: 4px solid var(--teal); padding-left: 16px; }
.section-link { font-family: var(--H); font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-d); display: flex; align-items: center; gap: 6px; transition: gap .15s; border-bottom: 1px solid var(--teal); padding-bottom: 2px; white-space: nowrap; }
.section-link:hover { gap: 12px; }

/* ═══════════════════════════
   CARDS — minimalistas
═══════════════════════════ */
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px,1fr));
  gap: 2px;
}
.grid-produtos--4 { grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); }
.grid-produtos--catalogo { grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); }

.card-produto {
  background: var(--sand2);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease;
}
.card-produto:hover { transform: scale(1.01); z-index: 2; }

.card-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--sand3); }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-produto:hover .card-img { transform: scale(1.04); }
.card-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(28,21,13,0); transition: background .3s;
}
.card-produto:hover .card-img-wrap::after { background: rgba(28,21,13,.06); }

.card-badge {
  position: absolute; top: 12px; left: 0; z-index: 3;
  padding: 4px 12px 4px 10px;
  font-family: var(--H); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.card-badge--oferta  { background: var(--teal); color: #000000; }
.card-badge--vendido { background: #1C150D; color: #F2E8D9; top: 12px; left: auto; right: 0; }

.card-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.card-marca { font-size: .65rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--teal); font-family: var(--B); }
.card-titulo { font-family: var(--H); font-weight: 500; font-size: 1.05rem; line-height: 1.2; color: var(--black-t); }
.card-titulo a { color: inherit; }
.card-titulo a:hover { color: var(--teal); }

.card-preco { display: flex; align-items: baseline; gap: 8px; margin-top: 10px; }
.preco-original { color: var(--muted); text-decoration: line-through; font-size: .8rem; }
.preco-atual { font-family: var(--H); font-weight: 600; font-size: 1.3rem; color: var(--black-t); }
.preco-oferta { color: var(--teal) !important; }

.btn-card {
  margin-top: 12px; display: block; text-align: center; padding: 9px;
  background: var(--teal);
  font-family: var(--H); font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: #ffffff; opacity: 0; transform: translateY(4px); transition: all .2s;
}
.card-produto:hover .btn-card { opacity: 1; transform: translateY(0); }
.btn-card:hover { background: var(--teal-d); color: #ffffff; }
.btn-card--vendido { opacity: .35 !important; pointer-events: none; }

/* esconder tag "usada" no card — desnecessária pois tudo é usada */
.card-tag-condicao { display: none; }

.lazy { filter: blur(10px); transition: filter .4s; }
.lazy.loaded { filter: none; }

/* ── Features ────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); border-top: 2px solid var(--black-t); }
.feature-item { padding: 36px 28px; border-right: 2px solid var(--black-t); border-bottom: 2px solid var(--black-t); transition: background .15s; }
.feature-item:hover { background: var(--sand2); }
.feature-icon { width: 34px; height: 34px; margin-bottom: 16px; color: var(--teal); }
.feature-icon svg { width: 100%; height: 100%; stroke: currentColor; }
.feature-item h3 { font-family: var(--H); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.feature-item p  { color: var(--muted); font-size: .86rem; line-height: 1.65; }

/* ── Paginação ───────────────────────────────────────────── */
.paginacao { margin-top: 48px; }
.paginacao ul { display: flex; gap: 4px; justify-content: center; }
.paginacao a, .paginacao li { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--sand3); color: var(--black); font-family: var(--H); font-size: .92rem; font-weight: 500; transition: all .12s; }
.paginacao a:hover { background: var(--black); color: var(--sand); border-color: var(--black); }
.paginacao li.ativo a { background: var(--black); color: var(--sand); border-color: var(--black); }

/* ═══════════════════════════
   CATÁLOGO
═══════════════════════════ */
.catalogo-inner { display: grid; grid-template-columns: 235px 1fr; gap: 40px; align-items: start; }

.filtros-sidebar {
  background: var(--white); border: 1px solid var(--sand3);
  padding: 22px; position: sticky; top: calc(var(--header-h) + 16px);
}
.filtros-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; border-bottom: 2px solid var(--black-t); padding-bottom: 10px; }
.filtros-header h3 { font-family: var(--H); font-size: 1.1rem; font-weight: 600; letter-spacing: .04em; }
.btn-fechar-filtros { display: none; background: none; border: none; color: var(--muted); font-size: 1.2rem; }

.filtro-grupo { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--sand2); }
.filtro-grupo:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filtro-label { display: block; font-size: .64rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-bottom: 10px; font-family: var(--B); }

.filtro-select, .filtro-input {
  width: 100%; background: var(--sand); border: none; border-bottom: 2px solid var(--black);
  color: var(--black); padding: 8px 2px;
  font-family: var(--B); font-size: .9rem; outline: none;
  transition: border-bottom-color .12s; -webkit-appearance: none; border-radius: 0;
}
.filtro-select:focus, .filtro-input:focus { border-bottom-color: var(--teal); }
.filtro-preco-row { display: flex; align-items: center; gap: 6px; }
.filtro-preco-row span { color: var(--muted); font-size: .85rem; }
.filtro-preco-row .filtro-input { flex: 1; }
.filtro-radio-group { display: flex; flex-direction: column; gap: 8px; }
.filtro-radio, .filtro-check { display: flex; align-items: center; gap: 8px; cursor: pointer; color: var(--ink); font-size: .88rem; }
.filtro-radio input, .filtro-check input { accent-color: var(--teal); }
.btn-limpar-filtros { display: block; text-align: center; color: #b83228; font-size: .8rem; margin-top: 14px; font-weight: 600; font-family: var(--B); }
.btn-limpar-filtros:hover { text-decoration: underline; }

.catalogo-toolbar { display: flex; gap: 0; margin-bottom: 28px; align-items: stretch; }
.toolbar-busca { display: flex; flex: 1; }
.toolbar-input {
  flex: 1; background: var(--white); border: 1px solid var(--sand3);
  border-right: none; border-bottom: 2px solid var(--black-t);
  color: var(--black); padding: 10px 14px;
  font-family: var(--B); font-size: .9rem; outline: none; border-radius: 0;
}
.toolbar-input:focus { border-bottom-color: var(--teal); }
.toolbar-btn { width: 44px; background: var(--teal); border: 1px solid var(--teal); color: #ffffff; display: flex; align-items: center; justify-content: center; border-radius: 0; transition: all .12s; flex-shrink: 0; }
.toolbar-btn:hover { background: var(--teal-d); border-color: var(--teal-d); color: #ffffff; }
.btn-abrir-filtros { display: none; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--sand3); border-left: none; border-bottom: 2px solid var(--black); color: var(--black); padding: 10px 14px; font-size: .85rem; border-radius: 0; font-family: var(--B); white-space: nowrap; margin-left: 8px; }
.btn-abrir-filtros:hover { border-bottom-color: var(--teal); }

.empty-state { text-align: center; padding: 80px 24px; color: var(--muted); }
.empty-state svg { margin: 0 auto 16px; opacity: .2; }
.empty-state h3 { font-family: var(--H); font-size: 2rem; font-weight: 600; margin-bottom: 8px; }
.empty-state p { margin-bottom: 24px; }

/* ═══════════════════════════
   PRODUTO DETALHE
═══════════════════════════ */
.section--produto-detalhe { padding: 40px 0 80px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .82rem; margin-bottom: 32px; font-weight: 500; letter-spacing: .03em; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--sand3); }

.produto-detalhe-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.galeria-principal { position: relative; background: var(--sand2); overflow: hidden; aspect-ratio: 1; }
.galeria-img-principal { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .4s; }
.galeria-principal:hover .galeria-img-principal { transform: scale(1.02); }
.galeria-badge { position: absolute; top: 14px; left: 0; background: var(--teal); color: #000000; padding: 5px 14px 5px 12px; font-family: var(--H); font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.galeria-vendido-overlay { position: absolute; inset: 0; background: rgba(28,21,13,.65); display: flex; align-items: center; justify-content: center; }
.galeria-vendido-overlay span { font-family: var(--H); font-size: 3rem; font-weight: 700; color: #e74c3c; letter-spacing: .2em; border: 3px solid #e74c3c; padding: 10px 28px; transform: rotate(-8deg); }
.galeria-thumbs { display: flex; gap: 4px; margin-top: 4px; flex-wrap: wrap; }
.thumb-btn { width: 70px; height: 70px; border: 2px solid transparent; overflow: hidden; background: var(--sand2); cursor: pointer; padding: 0; transition: border-color .15s; }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.thumb-btn:hover, .thumb-btn.active { border-color: var(--black); }

.produto-marca { font-size: .65rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 6px; font-family: var(--B); }
.produto-titulo { font-family: var(--H); font-weight: 700; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1; margin-bottom: 8px; text-transform: uppercase; color: var(--black-t); }
.produto-modelo { color: var(--muted); font-size: .88rem; margin-bottom: 16px; }
.produto-meta-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.meta-tag { padding: 4px 12px; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-family: var(--B); }
.meta-tag--condicao   { background: var(--sand2); color: var(--muted); }
.meta-tag--disponivel { background: #ecf9f1; color: #1a5c32; }
.meta-tag--vendido    { background: #fdf0ef; color: #7a1f1f; }

.produto-preco-box { background: var(--sand2); border-left: 4px solid var(--teal); padding: 22px; margin-bottom: 22px; }
.label-preco { font-size: .64rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); display: block; font-family: var(--B); }
.preco-de { margin-bottom: 4px; }
.preco-riscado { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.preco-destaque { font-family: var(--H); font-weight: 700; font-size: 3.2rem; color: var(--teal); line-height: 1; }
.preco-economia { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--sand3); color: #1a5c32; font-size: .84rem; font-weight: 600; }

.produto-descricao { margin-top: 24px; }
.produto-descricao h3 { font-family: var(--H); font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.descricao-texto { color: var(--ink); font-size: .92rem; line-height: 1.8; white-space: pre-wrap; }

.produto-specs { margin-top: 20px; border-top: 2px solid var(--black-t); }
.spec-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--sand3); font-size: .86rem; }
.spec-item:last-child { border-bottom: none; }
.spec-label { color: var(--muted); }
.spec-value { font-weight: 500; color: var(--black-t); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: #000000; border-top: 3px solid #0FA7A6; padding-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer-logo-img { height: 50px; max-width: 170px; object-fit: contain; border-radius: 4px; margin-bottom: 14px; }
.footer-tagline { color: #888888; font-size: .86rem; line-height: 1.65; }
.footer-links h4, .footer-contact h4 { font-family: var(--H); font-size: .78rem; font-weight: 500; letter-spacing: .2em; color: #555555; text-transform: uppercase; margin-bottom: 14px; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links a { color: #888888; font-size: .88rem; transition: color .12s; }
.footer-links a:hover { color: #0FA7A6; }
.btn-whatsapp-footer { display: inline-flex; align-items: center; gap: 10px; background: rgba(37,211,102,.08); color: #25D366; border: 1px solid rgba(37,211,102,.2); padding: 12px 16px; font-weight: 600; font-size: .88rem; transition: background .15s; }
.btn-whatsapp-footer:hover { background: rgba(37,211,102,.15); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; text-align: center; color: #555555; font-size: .78rem; }

/* ── Sobre / Contato ─────────────────────────────────────── */
.sobre-content .lead { font-family: var(--H); font-size: 1.6rem; font-weight: 600; color: var(--black); margin-bottom: 18px; line-height: 1.2; text-transform: uppercase; }
.sobre-content p { font-size: .94rem; color: var(--muted); margin-bottom: 14px; line-height: 1.8; }
.sobre-cta { margin-top: 28px; }
.contato-info h3 { font-family: var(--H); font-size: 2rem; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; }
.contato-info p  { color: var(--muted); margin-bottom: 22px; }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */


/* ── Contato ─────────────────────────────────────────────── */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.contato-card {
  background: var(--white);
  border: 1px solid var(--sand3);
  border-top: 3px solid var(--teal);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
}
.contato-icon {
  width: 52px; height: 52px;
  background: rgba(15,167,166,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.contato-icon--instagram {
  background: linear-gradient(135deg, rgba(225,48,108,.1), rgba(255,149,0,.1));
  color: #e1306c;
}
.contato-info h3 {
  font-family: var(--H); font-size: 1.4rem; font-weight: 600;
  margin-bottom: 8px; text-transform: uppercase;
}
.contato-info p { color: var(--muted); font-size: .88rem; margin-bottom: 18px; line-height: 1.65; }

.btn-instagram {
  background: linear-gradient(135deg, #e1306c, #f77737);
  color: #fff; border: none; border-radius: 2px;
}
.btn-instagram:hover { opacity: .9; transform: translateY(-1px); }

/* Footer social links */
.footer-social-link {
  display: flex; align-items: center; gap: 8px;
  color: #888; font-size: .88rem; transition: color .15s;
}
.footer-social-link:hover { color: var(--teal); }
.footer-instagram-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(225,48,108,.1), rgba(255,149,0,.1));
  color: #e1306c; border: 1px solid rgba(225,48,108,.2);
  padding: 10px 16px; font-weight: 600; font-size: .88rem;
  transition: background .15s;
}
.footer-instagram-btn:hover { background: linear-gradient(135deg, rgba(225,48,108,.2), rgba(255,149,0,.2)); }
.footer-instagram-btn svg { color: #e1306c; fill: #e1306c; }

@media (max-width: 640px) {
  .contato-grid { grid-template-columns: 1fr; }
  .contato-card { flex-direction: column; }
}

@media (max-width: 1024px) {
  .catalogo-inner { grid-template-columns: 1fr; }
  .filtros-sidebar { position: fixed; top: 0; left: -100%; width: 275px; height: 100vh; z-index: 800; overflow-y: auto; transition: left .3s; }
  .filtros-sidebar.open { left: 0; box-shadow: 4px 0 32px rgba(28,21,13,.25); }
  .btn-fechar-filtros { display: flex; }
  .btn-abrir-filtros  { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .nav-main {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--black); flex-direction: column;
    padding: 10px; gap: 2px; max-height: 0; overflow: hidden;
    transition: max-height .3s; border-bottom: 2px solid var(--teal);
  }
  .nav-main.open { max-height: 300px; }
  .nav-link { width: 100%; text-align: center; height: 44px; padding: 0; border-bottom: 1px solid rgba(255,255,255,.04); }
  .nav-link.active::after { top: 0; bottom: 0; left: 0; width: 3px; height: auto; right: auto; }
  .hamburger { display: flex; }
  .header-inner { justify-content: space-between; }
  .header-actions { margin-left: auto; }
  .hero-inner { flex-direction: column; padding: 48px 0 36px; }
  .hero-visual { display: none; }
  .hero-photos { left: 0; width: 100%; }
  .hero-overlay { width: 100%; background: linear-gradient(to bottom, rgba(15,167,166,.82) 0%, rgba(15,167,166,.6) 60%, rgba(15,167,166,.4) 100%); }
  .hero-photo img { filter: brightness(.65); }
  .hero-stats  { grid-template-columns: repeat(3,1fr); padding: 0; }
  .hero-stat   { padding: 16px 16px; }
  .produto-detalhe-inner { grid-template-columns: 1fr; gap: 28px; }
  .grid-produtos { grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 2px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .grid-produtos { grid-template-columns: 1fr 1fr; gap: 2px; }
  .card-body { padding: 10px 12px 14px; }
  .hero-title { font-size: 3.5rem; }
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }
  .hero-stats { display: none; }
}

/* ============================================================
   REFINAMENTOS — Acessibilidade, LGPD, páginas legais, mobile
   ============================================================ */

/* Acessibilidade: foco visível por teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Respeita usuários que preferem menos animação */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Imagens responsivas por padrão (evita estouro/CLS) */
img { max-width: 100%; height: auto; }

/* Rodapé: copyright + links legais */
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 10px;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a {
  color: #9aa0a6; font-size: .85rem; text-decoration: none;
  transition: color .2s ease;
}
.footer-legal a:hover { color: var(--teal); }

/* Páginas legais (Privacidade / Termos / Cookies) */
.legal-content { line-height: 1.75; color: #2a2a2a; }
.legal-content h2 {
  font-family: 'Oswald', sans-serif; font-size: 1.35rem;
  margin: 32px 0 10px; color: var(--black);
}
.legal-content p { margin-bottom: 14px; }
.legal-content a { color: #0c8e8d; font-weight: 500; }
.legal-updated { color: #8a8a8a; font-size: .9rem; margin-bottom: 24px; }
.legal-table {
  width: 100%; border-collapse: collapse; margin: 12px 0 8px;
  font-size: .95rem;
}
.legal-table th, .legal-table td {
  border: 1px solid #e2e2e2; padding: 10px 12px; text-align: left;
}
.legal-table th { background: #f4f2ee; font-weight: 600; }

/* Banner de consentimento de cookies (LGPD) */
.cookie-consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000;
  background: #ffffff; color: #1c1c1c;
  border: 1px solid #e6e2da; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  transform: translateY(140%); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  max-width: 880px; margin: 0 auto;
}
.cookie-consent.show { transform: translateY(0); opacity: 1; }
.cookie-consent-inner {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px; flex-wrap: wrap;
}
.cookie-consent-text { margin: 0; font-size: .92rem; line-height: 1.55; flex: 1 1 320px; }
.cookie-consent-text a { color: #0c8e8d; font-weight: 600; }
.cookie-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-outline-dark {
  background: transparent; color: #1c1c1c;
  border: 1.5px solid #cfcabc;
}
.btn-outline-dark:hover { background: #f1efe9; }

/* Alvos de toque confortáveis no mobile (WCAG) */
@media (max-width: 768px) {
  .nav-link, .btn, .footer-legal a, .card-titulo a { min-height: 44px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cookie-consent-inner { padding: 16px; }
  .cookie-consent-actions { width: 100%; }
  .cookie-consent-actions .btn { flex: 1; }
}
