/* =========================
   TOPBAR CAROUSEL
========================= */
.topbar-vanza {
  background: #081525;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.topbar-slide {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8aa8c0;
  text-align: center;
  opacity: 0;
  animation: girar 10.5s infinite;
}
.topbar-slide strong { color: #00c4b0; font-weight: 700; }
.s1 { animation-delay: 0s; }
.s2 { animation-delay: 3.5s; }
.s3 { animation-delay: 7s; }
@keyframes girar {
  0%   { opacity: 0; transform: translateY(8px); }
  5%   { opacity: 1; transform: translateY(0); }
  28%  { opacity: 1; transform: translateY(0); }
  33%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; }
}
/* =========================
   FILTROS PREMIUM — BLOCOS
========================= */
.custom-price-filter,
.filtro-bloco-premium {
  background: #fff;
  border: 1px solid rgba(11,31,53,0.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.filtro-bloco-premium h4,
.title-price-filter {
  font-size: 13px;
  font-weight: 700;
  color: #0b1f35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(11,31,53,0.07);
}
.filtro-bloco-premium ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.filtro-bloco-premium ul li a {
  display: block;
  font-size: 13px;
  color: #4a6a85;
  padding: 7px 10px;
  border-radius: 7px;
  text-decoration: none;
  transition: all .15s ease;
}
.filtro-bloco-premium ul li a:hover {
  background: #0b1f35 !important;
  color: #ffffff !important;
}
.price-inputs { display: flex; gap: 8px; margin-bottom: 10px; }
.price-inputs input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(11,31,53,0.15);
  border-radius: 8px;
  padding: 0 10px;
  font-size: 13px;
  color: #0b1f35;
  background: #fff;
  transition: border-color .2s ease;
}
.price-inputs input:focus {
  border-color: #00c4b0;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,196,176,0.15);
}
#apply-price-filter {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 8px;
  background: #00c4b0;
  color: #081525;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
#apply-price-filter:hover {
  background: #00a898;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,196,176,0.25);
}
/* =========================
   ESCONDER FILTROS NATIVOS
========================= */
.filtro-preco,
.filtro-preco .slider,
.filter-price { display: none !important; }
a[href*="price_range"] { display: none !important; }
/* =========================
   CATEGORIAS — HOVER LEGÍVEL
========================= */
.bg_list_nav a:hover,
.menu-nav li a:hover,
[class*="list_nav"] a:hover {
  background: #0f2e4a !important;
  color: #fff !important;
}
/* =========================
   ESCONDER SKU
========================= */
.produto-sku,
[class*="sku"],
[class*="referencia"] {
  display: none !important;
}
/* =========================
   POPUP CUSTOMIZADO VANZA
========================= */
#ev-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s ease;
}
#ev-overlay.ativo { opacity: 1; }
#ev-modal {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s ease;
}
#ev-overlay.ativo #ev-modal { transform: translateY(0); }
#ev-fechar {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
}
#ev-topo {
  background: #0b1f35;
  padding: 28px 28px 24px;
  text-align: center;
}
#ev-badge-pop {
  background: rgba(0,196,176,0.15);
  border: 1px solid rgba(0,196,176,0.3);
  color: #00c4b0;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
#ev-desconto {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
#ev-subtitulo {
  font-size: 15px;
  color: #8aa8c0;
  line-height: 1.5;
}
#ev-subtitulo strong { color: #fff; }
#ev-corpo { padding: 24px 28px; }
#ev-hint {
  font-size: 13px;
  color: #4a6a85;
  margin-bottom: 14px;
  text-align: center;
}
#ev-email {
  width: 100%;
  box-sizing: border-box;
  height: 44px;
  border: 1.5px solid #dce5ef;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  color: #0b1f35;
  margin-bottom: 10px;
  outline: none;
  transition: border-color .2s;
}
#ev-email:focus { border-color: #00c4b0; }
#ev-btn-sub {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 10px;
  background: #00c4b0;
  color: #081525;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background .2s ease;
}
#ev-btn-sub:hover { background: #00a898; }
#ev-recusar {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #a0b4c8;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
}
#ev-cupom-area { text-align: center; }
#ev-cupom-hint { font-size: 12px; color: #4a6a85; margin-bottom: 12px; }
#ev-cupom-box {
  background: #f0f4f8;
  border: 2px dashed #00c4b0;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
#ev-cupom-codigo {
  font-size: 24px;
  font-weight: 800;
  color: #0b1f35;
  letter-spacing: 2px;
}
#ev-btn-copiar {
  background: #0b1f35;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
#ev-btn-copiar:hover { background: #00c4b0; color: #081525; }
#ev-cupom-validade { font-size: 12px; color: #4a6a85; margin-bottom: 14px; }
#ev-selos-pop {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
#ev-selos-pop span {
  font-size: 11px;
  color: #8aa8c0;
  display: flex;
  align-items: center;
  gap: 4px;
}
#ev-selos-pop span::before {
  content: '✓';
  color: #00c4b0;
  font-weight: 700;
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .price-inputs { flex-direction: column; }
  .topbar-vanza { height: 30px; }
  .topbar-slide { font-size: 11px; gap: 5px; padding: 0 12px; }
  #ev-topo { padding: 22px 20px 18px; }
  #ev-corpo { padding: 18px 20px; }
  #ev-desconto { font-size: 40px; }
}

/* =========================
   TIPOGRAFIA
========================= */
body, p, a, span, li, input, button, select, textarea,
.preco, .nome, .descricao, .texto, .label,
[class*="preco"], [class*="nome"], [class*="texto"],
[class*="descricao"], [class*="label"], [class*="info"],
[class*="categoria"], [class*="produto"], [class*="menu"],
[class*="nav"], [class*="footer"], [class*="header"],
[class*="filtro"], [class*="vitrine"], [class*="lista"] {
  font-family: 'Inter', sans-serif !important;
}
h1, h2, h3, h4, h5, h6,
.titulo, .nome-produto, .ev-vitrine-titulo,
[class*="titulo"], [class*="heading"], [class*="destaque"] {
  font-family: 'Barlow Semi Condensed', sans-serif !important;
}