﻿/* ============================================================
   MARCAS DE LUXO — style.css
   Paleta: Creme #FAF6F1 | Dourado #B8924A | VIP #7A5C40 | Rodapé #5C4228
   Fontes: Playfair Display (títulos) + Inter (corpo)
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --cream:           #FAF6F1;
  --cream-border:    #EDE5D8;
  --cream-hover:     #F5EFE8;
  --gold:            #B8924A;
  --gold-bright:     #F2CF5A;
  --gold-pale:       #FBF4E8;
  --brown-vip:       #7A5C40;
  --brown-footer:    #5C4228;
  --text-primary:    #1A1A1A;
  --text-secondary:  #6A5E52;
  --text-muted:      #8A7A6A;
  --white:           #FFFFFF;
  --red-badge:       #C05050;
  --green-badge:     #3A6B3A;
  --purple-badge:    #7B5EA7;
  --whatsapp:        #25D366;

  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --header-h:        56px;
  --max-w:           480px;
  --gap:             10px;
  --r-sm:            8px;
  --r-md:            10px;
  --r-lg:            12px;
  --r-xl:            20px;
  --r-full:          9999px;
  --trans:           0.2s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html                   { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body                   { font-family: var(--font-body); background: #F0EAE2; color: var(--text-primary); overflow-x: hidden; }
img                    { max-width: 100%; height: auto; display: block; }
a                      { color: inherit; text-decoration: none; }
button                 { cursor: pointer; font-family: inherit; border: none; }
ul, ol                 { list-style: none; }

/* === WRAPPER === */
.site-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--cream);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,.08);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid var(--cream-border);
}

.header-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none;
  color: var(--text-primary); cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--trans);
  flex-shrink: 0;
}
.header-btn:hover           { background: var(--cream-border); }
.header-btn:focus-visible   { outline: 2px solid var(--gold); outline-offset: 2px; }
.header-btn svg             { pointer-events: none; }

.header-logo          { flex: 1; text-align: center; }
.logo-link            { display: inline-flex; align-items: baseline; text-decoration: none; vertical-align: bottom; }
.logo-marcas-de       { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); letter-spacing: 2.5px; white-space: nowrap; }
.logo-luxo-block      { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1; }
.logo-luxo            { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); letter-spacing: 2.5px; }
.logo-domain          { font-size: 8.5px; font-weight: 300; color: var(--text-muted); letter-spacing: .5px; margin-top: 2px; }

/* ============================================================
   MENU OVERLAY (slide-in esquerdo)
   ============================================================ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26,26,26,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.menu-overlay.open         { opacity: 1; pointer-events: all; }

.menu-panel {
  position: absolute; top: 0; left: 0;
  width: min(290px, 82vw); height: 100%;
  background: var(--cream);
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; overflow-x: hidden;
  display: flex; flex-direction: column;
}
.menu-overlay.open .menu-panel { transform: translateX(0); }

.menu-header {
  padding: 18px 20px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--cream-border);
  flex-shrink: 0;
}
.menu-logo            { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--text-primary); }
.menu-close-btn       { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: transparent; border: none; cursor: pointer; color: var(--text-primary); border-radius: var(--r-sm); }
.menu-close-btn:hover { background: var(--cream-border); }

.menu-nav             { padding: 6px 0; flex: 1; }
.menu-link {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px;
  font-size: 12.5px; font-weight: 500; letter-spacing: .5px;
  color: var(--text-primary);
  border-bottom: 1px solid #F5EFE8;
  transition: background var(--trans);
}
.menu-link:hover      { background: var(--cream-hover); }
.menu-link:last-child { border-bottom: none; }
.menu-link.accent     { color: var(--gold); font-weight: 600; }

.menu-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--cream-border);
  flex-shrink: 0;
}
.menu-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px;
  background: var(--whatsapp); color: var(--white);
  border-radius: var(--r-full); font-size: 12px; font-weight: 600;
  text-decoration: none; transition: background var(--trans);
}
.menu-wa-btn:hover { background: #1FA854; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 20px 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--cream);
}

.hero-content         { flex: 1; min-width: 0; }
.hero-title           { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--text-primary); line-height: 1.2; margin-bottom: 8px; }
.hero-subtitle        { font-size: 12px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }

.btn-primary {
  display: flex; align-items: center; gap: 6px;
  width: 100%; padding: 11px 16px;
  background: var(--gold); color: #FFF8F0;
  border-radius: var(--r-full); font-size: 12px; font-weight: 600;
  margin-bottom: 8px; cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}
.btn-primary:hover    { background: #A67E3A; transform: translateY(-1px); }
.btn-primary:active   { transform: translateY(0); }

.btn-secondary {
  display: flex; align-items: center; gap: 6px;
  width: 100%; padding: 10px 16px;
  background: var(--white); color: var(--text-primary);
  border: 1px solid var(--cream-border);
  border-radius: var(--r-full); font-size: 12px; font-weight: 500;
  cursor: pointer; transition: background var(--trans);
}
.btn-secondary:hover  { background: var(--cream-hover); }
.btn-vip              { background: #F5EAD4; color: var(--gold); border-color: var(--gold); font-weight: 600; letter-spacing: .3px; text-transform: uppercase; }
.btn-vip:hover        { background: var(--gold); color: #FFF8F0; }

.hero-img-wrap        { width: 130px; flex-shrink: 0; border-radius: 12px; overflow: hidden; background: #FFFFFF; border: 1px solid var(--cream-border); align-self: stretch; display: flex; align-items: center; }
.hero-img             { width: 100%; height: 160px; object-fit: contain; object-position: center; display: block; padding: 8px; }

/* ============================================================
   QUICK NAV
   ============================================================ */
.quick-nav {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 6px; padding: 10px 12px;
  background: var(--white);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}
.qn-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 9px 3px;
  background: var(--cream); border-radius: var(--r-sm);
  border: 1px solid var(--cream-border);
  cursor: pointer; text-decoration: none; color: inherit;
  transition: border-color var(--trans), background var(--trans);
}
.qn-item:hover        { border-color: var(--gold); background: var(--gold-pale); }
.qn-icon              { font-size: 18px; line-height: 1; margin-bottom: 4px; }
.qn-label             { font-size: 9px; font-weight: 500; text-align: center; line-height: 1.2; color: var(--text-primary); }

/* ============================================================
   SEÇÕES GENÉRICAS
   ============================================================ */
.section              { padding: 18px 14px 0; }

.section-header       { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.section-title        { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text-primary); }
.section-sub          { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; }

.section-btn {
  font-size: 11px; color: var(--gold);
  border: 1px solid var(--cream-border);
  padding: 4px 11px; border-radius: var(--r-full);
  white-space: nowrap; flex-shrink: 0;
  cursor: pointer; transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.section-btn:hover    { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ============================================================
   CARDS DE PRODUTO
   ============================================================ */
.product-grid         { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }

.product-card {
  position: relative;
  display: block; color: inherit; text-decoration: none;
  background: var(--white);
  border-radius: var(--r-md); border: 1px solid var(--cream-border);
  overflow: hidden; cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.product-card:hover   { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.07); border-color: #D4C4B0; }
.product-card:active  { transform: translateY(0); }
.product-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.product-img          { width: 100%; height: 110px; object-fit: contain; object-position: center; background: #FFFFFF; display: block; padding: 6px 8px; }
.product-body         { padding: 8px 10px 10px; text-align: center; }
.product-name         { font-size: 11px; font-weight: 500; color: var(--text-primary); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-cta          { font-size: 10px; color: var(--gold); font-weight: 600; margin-top: 3px; }

/* === BADGES === */
.badge                { position: absolute; top: 6px; left: 6px; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 8px; color: var(--white); line-height: 1.4; }
.badge-gold           { background: var(--gold); }
.badge-red            { background: var(--red-badge); }
.badge-green          { background: var(--green-badge); }
.badge-purple         { background: var(--purple-badge); }

/* ============================================================
   MARCAS (GRID PREVIEW — HOME)
   ============================================================ */
.brands-grid          { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); margin-top: 10px; }

.brand-card {
  background: var(--white); border-radius: var(--r-sm);
  border: 1px solid var(--cream-border);
  padding: 12px 6px;
  display: flex; align-items: center; justify-content: center;
  min-height: 58px; cursor: pointer; text-decoration: none;
  transition: border-color var(--trans), background var(--trans);
  text-align: center;
}
.brand-card:hover     { border-color: var(--gold); background: var(--gold-pale); }

/* === LOGOS INLINE === */
.bl-tommy-name        { font-size: 11px; font-weight: 700; letter-spacing: .8px; color: var(--text-primary); line-height: 1.25; }
.bl-flag              { display: flex; justify-content: center; gap: 1px; margin-top: 4px; }
.bl-flag span         { width: 9px; height: 3px; border-radius: 1px; display: block; }

.bl-mk-circle         { width: 30px; height: 30px; border: 1.5px solid var(--text-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 3px; font-family: var(--font-display); font-size: 12px; font-weight: 700; }
.bl-mk-text           { font-size: 9px; letter-spacing: .4px; color: var(--text-primary); }

.bl-hollister-name    { font-size: 11px; font-weight: 700; letter-spacing: .4px; color: var(--text-primary); }
.bl-hollister-sub     { font-size: 9px; letter-spacing: .8px; color: var(--text-muted); margin-top: 2px; }

.bl-ck                { font-size: 11px; letter-spacing: 2px; color: var(--text-primary); font-weight: 400; line-height: 1.5; }
.bl-nike              { font-size: 17px; font-weight: 900; letter-spacing: 2.5px; color: var(--text-primary); }

.bl-adidas-stripes    { display: flex; gap: 2px; justify-content: center; align-items: flex-end; margin-bottom: 3px; }
.bl-adidas-stripes span { width: 3px; background: var(--text-primary); border-radius: 1px 1px 0 0; display: block; }
.bl-adidas-stripes span:nth-child(1) { height: 12px; }
.bl-adidas-stripes span:nth-child(2) { height: 16px; }
.bl-adidas-stripes span:nth-child(3) { height: 12px; }
.bl-adidas-name       { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--text-primary); }

/* ============================================================
   MARCAS (PÁGINA COMPLETA — marcas.html)
   ============================================================ */
.brands-full-grid     { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); padding: 0 14px; }
.brand-full-card      { background: var(--white); border-radius: var(--r-sm); border: 1px solid var(--cream-border); padding: 12px 8px; display: flex; align-items: center; justify-content: center; min-height: 76px; cursor: pointer; text-decoration: none; text-align: center; transition: border-color var(--trans), background var(--trans); }
.brand-full-card:hover { border-color: var(--gold); background: var(--gold-pale); }

.outras-marcas-btn    { display: flex; align-items: center; justify-content: space-between; width: calc(100% - 28px); margin: 12px 14px 0; padding: 14px 18px; background: var(--gold); color: var(--white); border-radius: var(--r-lg); font-size: 13px; font-weight: 500; cursor: pointer; border: none; font-family: var(--font-body); transition: background var(--trans); }
.outras-marcas-btn:hover { background: #A67E3A; }

/* ============================================================
   CATEGORIAS
   ============================================================ */
.categories-grid      { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); margin-top: 10px; }
.category-card {
  background: var(--white); border-radius: var(--r-sm);
  border: 1px solid var(--cream-border);
  padding: 12px 4px; text-align: center;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: border-color var(--trans), background var(--trans);
  display: block;
}
.category-card:hover  { border-color: var(--gold); background: var(--gold-pale); }
.cat-icon             { font-size: 22px; display: block; margin-bottom: 5px; }
.cat-name             { font-size: 10px; font-weight: 500; color: var(--text-primary); display: block; }

/* ============================================================
   CHIPS DE FILTRO (páginas internas)
   ============================================================ */
.filter-chips         { display: flex; gap: 6px; padding: 10px 14px; overflow-x: auto; scrollbar-width: none; }
.filter-chips::-webkit-scrollbar { display: none; }
.chip {
  padding: 6px 14px;
  border-radius: var(--r-full); font-size: 12px; font-weight: 500;
  white-space: nowrap; flex-shrink: 0; cursor: pointer;
  border: 1px solid var(--cream-border); color: var(--text-secondary);
  background: var(--white); font-family: var(--font-body);
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.chip.active, .chip:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ============================================================
   DESTAQUE (card de destaque — Achados e Ofertas)
   ============================================================ */
.destaque-card        { display: flex; background: var(--white); border: 1px solid var(--cream-border); border-radius: var(--r-lg); overflow: hidden; margin: 0 14px 14px; cursor: pointer; text-decoration: none; color: inherit; transition: box-shadow var(--trans); }
.destaque-card:hover  { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.destaque-img         { width: 140px; height: 160px; object-fit: contain; object-position: center; display: block; flex-shrink: 0; background: #FFFFFF; padding: 8px; }
.destaque-body        { padding: 16px 14px; display: flex; flex-direction: column; justify-content: center; flex: 1; min-width: 0; }
.destaque-tag         { font-size: 11px; font-weight: 600; color: var(--gold); margin-bottom: 6px; }
.destaque-title       { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); line-height: 1.3; margin-bottom: 6px; }
.destaque-desc        { font-size: 11px; color: var(--text-muted); line-height: 1.4; margin-bottom: 12px; }
.destaque-btn         { align-self: flex-start; padding: 8px 14px; border-radius: var(--r-full); font-size: 11px; font-weight: 600; font-family: var(--font-body); color: var(--white); cursor: pointer; border: none; }
.destaque-btn-gold    { background: var(--gold); }
.destaque-btn-red     { background: var(--red-badge); }
.product-wrap         { min-width: 0; }

/* ============================================================
   HERO INTERNO (Achados, Ofertas, Marcas)
   ============================================================ */
.page-hero            { padding: 22px 16px 14px; text-align: center; background: var(--cream); }
.page-hero h1         { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; line-height: 1.2; }
.page-hero p          { font-size: 12px; color: var(--text-secondary); line-height: 1.6; max-width: 340px; margin: 0 auto; text-align: center; }

/* ============================================================
   BLOG BANNER (Fique por Dentro)
   ============================================================ */
.blog-banner {
  margin: 18px 14px 0;
  background: var(--white); border: 1px solid var(--cream-border);
  border-radius: var(--r-lg); padding: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.blog-content         { flex: 1; min-width: 0; }
.blog-content h3      { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; }
.blog-content p       { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.blog-btn             { font-size: 12px; color: var(--gold); border: 1px solid var(--gold); padding: 10px 18px; border-radius: var(--r-full); white-space: nowrap; flex-shrink: 0; background: none; cursor: pointer; text-decoration: none; font-weight: 600; transition: background var(--trans), color var(--trans); }
.blog-btn:hover       { background: var(--gold); color: var(--white); }

/* ============================================================
   VIP BAND
   ============================================================ */
.vip-band             { margin: 18px 14px 0; background: var(--brown-vip); border-radius: var(--r-lg); padding: 22px 18px; }
.vip-band h3          { font-family: var(--font-display); font-size: 15px; color: #F5E8D8; font-weight: 700; margin-bottom: 6px; }
.vip-band p           { font-size: 12px; color: #D4B898; line-height: 1.6; margin-bottom: 16px; }
.vip-btn {
  display: block; width: 100%; padding: 14px 18px;
  background: var(--gold-bright); color: #2A1400;
  border-radius: var(--r-full); font-size: 14px; font-weight: 700;
  text-align: center; text-decoration: none; font-family: var(--font-body);
  cursor: pointer; border: none; letter-spacing: .2px;
  transition: background var(--trans), transform var(--trans);
}
.vip-btn:hover        { background: #E6C244; transform: translateY(-1px); }
.vip-btn:active       { transform: translateY(0); }

/* ============================================================
   RODAPÉ
   ============================================================ */
.site-footer          { background: var(--brown-footer); padding: 26px 18px 22px; margin-top: 18px; }

.footer-logo-wrap     { text-align: center; margin-bottom: 20px; }
.footer-logo-wrap .logo-marcas-de { color: #F5E8D8; font-size: 15px; }
.footer-logo-wrap .logo-luxo      { color: #F5E8D8; font-size: 15px; }
.footer-logo-wrap .logo-domain    { color: #C4A878; font-size: 10px; }

.footer-social        { display: flex; justify-content: center; gap: 18px; margin-bottom: 20px; }
.footer-social a      { color: #D4B48A; display: flex; align-items: center; transition: color var(--trans); }
.footer-social a:hover { color: var(--gold-bright); }

.footer-links         { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; margin-bottom: 18px; }
.footer-links a       { font-size: 11px; color: #C4A878; text-decoration: none; transition: color var(--trans); }
.footer-links a:hover { color: #F5E8D8; }

.footer-divider       { height: 1px; background: rgba(255,255,255,.10); margin: 0 0 16px; }
.footer-copy          { font-size: 10px; color: #7A6A58; text-align: center; line-height: 1.6; }
.footer-copy a        { color: #A09080; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; bottom: 20px; right: 16px; z-index: 150;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--whatsapp); color: var(--white);
  border-radius: var(--r-full); font-size: 11.5px; font-weight: 700;
  text-decoration: none; font-family: var(--font-body);
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: background var(--trans), transform var(--trans);
}
.wa-float:hover       { background: #1FA854; transform: translateY(-2px); }
.wa-float:active      { transform: translateY(0); }

/* ============================================================
   "EM BREVE" (artigos.html)
   ============================================================ */
.coming-soon          { text-align: center; padding: 60px 24px 40px; }
.coming-soon .cs-icon { font-size: 56px; margin-bottom: 16px; line-height: 1; }
.coming-soon h2       { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.coming-soon p        { font-size: 13px; color: var(--text-secondary); line-height: 1.6; max-width: 280px; margin: 0 auto 28px; }
.coming-btn           { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--gold); color: #FFF8F0; border-radius: var(--r-full); font-size: 13px; font-weight: 600; text-decoration: none; transition: background var(--trans); font-family: var(--font-body); }
.coming-btn:hover     { background: #A67E3A; }

/* ============================================================
   CATEGORIAS (página completa)
   ============================================================ */
.cat-full-grid        { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 14px; margin-top: 10px; }
.cat-full-card        { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--cream-border); padding: 20px 12px 16px; display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; text-decoration: none; color: inherit; transition: border-color var(--trans), background var(--trans); }
.cat-full-card:hover,
.cat-full-card.cat-active { border-color: var(--gold); background: var(--gold-pale); }
.cat-wide             { grid-column: 1 / -1; flex-direction: row; text-align: left; gap: 14px; padding: 16px 18px; align-items: center; }
.cat-full-icon        { font-size: 36px; margin-bottom: 9px; line-height: 1; }
.cat-wide .cat-full-icon { font-size: 30px; margin-bottom: 0; flex-shrink: 0; }
.cat-full-name        { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; line-height: 1.2; }
.cat-wide .cat-full-name { margin-bottom: 3px; }
.cat-full-desc        { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.cat-count            { display: inline-block; margin-top: 8px; font-size: 10px; color: var(--gold); font-weight: 600; }
.cat-coming           { opacity: .65; }
.cat-soon-tag         { font-size: 10px; color: var(--text-muted); font-style: italic; margin-top: 6px; }

.sr-only              { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible        { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }

/* ============================================================
   RESPONSIVIDADE DESKTOP
   ============================================================ */
@media (min-width: 481px) {
  .hero-title   { font-size: 23px; }
  .hero-images  { width: 140px; }
  .hero-img     { height: 66px; }
}

@media (max-width: 380px) {
  .hero-title   { font-size: 19px; }
  .hero-images  { width: 115px; }
  .hero-img     { height: 56px; }
  .quick-nav    { gap: 4px; padding: 8px 10px; }
  .qn-label     { font-size: 8px; }
}

/* ============================================================
   ATUALIZAÇÕES MARCAS DE LUXO — Junho 2025
   ============================================================ */

/* 1. Header levemente mais escuro para contrastar com o conteúdo */
.site-header { background: #F2EAE0 !important; }

/* 2. Logo: .COM.BR em dourado + linhas decorativas via CSS puro */
.logo-domain { color: var(--gold) !important; font-weight: 500 !important; }
.logo-link::before,
.logo-link::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 0.8px;
  background: var(--gold);
  opacity: 0.6;
  margin: 0 5px;
  align-self: center;
  flex-shrink: 0;
}

/* 3. Imagens de produto: fundo branco, altura maior e uniforme */
.product-img {
  width: 100% !important;
  height: 180px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #FFFFFF !important;
  padding: 8px !important;
}
.destaque-img { background: #FFFFFF !important; object-fit: contain !important; }

/* 4. Botões VER TODOS / VER TODAS mais escuros */
.section-btn {
  color: #FFF8F0 !important;
  background: #9A7238 !important;
  border-color: #9A7238 !important;
}
.section-btn:hover { background: #7A5A28 !important; border-color: #7A5A28 !important; }

/* 5. Logos de marcas via arquivo de imagem */
.brand-logo-img {
  max-width: 110px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* 6. product-img-wrap e product-brand (páginas de categoria) */
.product-img-wrap { display: block; }
.product-brand { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.product-category-badge { font-size: 9px; color: var(--text-muted); margin-top: 3px; }

/* 7. Page hero para páginas de categoria */
.page-hero-icon { font-size: 40px; margin-bottom: 8px; display: block; }
.page-hero-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; line-height: 1.2; }
.page-hero-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; max-width: 340px; margin: 0 auto; }

/* 8. Clube VIP page styles */
.vip-page-hero {
  background: linear-gradient(135deg, #2A1400 0%, #5C3D10 50%, #3D1F00 100%);
  padding: 32px 20px 28px;
  text-align: center;
}
.vip-page-hero h1 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #F5E8D8; line-height: 1.25; margin-bottom: 12px; }
.vip-page-hero p { font-size: 12px; color: #C4A878; line-height: 1.7; margin-bottom: 0; }

.vip-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 14px 0; }
.vip-benefit-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: var(--r-md); padding: 14px 10px; text-align: center; }
.vip-benefit-icon { font-size: 22px; margin-bottom: 6px; }
.vip-benefit-title { font-size: 11px; font-weight: 600; color: var(--text-primary); line-height: 1.3; }

.vip-form-section { padding: 20px 14px 0; }
.vip-form-section h2 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.vip-form-section p { font-size: 11px; color: var(--text-muted); margin-bottom: 16px; }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-primary); margin-bottom: 5px; }
.form-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--cream-border); border-radius: var(--r-md);
  font-size: 14px; font-family: var(--font-body); color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--trans);
  outline: none;
}
.form-input:focus { border-color: var(--gold); }
.form-input.error { border-color: #C05050; }
.form-error { display: none; font-size: 11px; color: #C05050; margin-top: 4px; }
.form-error.visible { display: block; }

.btn-vip-submit {
  display: block; width: 100%; padding: 16px 18px;
  background: linear-gradient(135deg, #B8924A, #EAC96A);
  color: #2A1400; border: none; border-radius: var(--r-full);
  font-size: 15px; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; letter-spacing: .2px; margin-top: 4px;
  transition: opacity var(--trans), transform var(--trans);
}
.btn-vip-submit:hover { opacity: .9; transform: translateY(-1px); }
.btn-vip-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* 9. Obrigado page */
.obrigado-section { padding: 40px 20px; text-align: center; }
.obrigado-circle { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #B8924A, #EAC96A); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 36px; }
.obrigado-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; line-height: 1.2; }
.obrigado-text { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; max-width: 300px; margin-left: auto; margin-right: auto; }

.btn-acessar-clube {
  display: block; width: 100%; padding: 18px 20px;
  background: linear-gradient(135deg, #B8924A, #EAC96A);
  color: #2A1400; border-radius: var(--r-full);
  font-size: 16px; font-weight: 700; font-family: var(--font-body);
  text-align: center; text-decoration: none; letter-spacing: .2px;
  transition: opacity var(--trans), transform var(--trans);
  margin-bottom: 16px;
}
.btn-acessar-clube:hover { opacity: .9; transform: translateY(-1px); }

.obrigado-note { font-size: 11px; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px; }
.link-voltar-site { font-size: 12px; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.link-voltar-site:hover { text-decoration: underline; }

/* 10. Responsividade desktop */
@media (min-width: 640px) {
  .site-wrapper { max-width: 640px; margin: 0 auto; box-shadow: 0 0 40px rgba(0,0,0,.1); }
}
@media (min-width: 900px) {
  .site-wrapper { max-width: 900px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .brands-full-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-full-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding-left: 20px; padding-right: 20px; }
  .site-header { padding: 0 20px; }
}
@media (min-width: 1100px) {
  .site-wrapper { max-width: 1080px; }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* 11. Aliases para páginas de categoria */
.filter-chips-wrap { display: flex; gap: 6px; padding: 10px 14px; overflow-x: auto; scrollbar-width: none; }
.filter-chips-wrap::-webkit-scrollbar { display: none; }

.vip-band-text { font-size: 12px; color: #D4B898; line-height: 1.6; margin-bottom: 16px; }
.vip-band-text strong { color: #F5E8D8; }

.vip-band-btn {
  display: block; width: 100%; padding: 14px 18px;
  background: linear-gradient(135deg, #B8924A, #EAC96A);
  color: #2A1400; border-radius: var(--r-full);
  font-size: 14px; font-weight: 700; font-family: var(--font-body);
  text-align: center; text-decoration: none; letter-spacing: .2px;
  transition: opacity var(--trans), transform var(--trans);
}
.vip-band-btn:hover { opacity: .9; transform: translateY(-1px); }

.vip-benefit-text { font-size: 11px; font-weight: 500; color: var(--text-primary); line-height: 1.4; margin-top: 4px; display: block; }

/* 12. Correções de layout e paleta — junho 2026 */

/* 12.1 Logo maior no cabeçalho */
.logo-marcas-de { font-size: 15px !important; letter-spacing: 3.5px !important; }
.logo-luxo      { font-size: 15px !important; letter-spacing: 3.5px !important; }
.logo-domain    { font-size: 9px !important; letter-spacing: 2px !important; color: var(--gold) !important; }
@media (min-width: 900px) {
  .logo-marcas-de { font-size: 20px !important; letter-spacing: 5px !important; }
  .logo-luxo      { font-size: 20px !important; letter-spacing: 5px !important; }
  .logo-domain    { font-size: 11px !important; }
}

/* 12.2 Header mais escuro para contraste */
.site-header { background: #EAE0D4 !important; border-bottom: 1px solid #D4C4B0 !important; }

/* 12.3 Ícones das categorias — SVG dourado inline */
.cat-icon {
  display: block !important;
  margin-bottom: 6px !important;
  filter: none !important;
}
.cat-icon svg { display: block; margin: 0 auto 8px; }
.cat-full-icon { display: block; margin-bottom: 8px; filter: none !important; }
.cat-full-icon svg { display: block; margin: 0 auto; }
.page-hero-icon { filter: none !important; }
.page-hero-icon svg { width: 48px; height: 48px; display: block; margin: 0 auto; }

/* 12.4 Botão "Fique por Dentro" — mesma cor das outras seções */
.coming-soon-btn,
a[href="artigos.html"].section-btn,
.coming-soon a {
  background: #9A7238 !important;
  color: #FFF8F0 !important;
  border-color: #9A7238 !important;
}
.coming-soon { background: #F5EFE8 !important; }

/* 12.5 Footer — texto mais claro e logo centralizada */
.footer-copy { color: #C4A878 !important; text-align: center !important; }
.footer-copy a { color: #B8924A !important; }
.footer-logo-wrap { text-align: center !important; }
.footer-logo-wrap .logo-link { justify-content: center !important; }
.footer-logo-wrap .logo-marcas-de { color: #F0E0C8 !important; font-size: 14px !important; letter-spacing: 3px !important; }
.footer-logo-wrap .logo-luxo      { color: #F0E0C8 !important; font-size: 14px !important; letter-spacing: 3px !important; }
.footer-logo-wrap .logo-domain    { color: #B8924A !important; }

/* 12.6 Botão WA flutuante — posição fixa correta */
.site-wrapper { position: relative !important; }
.wa-float,
.whatsapp-float,
a[href*="wa.me"].float,
.floating-wa,
.floating-btn {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 999 !important;
}
[class*="float"][href*="wa.me"] { position: fixed !important; right: 20px !important; bottom: 20px !important; }

/* 12.7 Responsividade desktop */
@media (min-width: 768px) {
  .site-wrapper { max-width: 768px; margin: 0 auto; box-shadow: 0 0 60px rgba(0,0,0,.12); }
}
@media (min-width: 1024px) {
  .site-wrapper { max-width: 960px; }
  .product-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 14px !important; }
  .brands-full-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .cat-full-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .categories-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .section { padding-left: 24px !important; padding-right: 24px !important; }
  .site-header { padding: 0 24px !important; }
}
@media (min-width: 1280px) {
  .site-wrapper { max-width: 1140px; }
  .product-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .brands-full-grid { grid-template-columns: repeat(5, 1fr) !important; }
}
.product-card { overflow: hidden !important; max-width: 100% !important; }
.product-grid { overflow: hidden !important; width: 100% !important; box-sizing: border-box !important; }
.product-img { max-width: 100% !important; }

/* 12.8 Card destaque — proporção correta */
.destaque-card,
.destaque-wrap,
[class*="destaque-card"] {
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.destaque-img {
  width: 120px !important;
  height: 140px !important;
  object-fit: contain !important;
  background: #fff !important;
  flex-shrink: 0 !important;
}

/* 12.9 Seção VIP nas páginas de categoria */
.vip-band { margin: 20px 0 0 !important; width: 100% !important; box-sizing: border-box !important; }

/* 12.10 Centralizar texto dos cards de produto */
.product-card { text-align: center !important; }
.product-brand { text-align: center !important; }
.product-name  { text-align: center !important; }
.product-cta   { text-align: center !important; }

/* 13. Padding nas grades de produto */
.product-grid {
  padding: 0 12px !important;
  box-sizing: border-box !important;
}
@media (min-width: 768px) {
  .product-grid { padding: 0 20px !important; }
}

/* 14. Chips de filtro de marca — rolagem horizontal no mobile */
.brand-filter,
.chips-wrap,
.filter-chips-wrap,
.filter-chips,
[class*="brand-chips"],
[class*="filter-chips"] {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  gap: 8px !important;
  padding: 8px 12px !important;
  scroll-snap-type: x mandatory;
}
.brand-filter::-webkit-scrollbar,
.chips-wrap::-webkit-scrollbar,
.filter-chips-wrap::-webkit-scrollbar,
.filter-chips::-webkit-scrollbar { display: none !important; }

.brand-filter .chip,
.brand-filter button,
.chips-wrap .chip,
.chips-wrap button,
.filter-chips-wrap .chip,
.filter-chips .chip {
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  scroll-snap-align: start;
}

/* 15. Logos de marcas — tamanho mínimo e máximo uniforme */
.brand-full-card img,
.brand-full-card .brand-logo-img {
  min-width: 80px !important;
  min-height: 40px !important;
  max-width: 140px !important;
  max-height: 70px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}
.brand-full-card > div,
.brand-full-card > a > div {
  min-height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.brand-full-card {
  min-height: 90px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* 16. Marcas grid — 2 colunas no mobile */
@media (max-width: 640px) {
  .brands-full-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 12px !important;
  }
}

/* 17. WA support button fixo */
.wa-support-btn,
a[class*="support"],
a[class*="suporte"] {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 999 !important;
  max-width: calc(100vw - 40px) !important;
}

/* 18. VIP hero sub paragraphs */
.vip-hero-sub {
  font-size: 13px;
  color: rgba(255,248,240,0.82);
  line-height: 1.75;
  text-align: center;
  margin-bottom: 20px !important;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.vip-hero-sub:last-of-type {
  margin-bottom: 0 !important;
}
