/* ================================================================
   MÁRCIO PEÇA A PEÇA — ADDITIONS.CSS
   Adiciona ao final do style.css OU link separado no <head>
   ================================================================ */

/* ================================================================
   1. MOBILE CTA BAR — barra flutuante no rodapé do celular
   ================================================================ */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(4, 11, 56, .98);
    border-top: 2px solid rgba(255, 214, 0, .35);
    padding: 10px 16px 12px;
    gap: 10px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -8px 32px rgba(0,0,0,.6);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  }
  .mobile-cta-bar.visible {
    transform: translateY(0);
  }
  .mcta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .84rem;
    text-decoration: none;
    transition: all .2s ease;
    border: none;
    cursor: pointer;
  }
  .mcta-btn:active { transform: scale(.96); }
  .mcta-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,211,102,.45);
    flex: 2;
  }
  .mcta-wa:hover { background: #1ebe5a; }
  .mcta-tel {
    background: linear-gradient(135deg, #1A3EC8, #0E1F7A);
    color: #FFD600;
    border: 1.5px solid rgba(255,214,0,.40);
  }
  .mcta-tel:hover { background: linear-gradient(135deg, #2E6AFF, #1A3EC8); }
  .mcta-btn i { font-size: 1rem; }

  /* Garante que o conteúdo não fique escondido atrás da barra */
  body { padding-bottom: 76px; }

  /* Esconde a barra quando teclado virtual abre (viewport muito pequena) */
  @media (max-height: 450px) {
    .mobile-cta-bar { display: none !important; }
  }
}

/* ================================================================
   2. SEÇÃO DE MARCAS PARCEIRAS
   ================================================================ */
.brands-section {
  padding: 60px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: rgba(255,255,255,.018);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.brands-section .s-tag { justify-content: center; }
.brands-section .s-title { text-align: center; margin-bottom: 8px; }
.brands-section .s-desc { text-align: center; margin: 0 auto 36px; }

.brands-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: brandScroll 28s linear infinite;
  width: max-content;
}

.brands-track:hover { animation-play-state: paused; }

@keyframes brandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,62,200,.25), rgba(7,15,69,.75));
  border: 1.5px solid rgba(255,214,0,.20);
  transition: all .3s ease;
  cursor: default;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-pill:hover {
  border-color: rgba(255,214,0,.55);
  background: linear-gradient(135deg, rgba(26,62,200,.45), rgba(7,15,69,.90));
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.4);
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.brand-cat {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(240,246,255,.55);
  letter-spacing: .3px;
  display: block;
}

/* cores por marca */
.bi-goodyear { background: linear-gradient(135deg, #FFD600, #C88000); color: #040B38; }
.bi-heliar   { background: linear-gradient(135deg, #E63200, #B52800); color: #fff; }
.bi-cral     { background: linear-gradient(135deg, #1A3EC8, #0E1F7A); color: #FFD600; }
.bi-castrol  { background: linear-gradient(135deg, #006400, #003200); color: #FFD600; }
.bi-bosch    { background: linear-gradient(135deg, #C00000, #800000); color: #fff; }
.bi-ngk      { background: linear-gradient(135deg, #FF6600, #CC4400); color: #fff; }
.bi-gates    { background: linear-gradient(135deg, #FF0000, #990000); color: #fff; }
.bi-monroe   { background: linear-gradient(135deg, #0066CC, #003E80); color: #fff; }
.bi-mann     { background: linear-gradient(135deg, #444, #222); color: #FFD600; }
.bi-wd40     { background: linear-gradient(135deg, #0055A4, #003B73); color: #FFD600; }

/* ================================================================
   3. BUSCA RÁPIDA — página de ofertas
   ================================================================ */
.search-wrap {
  position: relative;
  margin-bottom: 8px;
}

.search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 54px 0 20px;
  border-radius: 16px;
  border: 1.5px solid rgba(255,214,0,.25);
  background: linear-gradient(135deg, rgba(26,62,200,.22), rgba(7,15,69,.80));
  color: #F0F6FF;
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  outline: none;
  transition: all .3s ease;
}

.search-input::placeholder { color: rgba(240,246,255,.40); }
.search-input:focus {
  border-color: rgba(255,214,0,.60);
  background: linear-gradient(135deg, rgba(26,62,200,.35), rgba(7,15,69,.92));
  box-shadow: 0 0 0 3px rgba(255,214,0,.10);
}

.search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,214,0,.60);
  font-size: 1rem;
  pointer-events: none;
}

.search-clear {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(240,246,255,.50);
  font-size: .9rem;
  cursor: pointer;
  display: none;
  padding: 4px;
  transition: color .2s;
}
.search-clear:hover { color: #FFD600; }
.search-clear.visible { display: block; }
.search-clear.visible ~ .search-icon { display: none; }

.search-result-info {
  font-size: .82rem;
  color: rgba(240,246,255,.55);
  margin-top: 8px;
  min-height: 20px;
  transition: all .2s;
}
.search-result-info strong { color: #FFD600; }

/* highlight de busca */
.search-highlight {
  background: rgba(255,214,0,.25);
  color: #FFD600;
  border-radius: 3px;
  padding: 0 2px;
}

/* ================================================================
   4. BADGES DE URGÊNCIA NOS PRODUTOS
   ================================================================ */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ub-hot {
  background: linear-gradient(135deg, #E63200, #FF4500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(230,50,0,.45);
  animation: ubPulse 2s ease-in-out infinite;
}

.ub-low {
  background: linear-gradient(135deg, #E63200, #B52800);
  color: #fff;
  border: 1px solid rgba(255,100,0,.5);
}

.ub-new {
  background: linear-gradient(135deg, #1A3EC8, #2E6AFF);
  color: #FFD600;
  border: 1px solid rgba(255,214,0,.35);
}

.ub-sale {
  background: linear-gradient(135deg, #006400, #00A000);
  color: #fff;
}

@keyframes ubPulse {
  0%,100% { box-shadow: 0 4px 14px rgba(230,50,0,.45); }
  50%      { box-shadow: 0 4px 24px rgba(230,50,0,.75); }
}

/* ================================================================
   5. BANNER LGPD / COOKIES
   ================================================================ */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8500;
  background: rgba(4, 11, 56, .98);
  border-top: 2px solid rgba(255,214,0,.30);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -8px 40px rgba(0,0,0,.70);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}

.lgpd-banner.show { transform: translateY(0); }

.lgpd-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
}

.lgpd-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.lgpd-text {
  flex: 1;
  min-width: 240px;
}

.lgpd-text p {
  font-size: .82rem;
  color: rgba(240,246,255,.75);
  line-height: 1.55;
  margin: 0;
}

.lgpd-text strong { color: #FFD600; }

.lgpd-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.lgpd-accept {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FFD600, #C88000);
  color: #040B38;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.lgpd-accept:hover { filter: brightness(1.1); transform: translateY(-2px); }

.lgpd-decline {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 50px;
  background: transparent;
  color: rgba(240,246,255,.50);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: all .2s;
}
.lgpd-decline:hover { color: rgba(240,246,255,.80); border-color: rgba(255,255,255,.30); }

@media (max-width: 768px) {
  .lgpd-inner { padding: 14px 16px; gap: 12px; }
  .lgpd-btns  { width: 100%; }
  .lgpd-accept, .lgpd-decline { flex: 1; justify-content: center; }

  /* No mobile, a lgpd sobe acima da barra cta */
  body.lgpd-visible { padding-bottom: 76px; }
}

/* ================================================================
   6. CONTADOR ESTILO SLOT (override do animateCount existente)
   ================================================================ */
.stat-num.slot-active {
  animation: slotFlicker .08s ease-in-out;
}
@keyframes slotFlicker {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}

/* ================================================================
   7. OPEN GRAPH share preview (não tem CSS, é só <head> meta)
      Ver INSTRUCOES.md para o código HTML
   ================================================================ */

/* ================================================================
   8. FOCUS VISIBLE — acessibilidade
   ================================================================ */
:focus-visible {
  outline: 2px solid rgba(255,214,0,.70);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ================================================================
   9. MELHORIAS GERAIS DE CORES (mantém padrão azul+amarelo)
   ================================================================ */

/* WhatsApp sempre verde */
.btn-wa,
.btn-nav-wa {
  background: #25D366 !important;
  color: #fff !important;
}
.btn-wa:hover   { background: #1ebe5a !important; }
.btn-nav-wa     { background: #25D366 !important; color: #fff !important; }
.btn-nav-wa:hover { background: #1ebe5a !important; }
.p-btn          { background: #25D366 !important; color: #fff !important; }
.p-btn:hover    { background: #1ebe5a !important; }
.wa-float       { background: #25D366 !important; color: #fff !important; }
.wa-float:hover { background: #1ebe5a !important; }

/* ================================================================
   10. MOBILE — todas as melhorias juntas
   ================================================================ */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links, .btn-nav-wa { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {

  body::before {
    animation: none; opacity: 1;
    background:
      radial-gradient(ellipse 80% 40% at 20% 10%, rgba(0,200,255,.20) 0%, transparent 55%),
      radial-gradient(ellipse 60% 60% at 80% 80%, rgba(230,50,0,.18)  0%, transparent 55%),
      linear-gradient(180deg, #030A2E 0%, #0B1880 40%, #1230B8 80%, #1A3EC8 100%);
  }
  body::after { display: none; }

  #navbar {
    background: rgba(5,12,65,.97) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 2px solid rgba(255,214,0,.30) !important;
  }

  .section { padding: 68px 0; }
  .hero    { padding: 80px 0 56px; }

  .hero-title {
    font-size: clamp(2.6rem,10vw,4.2rem);
    text-shadow: 0 0 30px rgba(255,214,0,.20), 0 4px 20px rgba(0,0,0,.60);
  }
  .t2 { filter: drop-shadow(0 0 18px rgba(230,50,0,.55)); }
  .t3 { text-shadow: 0 0 24px rgba(0,200,255,.55); }

  .hero-points    { grid-template-columns: 1fr; }
  .hero-contacts  { grid-template-columns: 1fr 1fr; }

  .hero-point {
    background: linear-gradient(135deg, rgba(26,62,200,.40), rgba(7,15,69,.85)) !important;
    border: 1px solid rgba(255,214,0,.35) !important;
    padding: 15px 18px;
  }
  .hc-item {
    background: linear-gradient(135deg, rgba(26,62,200,.45), rgba(7,15,69,.90)) !important;
    border: 1px solid rgba(255,214,0,.30) !important;
  }

  .btn-row { flex-direction: column; }
  .btn     { width: 100%; min-height: 54px; font-size: .92rem; }

  .cat-grid, .diff-grid, .testi-grid, .products-grid { grid-template-columns: 1fr; }

  .cat-card, .diff-card {
    background: linear-gradient(145deg, rgba(26,62,200,.35), rgba(7,15,69,.88)) !important;
    border: 1px solid rgba(255,214,0,.28) !important;
  }
  .cat-card:hover, .diff-card:hover { transform: translateY(-4px); }

  .product-card {
    background: linear-gradient(145deg, rgba(26,62,200,.30), rgba(7,15,69,.90)) !important;
    border: 1px solid rgba(255,214,0,.25) !important;
  }
  .product-card:hover { transform: none; }
  .product-card:hover .product-img img { transform: none !important; }

  .p-badge {
    background: linear-gradient(135deg, #1A3EC8, #0E1F7A) !important;
    color: #FFD600 !important;
    border: 1px solid rgba(255,214,0,.55) !important;
    font-weight: 900;
  }
  .p-price strong { font-size: 1.7rem; filter: drop-shadow(0 2px 8px rgba(255,214,0,.40)); }

  .testi-card {
    background: linear-gradient(145deg, rgba(26,62,200,.35), rgba(7,15,69,.88)) !important;
    border: 1px solid rgba(255,214,0,.25) !important;
  }
  .testi-card:hover { transform: none; }

  .contact-card {
    background: linear-gradient(145deg, rgba(26,62,200,.38), rgba(7,15,69,.90)) !important;
    border: 1px solid rgba(255,214,0,.28) !important;
  }

  .about-list li {
    background: linear-gradient(135deg, rgba(26,62,200,.38), rgba(7,15,69,.88)) !important;
    border: 1px solid rgba(255,214,0,.30) !important;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 20px; }
  .map-wrap   { height: 240px; }

  .wa-float {
    bottom: 86px !important; /* sobe acima da CTA bar */
    right: 20px !important;
    width: 52px !important;
    height: 52px !important;
    font-size: 1.4rem !important;
    animation: none !important;
    box-shadow: 0 8px 30px rgba(37,211,102,.60) !important;
  }

  .btt {
    bottom: 86px;
    left: 20px;
    background: rgba(26,62,200,.50);
    border: 1.5px solid rgba(255,214,0,.55);
    color: #FFD600;
  }

  .slideshow-wrap { aspect-ratio: 16/10; }
  .slide-arrow    { opacity: 1 !important; }

  .insta-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 16px;
    background: linear-gradient(145deg, rgba(26,62,200,.35), rgba(7,15,69,.90)) !important;
    border: 1px solid rgba(255,214,0,.25) !important;
  }

  .mobile-drawer nav a {
    background: linear-gradient(135deg, rgba(26,62,200,.45), rgba(7,15,69,.92));
    border: 1px solid rgba(255,214,0,.25);
    color: #fff;
    font-weight: 700;
  }
  .mobile-drawer nav a:hover {
    background: linear-gradient(135deg, rgba(26,62,200,.65), rgba(7,15,69,.96));
    border-color: rgba(255,214,0,.55);
    color: #FFD600;
  }

  .hero-card, .cat-card, .diff-card, .product-card, .testi-card, .contact-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* search mobile */
  .search-input { font-size: .84rem; }
}

@media (max-width: 480px) {
  .hero-contacts { grid-template-columns: 1fr; }
  .hero-stats .stat-num { font-size: 1.6rem; }
  .s-title { font-size: clamp(1.9rem,8vw,2.8rem); }
  .filter-bar { gap: 8px; }
  .filter-btn { font-size: .72rem; padding: 0 13px; min-height: 38px; }
  .brand-pill { padding: 12px 18px; }
  .brand-name { font-size: .9rem; }
}
@media (max-width: 768px) {
 
  .footer-top { padding: 36px 0 24px; }
 
  /* 2 colunas no grid geral */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 14px !important;
  }
 
  /* Brand: linha inteira, centralizada */
  .footer-brand {
    grid-column: 1 / -1 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,214,0,.18);
  }
  .footer-brand .flogo { justify-content: center; }
  .footer-brand p { font-size: .81rem; max-width: 300px; margin: 10px auto 14px; }
  .f-social { justify-content: center !important; }
  .f-social a { width: 44px; height: 44px; font-size: 1.05rem; border-radius: 12px; }
 
  /* Cards nas colunas Nav e Produtos */
  .footer-col {
    background: linear-gradient(145deg, rgba(26,62,200,.22), rgba(7,15,69,.70));
    border: 1px solid rgba(255,214,0,.16);
    border-radius: 16px;
    padding: 16px 14px;
  }
  .footer-col h4 {
    font-size: .77rem;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,214,0,.18);
  }
  .footer-col ul { gap: 7px; }
  .footer-col ul li a { font-size: .79rem; }
 
  /* Contato Rápido: linha inteira */
  .footer-col:last-child {
    grid-column: 1 / -1 !important;
    background: linear-gradient(135deg, rgba(26,62,200,.28), rgba(7,15,69,.82));
    border-color: rgba(255,214,0,.24);
  }
  .footer-col:last-child h4 { text-align: center; }
 
  /* f-ci em grid 2x2 */
  .footer-col:last-child {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: start;
  }
  /* h4 ocupa as 2 colunas */
  .footer-col:last-child h4 {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }
  /* Cada item de contato */
  .footer-col:last-child .f-ci {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 0 !important;
    padding: 10px 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    font-size: .78rem;
    color: rgba(240,246,255,.72);
    transition: border-color .2s, background .2s;
  }
  .footer-col:last-child .f-ci:hover {
    border-color: rgba(255,214,0,.32);
    background: rgba(26,62,200,.22);
  }
  .footer-col:last-child .f-ci i { font-size: .95rem; flex-shrink: 0; }
  .footer-col:last-child .f-ci a,
  .footer-col:last-child .f-ci span { color: rgba(240,246,255,.72); line-height: 1.4; }
  .footer-col:last-child .f-ci a:hover { color: #FFD600; }
 
  /* Footer bottom */
  .footer-bottom { padding: 14px 0; }
  .footer-bottom .container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
  }
  .footer-bottom p { font-size: .71rem; line-height: 1.55; }
}
 
/* Telas muito pequenas */
@media (max-width: 380px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-col:last-child { grid-column: auto !important; }
  .footer-col:last-child { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
 
  /* Remove o filter do body — ele quebra position:fixed (preloader) */
  body {
    filter: none !important;
  }
 
  /* Anel externo: mais grosso e mais vivo no mobile */
  .pre-ring::before {
    inset: -10px !important;
    border-width: 4px !important;
    border-top-color: #FFD600 !important;
    border-right-color: #E63200 !important;
    border-bottom-color: #00C8FF !important;
    border-left-color: transparent !important;
    filter: drop-shadow(0 0 6px rgba(255,214,0,.7))
            drop-shadow(0 0 6px rgba(230,50,0,.5));
    animation: spin 1s linear infinite !important;
  }
 
  /* Anel interno: mais visível */
  .pre-ring::after {
    inset: -18px !important;
    border-width: 2px !important;
    border-top-color: rgba(255,214,0,.55) !important;
    border-left-color: rgba(230,50,0,.40) !important;
    border-right-color: rgba(0,200,255,.30) !important;
    border-bottom-color: transparent !important;
    animation: spin 1.8s linear infinite reverse !important;
  }
 
  /* Logo pulsando mais forte */
  .pre-logo {
    animation: proPulse 1.8s ease-in-out infinite !important;
    box-shadow:
      0 0 0 6px rgba(255,214,0,.12),
      0 0 40px rgba(255,214,0,.35) !important;
  }
 
  /* Barra de progresso mais viva */
  .pre-fill {
    background: linear-gradient(90deg, #E63200, #FFD600, #00C8FF) !important;
    box-shadow: 0 0 10px rgba(255,214,0,.5);
  }
 
  /* Texto mais legível */
  .pre-text {
    color: rgba(240,246,255,.80) !important;
    letter-spacing: 2px;
  }
 
  /* Garante que o preloader cobre a tela toda */
  #preloader {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
  }
}
.brand-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Efeito hover na logo */
.brand-pill:hover .brand-logo-wrap {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(255,214,0,.30);
}

/* Pill com logo real fica um pouco mais alto */
.brand-pill {
  padding: 12px 20px !important;
  gap: 14px;
  align-items: center;
}

/* Fallback: se a imagem não carregar, mostra fundo cinza com ? */
.brand-logo-wrap img::after {
  content: '?';
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
}

/* Mobile: logo um pouco menor */
@media (max-width: 768px) {
  .brand-logo-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    padding: 5px;
  }

  .brand-pill {
    padding: 10px 16px !important;
    gap: 10px;
  }

  .brand-name { font-size: .85rem !important; }
  .brand-cat  { font-size: .65rem !important; }
}
