@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body { font-family: 'DM Sans', sans-serif; line-height: 1.6; min-height: 100vh; transition: background .2s, color .2s; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select { font-family: inherit; }
ul { list-style: none; }

/* ─── VARIÁVEIS DARK (padrão) ────────────────────────────── */
:root {
  --bg-0:      #080808;
  --bg-1:      #111111;
  --bg-2:      #161616;
  --bg-3:      #1E1E1E;
  --bg-card:   #111111;
  --accent:    #FF2020;
  --accent-2:  #FF5050;
  --yellow:    #FFD700;
  --green:     #25D366;
  --text-0:    #FFFFFF;
  --text-1:    #AAAAAA;
  --text-2:    #555555;
  --border:    #222222;
  --border-2:  #2E2E2E;
  --success:   #00C896;
  --shadow:    0 4px 32px rgba(0,0,0,.7);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.4);
  --radius:    2px;
  --radius-lg: 4px;
  --header-h:  56px;
  --nav-h:     44px;
  --font-display: 'Bebas Neue', sans-serif;

  /* grade de perspectiva */
  --grid-color: rgba(255,255,255,0.035);
}

/* ─── VARIÁVEIS LIGHT ────────────────────────────────────── */
[data-theme="light"] {
  --bg-0:      #F2F2F2;
  --bg-1:      #FFFFFF;
  --bg-2:      #F8F8F8;
  --bg-3:      #EBEBEB;
  --bg-card:   #FFFFFF;
  --text-0:    #0A0A0A;
  --text-1:    #444444;
  --text-2:    #888888;
  --border:    #DDDDDD;
  --border-2:  #CCCCCC;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --grid-color: rgba(0,0,0,0.04);
}

body {
  background: var(--bg-0);
  color: var(--text-0);
}

/* ─── PADRÃO DE GRADE ────────────────────────────────────── */
.has-grid {
  position: relative;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ─── LOGO ───────────────────────────────────────────────── */
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 1px;
  text-transform: uppercase; white-space: nowrap;
  line-height: 1; flex-shrink: 0;
  display: flex; flex-direction: column;
  text-decoration: none; gap: 0;
}
.logo-top {
  font-family: 'DM Sans', sans-serif;
  font-size: .42em; font-weight: 700;
  letter-spacing: 3px; color: var(--text-1);
  line-height: 1.6; text-transform: uppercase;
}
.logo-letters { display: flex; flex-direction: row; }
.logo b {
  font-style: normal; font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255,32,32,.3);
}
.logo-letters b:nth-child(1) { color: #FF2020; }
.logo-letters b:nth-child(2) { color: #FFD700; }
.logo-letters b:nth-child(3) { color: #CC44FF; }
.logo-letters b:nth-child(4) { color: #2299FF; }
.logo-letters b:nth-child(5) { color: #FF8800; }
.logo-letters b:nth-child(6) { color: #FF2020; }

/* ─── HEADER ─────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-0);
  border-bottom: 2px solid var(--accent);
  height: var(--header-h);
  box-shadow: 0 2px 20px rgba(255,32,32,.15);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 16px; height: 100%;
  display: flex; align-items: center; gap: 10px;
}
.header-search {
  flex: 1; min-width: 0; position: relative;
}
.header-search input {
  width: 100%; padding: 8px 12px 8px 34px;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius); color: var(--text-0);
  font-size: .85rem; font-family: 'DM Sans', sans-serif;
  transition: border-color .2s;
}
.header-search input::placeholder { color: var(--text-2); }
.header-search input:focus { outline: none; border-color: var(--accent); }
.header-search svg {
  position: absolute; left: 9px; top: 50%;
  transform: translateY(-50%); width: 14px; height: 14px; color: var(--text-2);
}
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.btn-icon {
  width: 36px; height: 36px;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--text-1);
  transition: border-color .15s, color .15s; flex-shrink: 0;
}
.btn-icon:hover { border-color: var(--accent); color: var(--accent); }
.btn-icon svg { width: 17px; height: 17px; }
.btn-whatsapp {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; background: var(--green);
  border-radius: var(--radius); color: #fff;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .3px; white-space: nowrap;
  transition: opacity .15s;
}
.btn-whatsapp:hover { opacity: .88; }
.btn-whatsapp svg { width: 16px; height: 16px; }
.btn-whatsapp-text { display: none; }
.btn-cart {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 11px;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius); color: var(--text-0);
  font-size: .8rem; font-weight: 600;
  transition: border-color .15s;
}
.btn-cart:hover { border-color: var(--accent); }
.btn-cart svg { width: 16px; height: 16px; }
.btn-cart-text { display: none; }
.cart-count {
  background: var(--accent); color: #fff;
  font-size: .62rem; font-weight: 700;
  border-radius: 99px; padding: 1px 5px; line-height: 1.4;
}

/* ─── HAMBURGER ──────────────────────────────────────────── */
.btn-menu { display: flex; }

/* ─── NAV DRAWER MOBILE ──────────────────────────────────── */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.75);
}
.nav-overlay.open { display: block; }
.nav-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(280px, 85vw); z-index: 201;
  background: var(--bg-1); border-right: 2px solid var(--accent);
  overflow-y: auto; transform: translateX(-100%);
  transition: transform .22s ease;
  padding-bottom: 32px;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px; border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.nav-drawer-section { padding: 6px 0; border-bottom: 1px solid var(--border); }
.nav-drawer-label {
  padding: 10px 14px 4px;
  font-size: .62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-2);
}
.nav-drawer a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: .88rem; font-weight: 500;
  color: var(--text-1); transition: color .12s, background .12s;
  border-left: 3px solid transparent;
}
.nav-drawer a:hover { color: var(--accent); background: var(--bg-3); border-left-color: var(--accent); }

/* ─── NAV DESKTOP ────────────────────────────────────────── */
.nav {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  position: sticky; top: var(--header-h); z-index: 99;
  height: var(--nav-h); overflow: hidden;
  display: none;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 16px;
  display: flex; height: 100%;
  overflow-x: auto; scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 12px; height: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--text-1); transition: color .15s; cursor: pointer;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text-0); border-bottom-color: var(--accent); }
.nav-link svg { width: 9px; height: 9px; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 200px; background: var(--bg-card);
  border: 1px solid var(--border-2); border-top: 2px solid var(--accent);
  box-shadow: var(--shadow); padding: 4px 0; z-index: 200;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 8px 14px;
  font-size: .82rem; font-weight: 500;
  color: var(--text-1); transition: color .12s, background .12s;
  border-left: 3px solid transparent;
}
.nav-dropdown a:hover { color: var(--accent); background: var(--bg-3); border-left-color: var(--accent); }

/* ─── SEARCH OVERLAY ─────────────────────────────────────── */
.search-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.8);
}
.search-overlay.open { display: block; }
.search-panel {
  max-width: 600px; margin: 60px auto 0;
  background: var(--bg-card); border: 1px solid var(--border-2);
  border-top: 2px solid var(--accent);
}
.search-input-wrap {
  display: flex; align-items: center; padding: 14px 16px;
  gap: 10px; border-bottom: 1px solid var(--border);
}
.search-input-wrap svg { width: 17px; height: 17px; color: var(--text-2); flex-shrink: 0; }
.search-input-wrap input {
  flex: 1; background: transparent; border: none;
  color: var(--text-0); font-size: .95rem;
  font-family: 'DM Sans', sans-serif; outline: none;
}
.search-results { max-height: 380px; overflow-y: auto; padding: 4px 0; }
.search-result-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; cursor: pointer; transition: background .12s;
  border-left: 3px solid transparent;
}
.search-result-item:hover { background: var(--bg-3); border-left-color: var(--accent); }
.search-result-icon {
  width: 32px; height: 32px; background: var(--bg-3);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--accent);
}
.search-result-icon svg { width: 15px; height: 15px; }
.search-result-name { font-weight: 600; font-size: .87rem; }
.search-result-cat { font-size: .71rem; color: var(--text-2); }
.search-empty { padding: 28px; text-align: center; color: var(--text-2); font-size: .85rem; }

/* ─── INFO BAR ───────────────────────────────────────────── */
.info-bar { background: var(--accent); padding: 7px 16px; }
.info-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; overflow-x: auto; gap: 24px;
  scrollbar-width: none; justify-content: center;
}
.info-bar-inner::-webkit-scrollbar { display: none; }
.info-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .5px; white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.info-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; background: var(--bg-0);
  overflow: hidden; padding: 52px 16px 64px;
  border-bottom: 1px solid var(--border);
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,32,32,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-mark {
  position: absolute; font-family: var(--font-display);
  font-size: 38vw; font-weight: 400; opacity: .025;
  top: 50%; right: -5%; transform: translateY(-50%);
  line-height: 1; pointer-events: none; user-select: none;
  color: var(--text-0);
}
.hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--accent); margin-bottom: 14px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--accent);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 400; text-transform: uppercase;
  line-height: .92; letter-spacing: 2px; margin-bottom: 18px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero h1 strong { color: var(--yellow); font-weight: 400; }
.hero p {
  font-size: .92rem; color: var(--text-1); font-family: 'DM Sans', sans-serif;
  max-width: 480px; margin-bottom: 28px; line-height: 1.75;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 44px;
  padding-top: 24px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem;
  font-weight: 400; color: var(--accent); line-height: 1; letter-spacing: 1px;
}
.stat-label { font-size: .72rem; color: var(--text-1); margin-top: 2px; font-family: 'DM Sans', sans-serif; }

/* ─── UTILITIES / LAYOUT ─────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.section { padding: 40px 0; }
.section-header { margin-bottom: 20px; }
.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 400; letter-spacing: 1px;
  text-transform: uppercase; line-height: 1; margin-bottom: 4px;
}
.section-title span { color: var(--accent); }
.section-sub { font-size: .82rem; color: var(--text-1); font-family: 'DM Sans', sans-serif; }
.badge {
  display: inline-block; padding: 2px 7px; border-radius: 0;
  font-size: .64rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  font-family: 'DM Sans', sans-serif;
}
.badge-orange { background: var(--accent); color: #fff; }
.badge-yellow { background: var(--yellow); color: #000; }
.badge-green  { background: var(--success); color: #000; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; padding: 10px 20px; border-radius: var(--radius);
  font-weight: 700; font-size: .85rem; font-family: 'DM Sans', sans-serif;
  transition: all .15s; border: 2px solid transparent;
  white-space: nowrap; cursor: pointer; text-transform: uppercase;
  letter-spacing: .5px;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn-outline {
  background: transparent; border-color: var(--border-2); color: var(--text-0);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-whatsapp-lg {
  background: var(--green); color: #fff; border-color: var(--green);
}
.btn-whatsapp-lg:hover { opacity: .88; }
.btn-lg { padding: 12px 24px; font-size: .9rem; }
.btn-full { width: 100%; }
.btn svg { width: 17px; height: 17px; }

/* ─── CORES POR CATEGORIA ────────────────────────────────── */
.cat-color-adesivos        { --cat-c: #FF2020; }
.cat-color-adesivo-recorte { --cat-c: #00C896; }
.cat-color-lonas           { --cat-c: #2D9CDB; }
.cat-color-dtf             { --cat-c: #CC44FF; }
.cat-color-papeis          { --cat-c: #FFD700; }
.cat-color-placas          { --cat-c: #27AE60; }
.cat-color-textil          { --cat-c: #56CCF2; }
.cat-color-wind-banner     { --cat-c: #F2994A; }
.cat-color-produtos-pdv    { --cat-c: #BB6BD9; }

/* ─── CATEGORY GRID ───────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.cat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 4px solid var(--cat-c, var(--accent));
  padding: 16px 14px; cursor: pointer;
  transition: border-left-width .15s, background .15s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 7px;
}
.cat-card:hover { background: var(--bg-2); border-left-width: 8px; }
.cat-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cat-c, var(--accent));
}
.cat-icon svg { width: 22px; height: 22px; }
.cat-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1rem; text-transform: uppercase; letter-spacing: .5px; line-height: 1.1;
}
.cat-desc { font-size: .7rem; color: var(--text-1); line-height: 1.4; font-family: 'DM Sans', sans-serif; }

/* ─── PRODUCT CARD ────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 4px solid var(--cat-c, var(--accent));
  overflow: hidden;
  transition: border-left-width .15s, box-shadow .15s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.product-card:hover { border-left-width: 8px; box-shadow: var(--shadow); }
.product-card-img {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg-3); display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
  transition: transform .3s;
}
.product-card:hover .product-card-img { transform: scale(1.02); }
.product-card-illustration {
  width: 85%; height: 85%; display: flex; align-items: center;
  justify-content: center; pointer-events: none; user-select: none;
  transition: transform .35s ease;
}
.product-card:hover .product-card-illustration { transform: scale(1.06) translateY(-3px); }
.product-card-illustration svg { width: 100%; height: 100%; }
.product-card-img > svg { width: 40px; height: 40px; color: var(--text-2); opacity: .3; }
.product-card-img--foto { background: #fff; }
.product-card-img--foto img { width: 100%; height: 100%; object-fit: contain; }
.product-card-badges { position: absolute; top: 6px; left: 6px; display: flex; flex-direction: column; gap: 3px; }
.product-card-body { padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.product-card-name {
  font-family: var(--font-display); font-weight: 400; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .3px; line-height: 1.15;
}
.product-card-specs { font-size: .68rem; color: var(--text-1); line-height: 1.5; font-family: 'DM Sans', sans-serif; }
.product-card-specs span::after { content: ' · '; }
.product-card-specs span:last-child::after { content: ''; }
.product-card-producao {
  font-size: .66rem; color: var(--success); font-weight: 600;
  display: flex; align-items: center; gap: 4px; font-family: 'DM Sans', sans-serif;
}
.product-card-producao::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--success); flex-shrink: 0;
}
.product-card-footer {
  padding: 9px 12px 12px; border-top: 1px solid var(--border);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.product-price-label { font-size: .62rem; color: var(--text-2); font-family: 'DM Sans', sans-serif; }
.product-price {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 400; color: var(--yellow); line-height: 1; letter-spacing: .5px;
}
.product-price-unit { font-size: .62rem; color: var(--text-1); font-family: 'DM Sans', sans-serif; }
.product-price-old { font-size: .7rem; color: var(--text-2); text-decoration: line-through; font-family: 'DM Sans', sans-serif; }
.btn-ver {
  font-size: .68rem; padding: 5px 10px; border-radius: 0;
  border: 1px solid var(--border-2); color: var(--text-1);
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  transition: border-color .15s, color .15s;
}
.btn-ver:hover { border-color: var(--accent); color: var(--accent); }

/* ─── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 5px;
  font-size: .73rem; color: var(--text-2); padding: 12px 0;
  flex-wrap: wrap; font-family: 'DM Sans', sans-serif;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-1); }

/* ─── CATEGORY PAGE ───────────────────────────────────────── */
.cat-page-header {
  background: var(--bg-1); border-bottom: 1px solid var(--border);
  padding: 24px 0;
  border-left: none;
}
.cat-page-title {
  font-family: var(--font-display); font-size: 2.6rem;
  font-weight: 400; text-transform: uppercase; letter-spacing: 1px; line-height: 1;
}
.cat-page-title span { color: var(--accent); }
.cat-page-desc { color: var(--text-1); font-size: .85rem; margin-top: 4px; font-family: 'DM Sans', sans-serif; }
.cat-count { font-size: .72rem; color: var(--text-2); margin-top: 3px; font-family: 'DM Sans', sans-serif; }

/* ─── PRODUCT PAGE ────────────────────────────────────────── */
.product-page { padding: 0 0 48px; }
.product-page-grid { display: flex; flex-direction: column; gap: 20px; }
.product-page-calc { order: -1; }
.product-page-img {
  background: var(--bg-card); border: 1px solid var(--border);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center; color: var(--text-2);
}
.product-page-img svg { width: 64px; height: 64px; opacity: .2; }
.product-page-img--foto { background: #fff; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; }
.product-page-img--foto img { width: 100%; height: 100%; object-fit: contain; }
.product-page-title {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: .5px; line-height: 1.05; margin-bottom: 6px;
}
.product-page-codigo { font-size: .7rem; color: var(--text-2); margin-bottom: 10px; font-family: 'DM Sans', sans-serif; }
.product-specs-table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.product-specs-table tr { border-bottom: 1px solid var(--border); }
.product-specs-table td { padding: 7px 0; font-size: .82rem; vertical-align: top; font-family: 'DM Sans', sans-serif; }
.product-specs-table td:first-child { color: var(--text-2); width: 40%; }
.product-specs-table td:last-child { color: var(--text-0); font-weight: 500; }
.product-page-producao {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 600; color: var(--success); margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
}
.product-page-producao::before {
  content: ''; display: block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--success);
}

/* ─── CALCULATOR ──────────────────────────────────────────── */
.calc-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  overflow: hidden; box-shadow: var(--shadow);
}
.calc-header {
  background: var(--accent);
  padding: 12px 16px; display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}
.calc-header-title {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 400; text-transform: uppercase; letter-spacing: 1px;
  color: #fff; display: flex; align-items: center; gap: 6px;
}
.calc-header-title svg { width: 16px; height: 16px; color: #fff; }
.calc-price-metro { font-size: .75rem; color: rgba(255,255,255,.85); text-align: right; font-family: 'DM Sans', sans-serif; }
.calc-price-metro b { color: #fff; font-weight: 700; }
.calc-body { padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.calc-field label {
  display: block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--text-1); margin-bottom: 5px;
  font-family: 'DM Sans', sans-serif;
}
.calc-field select,
.calc-field input[type="text"],
.calc-field input[type="number"] {
  width: 100%; padding: 9px 11px;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: 0; color: var(--text-0);
  font-size: .9rem; font-weight: 500; font-family: 'DM Sans', sans-serif;
  transition: border-color .15s; appearance: none; -webkit-appearance: none;
}
.calc-field select:focus, .calc-field input:focus { outline: none; border-color: var(--accent); }
.select-wrapper { position: relative; }
.select-wrapper::after {
  content: '▾'; position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%); color: var(--text-2); pointer-events: none; font-size: .72rem;
}
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.calc-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.calc-result {
  background: var(--bg-0); border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  padding: 14px; text-align: center;
}
.calc-result-label {
  font-size: .65rem; color: var(--text-2); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 4px; font-family: 'DM Sans', sans-serif;
}
.calc-result-total {
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 400; color: var(--yellow); line-height: 1; letter-spacing: 1px;
}
.calc-result-detail { font-size: .7rem; color: var(--text-1); margin-top: 4px; font-family: 'DM Sans', sans-serif; }
.calc-result-minimo { font-size: .66rem; color: var(--yellow); margin-top: 3px; display: none; font-family: 'DM Sans', sans-serif; }
.calc-result-minimo.show { display: block; }
.calc-footer { padding: 0 14px 14px; display: flex; flex-direction: column; gap: 8px; }

/* ─── VARIATION BUTTONS ──────────────────────────────────── */
.var-btn-group { display: flex; flex-wrap: wrap; gap: 6px; }
.var-btn {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 7px 12px; background: var(--bg-3);
  border: 1px solid var(--border-2); border-radius: 0;
  color: var(--text-1); font-size: .8rem; font-weight: 600;
  cursor: pointer; transition: all .12s; line-height: 1.2;
  font-family: 'DM Sans', sans-serif;
}
.var-btn:hover { border-color: var(--accent); color: var(--text-0); }
.var-btn.selected { border-color: var(--accent); background: rgba(255,32,32,.1); color: var(--text-0); border-left-width: 3px; }
.var-extra { font-size: .62rem; font-weight: 700; color: var(--yellow); }

/* Tabela qty */
.qty-table { width: 100%; border-collapse: collapse; }
.qty-table th, .qty-table td {
  padding: 6px 8px; text-align: left; font-size: .74rem;
  border-bottom: 1px solid var(--border); font-family: 'DM Sans', sans-serif;
}
.qty-table th { color: var(--text-2); font-weight: 700; text-transform: uppercase; font-size: .64rem; }
.qty-table tr.active td { color: var(--yellow); font-weight: 700; }

/* ─── FRETE ───────────────────────────────────────────────── */
.frete-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-top: 3px solid var(--border-2); padding: 14px; margin-top: 8px;
}
.frete-title {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 400; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.frete-form { display: flex; gap: 7px; }
.frete-form input {
  flex: 1; padding: 9px 11px; background: var(--bg-3);
  border: 1px solid var(--border-2); border-radius: 0;
  color: var(--text-0); font-size: .87rem;
  font-family: 'DM Sans', sans-serif;
}
.frete-form input:focus { outline: none; border-color: var(--accent); }

/* ─── PRODUCT DESC ────────────────────────────────────────── */
.product-desc { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border); }
.product-desc h2 {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 400; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px;
}
.product-desc p { color: var(--text-1); font-size: .87rem; line-height: 1.8; font-family: 'DM Sans', sans-serif; }

/* ─── EMPTY STATE ────────────────────────────────────────── */
.empty-state { text-align: center; padding: 48px 16px; color: var(--text-2); }
.empty-state svg { width: 40px; height: 40px; margin: 0 auto 12px; opacity: .25; }
.empty-state p { font-size: .87rem; font-family: 'DM Sans', sans-serif; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #000; border-top: 2px solid var(--accent);
  padding: 40px 0 20px; margin-top: 40px;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
}
[data-theme="light"] .footer {
  background-color: #111; color: #eee;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 16px;
  display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px;
}
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 10px; }
.footer-brand p { font-size: .8rem; color: #888; line-height: 1.7; max-width: 260px; margin-bottom: 14px; font-family: 'DM Sans', sans-serif; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px; background: #1A1A1A;
  border: 1px solid #2A2A2A; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  color: #888; transition: border-color .15s, color .15s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); }
.social-btn svg { width: 14px; height: 14px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: .95rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
  color: #eee; border-bottom: 2px solid var(--accent); padding-bottom: 6px;
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul a { font-size: .78rem; color: #888; transition: color .15s; font-family: 'DM Sans', sans-serif; }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact p { font-size: .78rem; color: #888; line-height: 1.8; font-family: 'DM Sans', sans-serif; }
.footer-contact b { color: #ccc; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 16px 16px 0;
  border-top: 1px solid #1A1A1A;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .7rem; color: #555; font-family: 'DM Sans', sans-serif; }
.footer-pay { display: flex; gap: 5px; align-items: center; flex-wrap: wrap; }
.pay-badge {
  background: #1A1A1A; border: 1px solid #2A2A2A; border-radius: 0;
  padding: 2px 7px; font-size: .62rem; font-weight: 700;
  color: #888; text-transform: uppercase; letter-spacing: .4px;
  font-family: 'DM Sans', sans-serif;
}

/* ─── THEME TOGGLE ───────────────────────────────────────── */
.theme-icon-dark, .theme-icon-light { display: block; }
[data-theme="light"] .theme-icon-dark { display: none; }
[data-theme="light"] .theme-icon-light { display: block; }
:not([data-theme="light"]) .theme-icon-light { display: none; }
:not([data-theme="light"]) .theme-icon-dark { display: block; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .35s ease both; }
.fade-up-1 { animation-delay: .06s; }
.fade-up-2 { animation-delay: .12s; }
.fade-up-3 { animation-delay: .18s; }

/* ══════════════════════════════════════════════════════════
   TABLET  ≥ 640px
══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --header-h: 60px; --nav-h: 46px; }
  .header-inner { padding: 0 20px; gap: 14px; }
  .container { padding: 0 20px; }
  .btn-cart-text { display: inline; }
  .btn-whatsapp-text { display: inline; }
  .nav { display: block; }
  .btn-menu { display: none; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 20px 76px; }
  .section { padding: 52px 0; }
}

/* ══════════════════════════════════════════════════════════
   DESKTOP  ≥ 1024px
══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --header-h: 64px; }
  .header-inner { padding: 0 24px; gap: 18px; }
  .container { padding: 0 24px; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
  .section { padding: 60px 0; }
  .product-page-grid { flex-direction: row; align-items: start; gap: 32px; }
  .product-page-grid > div:first-child { flex: 1; min-width: 0; order: 0; }
  .product-page-calc { order: 0; width: 400px; flex-shrink: 0; position: sticky; top: calc(var(--header-h) + var(--nav-h) + 16px); }
}

/* ══════════════════════════════════════════════════════════
   WIDE  ≥ 1280px
══════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .cat-grid { grid-template-columns: repeat(5, 1fr); }
  .product-page-calc { width: 420px; }
}

/* ══════════════════════════════════════════════════════════
   CARRINHO — PANEL / MODAL
══════════════════════════════════════════════════════════ */
.cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 900;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; animation: fadeIn .2s ease; }

.cart-panel {
  position: fixed; top: 0; right: -420px; bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 901;
  display: flex; flex-direction: column;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.4);
}
.cart-panel.open { right: 0; }

.cart-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  flex-shrink: 0;
}
.cart-panel-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .5px;
  color: var(--text-0);
  display: flex; align-items: center; gap: 8px;
}

.cart-items {
  flex: 1; overflow-y: auto;
  padding: 12px 16px;
  display: flex; flex-direction: column; gap: 10px;
}

.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--text-2);
  padding: 60px 20px; text-align: center;
}
.cart-empty svg { width: 48px; height: 48px; opacity: .35; }
.cart-empty p { margin: 0; font-size: .9rem; }

.cart-item {
  display: flex; align-items: flex-start;
  gap: 12px; padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-nome { font-weight: 700; font-size: .9rem; color: var(--text-0); line-height: 1.3; }
.cart-item-var  { font-size: .78rem; color: var(--accent); margin-top: 3px; }
.cart-item-detalhe { font-size: .78rem; color: var(--text-2); margin-top: 2px; }
.cart-item-qtd  { font-size: .78rem; color: var(--text-2); margin-top: 4px; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.cart-item-preco { font-family: var(--font-display); font-size: 1.05rem; color: var(--yellow); font-weight: 700; }
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  color: var(--text-2); padding: 4px;
  border-radius: 4px; transition: color .15s, background .15s;
}
.cart-item-remove:hover { color: var(--accent); background: rgba(255,32,32,.08); }

.cart-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  flex-shrink: 0;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cart-total-label { font-size: .9rem; color: var(--text-1); font-weight: 600; }
.cart-total-valor { font-family: var(--font-display); font-size: 1.6rem; color: var(--yellow); }

.btn-whatsapp-lg {
  background: var(--green);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700;
}
.btn-whatsapp-lg:hover { filter: brightness(1.1); }

/* ══════════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════════ */
.cart-toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  border: 1px solid var(--green);
  color: var(--text-0);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: .88rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 950; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.cart-toast svg { color: var(--green); flex-shrink: 0; }
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
