/* ─── RESET & BASE ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #28c76f;
  --green-dark: #1fa85a;
  --black-nav: #1a1a1a;
  --yellow-badge: #FFD600;
  --red-hit: #e53935;
  --bg-page: #F4F3F8;
  --bg-card: #ffffff;
  --text: #222222;
  --text-muted: #666666;
  --border: #e0e0e0;
  --shadow: 0 1px 4px rgba(0,0,0,.10);
  --shadow-md: 0 4px 16px rgba(0,0,0,.13);
  --r: 4px;
}

html { scroll-behavior: smooth; }
/* Impede zoom ao tocar 2x (double-tap) em todo o site */
* { touch-action: manipulation; }
body { font-family: 'Nunito', sans-serif; background: var(--bg-page); color: var(--text); line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, select { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
.header { position: sticky; top: 0; z-index: 900; }

.header-main {
  background: #282B33;
  border-bottom: none;
  padding: 10px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; display: block; object-fit: contain; }

.search-wrap {
  flex: 1;
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 560px;
}
.search-input {
  flex: 1;
  padding: 9px 14px;
  border: none;
  outline: none;
  font-size: 14px;
  background: #fafafa;
  color: var(--text);
}
.search-btn {
  background: var(--green);
  color: #fff;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background .2s;
}
.search-btn:hover { background: var(--green-dark); }

/* Barra de busca mobile (desliza para baixo) */
.mobile-search { display: none; }
.mobile-search input::placeholder { color: #999; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}
.hdr-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  white-space: nowrap;
}
.hdr-link:hover { color: #fff; }
.hdr-icon-btn {
  background: none;
  position: relative;
  color: rgba(255,255,255,.85);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}
.hdr-icon-btn:hover { color: #fff; }
.hamburger-btn { color: #fff; }
.hamburger-btn:hover { color: #fff; }
.cart-badge {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--red-hit);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ─── NAV ────────────────────────────────────────────────────────────────── */
.nav-bar { background: #fff; border-bottom: 1px solid var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner a {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 14px;
  white-space: nowrap;
  transition: color .2s, background .2s;
  display: block;
}
.nav-inner a:hover { color: var(--green); background: rgba(0,0,0,.03); }
.nav-highlight { color: var(--green) !important; }
.nav-highlight:hover { color: var(--green-dark) !important; }

/* ─── BREADCRUMB ─────────────────────────────────────────────────────────── */
.breadcrumb-wrap { background: #fff; border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.breadcrumb-link { color: #555; text-decoration: none; }
.breadcrumb-link:hover { text-decoration: underline; }
.breadcrumb-sep { color: #aaa; }
.breadcrumb-current { color: #d10303; font-weight: 700; }

/* ─── PAGE TITLE ─────────────────────────────────────────────────────────── */
.page-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin: 20px 0 12px;
}

/* ─── HERO BANNER ────────────────────────────────────────────────────────── */
.hero-banner {
  margin-bottom: 28px;
  line-height: 0;
}
.hero-banner-img {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.hero-left { display: flex; flex-direction: column; gap: 18px; }
.hero-badge-official {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 10px 16px;
  max-width: 280px;
}
.hero-badge-fifa { font-size: 18px; font-weight: 900; color: #fff; letter-spacing: 2px; }
.hero-badge-sub { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: 1px; text-transform: uppercase; }
.hero-tagline {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-tagline span { color: var(--yellow-badge); }
.hero-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.hero-brand {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.hero-brand-sub { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.75); letter-spacing: 2px; text-transform: uppercase; }
.hero-year {
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 900;
  color: rgba(255,255,255,.12);
  line-height: 1;
  letter-spacing: -4px;
  margin-top: -10px;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.12);
  pointer-events: none;
}
.r1 { width: 320px; height: 320px; top: -80px; left: 38%; }
.r2 { width: 200px; height: 200px; top: 20px; left: 45%; }
.r3 { width: 120px; height: 120px; bottom: -40px; left: 55%; }

/* ─── MAIN LAYOUT ────────────────────────────────────────────────────────── */
.main-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}
.sidebar { display: none !important; }

/* ─── SIDEBAR ────────────────────────────────────────────────────────────── */
.sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.sidebar-title {
  font-size: 16px;
  font-weight: 800;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.filter-group { border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: background .15s;
}
.filter-head:hover { background: #fafafa; }
.filter-head svg { transition: transform .2s; flex-shrink: 0; }
.filter-group.open .filter-head svg { transform: rotate(180deg); }
.filter-body { display: none; padding: 4px 16px 12px; }
.filter-group.open .filter-body { display: block; }
.filter-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 5px 0;
  cursor: pointer;
  color: var(--text-muted);
}
.filter-opt input[type="checkbox"] { accent-color: var(--green); width: 15px; height: 15px; cursor: pointer; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.price-range-slider { width: 100%; accent-color: var(--green); margin-bottom: 10px; }
.btn-filter-confirm {
  background: var(--black-nav);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 3px;
  width: 100%;
  transition: background .2s;
}
.btn-filter-confirm:hover { background: #333; }

/* ─── PRODUCTS AREA ──────────────────────────────────────────────────────── */
.products-toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.products-count { font-size: 13px; color: #aaa; font-weight: 500; }
.toolbar-right { display: flex; align-items: center; gap: 10px; width: 100%; }
.toolbar-right label { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.sort-select {
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  background: #fff;
  color: var(--text);
  outline: none;
  cursor: pointer;
  appearance: auto;
  flex: 1;
}

/* ─── PRODUCT GRID ───────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ─── PRODUCT CARD ───────────────────────────────────────────────────────── */
.prod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.prod-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.prod-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 5;
}
.badge-prev {
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: .3px;
}
.badge-hit {
  background: var(--red-hit);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 2px;
}
.badge-kit {
  background: #1565c0;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 2px;
}

.prod-img-wrap {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.prod-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  display: block;
}
.wish-btn {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  box-shadow: var(--shadow);
  transition: color .2s, border-color .2s;
  z-index: 3;
}
.wish-btn:hover { color: var(--red-hit); border-color: var(--red-hit); }

.prod-img-kit { min-height: 200px; height: 200px; }
.kit-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}
.kit-img-a { height: 140px; object-fit: contain; }
.kit-img-b { height: 110px; object-fit: contain; opacity: .85; }
.kit-label-x10 {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 12px;
}

.prod-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.prod-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-price-block { display: flex; flex-direction: column; gap: 2px; }
.prod-price-from { font-size: 12px; color: var(--text-muted); }
.prod-price-from s { color: var(--text-muted); }
.prod-price { font-size: 20px; font-weight: 900; color: var(--text); }
.prod-installment { font-size: 12px; color: var(--text-muted); }
.prod-pix { font-size: 12px; color: var(--green-dark); font-weight: 700; }
.prod-pix span { font-weight: 400; color: var(--text-muted); }

.prod-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.prod-stars { color: #FFA700; font-size: 13px; letter-spacing: 1px; }
.prod-qty-row { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.qty-ctrl button {
  width: 30px; height: 30px;
  background: #f5f5f5;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.qty-ctrl button:hover { background: #e8e8e8; }
.qty-ctrl span,
.qty-ctrl input {
  min-width: 32px;
  width: 44px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  padding: 0 4px;
  border: none;
  outline: none;
  background: #fff;
  height: 30px;
  -moz-appearance: textfield;
}
.qty-ctrl input::-webkit-outer-spin-button,
.qty-ctrl input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.btn-add {
  width: 100%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .2s;
  margin-top: auto;
}
.btn-add:hover { background: var(--green-dark); }
.btn-notify { background: var(--yellow-badge); color: #111; }
.btn-notify:hover { background: #e6c800; }

/* ─── POLICY PAGE ────────────────────────────────────────────────────────── */
.policy-wrap { background: #f4f5f7; padding: 32px 0 56px; min-height: 50vh; }
.policy-card {
  background: #fff;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 44px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.policy-card h1 {
  font-size: 28px;
  font-weight: 900;
  color: #282B33;
  margin-bottom: 6px;
}
.policy-card h1 span { color: #282B33; }
.policy-updated {
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 3px solid #FFA700;
}
.policy-card h2 {
  font-size: 18px;
  font-weight: 800;
  color: #282B33;
  margin: 28px 0 10px;
  padding-left: 12px;
  border-left: 4px solid #FFA700;
}
.policy-card h3 { font-size: 15px; font-weight: 800; color: #282B33; margin: 18px 0 6px; }
.policy-card p { font-size: 14.5px; color: #555; line-height: 1.8; margin-bottom: 12px; }
.policy-card ul { margin: 0 0 14px 22px; }
.policy-card ul li { font-size: 14.5px; color: #555; line-height: 1.8; margin-bottom: 6px; }
.policy-card a { color: #282B33; text-decoration: underline; font-weight: 700; text-decoration-color: #FFA700; }
.policy-card a:hover { color: #FFA700; }
.policy-card strong { color: #282B33; }
@media (max-width: 600px) {
  .policy-card { padding: 28px 20px; border-radius: 0; }
  .policy-card h1 { font-size: 23px; }
}

/* ─── FILTERS DRAWER ─────────────────────────────────────────────────────── */
.filters-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
}
.filters-overlay.open { opacity: 1; visibility: visible; }
.filters-drawer {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #eef0f3;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .32s ease;
}
.filters-overlay.open .filters-drawer { transform: translateX(0); }
.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #eef0f3;
}
.filters-header h3 { font-size: 20px; font-weight: 800; color: #1a1a1a; }
.filters-close { background: none; border: none; cursor: pointer; padding: 4px; line-height: 0; }
.filters-body { flex: 1; overflow-y: auto; padding: 0 16px 16px; }
.filters-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black-nav);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
}
.filter-chip button {
  background: none; border: none; color: #fff;
  cursor: pointer; font-size: 13px; line-height: 1; padding: 0;
}
.filter-card {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.filter-card-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  color: #e30613;
  font-family: 'Nunito', sans-serif;
}
.filter-card-head svg { transition: transform .3s; color: #1a5fb4; }
.filter-card.open .filter-card-head svg { transform: rotate(180deg); }
.filter-card-body { display: none; padding: 0 18px 16px; }
.filter-card.open .filter-card-body { display: block; }
.fc-price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.fc-dual-range {
  position: relative;
  height: 24px;
  margin-bottom: 16px;
}
.fc-track {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 4px;
  transform: translateY(-50%);
  background: #d5d5d5;
  border-radius: 4px;
}
.fc-track-fill {
  position: absolute;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  background: var(--black-nav);
  border-radius: 4px;
}
.fc-dual-range input[type="range"] {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 24px;
  margin: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.fc-dual-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--black-nav);
  cursor: pointer;
  pointer-events: auto;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.fc-dual-range input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--black-nav);
  cursor: pointer;
  pointer-events: auto;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.fc-price-row { display: flex; align-items: center; justify-content: space-between; }
.fc-count { font-size: 14px; font-weight: 800; color: #1a1a1a; }
.fc-confirm {
  background: var(--black-nav);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
}
.fc-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: #1a1a1a;
  cursor: pointer;
}
.fc-opt span { display: flex; align-items: center; gap: 10px; }
.fc-opt input { width: 17px; height: 17px; accent-color: #e30613; cursor: pointer; }
.fc-opt em { font-style: normal; color: #888; font-size: 14px; }
.filters-footer {
  padding: 16px;
  background: #eef0f3;
  border-top: 1px solid #dcdfe4;
}
.btn-limpar-filtros {
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: #1a1a1a;
  cursor: pointer;
}
.btn-limpar-filtros:hover { background: #f5f5f5; }

/* ─── SEO TEXT BLOCK ─────────────────────────────────────────────────────── */
.seo-block {
  background: transparent;
  padding: 4px 0 0;
  margin: 0;
}
.seo-inner {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-height: calc(14px * 1.6 * 10 + 8px);
  overflow: hidden;
  position: relative;
  transition: max-height .5s ease;
}
.seo-inner.expanded { max-height: 9999px; }
.seo-inner:not(.expanded)::after { display: none; }
.seo-inner p { margin: 0 0 8px; }
.seo-inner h3 {
  font-size: 14px;
  font-weight: 800;
  color: #222;
  margin: 22px 0 8px;
}
.seo-inner ul {
  margin: 0 0 14px 18px;
  padding: 0;
}
.seo-inner ul li { margin-bottom: 5px; color: #555; }
.seo-extra { margin-top: 0; }
.seo-faq { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.seo-faq-item strong { display: block; color: #222; font-size: 14px; margin-bottom: 4px; }
.seo-faq-item p { margin: 0; }
.seo-vermais {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  color: #222;
  background: none;
  border: none;
  padding: 12px 0 16px;
  margin-top: 0;
  cursor: pointer;
  letter-spacing: .1px;
}
.seo-vermais:hover { color: #222; }

/* ─── BENEFITS BAR ───────────────────────────────────────────────────────── */
.benefits-bar { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 0 0 40px; }
.benefits-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-right: 1px solid var(--border);
  color: var(--text);
}
.benefit-item:last-child { border-right: none; }
.benefit-item svg { flex-shrink: 0; color: var(--green); }
.benefit-item div { display: flex; flex-direction: column; gap: 2px; }
.benefit-item strong { font-size: 14px; font-weight: 800; }
.benefit-item span { font-size: 12px; color: var(--text-muted); }

/* ─── SECTIONS ───────────────────────────────────────────────────────────── */
.section-wrap { margin-bottom: 40px; }
.section-title { font-size: 20px; font-weight: 800; margin-bottom: 20px; color: var(--text); }

/* ─── REVIEWS ────────────────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
}
.review-stars { font-size: 16px; color: #FFA700; margin-bottom: 8px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 700; color: var(--text); }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: #fff; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  gap: 12px;
  transition: background .15s;
}
.faq-q:hover { background: #fafafa; }
.faq-q svg { flex-shrink: 0; transition: transform .2s; }
.faq-q.open svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.faq-a.open { display: block; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer { background: #282B33; }
.footer-main { padding: 48px 0 36px; }
.footer-main-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.footer-logos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  min-width: 140px;
}
.footer-img-logo {
  height: 38px;
  width: auto;
  display: block;
}
.footer-venda-logo {
  height: 34px;
  width: auto;
  display: block;
}
.footer-cols {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  flex: 1;
}
.footer-col-group h4 {
  font-size: 13px;
  font-weight: 800;
  color: #FFC107;
  margin-bottom: 14px;
  text-transform: none;
  letter-spacing: 0;
  border: none;
  padding: 0;
}
.footer-col-group a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  padding: 4px 0;
  text-decoration: none;
  transition: color .2s;
}
.footer-col-group a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0;
  background: #282B33;
}
.footer-bottom .container {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-align: center;
}
@media (max-width: 768px) {
  .footer-main-inner { flex-direction: column; gap: 32px; }
  .footer-cols { gap: 28px; }
}
@media (max-width: 480px) {
  .footer-cols { flex-direction: column; gap: 20px; }
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 54px; height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 800;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ─── STICKY CTA ─────────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 0;
  z-index: 700;
  transform: translateY(100%);
  transition: transform .3s;
  display: none;
}
.sticky-cta.show { transform: translateY(0); display: block; }
.btn-sticky {
  width: 100%;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 13px;
  border-radius: 4px;
  transition: background .2s;
}
.btn-sticky:hover { background: var(--green-dark); }

/* ─── MODAL ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  align-items: flex-start;
  justify-content: flex-end;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  width: 380px;
  max-width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,.2);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 18px; font-weight: 800; }
.modal-close { background: none; font-size: 18px; color: var(--text-muted); padding: 4px 8px; }
.modal-close:hover { color: var(--text); }
.modal-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty-msg { text-align: center; color: var(--text-muted); font-size: 15px; padding: 40px 0; }
.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.ci-name { font-size: 14px; font-weight: 700; }
.ci-qty { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.ci-price { font-size: 14px; font-weight: 800; color: var(--green-dark); }
.ci-remove { background: none; color: var(--text-muted); font-size: 14px; padding: 2px 6px; }
.ci-remove:hover { color: var(--red-hit); }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  padding: 6px 0;
}
.pix-row { color: var(--green-dark); font-size: 14px; }
.btn-checkout {
  width: 100%;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 14px;
  border-radius: 4px;
  margin-top: 8px;
  transition: background .2s;
}
.btn-checkout:hover { background: var(--green-dark); }

/* ─── CART HEADER ────────────────────────────────────────────────────────── */
.cart-badge.hidden { display: none; }
.cart-total-hdr {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  margin-left: 4px;
}

/* ─── MINI CART POPUP ────────────────────────────────────────────────────── */
/* Coração favoritado */
.wish-btn.active { color: #e53935; border-color: #e53935; }
.wish-btn.active svg { fill: #e53935; stroke: #e53935; }

/* Badge no botão de favoritos do cabeçalho */
.wish-hdr-btn { position: relative; }
.wish-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.wish-badge.hidden { display: none; }

/* Item da lista de favoritos */
.wish-item { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid var(--border); }
.wish-item:last-child { border-bottom: none; }
.wish-item img { width: 64px; height: 64px; object-fit: contain; border-radius: 4px; background: #f5f5f5; flex-shrink: 0; }
.wish-item-info { flex: 1; min-width: 0; }
.wish-item-name { font-size: 13px; font-weight: 700; line-height: 1.35; color: var(--text); display: block; margin-bottom: 4px; }
.wish-item-name:hover { color: var(--green); }
.wish-item-price { font-size: 15px; font-weight: 800; color: var(--text); }
.wish-item-remove { background: none; color: var(--text-muted); font-size: 18px; padding: 4px; flex-shrink: 0; }
.wish-item-remove:hover { color: var(--red-hit); }
.wish-empty { text-align: center; padding: 36px 16px; color: #888; font-size: 14px; }

.mini-cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
}
.mini-cart-popup {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.30);
  z-index: 1101;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.mini-cart-popup.open { display: flex; }
.mini-cart-overlay.open { display: block; }
.mini-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.mini-cart-header h3 { font-size: 17px; font-weight: 800; }
.mini-cart-close { background: none; font-size: 18px; color: var(--text-muted); padding: 2px 6px; }
.mini-cart-close:hover { color: var(--text); }
.mini-cart-body { padding: 8px 0; max-height: 320px; overflow-y: auto; }
.mc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.mc-item:last-child { border-bottom: none; }
.mc-img { width: 70px; height: 70px; object-fit: contain; border-radius: 4px; background: #f5f5f5; flex-shrink: 0; }
.mc-info { flex: 1; }
.mc-name { font-size: 13px; font-weight: 600; line-height: 1.35; margin-bottom: 6px; }
.mc-price { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.mc-qty-row { display: flex; align-items: center; justify-content: space-between; }
.mc-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.mc-qty-ctrl button {
  width: 28px; height: 28px;
  background: #f5f5f5;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
}
.mc-qty-ctrl button:hover { background: #e8e8e8; }
.mc-qty-ctrl span { min-width: 30px; text-align: center; font-size: 14px; font-weight: 700; }
.mc-remove { background: none; color: var(--text-muted); font-size: 18px; padding: 4px; }
.mc-remove:hover { color: var(--red-hit); }
.mini-cart-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mini-cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
}
.btn-mini-checkout {
  width: 100%;
  background: var(--black-nav);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 13px;
  border-radius: 4px;
  transition: background .2s;
}
.btn-mini-checkout:hover { background: #333; }

/* ─── TOAST ──────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 80px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black-nav);
  color: #fff;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  z-index: 2000;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── REVEAL ANIMATION ───────────────────────────────────────────────────── */
.reveal { opacity: 1; transform: none; }
.reveal.animate-in { opacity: 0; transform: translateY(18px); transition: opacity .5s, transform .5s; }
.reveal.animate-in.visible { opacity: 1; transform: none; }

/* ─── MENU LATERAL (vibe Panini) ─────────────────────────────────────────── */
.side-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
.side-menu-overlay.open { opacity: 1; visibility: visible; }
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 82%;
  max-width: 340px;
  background: #fff;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: 6px 0 28px rgba(0,0,0,.28);
}
.side-menu.open { transform: translateX(0); }
.side-menu-head {
  background: #282B33;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.side-menu-head img { height: 44px; display: block; }
.side-menu-close {
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.side-menu-links { flex: 1; overflow-y: auto; padding: 8px 0; }
.side-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s, color .15s;
}
.side-menu-links a::after { content: '›'; color: #bbb; font-size: 18px; font-weight: 400; }
.side-menu-links a:hover { background: #f7f7f7; color: var(--green); }
.side-menu-links a.side-menu-highlight { color: var(--green); }
.side-menu-links a.side-menu-home { color: var(--green); font-weight: 800; }
.side-menu-foot {
  padding: 16px 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-menu-foot a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
}
.side-menu-foot a:hover { color: var(--green); }

/* ─── HAMBURGER & MOBILE SEARCH ──────────────────────────────────────────── */
.hamburger-btn {
  display: none;
  background: none;
  color: #fff;
  padding: 4px;
  flex-shrink: 0;
}
.search-mobile-btn { display: none; }
.btn-filtrar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--black-nav);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  padding: 10px 18px;
  border-radius: 8px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  flex: 1;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .benefits-inner { grid-template-columns: repeat(2, 1fr); }
  .benefit-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  /* Header mobile: hamburguer | logo (center) | icons */
  .header-main { padding: 16px 0; box-shadow: 0 6px 18px rgba(0,0,0,.45); }
  .header-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
  }
  .hamburger-btn { display: flex; flex-shrink: 0; padding: 4px; }
  .hamburger-btn svg { width: 24px; height: 24px; }
  .logo { flex: 1 1 auto; min-width: 0; justify-content: center; }
  .logo-img { height: 56px; max-width: 100%; }
  .search-wrap-desktop { display: none; }
  .header-actions { gap: 6px; flex-shrink: 0; }
  .search-wrap { display: none; }
  .search-mobile-btn { display: flex; }
  .mobile-search {
    display: block;
    background: #fff;
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
    border-bottom: 0 solid var(--border);
  }
  .mobile-search.open { max-height: 80px; border-bottom-width: 1px; }
  .mobile-search-inner { display: flex; gap: 8px; padding: 10px 14px; }
  .mobile-search input {
    flex: 1;
    padding: 11px 14px;
    border: 1.5px solid #cfd6e4;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    background: #fff;
    color: var(--text);
    font-family: 'Nunito', sans-serif;
  }
  .mobile-search input:focus { border-color: #9fb0cf; }
  .mobile-search button {
    background: #282B33;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .hdr-link { display: none; }
  .hdr-icon-btn { padding: 4px; flex-shrink: 0; }
  .hdr-icon-btn svg { width: 23px; height: 23px; }
  .cart-total-hdr { display: none; }

  /* Nav */
  .nav-bar { display: none; }

  /* Breadcrumb + título: fundo uniforme, sem linha, fonte menor */
  .breadcrumb-wrap { background: transparent; border-bottom: none; padding: 12px 0 0; }
  .breadcrumb { font-size: 12px; }
  .page-title { font-size: 19px; margin: 10px 0 10px; }

  /* Toolbar */
  .products-toolbar { flex-wrap: wrap; gap: 10px; }
  .toolbar-right { display: flex; gap: 8px; align-items: center; }
  .btn-filtrar { display: flex; }
  .sort-select { font-size: 13px; }

  /* Grid: 2 colunas no mobile */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Cards mobile */
  .prod-img { height: 100%; }
  .prod-info { padding: 8px 10px 10px; gap: 5px; }
  .prod-name { font-size: 12px; -webkit-line-clamp: 2; }
  .prod-price { font-size: 17px; }
  .prod-installment, .prod-pix { font-size: 11px; }
  .prod-qty-row { display: none; }
  .btn-add { font-size: 12px; padding: 9px 10px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top-inner { grid-template-columns: 1fr; }
  .benefits-inner { grid-template-columns: 1fr 1fr; }
  .benefit-item { padding: 14px; }
  .sticky-cta { display: block; }

  /* Banner */
  .hero-banner-img { padding: 0; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 10px; gap: 4px; }
  .logo-img { height: 48px; }
  .header-actions { gap: 2px; }
  .hdr-icon-btn { padding: 3px; }
  .hdr-icon-btn svg { width: 22px; height: 22px; }
  .products-grid { gap: 8px; }
}

@media (max-width: 360px) {
  .logo-img { height: 42px; }
  .hdr-icon-btn svg { width: 20px; height: 20px; }
}

/* ── CONFIRM REMOVE POPUP ─────────────────────────────────────────────────── */
#removeConfirmOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#removeConfirmOverlay.open { display: flex; }
#removeConfirmBox {
  background: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
#removeConfirmHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 800;
  font-size: 16px;
}
#removeConfirmHeader button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #555;
  line-height: 1;
}
#removeConfirmMsg {
  padding: 20px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}
#removeConfirmActions {
  display: flex;
  gap: 12px;
  padding: 0 20px 20px;
}
#removeConfirmBack {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
#removeConfirmOk {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
#removeConfirmBack:hover { background: #f5f5f5; }
#removeConfirmOk:hover { background: #333; }
