﻿/* =============================================
   RV SPORT STORE — PREMIUM CSS v2
   Melhorias: cards, header, footer, tipografia,
   filtros, badges, mobile, trust signals.
   ============================================= */

:root {
  --black:    #07090C;
  --dark:     #0E1118;
  --card:     #141922;
  --card2:    #1A2030;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.13);
  --accent:   #E4FF00;
  --accent2:  #FF3E3E;
  --accent3:  #00D9F0;
  --green:    #00E676;
  --white:    #F0F2F8;
  --muted:    #7A8499;
  --muted2:   #4A5568;
  --radius:   14px;
  --radius-sm:9px;
  --radius-xs:6px;
  --shadow:   0 8px 32px rgba(0,0,0,.55);
  --shadow-lg:0 20px 60px rgba(0,0,0,.75);
  --shadow-card: 0 2px 16px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.04);
  --shadow-hover: 0 20px 56px rgba(0,0,0,.65), 0 0 0 1px rgba(228,255,0,.12);
  --tr:       .22s cubic-bezier(.4,0,.2,1);
  --max:      1400px;
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-7:  32px;
  --focus-ring: 0 0 0 3px rgba(228,255,0,.16);
  --card-surface: linear-gradient(160deg, rgba(21,27,40,.94), rgba(11,16,26,.96));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; -webkit-font-smoothing: antialiased; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
/* === PERFORMANCE: BASE IMG RULES === */
img {
  display: block;
  max-width: 100%;
  height: auto;           /* evita CLS quando width/height estão definidos */
  color: transparent;     /* esconde alt text durante carregamento */
}

/* Placeholder de carregamento para todas as imagens lazy */
img[loading="lazy"] {
  background: linear-gradient(135deg, #1a1f2e 0%, #0d1018 100%);
}

/* Imagens que carregam com eager não precisam do placeholder */
img[loading="eager"] {
  background: transparent;
}

/* Garante que imagens de produto não causem layout shift */
.prod-img-front,
.prod-img-back {
  width: 100%;
  height: 100%;
}

/* Otimização de renderização para carrosséis */
.prod-carousel,
.team-badges-carousel {
  contain: layout style;                /* isola layout do resto da página */
  will-change: scroll-position;
}

/* content-visibility para seções abaixo da dobra (GPU offload) */
.section:not(:first-child),
.cat-grid,
.craques-mini-grid,
.testimonials-grid {
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;     /* estimativa de altura para evitar re-layout */
}

/* Base estável: mantém composição sem reservar camadas demais */
.prod-img-front,
.prod-img-back {
  transform: translateZ(0);
}
/* Só sinaliza will-change quando há interação/animação de fato */
.product-card:hover .prod-img-front,
.product-card:hover .prod-img-back,
.cat-card:hover img,
.hero-card:hover img,
.big-slide.active .big-slide-img {
  will-change: transform;
}

/* Objeto de ajuste padrão para todas as imagens de produto */
.prod-img-wrap img,
.gallery-main img,
.cat-card img,
.craque-mini-img img,
.craque-card-imgs img,
.jogador-img-card img,
.hero-card img {
  object-fit: cover;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: .04em; }
.font-title   { font-family: 'Oswald', sans-serif; }
h1,h2,h3,h4 { font-family: 'Oswald', sans-serif; line-height: 1.2; }

/* =============================================
   UI POLISH SYSTEM — Consistência global
   ============================================= */
p { text-wrap: pretty; }

:where(input, select, textarea) { font-family: inherit; }

:where(input, select, textarea):focus-visible,
:where(button, a, [data-action], [data-page]):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.section {
  padding: clamp(56px, 7vw, 88px) clamp(14px, 2.4vw, 28px);
}

.section-header {
  margin-bottom: clamp(24px, 4vw, 44px);
}

.section-sub {
  color: #98a5bc;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.75;
}

.btn-primary,
.btn-secondary,
.btn-buy,
.btn-frete-prazo,
.btn-wpp-buy,
.btn-checkout,
.btn-load-more,
.pedidos-empty-btn {
  min-height: 48px;
  border-radius: 12px;
}

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-buy:disabled,
.btn-frete-prazo:disabled,
.btn-wpp-buy:disabled,
.btn-checkout:disabled,
.btn-load-more:disabled {
  opacity: .62;
  cursor: not-allowed;
  filter: saturate(.8);
  transform: none !important;
  box-shadow: none !important;
}

.product-card,
.cat-card,
.value-card,
.testimonial-card,
.contact-item,
.rastreio-step,
.form-section,
.cart-summary-panel,
.checkout-summary {
  border-color: rgba(146,167,196,.2);
  box-shadow: 0 8px 26px rgba(0,0,0,.34);
}

.product-card:hover,
.cat-card:hover,
.value-card:hover,
.testimonial-card:hover,
.contact-item:hover {
  box-shadow: 0 18px 38px rgba(0,0,0,.45);
}

/* =============================================
   ANNOUNCE BAR
   ============================================= */
.announce-bar {
  background: linear-gradient(90deg, #bdd600 0%, var(--accent) 50%, #bdd600 100%);
  color: #07090C;
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.announce-bar::before,
.announce-bar::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%;
  opacity: .3;
  z-index: 2;
  animation: announce-blink 2s ease-in-out infinite;
}
.announce-bar::before { left: 14px; }
.announce-bar::after  { right: 14px; animation-delay: 1s; }
@keyframes announce-blink { 0%,100%{opacity:.3} 50%{opacity:.7} }
.announce-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
}
.announce-track span { padding: 0 30px; }
.announce-track .sep { padding: 0; opacity: .3; font-weight: 300; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,9,12,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
  /* overflow:visible obrigatório — permite mega menu vazar para fora do header */
  overflow: visible;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: visible;
  position: relative;
}

/* Logo */
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: .05em;
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-shrink: 0;
  cursor: pointer;
}
.logo-rv    { color: var(--accent); }
.logo-sport { color: var(--white); }
.logo em {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted2);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-left: 5px;
  align-self: center;
  border: 1px solid rgba(255,255,255,.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-left: 12px;
}
.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 8px;
  color: rgba(240,242,248,.75);
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
  position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-link.active {
  color: var(--accent);
  background: rgba(228,255,0,.06);
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
  padding-bottom: 5px;
}

/* Dropdown (legacy) */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  display: none;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  padding-top: 14px;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.nav-dropdown.open .dropdown-menu  { display: block; }
.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--muted);
  transition: var(--tr);
  cursor: pointer;
}
.dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,.07); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  min-width: 0;
  flex: 0 0 auto;
}
.header-actions > * { flex-shrink: 0; }
.header-assurance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 8px;
  border-radius: 11px;
  border: 1px solid rgba(133,153,180,.2);
  background: linear-gradient(180deg, rgba(14,20,31,.78), rgba(10,14,22,.78));
}
.header-assurance-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(133,153,180,.2);
  background: rgba(255,255,255,.03);
  color: #d5e0f1;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.header-assurance-pill:hover {
  border-color: rgba(228,255,0,.38);
  background: rgba(228,255,0,.08);
  color: #f1f8ff;
  transform: translateY(-1px);
}
.header-assurance-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(228,255,0,.1);
  border: 1px solid rgba(228,255,0,.24);
  color: #e4ff6b;
}
.header-assurance-icon svg {
  width: 10px;
  height: 10px;
  display: block;
}
.header-assurance-text {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: rgba(240,242,248,.7);
  transition: var(--tr);
  position: relative;
}
.btn-icon:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--border2);
  color: var(--white);
}
.btn-icon:active { transform: scale(.93); }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 900;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--black);
}
.btn-whatsapp {
  display: flex; align-items: center; gap: 7px;
  background: #25D366;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 10px;
  transition: var(--tr);
  white-space: nowrap;
  position: relative;
  overflow: visible;
}
.btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 13px;
  border: 2px solid rgba(37,211,102,.5);
  animation: wpp-ping 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes wpp-ping {
  0%   { transform: scale(1);    opacity: .65; }
  65%  { transform: scale(1.15); opacity: 0;   }
  100% { transform: scale(1.15); opacity: 0;   }
}
.btn-whatsapp:hover { background: #1dba58; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.btn-whatsapp:hover::after { animation: none; opacity: 0; }

/* Estabilidade do header em desktop intermediário:
   evita corte do botão de conta quando o nome é longo. */
@media (max-width: 1520px) {
  .header-inner { padding: 0 18px; gap: 12px; }
  .nav { margin-left: 10px; }
  .header-assurance { padding: 0 8px; }
  .header-assurance-pill { padding: 0 8px; }
  .header-assurance-text { font-size: 10px; }
  .btn-whatsapp {
    padding: 9px 12px;
    font-size: 12px;
    letter-spacing: .04em;
  }
}
@media (max-width: 1720px) {
  .header-assurance { display: none; }
}
@media (max-width: 1400px) {
  .btn-whatsapp { display: none; }
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }

/* Search Bar */
.search-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.search-bar.open { max-height: 420px; padding: 18px 0; }
.search-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1.5px solid var(--border2);
}
.search-inner svg { color: var(--muted); flex-shrink: 0; }
.search-inner input {
  flex: 1;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  outline: none;
  letter-spacing: .01em;
}
.search-inner input::placeholder { color: var(--muted2); }
.search-close { color: var(--muted); font-size: 20px; padding: 4px 8px; }
.search-close:hover { color: var(--white); }
.search-results {
  max-width: var(--max);
  margin: 14px auto 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

/* =============================================
   PAGES
   ============================================= */
#main { min-height: 60vh; position: relative; z-index: 1; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 65% 50%, rgba(228,255,0,.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(0,217,240,.05) 0%, transparent 60%),
    linear-gradient(145deg, #07090C 0%, #0C1018 60%, #090E12 100%);
}
.hero-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-diagonal {
  position: absolute;
  top: -120px; right: 28%;
  width: 2px; height: 140%;
  background: linear-gradient(to bottom, transparent 0%, rgba(228,255,0,.16) 40%, rgba(228,255,0,.07) 70%, transparent 100%);
  transform: rotate(-12deg);
  transform-origin: top center;
  pointer-events: none;
}
.hero-diagonal::after {
  content: '';
  position: absolute;
  top: 0; left: -40px;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,217,240,.08) 50%, transparent 100%);
}
.hero-corner-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 400px; height: 3px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: .35;
}
.hero-content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-text { z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(228,255,0,.09);
  border: 1px solid rgba(228,255,0,.22);
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.25; } }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 7vw, 104px);
  line-height: .92;
  letter-spacing: .02em;
  margin-bottom: 22px;
}
.hero-title .accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--accent), rgba(228,255,0,.15));
  border-radius: 2px;
}
.hero-sub {
  font-size: 17px;
  color: #8a9ab8;
  max-width: 460px;
  margin-bottom: 38px;
  line-height: 1.78;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #cee800 0%, var(--accent) 55%, #eeff40 100%);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 10px;
  transition: var(--tr);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(228,255,0,.18);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d4f000 0%, #f0ff22 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(228,255,0,.42), 0 4px 12px rgba(0,0,0,.3);
}
.btn-primary:active { transform: translateY(-1px) scale(.99); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.15);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 10px;
  transition: var(--tr);
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}
.btn-secondary:active { transform: scale(.98); }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 28px rgba(228,255,0,.22);
}
.stat-lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 5px; font-weight: 600; }
.hero-proof-strip {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-proof-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #c9d4e8;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}

/* Hero Images */
.hero-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--tr);
}
.hero-card:hover { transform: translateY(-5px); border-color: rgba(228,255,0,.2); box-shadow: var(--shadow); }
.hero-card:nth-child(2) { margin-top: 32px; }
.hero-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  object-position: top;
  background: linear-gradient(to bottom, #1a2030, #0e1420);
  transition: transform .4s ease;
}
.hero-card:hover img { transform: scale(1.05); }
.hero-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.88), transparent);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-trust-card {
  position: relative;
  border: 1px solid rgba(228,255,0,.2);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(228,255,0,.18), transparent 44%),
    linear-gradient(145deg, rgba(12,20,34,.96) 0%, rgba(9,14,24,.96) 100%);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  cursor: pointer;
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s ease, border-color .22s ease;
}
.hero-trust-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, transparent 40%);
}
.hero-trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(228,255,0,.34);
  box-shadow: 0 20px 44px rgba(0,0,0,.45), 0 0 0 1px rgba(228,255,0,.1);
}
.hero-trust-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-trust-head-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(228,255,0,.35);
  color: var(--accent);
  background: rgba(228,255,0,.08);
}
.hero-trust-head-icon svg {
  width: 14px;
  height: 14px;
}
.hero-trust-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #b8c7df;
  line-height: 1.35;
}
.hero-trust-item .icon {
  color: var(--accent);
  opacity: .95;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-trust-item .icon svg {
  width: 14px;
  height: 14px;
}
.hero-trust-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =============================================
   SECTION WRAPPER
   ============================================= */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 28px;
}
.section-sm { padding: 40px 28px; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: .04em;
  line-height: 1;
}
.section-title span { color: var(--accent); }
.section-sub { color: var(--muted); font-size: 15px; margin-top: 8px; }
.see-all {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid transparent;
  transition: var(--tr);
  cursor: pointer;
  padding-bottom: 2px;
}
.see-all:hover { border-color: var(--accent); }

/* =============================================
   CATEGORIES GRID
   ============================================= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 60px;
}
.cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s ease, border-color .22s ease;
  aspect-ratio: 3/4;
}
.cat-card:first-child { grid-column: span 2; aspect-ratio: auto; min-height: 280px; }
.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228,255,0,.22);
  box-shadow: 0 18px 44px rgba(0,0,0,.55), 0 0 0 1px rgba(228,255,0,.09);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .45s ease; }
.cat-card:hover img { transform: scale(1.07); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
  transition: var(--tr);
}
.cat-card:hover .cat-overlay { background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.45) 65%, rgba(0,0,0,.08) 100%); }
.cat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 16px 16px;
}
.cat-name {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.cat-count { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; font-weight: 500; }
.cat-arrow {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: var(--accent);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  opacity: 0;
  transition: var(--tr);
  transform: translateY(6px);
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }
.cat-card-promo {
  grid-column: span 5;
  aspect-ratio: auto;
  min-height: 280px;
  border-color: rgba(228,255,0,.2);
  background:
    radial-gradient(circle at 16% 20%, rgba(228,255,0,.15), transparent 40%),
    linear-gradient(140deg, rgba(13,22,37,.98) 0%, rgba(9,15,27,.98) 100%);
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  align-items: stretch;
  gap: 16px;
  padding: 16px;
}
.cat-card-promo .cat-overlay,
.cat-card-promo .cat-arrow {
  display: none;
}
.cat-card-promo .cat-info {
  position: static;
  padding: 0;
}
.cat-promo-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cat-promo-thumb {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,11,20,.7);
}
.cat-promo-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cat-promo-eyebrow {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.cat-promo-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 3.6vw, 44px);
  line-height: .95;
  letter-spacing: .03em;
  color: var(--white);
}
.cat-promo-desc {
  margin: 0;
  color: #9bb0cc;
  font-size: 14px;
  line-height: 1.55;
  max-width: 58ch;
}
.cat-promo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-promo-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,168,199,.24);
  background: rgba(255,255,255,.03);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #d3deee;
}
.cat-promo-cta {
  margin-top: auto;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =============================================
   PRODUCTS GRID & CAROUSEL
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.missing-jersey-cta {
  margin-top: 28px;
  background: linear-gradient(140deg, rgba(15, 26, 48, .95) 0%, rgba(9, 15, 30, .98) 100%);
  border: 1px solid rgba(132, 153, 192, .25);
  border-radius: 18px;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(260px, .8fr);
  gap: 20px 24px;
  align-items: center;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
}
.missing-jersey-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.missing-jersey-eyebrow {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.missing-jersey-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: .03em;
  line-height: .95;
  color: var(--white);
}
.missing-jersey-desc {
  margin: 0;
  color: #9db0ce;
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
}
.missing-jersey-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.missing-jersey-form label {
  display: grid;
  gap: 6px;
}
.missing-jersey-form label span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8ea6cb;
}
.missing-jersey-form input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(88, 106, 138, .45);
  background: rgba(10, 18, 34, .95);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 0 12px;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.missing-jersey-form input:focus {
  border-color: rgba(228, 255, 0, .7);
  box-shadow: 0 0 0 3px rgba(228, 255, 0, .12);
}
.missing-jersey-form .btn-primary {
  justify-content: center;
  width: 100%;
  min-height: 46px;
}
.missing-jersey-form .btn-primary svg {
  width: 16px;
  height: 16px;
}
.missing-jersey-support-list {
  display: grid;
  gap: 6px;
}
.missing-jersey-support-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(120, 188, 146, .45);
  background: rgba(16, 38, 26, .55);
  color: #9df2c7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 0 10px;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.missing-jersey-support-link:hover {
  border-color: rgba(124, 245, 181, .7);
  background: rgba(18, 56, 36, .7);
  color: #c2ffe3;
  transform: translateX(2px);
}
@media (max-width: 980px) {
  .missing-jersey-cta {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}
@media (max-width: 640px) {
  .missing-jersey-title {
    font-size: clamp(30px, 10vw, 40px);
  }
  .missing-jersey-desc {
    font-size: 14px;
  }
  .missing-jersey-form input {
    height: 42px;
    font-size: 14px;
  }
}
.section-title-bold {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 3.5vw, 50px);
  letter-spacing: .05em;
  line-height: 1;
  color: var(--white);
}
.section-title-bold span { color: var(--accent); }

/* Horizontal carousel */
.prod-carousel-wrap {
  position: relative;
  overflow: visible;
}
.prod-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}
.prod-carousel:active { cursor: grabbing; }
.prod-carousel::-webkit-scrollbar { display: none; }
.carousel-item {
  flex: 0 0 230px;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(7,9,12,.9);
  border: 1px solid var(--border2);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--tr);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0,0,0,.55);
}
.carousel-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 22px rgba(228,255,0,.35);
}
.carousel-prev { left: -18px; }
.carousel-next { right: -18px; }

/* =============================================
   PRODUCT CARD
   ============================================= */
.product-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1), border-color .3s ease;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(228,255,0,.2);
  box-shadow: var(--shadow-hover);
}
.prod-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fff;
  flex-shrink: 0;
}
.prod-img-front,
.prod-img-back {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity .4s ease, transform .48s ease;
  will-change: opacity, transform;
}
.prod-img-front { opacity: 1;  transform: scale(1);    z-index: 1; }
.prod-img-back  { opacity: 0;  transform: scale(1.05); z-index: 2; }
/* Flip CSS ativo só quando costas foi carregada com sucesso */
.product-card:not(.no-back):hover .prod-img-front { opacity: 0;  transform: scale(1.05); }
.product-card:not(.no-back):hover .prod-img-back  { opacity: 1;  transform: scale(1);    }
.product-card.show-back .prod-img-front { opacity: 0; transform: scale(1.05); }
.product-card.show-back .prod-img-back  { opacity: 1; transform: scale(1); }
/* Sem costas: zoom suave na frente */
.product-card.no-back:hover .prod-img-front { transform: scale(1.04); }

/* Heart button */
.prod-wish-btn {
  position: absolute;
  top: 9px; right: 9px;
  z-index: 3;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: #aaa;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.prod-wish-btn:hover { color: #e53935; transform: scale(1.12); }
.prod-wish-btn:focus-visible {
  outline: 2px solid rgba(228,255,0,.8);
  outline-offset: 2px;
}
.prod-wish-btn.is-favorite {
  color: #e53935;
  background: rgba(255,255,255,.98);
}
.prod-wish-btn.is-favorite svg path {
  fill: currentColor;
  stroke: currentColor;
}
.prod-wish-btn svg { width: 15px; height: 15px; }

/* Discount badge */
.prod-disc-badge {
  position: absolute;
  top: 9px; left: 9px;
  z-index: 3;
  background: #e53935;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 5px;
}

/* Small badges */
.prod-badges {
  position: absolute; top: 38px; left: 9px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 2;
}
.badge {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 5px;
  white-space: nowrap;
  width: fit-content;
}
.badge-novo    { background: var(--accent3); color: var(--black); }
.badge-oferta  { background: var(--accent2); color: #fff; }
.badge-especial{ background: linear-gradient(135deg, #FFD700, #FF8C00); color: var(--black); }
.badge-jogador { background: var(--accent); color: var(--black); }
.badge-retro   { background: linear-gradient(135deg, #c0a060, #8b6914); color: #fff; }
.badge-pct     { background: rgba(0,230,118,.14); color: var(--green); border: 1px solid rgba(0,230,118,.24); }

/* Product info */
.prod-info {
  padding: 13px 13px 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.prod-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #dce2ef;
  line-height: 1.42;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  letter-spacing: .01em;
}
.prod-sold-count {
  display: inline-flex;
  width: fit-content;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8ea8d2;
  border: 1px solid rgba(142,168,210,.28);
  border-radius: 999px;
  padding: 2px 8px;
}
.prod-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #6a00cc, #4a0090);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(100,0,200,.35);
}
.prod-promo-badge svg { width: 10px; height: 10px; flex-shrink: 0; }
.prod-pricing { display: flex; flex-direction: column; gap: 1px; }
.prod-price-row { display: flex; align-items: baseline; gap: 8px; }
.prod-price {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: .02em;
}
.prod-old {
  font-size: 12px;
  color: var(--muted2);
  text-decoration: line-through;
}
.prod-installment { font-size: 11px; color: var(--muted); }

/* COMPRAR button */
/* === CARD ACTIONS — dois botões lado a lado === */
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}

/* Botão SACOLA — verde, ícone + texto */
.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 11px 8px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 4px 14px rgba(0,180,74,.22);
  white-space: nowrap;
}
.btn-add-cart:hover {
  background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,230,118,.38);
}
.btn-add-cart:disabled {
  opacity: .58;
  cursor: not-allowed;
  filter: grayscale(.2);
  transform: none !important;
  box-shadow: none !important;
}
.btn-add-cart:active { transform: scale(.97); }
.btn-add-cart svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Botão VER PRODUTO — outline accent */
.btn-ver-produto {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 11px 8px;
  border-radius: 9px;
  border: 1.5px solid var(--accent);
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
}
.btn-ver-produto:hover {
  background: var(--accent);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(228,255,0,.25);
}
.btn-ver-produto:active { transform: scale(.97); }

/* Compatibilidade — mantém .btn-comprar para uso eventual em outros contextos */
.btn-comprar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 12px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  margin-top: auto;
  box-shadow: 0 4px 14px rgba(0,180,74,.22);
}
.btn-comprar:hover {
  background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,230,118,.38);
}
.btn-comprar:active { transform: scale(.97); }
.btn-comprar svg { width: 14px; height: 14px; }

/* Stock indicator */
.prod-stock {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted2);
}
.prod-stock-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00b84a;
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(0,184,74,.5);
}
.prod-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 18px;
}
.prod-stock.is-out { color: #ff8e8e; }
.prod-stock.is-out .prod-stock-dot { background: #ff4d4d; box-shadow: 0 0 6px rgba(255,77,77,.45); }
.prod-stock.is-low { color: #ffc86a; }
.prod-stock.is-low .prod-stock-dot { background: #ffb300; box-shadow: 0 0 6px rgba(255,179,0,.45); }
.prod-stock.is-unknown .prod-stock-dot { background: #7f8ea3; box-shadow: 0 0 6px rgba(127,142,163,.32); }
.prod-variation-count {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8ea8d2;
  border: 1px solid rgba(142,168,210,.24);
  border-radius: 999px;
  padding: 2px 8px;
}

.prod-country {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

/* =============================================
   TEAM BADGES STRIP
   ============================================= */
.team-badges-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.team-badges-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.team-badges-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted2);
}
.team-badges-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-badges-carousel {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex: 1;
  cursor: grab;
}
.team-badges-carousel:active { cursor: grabbing; }
.team-badges-carousel::-webkit-scrollbar { display: none; }
.team-badge-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--tr);
  min-width: 82px;
}
.team-badge-item:hover {
  border-color: var(--accent);
  background: rgba(228,255,0,.07);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 22px rgba(0,0,0,.38), 0 0 0 1px rgba(228,255,0,.11);
}
.team-badge-logo {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
}
.team-badge-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
  transition: transform .22s ease;
}
.team-badge-item:hover .team-badge-logo img { transform: scale(1.15); }
.team-badge-name {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}
.team-badge-item:hover .team-badge-name { color: var(--accent); }

/* =============================================
   FILTER BAR
   ============================================= */
/* =============================================
   FILTROS — SISTEMA PREMIUM v3
   ============================================= */
.filter-wrap {
  background: rgba(10,13,19,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 70px;
  z-index: 100;
}
.filter-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.filter-row:last-child { border-bottom: none; }
.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.filter-group-search { min-width: 260px; }
.filter-group-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted2);
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0;
  flex: 1;
}
.filter-chips::-webkit-scrollbar { display: none; }

/* CHIP BASE */
.chip {
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 16px;
  min-height: 36px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
  background: transparent;
  cursor: pointer;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* CHIP HOVER */
.chip:hover {
  border-color: rgba(228,255,0,.4);
  color: var(--white);
  background: rgba(228,255,0,.06);
  transform: translateY(-1px);
}

/* CHIP ACTIVE — forte, inconfundível */
.chip.active {
  background: var(--accent);
  color: #07090C;
  border-color: var(--accent);
  font-weight: 800;
  box-shadow: 0 0 0 0 rgba(228,255,0,0), 0 4px 16px rgba(228,255,0,.32);
  transform: translateY(0);
}
.chip.active:hover { background: #f0ff20; }

/* CHIP PRESS */
.chip:active { transform: scale(.95); }

/* SORT WRAPPER */
.filter-sort { flex-shrink: 0; }
.sort-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 0 12px 0 10px;
  height: 36px;
  cursor: pointer;
  transition: all .18s ease;
}
.sort-wrapper:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}
.sort-wrapper svg:first-child { color: var(--muted); flex-shrink: 0; }
.sort-arrow { color: var(--muted); flex-shrink: 0; pointer-events: none; }
.sort-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  cursor: pointer;
  border: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
}
.sort-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  pointer-events: none;
}

/* =============================================
   PRODUCT PAGE
   ============================================= */
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 28px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted2);
}
.breadcrumb-back {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--tr);
}
.breadcrumb-back:hover {
  border-color: rgba(228,255,0,.5);
  color: var(--accent);
  background: rgba(228,255,0,.08);
}
.breadcrumb a { transition: var(--tr); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--muted2); }
.breadcrumb .current { color: var(--muted); }

.product-detail {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 28px 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Gallery */
.gallery { position: sticky; top: 92px; }
.gallery-main {
  background: #fff;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  cursor: zoom-in;
  margin-bottom: 12px;
  box-shadow: 0 6px 28px rgba(0,0,0,.45);
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.gallery-main:hover img { transform: scale(1.04); }
.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--card2) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-track { background: transparent; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--card2); border-radius: 2px; }
.gallery-thumb {
  width: 82px; height: 82px;
  flex-shrink: 0;
  background: #fff;
  border: 2px solid rgba(255,255,255,.06);
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr);
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}
.gallery-thumb:hover { border-color: var(--border2); }
.gallery-thumb:hover img { transform: scale(1.08); }
.gallery-thumb.active { border-color: var(--accent); border-width: 2.5px; }

/* Product Info Panel */
.prod-detail-country {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
  display: flex; align-items: center; gap: 8px;
}
.prod-detail-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: .04em;
  line-height: .97;
  margin-bottom: 18px;
}
.prod-detail-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.prod-detail-price {
  margin-bottom: 26px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.prod-detail-price::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: .6;
}
.price-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: .02em;
}
.price-old { font-size: 14px; color: var(--muted2); text-decoration: line-through; margin-bottom: 4px; }
.price-discount { font-size: 13px; color: var(--green); font-weight: 700; }
.price-installment { font-size: 14px; color: var(--muted); margin-top: 8px; }
.price-cutoff {
  margin-top: 10px;
  font-size: 12px;
  color: #c9d4e8;
  background: rgba(228,255,0,.06);
  border: 1px solid rgba(228,255,0,.16);
  border-radius: 8px;
  padding: 8px 10px;
}
.price-cutoff strong { color: var(--accent); }

/* Sizes */
.option-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.sizes-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.prod-stock-warning {
  margin: -12px 0 16px;
  font-size: 12px;
  color: #ffcf75;
  border: 1px solid rgba(255,179,0,.35);
  border-radius: 9px;
  padding: 8px 10px;
  background: rgba(255,179,0,.1);
}
.size-btn {
  min-width: 52px; height: 48px;
  padding: 0 14px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
  display: flex; align-items: center; justify-content: center;
}
.size-btn:hover { border-color: rgba(255,255,255,.22); background: var(--card2); transform: translateY(-1px); }
.size-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(228,255,0,.07);
  box-shadow: 0 0 0 1px rgba(228,255,0,.14) inset;
}
.size-btn:active { transform: scale(.95); }

/* CTA */
.prod-ctas { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 10px; margin-bottom: 26px; }
.btn-buy {
  background: var(--accent);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(228,255,0,.25);
}
.btn-buy svg { width: 20px; height: 20px; }
.btn-buy:hover { background: #d4ee00; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(228,255,0,.4); }
.btn-buy:active { transform: scale(.97); }
.btn-frete-prazo {
  background: var(--card2);
  color: #d9e6fa;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 17px 14px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(146,167,196,.35);
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-frete-prazo:hover {
  border-color: rgba(228,255,0,.5);
  color: #f0ff95;
  transform: translateY(-1px);
}
.btn-frete-prazo:active { transform: scale(.97); }
.btn-wpp-buy {
  background: #25D366;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 17px 20px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: var(--tr);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-wpp-buy:hover { background: #1dba58; transform: translateY(-1px); box-shadow: 0 7px 20px rgba(37,211,102,.35); }
.btn-wpp-buy:active { transform: scale(.97); }

/* Sticky mobile conversion bar */
.mobile-buy-bar { display: none; }

/* Benefits inline */
.prod-benefits {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px;
}
.prod-benefit-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 13px;
  color: var(--muted);
}
.prod-benefit-item .icon { font-size: 18px; }

.prod-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.prod-guarantee-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(124,148,181,.22);
  background: linear-gradient(165deg, rgba(20,27,41,.95), rgba(11,15,23,.95));
}

.prod-guarantee-card .g-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(228,255,0,.1);
  color: #dbef7a;
}

.prod-guarantee-card .g-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.prod-guarantee-card .g-copy strong {
  font-size: 12px;
  letter-spacing: .02em;
  color: #f1f6ff;
}

.prod-guarantee-card .g-copy span {
  font-size: 11px;
  line-height: 1.45;
  color: #93a4bf;
}

/* Trust + prazo por CEP (página de produto) */
.prod-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 14px;
}

.prod-trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(228,255,0,.28);
  background: rgba(228,255,0,.08);
  color: #deef7e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.prod-cep-box {
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(148,168,199,.24);
  background: linear-gradient(170deg, rgba(20,27,41,.94), rgba(12,17,27,.96));
}

.prod-cep-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b8c7dc;
  margin-bottom: 9px;
}

.prod-cep-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.prod-cep-row input {
  width: 100%;
  min-width: 0;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #2a3854;
  background: #0e1522;
  color: #fff;
  padding: 0 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.prod-cep-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(228,255,0,.14);
  background: #111a2a;
}

.prod-cep-row button {
  height: 44px;
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  background: linear-gradient(135deg, #e4ff00, #cfe600);
  color: #07090C;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 8px 18px rgba(228,255,0,.2);
}

.prod-cep-row button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 10px 22px rgba(228,255,0,.27);
}

.prod-cep-result {
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid rgba(148,168,199,.2);
  background: rgba(9,14,22,.65);
  color: #90a2bf;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
}

.prod-cep-result strong {
  color: #eff5ff;
}

.prod-cep-result span {
  color: #8a9ab4;
}

.prod-cep-result.ok {
  border-color: rgba(0,230,118,.28);
  background: rgba(0,200,83,.1);
  color: #7de7b9;
}

.prod-cep-result.ok span {
  color: #96dcbc;
}

.prod-cep-result.error {
  border-color: rgba(255,82,82,.36);
  background: rgba(255,82,82,.12);
  color: #ff9a9a;
}

.prod-cep-result.loading {
  border-color: rgba(64,196,255,.33);
  background: rgba(64,196,255,.12);
  color: #9bdfff;
}

/* Tabs */
.prod-tabs { margin-top: 32px; }
.tab-btns { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 20px;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: var(--tr);
}
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.tab-panel table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tab-panel table th,
.tab-panel table td { padding: 12px 16px; text-align: left; border: 1px solid var(--border); }
.tab-panel table th { background: var(--card2); font-family: 'Oswald', sans-serif; font-weight: 600; color: var(--muted); }

/* Reviews do produto */
.prod-reviews {
  margin-top: 24px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(124,148,181,.24);
  background: linear-gradient(168deg, rgba(20,27,41,.96), rgba(10,14,22,.97));
}
.prod-reviews-head h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #edf4ff;
  margin-bottom: 6px;
}
.prod-reviews-head p {
  font-size: 13px;
  color: #95a7c2;
  line-height: 1.6;
  margin-bottom: 14px;
}
.prod-reviews-list { display: grid; gap: 10px; }
.prod-review-item {
  border: 1px solid rgba(116,137,164,.28);
  border-radius: 10px;
  background: rgba(9,14,22,.7);
  padding: 12px 13px;
}
.prod-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.prod-review-author strong { font-size: 13px; color: #eef4ff; display: block; }
.prod-review-author span { font-size: 11px; color: #8a9cb9; }
.prod-review-stars { font-size: 12px; letter-spacing: 1px; color: #ffdb66; white-space: nowrap; }
.prod-review-text { font-size: 13px; color: #b7c5da; line-height: 1.65; }
.prod-review-foot {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.prod-review-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #a8ffc9;
  border: 1px solid rgba(32,212,131,.35);
  border-radius: 999px;
  padding: 3px 8px;
}
.prod-review-photo {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(146,167,196,.32);
  background: var(--card2);
}
.prod-review-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-reviews-empty { color: #8ea1bc; font-size: 13px; }

/* Perguntas do produto */
.prod-questions {
  margin-top: 24px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(124,148,181,.24);
  background: linear-gradient(168deg, rgba(20,27,41,.96), rgba(10,14,22,.97));
}

.prod-questions-head h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #edf4ff;
  margin-bottom: 6px;
}

.prod-questions-head p {
  font-size: 13px;
  color: #95a7c2;
  line-height: 1.6;
  margin-bottom: 14px;
}

.prod-questions-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.prod-question-item {
  border: 1px solid rgba(116,137,164,.28);
  border-radius: 10px;
  background: rgba(9,14,22,.7);
  padding: 12px 13px;
}

.prod-question-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.prod-question-meta strong {
  color: #eef4ff;
  font-size: 13px;
}

.prod-question-meta span {
  color: #8a9cb9;
  font-size: 11px;
  white-space: nowrap;
}

.prod-question-text {
  font-size: 13px;
  color: #b7c5da;
  line-height: 1.65;
}

.prod-question-answer {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(228,255,0,.22);
  background: rgba(228,255,0,.08);
}

.prod-question-answer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
}

.prod-question-answer-head strong {
  font-size: 12px;
  color: #e2ef85;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.prod-question-answer-head span {
  font-size: 10px;
  color: #aebc78;
  white-space: nowrap;
}

.prod-question-answer p {
  color: #dce7b3;
  font-size: 12px;
  line-height: 1.6;
}

.prod-question-empty {
  padding: 12px;
  border-radius: 10px;
  border: 1px dashed rgba(120,143,172,.28);
  background: rgba(10,16,25,.55);
  color: #8fa3c2;
  font-size: 12px;
  line-height: 1.5;
}

.prod-question-empty.loading {
  color: #9bb8da;
  border-style: solid;
}

.prod-question-form {
  border-top: 1px solid rgba(126,146,172,.2);
  padding-top: 14px;
}

.prod-question-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.prod-question-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.prod-question-field label {
  font-size: 11px;
  color: #9dafc8;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.prod-question-field input,
.prod-question-field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(50,64,91,.92);
  background: #0f1725;
  color: #eff4ff;
  padding: 11px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.prod-question-field textarea {
  resize: vertical;
  min-height: 96px;
}

.prod-question-field input::placeholder,
.prod-question-field textarea::placeholder {
  color: #7f8fa8;
}

.prod-question-field input:focus,
.prod-question-field textarea:focus {
  border-color: rgba(228,255,0,.75);
  box-shadow: 0 0 0 3px rgba(228,255,0,.14);
  background: #131d2e;
}

.prod-question-submit {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #e4ff00, #d3ea00);
  color: #07090C;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 10px 24px rgba(228,255,0,.24);
}

.prod-question-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 12px 28px rgba(228,255,0,.32);
}

.prod-question-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.prod-question-feedback {
  margin-top: 10px;
  min-height: 18px;
  font-size: 12px;
  color: #8ea3c0;
}

.prod-question-feedback.success { color: #5de2a4; }
.prod-question-feedback.error { color: #ff8b8b; }
.prod-question-feedback.warning { color: #ffca6f; }
.prod-question-feedback.info { color: #9bc3f2; }

/* Recuperação de carrinho */
.cart-recovery-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2200;
  background: #0f1828;
  border: 1px solid rgba(228,255,0,.32);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
  padding: 12px;
  display: none;
  align-items: center;
  gap: 12px;
  max-width: min(92vw, 460px);
}
.cart-recovery-banner.show { display: flex; }
.cart-recovery-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-recovery-copy strong {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #f2ffd0;
  font-size: 16px;
}
.cart-recovery-copy span {
  color: #a9bad2;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-recovery-actions { display: flex; align-items: center; gap: 8px; }
.cart-recovery-btn {
  border: none;
  border-radius: 9px;
  background: var(--accent);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 12px;
  cursor: pointer;
  white-space: nowrap;
}
.cart-recovery-close {
  border: 1px solid rgba(146,167,196,.34);
  border-radius: 9px;
  background: transparent;
  color: #a8b7cc;
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

/* =============================================
   BENEFITS BAR
   ============================================= */
.benefits-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.benefits-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 24px;
  border-right: 1px solid var(--border);
  transition: var(--tr);
}
.benefit-item:last-child { border-right: none; }
.benefit-item:hover { background: rgba(255,255,255,.025); }
.benefit-icon { font-size: 28px; flex-shrink: 0; }
.benefit-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.benefit-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -12px; right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  color: var(--accent);
  opacity: .05;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: rgba(228,255,0,.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}
.stars { color: #FFD700; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { color: #8090aa; font-size: 14px; line-height: 1.8; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  color: var(--black);
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 14px; }
.author-loc { font-size: 12px; color: var(--muted2); }

/* =============================================
   CART DRAWER
   ============================================= */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--dark);
  border-left: 1px solid var(--border);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header h3 { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600; }
.cart-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 18px;
  cursor: pointer; transition: var(--tr);
  border: 1px solid var(--border);
}
.cart-close:hover { color: var(--white); background: rgba(255,255,255,.1); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--muted); }
.cart-empty-icon { font-size: 60px; margin-bottom: 16px; }
.cart-empty h4 { font-family: 'Oswald', sans-serif; font-size: 20px; margin-bottom: 8px; }

.cart-item {
  display: flex; gap: 14px; align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 80px; height: 80px; flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; line-height: 1.3; margin-bottom: 4px; }
.cart-item-size { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.cart-item-price { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: var(--accent); }
.cart-item-qty {
  display: flex; align-items: center; gap: 0;
  margin-top: 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 32px; height: 32px;
  background: var(--card);
  color: var(--white);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--tr);
  border: none; border-radius: 0;
  font-family: inherit;
}
.qty-btn:hover { background: var(--card2); }
.qty-num { width: 36px; text-align: center; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; }
.cart-item-remove {
  color: var(--muted2); font-size: 18px; cursor: pointer; transition: var(--tr);
  padding: 4px; flex-shrink: 0;
  background: none; border: none;
}
.cart-item-remove:hover { color: var(--accent2); }

.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-summary { margin-bottom: 16px; }
.cart-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; font-size: 14px; color: var(--muted); }
.cart-row.total { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); border-top: 1px solid var(--border); padding-top: 13px; margin-top: 13px; }
.cart-row.total .price { color: var(--accent); }
.btn-checkout {
  width: 100%;
  background: var(--accent);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: var(--tr);
  margin-bottom: 10px;
}
.btn-checkout:hover { background: #ccee00; box-shadow: 0 8px 24px rgba(228,255,0,.28); }
.btn-continue {
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--tr);
}
.btn-continue:hover { color: var(--white); border-color: var(--border2); }

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.checkout-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 28px 88px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}
.checkout-form h2 { font-family: 'Oswald', sans-serif; font-size: 28px; margin-bottom: 24px; }
.form-section { margin-bottom: 32px; }
.form-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted2); }
.form-group input,
.form-group select {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 12px 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--tr);
}
.form-group input:focus,
.form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(228,255,0,.08); }
.form-group input::placeholder { color: var(--muted2); }
.form-group select option { background: var(--dark); }

.rv-turnstile-wrap {
  margin-top: 12px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.rv-turnstile-slot {
  width: 100%;
  max-width: 360px;
  min-height: 66px;
}

.cart-summary-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: 92px;
}
.cart-summary-panel h3 { font-family: 'Oswald', sans-serif; font-size: 18px; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.cart-summary-panel .summary-items { margin-bottom: 20px; }
.cart-summary-panel .summary-item { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; font-size: 13px; color: var(--muted); }
.cart-summary-panel .summary-item img { width: 50px; height: 50px; object-fit: contain; background: #fff; border-radius: 7px; }
.cart-summary-panel .summary-item-name { flex: 1; font-size: 12px; line-height: 1.4; }
.cart-summary-panel .summary-item-price { font-family: 'Oswald', sans-serif; font-size: 15px; color: var(--white); font-weight: 600; white-space: nowrap; }
.cart-summary-panel .summary-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.cart-summary-panel .summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; color: var(--muted); }
.cart-summary-panel .summary-total { display: flex; justify-content: space-between; font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.cart-summary-panel .summary-total span:last-child { color: var(--accent); }

/* Sacola página (renderização via app.js) */
.cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 40px;
  align-items: start;
}
.cart-page-items { min-width: 0; }
.cart-page-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
}
.cart-page-item-info { flex: 1; min-width: 0; }
.cart-page-item-price { font-size: 22px; margin-top: 8px; }
.cart-page-item-qty { margin-top: 10px; }
.cart-page-btn-main { margin-top: 20px; }
.cart-page-btn-secondary { margin-top: 10px; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: var(--dark);
  padding: 88px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.about-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 8vw, 120px); letter-spacing: .04em; margin-bottom: 18px; }
.about-hero h1 span { color: var(--accent); }
.about-hero p { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto; line-height: 1.75; }
.about-content { max-width: 900px; margin: 0 auto; padding: 80px 28px; }
.about-content p { color: var(--muted); font-size: 16px; line-height: 1.85; margin-bottom: 24px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 64px 0; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 24px; text-align: center; transition: var(--tr); }
.value-card:hover { border-color: rgba(228,255,0,.18); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.35); }
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-title { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-wrap { max-width: 1000px; margin: 0 auto; padding: 60px 28px 88px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-family: 'Bebas Neue', sans-serif; font-size: 56px; letter-spacing: .04em; margin-bottom: 16px; }
.contact-info h2 span { color: var(--accent); }
.contact-info p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 16px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--tr); }
.contact-item:hover { border-color: var(--border2); transform: translateX(4px); }
.contact-item-icon { font-size: 22px; }
.contact-item-text { font-size: 14px; color: var(--muted); }
.contact-item-text strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 2px; }
.contact-form-wrap h3 { font-family: 'Oswald', sans-serif; font-size: 24px; text-transform: uppercase; margin-bottom: 24px; }
.btn-submit { width: 100%; }
.contact-proof-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 18px;
}
.contact-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(228,255,0,.24);
  background: rgba(228,255,0,.08);
  color: #d9ec7d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-form-feedback {
  margin-top: 16px;
  min-height: 22px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted2);
}
.contact-form-feedback.success { color: #20d483; }
.contact-form-feedback.error { color: #ff6b6b; }
.contact-form-feedback.warning { color: #ffcf5b; }
.contact-form-feedback.info { color: #9fb2cc; }
.contact-form-wrap .btn-submit[disabled] {
  opacity: .72;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 0 4px 18px rgba(228,255,0,.12);
}
.contact-form-hint {
  margin-top: 12px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.5;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 60px 28px 88px; }
.legal-wrap h1 { font-family: 'Oswald', sans-serif; font-size: 40px; text-transform: uppercase; margin-bottom: 8px; }
.legal-wrap .updated { font-size: 13px; color: var(--muted2); margin-bottom: 40px; }
.legal-wrap h2 { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; text-transform: uppercase; margin: 32px 0 12px; color: var(--white); }
.legal-wrap p { color: var(--muted); font-size: 14px; line-height: 1.85; margin-bottom: 16px; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap ul li { color: var(--muted); font-size: 14px; line-height: 1.85; margin-bottom: 8px; list-style: disc; }

/* =============================================
   FOOTER — Premium
   ============================================= */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 28px 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo { margin-bottom: 18px; }
.footer-logo .logo { font-size: 34px; }
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 280px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 16px;
  transition: var(--tr);
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(228,255,0,.07);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 5px 16px rgba(0,0,0,.4);
}
.social-btn[title="Instagram"]:hover { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,.06); }
.social-btn[title="Facebook"]:hover  { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,.06); }
.social-btn[title="TikTok"]:hover    { border-color: #ff0050; color: #ff0050; background: rgba(255,0,80,.06); }
.social-btn[title="YouTube"]:hover   { border-color: #ff2d2d; color: #ff2d2d; background: rgba(255,45,45,.08); }
.social-btn svg { display: block; }

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 18px;
  color: var(--white);
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 28px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--muted2); }
.payment-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.payment-icon {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  font-family: 'Oswald', sans-serif;
  letter-spacing: .06em;
}

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 270px;
  max-width: 80vw;
  background: var(--dark);
  border-right: 1px solid var(--border);
  z-index: 1500;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-header button { font-size: 22px; color: var(--muted); background: none; border: none; cursor: pointer; }
.mobile-links { padding: 20px; flex: 1; }
.mobile-links a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  transition: var(--tr);
}
.mobile-links a:last-child { border-bottom: none; }
.mobile-links a:hover, .mobile-links a.active { color: var(--white); }
.mobile-links a.promo-link { color: var(--accent2); }
.mobile-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 16px 20px;
  margin: 20px;
  border-radius: 12px;
  transition: var(--tr);
  text-decoration: none;
}
.mobile-whatsapp:hover { background: #1dba58; }

/* =============================================
   TOAST
   ============================================= */
.toast {
  position: fixed;
  right: 22px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  left: auto;
  transform: translateY(20px) scale(.97);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(92vw, 430px);
  padding: 13px 16px 14px;
  border-radius: 14px;
  border: 1px solid rgba(147,167,194,.25);
  background:
    linear-gradient(135deg, rgba(18,24,38,.96), rgba(10,14,22,.94)),
    radial-gradient(500px 130px at 0% 0%, rgba(255,255,255,.04), transparent 70%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 14px 38px rgba(0,0,0,.46),
    inset 0 1px 0 rgba(255,255,255,.06);
  z-index: 9000;
  transition: opacity .22s ease, transform .3s cubic-bezier(.22,.8,.27,1);
  overflow: hidden;
}
.toast::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #e4ff00, #9aad00);
  opacity: .9;
}
.toast::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(228,255,0,.95), rgba(228,255,0,.45));
  transform-origin: left center;
  transform: scaleX(0);
  opacity: .92;
}
.toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  font-size: 15px;
  font-weight: 700;
  color: #c8d7f1;
  background: rgba(151,170,198,.12);
  border: 1px solid rgba(151,170,198,.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.toast-text {
  min-width: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.35;
  color: #e7edf8;
  white-space: normal;
  overflow-wrap: anywhere;
}
.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.toast.show::after {
  animation: toast-progress var(--toast-duration, 3200ms) linear forwards;
}
@keyframes toast-progress {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}
.toast.success {
  border-color: rgba(0,230,118,.35);
}
.toast.success::before {
  background: linear-gradient(180deg, #00ea76, #009e4f);
}
.toast.success .toast-icon {
  color: #00ea76;
  background: rgba(0,230,118,.14);
  border-color: rgba(0,230,118,.32);
}
.toast.error {
  border-color: rgba(255,95,95,.38);
}
.toast.error::before {
  background: linear-gradient(180deg, #ff6f6f, #b93030);
}
.toast.error .toast-icon {
  color: #ff7f7f;
  background: rgba(255,82,82,.14);
  border-color: rgba(255,82,82,.34);
}
.toast.warning {
  border-color: rgba(255,190,52,.4);
}
.toast.warning::before {
  background: linear-gradient(180deg, #ffbf3a, #b87d0f);
}
.toast.warning .toast-icon {
  color: #ffbf3a;
  background: rgba(255,179,0,.15);
  border-color: rgba(255,179,0,.34);
}
.toast.info {
  border-color: rgba(94,167,255,.38);
}
.toast.info::before {
  background: linear-gradient(180deg, #72b8ff, #2f6fbb);
}
.toast.info .toast-icon {
  color: #85c6ff;
  background: rgba(64,143,255,.16);
  border-color: rgba(64,143,255,.34);
}

/* =============================================
   OFFERS STRIP
   ============================================= */
.offers-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.offers-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
}
.offer-promo { padding: 52px 44px; border-right: 1px solid var(--border); }
.offer-tag {
  display: inline-block;
  background: var(--accent2);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 5px;
  margin-bottom: 16px;
}
.offer-promo h3 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: .04em; line-height: 1; margin-bottom: 12px; }
.offer-promo h3 span { color: var(--accent); }
.offer-promo p { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.offer-products-list { padding: 32px 40px; }
.offer-products-list h4 { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 20px; }
.offer-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.offer-item {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr);
}
.offer-item:hover { border-color: var(--accent); transform: translateY(-3px); }
.offer-item img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; }
.offer-item-info { padding: 8px 10px; }
.offer-item-name { font-size: 11px; color: var(--muted); line-height: 1.3; }
.offer-item-price { font-family: 'Oswald', sans-serif; font-size: 15px; color: var(--accent); font-weight: 700; }

/* =============================================
   PAGE TITLE BAR
   ============================================= */
.page-title-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 44px 28px;
}
.page-title-inner { max-width: var(--max); margin: 0 auto; }
.page-title-bar h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 72px); letter-spacing: .04em; line-height: 1; }
.page-title-bar h1 span { color: var(--accent); }
.page-title-bar p { color: var(--muted); margin-top: 8px; font-size: 15px; }

/* =============================================
   LOAD MORE
   ============================================= */
.load-more-wrap { text-align: center; margin-top: 52px; }
.btn-load-more {
  background: none;
  border: 1.5px solid var(--border2);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 44px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--tr);
}
.btn-load-more:hover { border-color: var(--accent); color: var(--accent); background: rgba(228,255,0,.04); }

/* =============================================
   RELATED PRODUCTS
   ============================================= */
.related-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 0;
}
.related-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* =============================================
   MEGA MENU
   ============================================= */
.nav-mega-wrap { position: relative; overflow: visible; }
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  grid-template-columns: repeat(3, minmax(168px, 1fr));
  gap: 10px;
  min-width: 580px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(183,204,232,.24);
  background:
    linear-gradient(165deg, rgba(18,24,37,.96) 0%, rgba(11,16,28,.98) 55%, rgba(8,12,20,.98) 100%),
    radial-gradient(100% 120% at 0% 0%, rgba(228,255,0,.1) 0%, transparent 42%);
  box-shadow:
    0 26px 70px rgba(0,0,0,.62),
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 14px 30px rgba(3,9,20,.45);
  backdrop-filter: blur(8px);
  max-height: min(74vh, 640px);
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 1100;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  border-left: 1px solid rgba(183,204,232,.24);
  border-top: 1px solid rgba(183,204,232,.24);
  background: linear-gradient(145deg, rgba(20,28,43,.96), rgba(11,16,28,.96));
}
.mega-menu.mega-menu-br {
  grid-template-columns: repeat(4, minmax(148px, 1fr));
  min-width: 740px;
}
.mega-menu.mega-menu-eu {
  grid-template-columns: repeat(4, minmax(148px, 1fr));
  min-width: 740px;
}
.nav-mega-wrap.open .mega-menu,
.nav-mega-wrap:hover .mega-menu { display: grid; }
.mega-col {
  --league-color: #8da4c8;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012));
  border: 1px solid rgba(143,164,194,.2);
  border-radius: 12px;
  padding: 12px 12px 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.mega-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(137,157,186,.22);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #eff4ff;
}
.mega-col-icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .07em;
  color: #061014;
  background: var(--league-color);
  box-shadow: 0 8px 20px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.25);
}
.mega-col a {
  position: relative;
  display: block;
  padding: 8px 10px 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #b8c7dd;
  border-radius: 9px;
  transition: color .18s ease, background .18s ease, transform .18s ease;
  cursor: pointer;
}
.mega-col a::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--league-color);
  box-shadow: 0 0 10px rgba(255,255,255,.2);
}
.mega-col a:hover {
  color: #f7fbff;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  transform: translateX(2px);
}
.mega-col a.mega-all-link {
  margin-top: 2px;
  color: #e9ff68;
  font-weight: 600;
  background: linear-gradient(90deg, rgba(228,255,0,.14), rgba(228,255,0,.04));
}
.mega-col a.mega-all-link::before {
  width: 5px;
  height: 5px;
  background: #e9ff68;
}

.mega-col.league-sp       { --league-color: #6bbdff; }
.mega-col.league-rj       { --league-color: #ff8f7a; }
.mega-col.league-sul      { --league-color: #9aff86; }
.mega-col.league-ne       { --league-color: #f8c36f; }
.mega-col.league-laliga   { --league-color: #ff8a80; }
.mega-col.league-premier  { --league-color: #6ea6ff; }
.mega-col.league-uefa     { --league-color: #b59bff; }
.mega-col.league-americas { --league-color: #67e7cb; }
.mega-col.league-europa   { --league-color: #8cb8ff; }
.mega-col.league-mundo    { --league-color: #ffd36f; }

/* Nav special links */
.nav-promo, .nav-jogador, .nav-craques, .nav-retro, .nav-rastreio {
  color: var(--white) !important;
  font-weight: 500 !important;
}
.nav-promo:hover, .nav-jogador:hover, .nav-craques:hover, .nav-retro:hover, .nav-rastreio:hover {
  background: rgba(255,255,255,.07) !important;
}

/* =============================================
   MOBILE SECTION TITLES
   ============================================= */
.mobile-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 14px 0 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}
.mobile-sub {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 10px 0 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--muted);
  transition: var(--tr);
  cursor: pointer;
  text-decoration: none;
}
.mobile-sub:hover { color: var(--white); }
.mobile-ver-todos { color: var(--accent) !important; font-size: 13px !important; }
.mobile-jogador { color: #5bc8ff !important; }
.mobile-craques { color: #FFD700 !important; }

/* =============================================
   PROMO PAGUE 2 LEVE 3
   ============================================= */
.promo-2-3-banner {
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.5;
  text-align: center;
}
.promo-2-3-banner.hint {
  background: rgba(228,255,0,.05);
  border: 1px solid rgba(228,255,0,.14);
  color: var(--muted);
}
.promo-2-3-banner.progress {
  background: rgba(255,150,0,.07);
  border: 1px solid rgba(255,150,0,.22);
  color: #ffaa44;
}
.promo-2-3-banner.active {
  background: rgba(0,230,118,.09);
  border: 1px solid rgba(0,230,118,.28);
  color: var(--green);
}

/* =============================================
   VERSAO JOGADOR BANNER
   ============================================= */
.jogador-banner {
  background: linear-gradient(135deg, #091526 0%, #0c1f3c 50%, #07101a 100%);
  border-top: 1px solid rgba(91,200,255,.14);
  border-bottom: 1px solid rgba(91,200,255,.14);
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.jogador-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: 20%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(91,200,255,.06), transparent 70%);
  pointer-events: none;
}
.jogador-banner:hover { filter: brightness(1.07); }
.jogador-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.jogador-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #5bc8ff;
  margin-bottom: 10px;
}
.jogador-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.jogador-title span { color: #5bc8ff; }
.jogador-desc { font-size: 15px; color: var(--muted); max-width: 440px; line-height: 1.75; margin-bottom: 26px; }
.jogador-banner-imgs { display: flex; gap: 12px; }
.jogador-img-card {
  width: 110px;
  background: rgba(91,200,255,.04);
  border: 1px solid rgba(91,200,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.jogador-img-card:nth-child(2) { margin-top: 22px; }
.jogador-img-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  object-position: top;
  background: linear-gradient(to bottom, #1a2a3e, #0e1a2c);
  transition: transform .4s ease;
}
.jogador-banner:hover .jogador-img-card img { transform: scale(1.05); }

/* =============================================
   CRAQUES
   ============================================= */
.craques-mini-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.craque-mini {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr);
}
.craque-mini:hover { transform: translateY(-5px); border-color: rgba(255,215,0,.22); box-shadow: 0 10px 28px rgba(0,0,0,.45); }
.craque-mini-img { aspect-ratio: 3/4; background: linear-gradient(160deg, #1d2438, #0e1420); overflow: hidden; }
.craque-mini-img img { width: 100%; height: 100%; object-fit: contain; object-position: top; transition: transform .4s ease; padding: 4px 0 0; }
.craque-mini:hover .craque-mini-img img { transform: scale(1.07); }
.craque-mini-info { padding: 10px 10px 12px; text-align: center; }
.craque-mini-emoji { font-size: 18px; margin-bottom: 4px; }
.craque-mini-name { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--white); margin-bottom: 2px; }
.craque-mini-flag { font-size: 14px; }

.craques-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.craque-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: var(--tr); }
.craque-card:hover { transform: translateY(-5px); border-color: rgba(255,215,0,.2); box-shadow: 0 14px 44px rgba(0,0,0,.55); }
.craque-card-imgs { display: grid; grid-template-columns: repeat(3, 1fr); aspect-ratio: 3/1; background: linear-gradient(160deg, #1d2438, #0e1420); overflow: hidden; }
.craque-card-imgs img { width: 100%; height: 100%; object-fit: contain; object-position: top; transition: transform .4s ease; }
.craque-card:hover .craque-card-imgs img { transform: scale(1.05); }
.craque-card-info { padding: 22px; text-align: center; }
.craque-emoji { font-size: 28px; margin-bottom: 6px; }
.craque-flag  { font-size: 22px; margin-bottom: 8px; }
.craque-name  { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: .04em; color: var(--white); margin-bottom: 4px; }
.craque-count { font-size: 13px; color: var(--muted); margin-bottom: 4px; }

/* =============================================
   RASTREIO PAGE
   ============================================= */
.rastreio-wrap { max-width: 900px; margin: 0 auto; padding: 52px 28px 88px; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.rastreio-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 38px 32px; text-align: center; }
.rastreio-icon { font-size: 48px; margin-bottom: 16px; }
.rastreio-card h2 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: .04em; margin-bottom: 10px; }
.rastreio-card p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.rastreio-input {
  width: 100%;
  background: var(--dark);
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: var(--tr);
  text-align: center;
}
.rastreio-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(228,255,0,.08); }
.rastreio-input::placeholder { color: var(--muted2); }
.rastreio-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--muted2); font-size: 13px; }
.rastreio-divider::before, .rastreio-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.btn-whatsapp-full {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 10px;
  transition: var(--tr);
  text-decoration: none;
}
.btn-whatsapp-full:hover { background: #1dba58; transform: translateY(-2px); box-shadow: 0 7px 22px rgba(37,211,102,.3); }
.rastreio-info h3 { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 24px; }
.rastreio-steps { display: flex; flex-direction: column; gap: 14px; }
.rastreio-step { display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: var(--tr); }
.rastreio-step:hover { border-color: var(--border2); }
.rstep-num { width: 32px; height: 32px; background: var(--accent); color: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 18px; flex-shrink: 0; }
.rstep-title { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.rstep-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* =============================================
   BIG PROMO SLIDER
   ============================================= */
.big-promo-slider { position: relative; overflow: hidden; background: var(--black); border-bottom: 1px solid var(--border); user-select: none; }
.big-slider-track { position: relative; }
.big-slide { display: none; position: relative; width: 100%; cursor: pointer; }
.big-slide.active { display: block; animation: bigSlideIn .45s cubic-bezier(.4,0,.2,1); }
.big-slide-picture { display: block; width: 100%; }
@keyframes bigSlideIn { from { opacity: 0; } to { opacity: 1; } }
.big-slide-img { display: block; width: 100%; height: auto; aspect-ratio: 1400 / 500; object-fit: cover; object-position: center; transition: transform .5s ease; }
.big-slide:hover .big-slide-img { transform: scale(1.016); }
.big-slide-placeholder { width: 100%; aspect-ratio: 1400 / 500; background: #0a0e14; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: 2px dashed rgba(255,255,255,.08); cursor: pointer; transition: var(--tr); }
.big-slide-placeholder:hover { border-color: rgba(255,255,255,.18); background: #0d1018; }
.big-slide-counter { position: absolute; bottom: 58px; left: 28px; font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: .14em; color: rgba(255,255,255,.45); z-index: 5; pointer-events: none; }
.big-slider-arrow { position: absolute; top: calc(50% - 30px); transform: translateY(-50%); z-index: 10; width: 48px; height: 48px; border-radius: 50%; background: rgba(7,9,12,.75); border: 1px solid rgba(255,255,255,.14); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--tr); backdrop-filter: blur(10px); }
.big-slider-arrow:hover { background: rgba(228,255,0,.16); border-color: rgba(228,255,0,.45); color: var(--accent); }
.big-slider-prev { left: 20px; }
.big-slider-next { right: 20px; }
.big-slider-footer { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%); padding: 0 28px; }
.big-slider-dots { max-width: var(--max); margin: 0 auto; display: flex; gap: 4px; padding: 0 68px; }
.big-slider-dot { flex: 1; background: none; border: none; cursor: pointer; padding: 12px 6px 14px; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; transition: var(--tr); min-width: 0; }
.big-dot-label { font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.38); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; transition: var(--tr); }
.big-slider-dot.active .big-dot-label { color: rgba(255,255,255,.88); }
.big-dot-bar { width: 100%; height: 2px; background: rgba(255,255,255,.14); border-radius: 1px; overflow: hidden; }
.big-dot-fill { height: 100%; width: 0%; background: var(--accent); border-radius: 1px; }
.big-dot-fill.filling { animation: dotFill 6s linear forwards; }
@keyframes dotFill { from { width: 0%; } to { width: 100%; } }

/* ─── TOP SELLER badge ─── */
.prod-topseller-badge { position: absolute; top: 38px; left: 9px; z-index: 3; background: linear-gradient(135deg, #FFD700, #FF8C00); color: #1a0800; font-family: 'Oswald', sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; box-shadow: 0 2px 8px rgba(255,180,0,.4); }

/* =============================================
   ICON CSS
   ============================================= */
.benefit-icon svg,
.benefit-icon {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
  width: 46px; height: 46px;
  background: rgba(228,255,0,.07);
  border-radius: 11px;
}
.prod-benefit-item .icon svg,
.prod-benefit-item .icon { color: var(--accent); display: flex; align-items: center; }
.value-icon {
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px;
  background: rgba(228,255,0,.07);
  border-radius: 14px;
  margin: 0 auto 18px;
  color: var(--accent);
}
.contact-item-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: var(--card2); color: var(--accent); flex-shrink: 0; }
.contact-item-icon svg { color: inherit; }
.rastreio-icon { display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; border-radius: 50%; background: rgba(228,255,0,.06); border: 1px solid rgba(228,255,0,.14); margin: 0 auto 22px; color: var(--accent); }
.cart-empty-icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; color: var(--muted2); }

/* Social buttons */
.social-btn { width: 38px; height: 38px; background: var(--card); border: 1px solid var(--border); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: var(--tr); cursor: pointer; text-decoration: none; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(228,255,0,.07); transform: translateY(-2px) scale(1.1); box-shadow: 0 5px 16px rgba(0,0,0,.4); }
.social-btn[title="Instagram"]:hover { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,.06); }
.social-btn[title="Facebook"]:hover  { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,.06); }
.social-btn[title="TikTok"]:hover    { border-color: #ff0050; color: #ff0050; background: rgba(255,0,80,.06); }
.social-btn[title="YouTube"]:hover   { border-color: #ff2d2d; color: #ff2d2d; background: rgba(255,45,45,.08); }
.social-btn svg { display: block; }

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--card2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted2); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp .5s ease forwards; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .17s; }
.reveal-delay-3 { transition-delay: .26s; }

/* =============================================
   COUNTDOWN COPA 2026
   ============================================= */
.countdown-section { background: var(--black); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 52px 28px; text-align: center; position: relative; overflow: hidden; }
.countdown-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(228,255,0,.04), transparent); pointer-events: none; }
.countdown-eyebrow { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.countdown-eyebrow::before, .countdown-eyebrow::after { content: ''; width: 40px; height: 1px; background: linear-gradient(to right, transparent, var(--accent)); }
.countdown-eyebrow::after { background: linear-gradient(to left, transparent, var(--accent)); }
.countdown-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 52px); letter-spacing: .04em; color: var(--white); margin-bottom: 36px; line-height: 1; }
.countdown-title span { color: var(--accent); }
.countdown-digits { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.countdown-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 7vw, 90px); line-height: 1; color: var(--accent); background: var(--card); border: 1px solid rgba(228,255,0,.18); border-radius: var(--radius); min-width: 112px; padding: 14px 18px; letter-spacing: .04em; position: relative; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.4); }
.countdown-num::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(228,255,0,.04), transparent); pointer-events: none; }
.countdown-lbl { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.countdown-sep { font-family: 'Bebas Neue', sans-serif; font-size: 62px; color: var(--muted2); line-height: 1; margin-bottom: 26px; animation: blink 1s ease infinite; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-inner { grid-template-columns: repeat(2, 1fr); }
  .benefit-item:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .craques-mini-grid { grid-template-columns: repeat(3, 1fr); }
  .mega-menu { min-width: 500px; }
  .mega-menu.mega-menu-br {
    min-width: 620px;
    grid-template-columns: repeat(4, minmax(132px, 1fr));
  }
  .mega-menu.mega-menu-eu {
    min-width: 620px;
    grid-template-columns: repeat(4, minmax(132px, 1fr));
  }
}

@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card:first-child { grid-column: span 3; }
  .cat-card-promo {
    grid-column: span 1;
    grid-template-columns: 1fr;
    min-height: 240px;
  }
  .cat-promo-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cat-promo-thumb {
    min-height: 132px;
  }
  .cat-promo-title {
    font-size: clamp(28px, 4vw, 38px);
  }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-imgs { display: none; }
  .hero { min-height: auto; }
  .hero-content { padding: 60px 28px; }
  .jogador-banner-inner { grid-template-columns: 1fr; }
  .jogador-banner-imgs { display: none; }
  .craques-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   MOBILE PREMIUM — RV SPORT STORE
   Mobile-first: 320px → 480px foco principal
   Também cobre 390px, 414px, 430px (iPhone/Android)
   ============================================= */

@media (max-width: 768px) {

  /* ── NAV / HEADER ── */
  .nav         { display: none; }
  .btn-whatsapp { display: none; }
  .hamburger   { display: flex; }

  /* ── GRIDS ── */
  .products-grid      { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .cat-grid           { grid-template-columns: repeat(2, 1fr); }
  .cat-card:first-child { grid-column: span 2; }
  .benefits-inner     { grid-template-columns: 1fr 1fr; }
  .footer-top         { grid-template-columns: 1fr 1fr; gap: 28px; }
  .craques-mini-grid  { grid-template-columns: repeat(2, 1fr); }
  .craques-grid       { grid-template-columns: 1fr; }
  .rastreio-wrap      { grid-template-columns: 1fr; }
  .offers-inner       { grid-template-columns: 1fr; }
  .offer-promo        { border-right: none; border-bottom: 1px solid var(--border); }
  .checkout-wrap      { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; gap: 40px; }
  .values-grid        { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }

  /* ── HERO ── */
  .hero-title { font-size: 56px; }
  .hero-proof-strip { margin-top: 14px; }
  .hero-proof-pill { font-size: 10px; padding: 6px 9px; }

  /* ── SLIDER ── */
  .big-slide-img, .big-slide-placeholder { aspect-ratio: 4 / 3; height: auto; }
  .big-dot-label   { display: none; }
  .big-slider-dots { padding: 0 52px; justify-content: center; gap: 8px; }
  .big-slider-dot  { flex: 0 0 44px; }
  .big-dot-bar     { height: 3px; }
  .big-slider-arrow { width: 38px; height: 38px; }
  .big-slider-prev { left: 10px; }
  .big-slider-next { right: 10px; }
  .big-slide-counter { display: none; }

  /* ── CARROSSEL ── */
  .prod-carousel-wrap { padding: 12px 0 44px; }
  .carousel-item { flex: 0 0 46vw; max-width: 210px; }
  .carousel-arrow {
    top: auto; bottom: 0; transform: none;
    width: 36px; height: 36px;
    background: var(--card2); border-color: var(--border);
  }
  .carousel-arrow:hover { transform: none; }
  .carousel-prev { left: calc(50% - 44px); }
  .carousel-next { right: calc(50% - 44px); }

  /* ── CARD ACTIONS ── */
  .card-actions   { gap: 6px; }
  .btn-add-cart   { padding: 10px 6px; font-size: 11px; }
  .btn-ver-produto { padding: 10px 6px; font-size: 11px; }
  .btn-comprar    { padding: 13px 12px; font-size: 14px; }

  /* ── BADGES ── */
  .cart-badge { width: 22px; height: 22px; font-size: 11px; }

  /* ── TYPOGRAPHY ── */
  .section-title-bold { font-size: clamp(26px, 7vw, 36px); }

  /* ── BENEFITS BAR ── */
  .benefit-item  { padding: 22px 16px; }
  .benefit-title { font-size: 14px; }
  .benefit-desc  { font-size: 11px; }

  /* ── TEAM BADGES ── */
  .team-badge-item   { padding: 8px 10px; min-width: 64px; }
  .team-badge-logo   { width: 40px; height: 40px; }
  .team-badge-name   { font-size: 9px; }
  .team-badges-inner { padding: 0 16px; }

  /* ── COUNTDOWN ── */
  .countdown-digits { gap: 8px; }
  .countdown-num    { min-width: 80px; font-size: 52px; }

  /* ── SIZE BUTTON ── */
  .size-btn { min-width: 52px; height: 52px; font-size: 15px; }

  /* ── BTN-BUY / WPP ── */
  .btn-buy,
  .btn-frete-prazo,
  .btn-wpp-buy { padding: 18px; }
  .btn-buy { font-size: 16px; }

  /* ================================================================
     PÁGINA DE PRODUTO — MOBILE PREMIUM
     ================================================================ */

  /* Layout: coluna única */
  .product-detail {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 80px;
  }
  .gallery { position: static; }

  /* ── BREADCRUMB mobile ── */
  .breadcrumb {
    padding: 14px 16px 10px;
    font-size: 11px;
    opacity: .6;
    gap: 5px;
    flex-wrap: wrap;
    line-height: 1.4;
  }
  .breadcrumb-back {
    padding: 5px 10px;
    font-size: 10px;
  }
  .breadcrumb .current {
    color: var(--muted);
    font-size: 11px;
  }

  /* ── GALERIA principal ── */
  .gallery-main {
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin-bottom: 0;
    box-shadow: none;
    background: #fff;
  }
  .gallery-main img {
    object-fit: cover;
  }

  /* ── THUMBNAILS ── */
  .gallery-thumbs {
    padding: 10px 16px 14px;
    gap: 8px;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery-thumbs::-webkit-scrollbar { display: none; }
  .gallery-thumb {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    border-width: 1.5px;
    flex-shrink: 0;
  }
  .gallery-thumb.active {
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 0 0 2px rgba(228,255,0,.18);
  }

  /* ── PAINEL DE INFO DO PRODUTO ── */
  .product-detail > div:last-child {
    padding: 20px 16px 0;
  }

  /* País / time */
  .prod-detail-country {
    font-size: 11px;
    letter-spacing: .1em;
    opacity: .75;
    margin-bottom: 6px;
    gap: 6px;
  }

  /* Nome do produto */
  .prod-detail-name {
    font-size: clamp(28px, 8vw, 44px);
    line-height: .95;
    margin-bottom: 14px;
    letter-spacing: .03em;
  }

  /* Badges */
  .prod-detail-badges {
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  .prod-detail-badges .badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  /* ── CARD DE PREÇO ── */
  .prod-detail-price {
    padding: 16px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #161c28 0%, #111620 100%);
    border-color: rgba(228,255,0,.12);
    box-shadow: 0 4px 20px rgba(0,0,0,.35);
  }
  .prod-detail-price::before {
    opacity: .8;
    height: 2px;
  }
  .price-old {
    font-size: 13px;
    margin-bottom: 2px;
  }
  .price-main {
    font-size: 46px;
    letter-spacing: .01em;
  }
  .price-discount {
    font-size: 12px;
    margin-top: 2px;
  }
  .price-installment {
    font-size: 13px;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.06);
  }

  /* ── SELETOR DE TAMANHO ── */
  .option-label {
    font-size: 11px;
    letter-spacing: .1em;
    margin-bottom: 10px;
  }
  .sizes-grid {
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .size-btn {
    min-width: 52px;
    height: 50px;
    font-size: 14px;
    border-radius: 10px;
    flex: 0 0 auto;
  }
  .size-btn.active {
    background: rgba(228,255,0,.1);
    box-shadow: 0 0 0 2px rgba(228,255,0,.3) inset;
  }

  /* ── CTAs PRINCIPAIS ── */
  .prod-ctas {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }
  .btn-buy {
    width: 100%;
    padding: 18px 20px;
    font-size: 17px;
    border-radius: 12px;
    letter-spacing: .08em;
    box-shadow: 0 6px 24px rgba(228,255,0,.28);
  }
  .btn-frete-prazo {
    width: 100%;
    padding: 15px 20px;
    font-size: 14px;
    border-radius: 12px;
    justify-content: center;
  }
  .btn-wpp-buy {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    border-radius: 12px;
    justify-content: center;
  }

  .mobile-buy-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 1450;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(9,12,18,.96);
    border: 1px solid rgba(228,255,0,.2);
    box-shadow: 0 10px 30px rgba(0,0,0,.45);
    border-radius: 12px;
    padding: 10px 12px;
    backdrop-filter: blur(6px);
    transition: transform .24s ease, opacity .24s ease;
  }
  .mobile-buy-price {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }
  .mobile-buy-price span {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: var(--accent);
  }
  .mobile-buy-price small {
    font-size: 11px;
    color: var(--muted);
  }
  .mobile-buy-btn {
    background: var(--accent);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 13px 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
  }
  .mobile-buy-btn:active { transform: scale(.98); }

  /* ── BENEFÍCIOS INLINE ── */
  .prod-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }
  .prod-benefit-item {
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    gap: 8px;
  }
  .prod-benefit-item .icon svg { width: 18px; height: 18px; }

  .prod-trust-strip {
    gap: 6px;
    margin-bottom: 12px;
  }
  .prod-trust-pill {
    min-height: 28px;
    font-size: 10px;
    padding: 0 9px;
  }
  .prod-cep-box {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 10px;
  }
  .prod-cep-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .prod-cep-row input,
  .prod-cep-row button {
    height: 42px;
  }
  .prod-cep-row button {
    width: 100%;
  }
  .prod-cep-result {
    font-size: 11px;
    padding: 9px 10px;
  }

  /* ── TABS ── */
  .prod-tabs { margin-top: 20px; }
  .tab-btns { gap: 0; overflow-x: auto; scrollbar-width: none; }
  .tab-btns::-webkit-scrollbar { display: none; }
  .tab-btn {
    font-size: 12px;
    padding: 12px 16px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .tab-panel p  { font-size: 14px; }
  .tab-panel td,
  .tab-panel th { padding: 10px 12px; font-size: 13px; }

  .prod-reviews {
    margin-top: 18px;
    padding: 14px;
    border-radius: 10px;
  }
  .prod-reviews-head h3 { font-size: 16px; }
  .prod-reviews-head p { font-size: 12px; margin-bottom: 12px; }
  .prod-review-top { align-items: flex-start; flex-direction: column; gap: 4px; }
  .prod-review-foot { align-items: center; }
  .prod-review-photo { width: 56px; height: 56px; }

  .prod-questions {
    margin-top: 18px;
    padding: 14px;
    border-radius: 10px;
  }
  .prod-questions-head h3 { font-size: 16px; }
  .prod-questions-head p { font-size: 12px; margin-bottom: 12px; }
  .prod-question-form-grid { grid-template-columns: 1fr; gap: 0; }
  .prod-question-field { margin-bottom: 9px; }
  .prod-question-field input,
  .prod-question-field textarea { font-size: 13px; }
  .prod-question-submit {
    width: 100%;
    min-height: 42px;
    font-size: 14px;
  }
  .prod-question-meta { align-items: flex-start; flex-direction: column; gap: 2px; }
  .prod-question-meta span { white-space: normal; }

  .cart-recovery-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .cart-recovery-copy span { white-space: normal; }

  /* ── GALERIA: thumb */
  .gallery-thumb { width: 72px; height: 72px; }
}

/* ================================================================
   480px — FOCO PRINCIPAL (320px–480px)
   Cobre iPhones SE, 12 mini, e maioria dos Androids compactos
   ================================================================ */
@media (max-width: 480px) {

  /* ── HEADER ── */
  .header-inner {
    padding: 0 14px;
    height: 58px;
    gap: 10px;
  }
  .logo { font-size: 26px; }
  .logo em { display: none; } /* esconde tag "STORE" no header compacto */
  .btn-icon {
    width: 40px; height: 40px;
    border-radius: 9px;
  }
  .hamburger { padding: 6px; }
  .announce-bar { height: 34px; font-size: 11px; }
  .announce-track { font-size: 11px; }

  /* ── PÁGINA GERAL ── */
  .section { padding: 40px 14px; }

  /* ── PRODUTO: layout ── */
  .product-detail {
    padding: 0 0 122px;
  }

  /* ── BREADCRUMB ── */
  .breadcrumb {
    padding: 10px 14px 8px;
    font-size: 10px;
    gap: 4px;
    opacity: .5;
  }
  .breadcrumb-back {
    padding: 4px 9px;
    font-size: 9px;
  }

  /* ── GALERIA PRINCIPAL ── */
  .gallery-main {
    border-radius: 0;
    margin-bottom: 0;
  }

  /* ── THUMBNAILS ── */
  .gallery-thumbs {
    padding: 10px 14px 12px;
    gap: 7px;
  }
  .gallery-thumb {
    width: 56px;
    height: 56px;
    border-radius: 7px;
  }

  /* ── PAINEL INFO ── */
  .product-detail > div:last-child {
    padding: 18px 14px 0;
  }
  .prod-detail-country {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .prod-detail-name {
    font-size: clamp(26px, 7.5vw, 36px);
    margin-bottom: 10px;
    line-height: .95;
  }
  .prod-detail-badges { margin-bottom: 12px; gap: 5px; }

  /* ── CARD DE PREÇO ── */
  .prod-detail-price {
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 10px;
  }
  .price-old    { font-size: 12px; }
  .price-main   { font-size: 42px; }
  .price-discount { font-size: 11px; }
  .price-installment { font-size: 12px; margin-top: 6px; }

  /* ── SELETOR DE TAMANHO ── */
  .sizes-grid {
    gap: 7px;
    margin-bottom: 18px;
  }
  .size-btn {
    min-width: 48px;
    height: 48px;
    font-size: 13px;
    border-radius: 9px;
    padding: 0 10px;
  }

  /* ── CTAs ── */
  .prod-ctas {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  .btn-buy {
    padding: 17px 18px;
    font-size: 16px;
    border-radius: 11px;
    letter-spacing: .07em;
  }
  .btn-frete-prazo {
    padding: 14px 18px;
    font-size: 13px;
    border-radius: 11px;
  }
  .btn-wpp-buy {
    padding: 14px 18px;
    font-size: 14px;
    border-radius: 11px;
  }

  /* mobile-buy-bar consolidado no bloco mobile final */

  /* ── BENEFÍCIOS INLINE ── */
  .prod-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 16px;
  }
  .prod-benefit-item {
    padding: 9px;
    font-size: 11px;
    gap: 7px;
    border-radius: 9px;
  }

  .prod-trust-pill {
    font-size: 9px;
    letter-spacing: .03em;
    min-height: 26px;
  }
  .prod-cep-title {
    font-size: 10px;
  }
  .prod-cep-row input,
  .prod-cep-row button {
    height: 40px;
    font-size: 12px;
  }

  .prod-questions {
    padding: 12px;
    margin-top: 16px;
  }
  .prod-questions-head h3 { font-size: 15px; }
  .prod-question-item { padding: 10px; }
  .prod-question-meta strong { font-size: 12px; }
  .prod-question-text { font-size: 12px; }
  .prod-question-answer { padding: 9px; }
  .prod-question-answer p { font-size: 11px; }
  .prod-question-field label { font-size: 10px; }
  .prod-question-field input,
  .prod-question-field textarea {
    border-radius: 9px;
    padding: 10px;
    font-size: 12px;
  }
  .prod-question-field textarea { min-height: 84px; }
  .prod-question-submit { min-height: 40px; font-size: 13px; }
  .prod-question-feedback { font-size: 11px; }

  /* ── GRIDS GERAIS ── */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .prod-info     { padding: 10px 10px 12px; }
  .prod-name     { font-size: 12px; line-height: 1.4; }
  .prod-price    { font-size: 18px; }
  .prod-old      { font-size: 11px; }
  .prod-installment { font-size: 10px; }

  /* ── CARD ACTIONS (listagem) ── */
  .card-actions    { gap: 5px; margin-top: 4px; }
  .btn-add-cart    { padding: 9px 5px; font-size: 10px; gap: 4px; }
  .btn-add-cart svg { display: none; } /* só texto no mobile compacto */
  .btn-ver-produto { padding: 9px 5px; font-size: 10px; }

  /* ── CATEGORIAS ── */
  .cat-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 14px 36px;
    gap: 10px;
  }
  .cat-card:first-child { grid-column: span 2; }
  .cat-name  { font-size: 15px; }
  .cat-count { font-size: 11px; }

  /* ── FILTROS ── */
  .filter-wrap     { top: 58px; }
  .filter-bar      { padding: 0 14px; }
  .filter-row      { padding: 9px 0; gap: 8px; }
  .filter-group-label { display: none; }
  .chip            { font-size: 11px; padding: 7px 13px; min-height: 34px; }
  .sort-wrapper    { height: 34px; padding: 0 10px 0 8px; }
  .sort-label      { font-size: 11px; }

  /* ── FOOTER ── */
  .footer-top    { grid-template-columns: 1fr; padding: 40px 14px 28px; }
  .footer-bottom { padding: 16px 14px; flex-direction: column; align-items: flex-start; gap: 12px; }

  /* ── COUNTDOWN ── */
  .countdown-sep { font-size: 36px; margin-bottom: 18px; }
  .countdown-num { min-width: 64px; font-size: 38px; padding: 8px 10px; }

  /* ── SECTION TITLES ── */
  .page-title-bar { padding: 28px 14px; }

  /* ── CARROSSEL ── */
  .carousel-item { flex: 0 0 44vw; max-width: 190px; }

  /* ── CRAQUES ── */
  .craques-mini-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* ── TOAST ── */
  .toast {
    left: 50%;
    right: auto;
    width: calc(100vw - 22px);
    max-width: 520px;
    transform: translateX(-50%) translateY(18px) scale(.98);
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 12px 13px;
  }
  .toast.show {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  .toast-icon {
    width: 26px;
    height: 26px;
    font-size: 14px;
    border-radius: 8px;
    flex-basis: 26px;
  }
  .toast-text {
    font-size: 13px;
    line-height: 1.32;
  }
}

/* ================================================================
   390px — iPhone 14 / Pro
   ================================================================ */
@media (max-width: 390px) {
  .header-inner { padding: 0 12px; height: 56px; }
  .logo { font-size: 24px; }
  .btn-icon { width: 38px; height: 38px; }

  .prod-detail-name { font-size: clamp(24px, 7vw, 32px); }
  .price-main { font-size: 38px; }
  .btn-buy { font-size: 15px; padding: 16px 16px; }
  .btn-frete-prazo { font-size: 12px; padding: 14px 14px; }

  .size-btn  { min-width: 44px; height: 46px; font-size: 13px; }
  .prod-name { font-size: 12px; }
  .prod-price { font-size: 17px; }

  .gallery-thumb { width: 52px; height: 52px; }
  .cat-grid { padding: 0 12px 32px; gap: 9px; }
  .section  { padding: 36px 12px; }
  .filter-bar { padding: 0 12px; }
}

/* ================================================================
   320px — iPhone SE e telas muito pequenas
   ================================================================ */
@media (max-width: 340px) {
  .header-inner  { padding: 0 10px; height: 54px; }
  .logo          { font-size: 22px; }
  .btn-icon      { width: 36px; height: 36px; }

  .products-grid { gap: 8px; }
  .prod-info     { padding: 8px 8px 10px; }
  .prod-name     { font-size: 11px; }
  .prod-price    { font-size: 16px; }
  .btn-add-cart,
  .btn-ver-produto { padding: 8px 4px; font-size: 10px; }

  .prod-detail-name { font-size: 24px; }
  .price-main    { font-size: 34px; }
  .size-btn      { min-width: 40px; height: 44px; }
  .gallery-thumb { width: 48px; height: 48px; }
}

/* =============================================
   CORREÇÕES & MELHORIAS PREMIUM v3
   ============================================= */

/* --- FALLBACK DE IMAGEM --- */
.img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #12161f 0%, #1a2030 100%);
  z-index: 1;
  color: var(--muted2);
}
.img-fallback-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  text-align: center;
}
.img-fallback-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.12);
  line-height: 1;
}
.img-fallback-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* --- PRODUTO SEM IMAGEM: placeholder elegante --- */
.prod-img-wrap {
  background: linear-gradient(145deg, #12161f, #1a2030);
}

/* --- CARD: sombra de entrada mais premium --- */
.product-card {
  will-change: transform;
  contain: layout style;
}

/* --- CARD: brilho no hover --- */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(228,255,0,.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 10;
}
.product-card:hover::after { opacity: 1; }

/* --- NOME DO PRODUTO: mais legível --- */
.prod-name {
  font-weight: 600;
}

/* .btn-comprar: ver definição original acima */

/* .btn-primary: ver definição original acima */

/* --- SECTION TITLE: sublinhado dourado --- */
.section-header .section-title::after,
.section-header .section-title-bold::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 8px;
}

/* --- CATEGORIA: hover premium --- */
.cat-card {
  transition: transform .32s cubic-bezier(.4,0,.2,1), box-shadow .32s ease;
}
.cat-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(228,255,0,.12);
}

/* --- FOOTER: linha dourada no topo --- */
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(228,255,0,.35) 50%, transparent 100%);
}
footer { position: relative; overflow: hidden; }

/* --- COUNTDOWN: sombra interna nos números --- */
.countdown-num {
  box-shadow: 0 4px 20px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
}

/* --- DEPOIMENTOS: aspas decorativas --- */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  right: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(228,255,0,.05);
  line-height: 1;
  pointer-events: none;
}

/* --- BADGE DESCONTO: pulse sutil --- */
@keyframes pulse-disc {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,57,53,0); }
  50%       { box-shadow: 0 0 0 4px rgba(229,57,53,.18); }
}
.prod-disc-badge {
  animation: pulse-disc 3s ease-in-out infinite;
}

/* chips: ver definição principal acima */

/* --- GALERIA DO PRODUTO: borda sutil --- */
.gallery-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 2;
}
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; }

/* --- MOBILE: targets de toque maiores --- */
@media (max-width: 768px) {
  .size-btn { min-width: 52px; height: 52px; font-size: 15px; }
  .btn-buy,
  .btn-frete-prazo,
  .btn-wpp-buy { padding: 18px; }
  .btn-buy { font-size: 16px; }
  /* Carrossel mobile: setas fora do card, padding vertical para scale */
  .prod-carousel-wrap { padding: 12px 0 44px; }
  .carousel-item { flex: 0 0 46vw; max-width: 210px; }
  .carousel-arrow {
    top: auto;
    bottom: 0;
    transform: none;
    width: 36px; height: 36px;
    background: var(--card2);
    border-color: var(--border);
  }
  .carousel-arrow:hover { transform: none; }
  .carousel-prev { left: calc(50% - 44px); }
  .carousel-next { right: calc(50% - 44px); }
}

@media (max-width: 480px) {
  .carousel-item { flex: 0 0 44vw; max-width: 190px; }
}

/* --- FOCO VISÍVEL: acessibilidade --- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- SELEÇÃO DE TEXTO --- */
::selection {
  background: rgba(228,255,0,.22);
  color: var(--white);
}

/* --- SCROLLBAR CUSTOM: webkit --- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--card2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border2); }

/* Desativa flip hover quando imagem de costas não existe */
.product-card.no-back .prod-img-front,
.product-card.no-back:hover .prod-img-front {
  opacity: 1 !important;
  transform: scale(1) !important;
  z-index: 2;
}
.product-card.no-back:hover .prod-img-front {
  transform: scale(1.04) !important;
}
.product-card.no-back .prod-img-back,
.product-card.no-back:hover .prod-img-back {
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: 1;
}

/* --- TIMES DO CORAÇÃO: botão de nav discreto --- */
.team-nav-btn {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--card2);
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--tr);
}
.team-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

/* =============================================
   MOBILE PREMIUM EXTRAS — UX & Visual Polish
   ============================================= */

/* ── Toque mínimo 44px em todos os botões interativos mobile ── */
@media (max-width: 768px) {
  button,
  .btn-icon,
  .size-btn,
  .chip,
  .tab-btn,
  .gallery-thumb,
  .team-badge-item,
  .carousel-arrow,
  .hamburger,
  .prod-wish-btn {
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
  }
  .prod-wish-btn {
    width: 38px; height: 38px;
    min-height: 38px;
  }

  /* ── Promoção pague 2 leve 3 ── */
  .promo-2-3-banner {
    font-size: 12px;
    padding: 10px 12px;
  }

  /* ── Jogador banner mobile ── */
  .jogador-banner-inner {
    grid-template-columns: 1fr;
    padding: 36px 16px;
    gap: 20px;
  }
  .jogador-banner-imgs { display: none; }
  .jogador-title { font-size: clamp(36px, 9vw, 52px); }

  /* ── Seção relacionados ── */
  .related-section { padding: 40px 0; }
  .related-inner   { padding: 0 14px; }

  /* ── Section header mobile ── */
  .section-header {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
  }
  .section-title { font-size: 13px; }

  /* ── Mega menu: desativado mobile ── */
  .mega-menu { display: none !important; }

  /* ── Overflow prevention ── */
  .product-detail,
  .checkout-wrap,
  .contact-wrap,
  .about-content,
  .legal-wrap,
  .rastreio-wrap {
    overflow-x: hidden;
  }

  /* ── Banner slider mobile: proporção portrait ── */
  .big-slide-img,
  .big-slide-placeholder {
    aspect-ratio: 16 / 9;
  }

  /* ── Checkout mobile ── */
  .checkout-wrap { padding: 24px 14px 80px; }
  .cart-summary-panel { position: static; margin-top: 0; }

  /* ── Craques mobile ── */
  .craque-mini-name { font-size: 11px; }
  .craque-mini-emoji { font-size: 16px; }

  /* ── Rastreio mobile ── */
  .rastreio-wrap { padding: 32px 14px 72px; gap: 24px; }
  .rastreio-card { padding: 28px 20px; }
}

/* === BLUR-UP / SKELETON LOADING === */
/* Animação de skeleton enquanto imagens lazy carregam */
@keyframes imgSkeleton {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.prod-img-wrap {
  background: linear-gradient(90deg,
    #141820 25%,
    #1e2433 50%,
    #141820 75%
  );
  background-size: 800px 100%;
  animation: none;
}

/* Skeleton só enquanto a imagem lazy ainda não carregou */
.prod-img-wrap:has(img[loading="lazy"]:not(.img-loaded)) {
  animation: imgSkeleton 1.4s ease-in-out infinite;
}

/* Remove skeleton quando a imagem está visível */
.prod-img-wrap:has(img.img-loaded),
.prod-img-wrap:has(.img-fallback) {
  animation: none;
  background: var(--card);
}

/* Fade-in suave nas imagens ao carregar */
.prod-img-front,
.cat-card img,
.craque-mini-img img,
.craque-card-imgs img,
.hero-card img {
  opacity: 0;
  transition: opacity .2s ease, transform .3s ease;
}

.prod-img-front.img-loaded,
.cat-card img.img-loaded,
.craque-mini-img img.img-loaded,
.craque-card-imgs img.img-loaded,
.hero-card img.img-loaded {
  opacity: 1;
}

/* Imgs eager (hero/LCP) sem fade — aparecem imediatamente */
img[loading="eager"] {
  opacity: 1 !important;
  transition: none !important;
}

/* === GALLERY PRINCIPAL — evitar CLS === */
.gallery-main {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #1a1f2e, #0d1018);
  overflow: hidden;
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* === BANNER SLIDER — previne CLS === */
.big-promo-slider {
  contain: layout style paint;
}

.big-slide {
  contain: layout style paint;
}

/* === CATEGORY CARDS — previne CLS === */
.cat-card {
  contain: layout style;
}

/* === FONT DISPLAY — evita FOIT === */
@font-face {
  font-display: swap; /* garante texto visível enquanto fonte carrega */
}

/* === CRITICAL RENDERING PATH === */
/* Esconde conteúdo abaixo da dobra até JS carregar (evita FOUC) */
.reveal {
  will-change: opacity, transform;
}

/* === PRINT — não carregar imagens desnecessárias === */
@media print {
  .big-promo-slider,
  .announce-bar,
  .cart-drawer,
  .mobile-nav,
  .toast { display: none !important; }
}

/* === REDUCED MOTION — respeitar preferência do usuário === */
@media (prefers-reduced-motion: reduce) {
  img[loading="lazy"],
  .prod-img-front,
  .cat-card img,
  .craque-mini-img img,
  .hero-card img {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
  }

  .prod-carousel,
  .team-badges-carousel {
    scroll-behavior: auto;
  }

  @keyframes imgSkeleton {
    0%, 100% { background-position: 0 0; }
  }
}


/* =============================================
   AJUSTES FINOS — CARDS / MOBILE / SEÇÕES / FILTROS
   ============================================= */

.product-card {
  border-color: rgba(255,255,255,.07);
  box-shadow: 0 10px 30px rgba(0,0,0,.34), 0 0 0 1px rgba(255,255,255,.035);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228,255,0,.16);
  box-shadow: 0 18px 42px rgba(0,0,0,.46), 0 0 0 1px rgba(228,255,0,.08);
}

.prod-img-wrap {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.98) 0%, rgba(250,252,255,.96) 26%, rgba(239,244,250,.92) 58%, rgba(229,235,243,.88) 100%);
  padding: 14px 14px 10px;
}
.prod-img-wrap::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.22));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), inset 0 0 0 1px rgba(17,24,39,.05);
  pointer-events: none;
}
.prod-img-wrap::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 26px;
  background: radial-gradient(circle at 50% 50%, rgba(17,24,39,.14) 0%, rgba(17,24,39,.08) 38%, rgba(17,24,39,0) 76%);
  pointer-events: none;
  filter: blur(6px);
}
.prod-img-front,
.prod-img-back {
  inset: 10px 10px 8px;
  width: calc(100% - 20px);
  height: calc(100% - 18px);
  object-fit: contain;
  object-position: center 46%;
  transform-origin: center center;
}
.product-card:not(.no-back):hover .prod-img-front {
  opacity: 0;
  transform: scale(1.025);
}
.product-card:not(.no-back):hover .prod-img-back {
  opacity: 1;
  transform: scale(1.01);
}
.product-card.show-back .prod-img-front {
  opacity: 0;
  transform: scale(1.025);
}
.product-card.show-back .prod-img-back {
  opacity: 1;
  transform: scale(1.01);
}
.product-card.no-back:hover .prod-img-front {
  transform: scale(1.03);
}

.prod-badges {
  top: 12px;
  left: 12px;
  gap: 6px;
  z-index: 4;
}
.badge,
.prod-disc-badge,
.prod-topseller-badge {
  font-size: 11px;
  letter-spacing: .08em;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.badge {
  border: 1px solid rgba(255,255,255,.14);
}
.badge-novo,
.badge-jogador,
.badge-especial {
  text-shadow: none;
}

.prod-info {
  padding: 15px 14px 16px;
  gap: 8px;
}
.prod-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #eef2fb;
}
.prod-price-row {
  gap: 10px;
  align-items: flex-end;
}
.prod-price {
  font-size: 25px;
  letter-spacing: .01em;
  color: #ffffff;
  text-shadow: 0 10px 20px rgba(0,0,0,.22);
}
.prod-old {
  font-size: 12px;
}
.prod-installment {
  font-size: 11px;
  color: #97a3b8;
}

.section {
  padding: 72px 28px;
}
.section-title,
.section-title-bold {
  position: relative;
}
.section-title::after,
.section-title-bold::after {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(228,255,0,.32));
}

.filter-wrap {
  top: 70px;
}
.filter-row {
  padding: 10px 0;
}
.filter-group-label {
  font-size: 11px;
}

@media (max-width: 768px) {
  .section {
    padding: 56px 16px;
  }
  .filter-wrap {
    top: 58px;
  }
  .prod-name {
    font-size: 13px;
  }
  .prod-price {
    font-size: 22px;
  }
  .carousel-item {
    flex: 0 0 42vw;
    max-width: 188px;
  }
}

@media (max-width: 480px) {
  .prod-img-wrap {
    padding: 10px 10px 8px;
  }
  .prod-badges {
    top: 10px;
    left: 10px;
    gap: 5px;
  }
  .badge,
  .prod-disc-badge,
  .prod-topseller-badge {
    font-size: 10px;
    padding: 4px 9px;
  }
  .prod-name {
    font-size: 13px;
    line-height: 1.42;
  }
  .prod-price {
    font-size: 21px;
  }
  .btn-add-cart {
    gap: 5px;
  }
  .btn-add-cart svg {
    display: inline-flex !important;
    width: 13px;
    height: 13px;
  }
  .carousel-item {
    flex: 0 0 40vw;
    max-width: 172px;
  }
  .filter-wrap {
    top: 58px;
  }
}

@media (max-width: 390px) {
  .carousel-item {
    flex: 0 0 39vw;
    max-width: 162px;
  }
}

@media (max-width: 340px) {
  .prod-name {
    font-size: 12px;
  }
  .prod-price {
    font-size: 19px;
  }
  .btn-add-cart svg {
    display: inline-flex !important;
  }
}

/* =============================================
   FOOTER PREMIUM v2 (e-commerce grande)
   ============================================= */
footer {
  margin-top: 96px;
  background:
    radial-gradient(1100px 420px at 10% -20%, rgba(35,58,105,.2), transparent 62%),
    radial-gradient(900px 360px at 92% -26%, rgba(228,255,0,.08), transparent 65%),
    #070b14;
  border-top: 1px solid rgba(161,188,255,.14);
}

footer::after {
  content: '';
  position: absolute;
  inset: auto -8% -220px auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(228,255,0,.08), transparent 68%);
  pointer-events: none;
  filter: blur(6px);
}

.footer-top {
  padding: 72px 34px 52px;
  gap: 56px;
  align-items: start;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo .logo {
  font-size: 40px;
  letter-spacing: .02em;
}

.footer-tagline {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.85;
  color: #9aadbf;
  margin-bottom: 16px;
}

.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.footer-trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(228,255,0,.25);
  background: rgba(228,255,0,.07);
  color: #dbef72;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  animation: footerPillGlow 4s ease-in-out infinite;
}

.footer-trust-pill:nth-child(2) { animation-delay: .8s; }
.footer-trust-pill:nth-child(3) { animation-delay: 1.6s; }

.footer-social {
  gap: 12px;
  margin-bottom: 16px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(24,33,50,.98), rgba(16,22,35,.98));
  border-color: rgba(143,167,204,.22);
}

.footer-newsletter {
  position: relative;
  border: 1px solid rgba(228,255,0,.18);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(170deg, rgba(26,36,55,.96), rgba(13,20,33,.98));
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(228,255,0,.12) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform .8s ease;
  pointer-events: none;
}
.footer-newsletter:hover::before { transform: translateX(130%); }

.footer-news-title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  color: #efff92;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.footer-news-title svg {
  width: 14px;
  height: 14px;
}

.footer-news-desc {
  font-size: 13px;
  color: #8ea4bf;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-news-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.footer-news-input {
  min-width: 0;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(137,162,197,.3);
  background: rgba(8,12,20,.72);
  color: #f0f5ff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 0 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.footer-news-input::placeholder { color: #6f839d; }

.footer-news-input:focus {
  border-color: rgba(228,255,0,.6);
  box-shadow: 0 0 0 3px rgba(228,255,0,.14);
  background: rgba(13,18,30,.86);
}

.footer-news-btn {
  height: 40px;
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  background: linear-gradient(135deg, #e4ff00, #cfe600);
  color: #091018;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 8px 20px rgba(228,255,0,.22);
}

.footer-news-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 10px 22px rgba(228,255,0,.3);
}

.footer-news-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.footer-news-disclaimer {
  margin-top: 8px;
  font-size: 11px;
  color: #6f849e;
}

.footer-news-feedback {
  min-height: 16px;
  margin-top: 6px;
  font-size: 11px;
  color: #7f93ad;
}

.footer-news-feedback[data-type="success"] { color: #74e6b3; }
.footer-news-feedback[data-type="error"] { color: #ff9a9a; }

.footer-newsletter.is-success {
  border-color: rgba(0,220,130,.42);
  box-shadow: 0 0 0 3px rgba(0,220,130,.12);
}

.footer-col h4 {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 10px;
  color: #f2f6ff;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #e4ff00, transparent);
}

.footer-col ul {
  gap: 10px;
}

.footer-col ul li a {
  color: #8ca0ba;
  font-size: 14px;
  line-height: 1.35;
  padding: 2px 0;
}

.footer-link-iconed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-mini-icon,
.footer-mini-badge {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-mini-icon {
  background: rgba(228,255,0,.08);
  color: #d9ee65;
  border: 1px solid rgba(228,255,0,.22);
}

.footer-mini-icon svg {
  width: 11px;
  height: 11px;
  transition: transform .22s ease;
}

.footer-mini-badge {
  background: rgba(49,142,255,.12);
  color: #9cc5ff;
  border: 1px solid rgba(49,142,255,.25);
  font-size: 9px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .08em;
  font-weight: 700;
}

.footer-col ul li a:hover {
  color: #f3ff8e;
  transform: translateX(6px);
}

.footer-col ul li a:hover .footer-mini-icon svg {
  transform: translateY(-1px) scale(1.08);
}

.footer-bottom {
  border-top: 1px solid rgba(161,188,255,.14);
  padding: 20px 34px 24px;
}

.footer-bottom p {
  color: #6f839e;
  letter-spacing: .02em;
}

.footer-security-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(0,225,130,.3);
  background: rgba(0,225,130,.08);
  color: #8cf0c5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.footer-security-seal svg {
  width: 13px;
  height: 13px;
}

.footer-security-seal.insecure {
  border-color: rgba(255,120,120,.35);
  background: rgba(255,74,74,.1);
  color: #ffb7b7;
}

.payment-icons {
  gap: 10px;
}

.payment-icon {
  min-width: 72px;
  height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border: 1px solid rgba(143,167,204,.24);
  background: linear-gradient(180deg, rgba(21,30,46,.98), rgba(14,20,33,.98));
  color: #9cb0c8;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.payment-icon:hover {
  transform: translateY(-1px);
  border-color: rgba(228,255,0,.45);
  color: #eafc86;
}

.payment-icon-visa { color: #9eb7ff; }
.payment-icon-master { color: #ffbe8e; }
.payment-icon-pix { color: #7cebd1; }
.payment-icon-boleto { color: #b8c8df; }

@keyframes footerPillGlow {
  0%, 100% {
    border-color: rgba(228,255,0,.25);
    box-shadow: 0 0 0 0 rgba(228,255,0,0);
  }
  50% {
    border-color: rgba(228,255,0,.45);
    box-shadow: 0 0 0 4px rgba(228,255,0,.08);
  }
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 60px 24px 42px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 48px 16px 30px;
    gap: 26px;
  }
  .footer-logo .logo {
    font-size: 34px;
  }
  .footer-tagline {
    font-size: 14px;
    max-width: 100%;
  }
  .footer-bottom {
    padding: 16px;
  }
  .footer-news-form {
    grid-template-columns: 1fr;
  }
  .footer-news-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 42px 14px 24px;
  }
  .footer-col h4 {
    margin-bottom: 12px;
  }
  .footer-bottom {
    gap: 12px;
  }
  .payment-icon {
    min-width: 68px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-trust-pill {
    animation: none;
  }
  .footer-newsletter::before {
    transition: none;
  }
  .footer-col ul li a,
  .footer-mini-icon svg,
  .social-btn,
  .payment-icon,
  .footer-news-btn {
    transition: none;
  }
}

/* =============================================
   HEADER PREMIUM v2
   ============================================= */
.header {
  background:
    linear-gradient(180deg, rgba(8,10,14,.98), rgba(8,10,14,.95)),
    radial-gradient(700px 180px at 40% -60%, rgba(228,255,0,.08), transparent 70%);
  border-bottom: 1px solid rgba(150,170,198,.16);
}

.header-inner {
  height: 72px;
}

.nav {
  gap: 4px;
  margin-left: 14px;
  flex: 0 1 auto;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  padding: 4px;
  border: 1px solid rgba(133,153,180,.15);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(19,26,40,.72), rgba(10,14,22,.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #c7d3e6;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.nav-link:hover {
  color: #f0f6ff;
  background: rgba(255,255,255,.06);
  border-color: rgba(172,192,220,.22);
  transform: translateY(-1px);
}

.nav-link.active {
  color: #e9ff68;
  background: linear-gradient(180deg, rgba(228,255,0,.18), rgba(228,255,0,.09));
  border: 1px solid rgba(228,255,0,.45);
  border-bottom: 1px solid rgba(228,255,0,.45);
  border-radius: 10px;
  padding-bottom: 8px;
  box-shadow: 0 8px 22px rgba(228,255,0,.14), inset 0 1px 0 rgba(255,255,255,.2);
}

.nav-link.has-dropdown .nav-caret {
  font-size: 10px;
  opacity: .8;
  transform: translateY(1px);
  transition: transform .18s ease, opacity .18s ease;
}

.nav-mega-wrap:hover .nav-link.has-dropdown .nav-caret,
.nav-mega-wrap.open .nav-link.has-dropdown .nav-caret {
  transform: rotate(180deg) translateY(1px);
  opacity: 1;
}

/* Evita "buraco" entre botão e dropdown ao mover o mouse */
.nav-mega-wrap::after {
  content: '';
  position: absolute;
  top: calc(100% - 2px);
  left: -4px;
  right: -4px;
  height: 24px;
}

.mega-menu {
  top: 100%;
}

.nav-mini-icon,
.nav-mini-badge {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-mini-icon {
  background: linear-gradient(180deg, rgba(228,255,0,.14), rgba(228,255,0,.06));
  border: 1px solid rgba(228,255,0,.34);
  color: #edff8d;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.nav-mini-icon svg {
  width: 12px;
  height: 12px;
  display: block;
}

.nav-mini-badge {
  min-width: 16px;
  width: auto;
  padding: 0 5px;
  background: rgba(73,143,255,.16);
  border: 1px solid rgba(73,143,255,.35);
  color: #9dc6ff;
  font-family: 'Oswald', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.nav .nav-jogador,
.nav .nav-craques,
.nav .nav-promo,
.nav .nav-retro,
.nav .nav-rastreio {
  color: #d3deef !important;
  font-weight: 600 !important;
}

.nav .nav-jogador:hover,
.nav .nav-craques:hover,
.nav .nav-promo:hover,
.nav .nav-retro:hover,
.nav .nav-rastreio:hover {
  background: rgba(255,255,255,.06) !important;
}

@media (max-width: 1200px) {
  .nav {
    margin-left: 8px;
    gap: 2px;
  }
  .nav-link {
    font-size: 12px;
    padding: 8px 10px;
  }
}

/* Desktop intermediário: prioriza ações da direita (login/carrinho) */
@media (max-width: 1820px) and (min-width: 1201px) {
  .header-inner {
    padding: 0 16px;
    gap: 10px;
  }
  .nav {
    margin-left: 8px;
    gap: 2px;
  }
  .nav-link {
    font-size: 12px;
    padding: 8px 9px;
    gap: 6px;
  }
  .btn-whatsapp {
    display: none;
  }
}

@media (max-width: 1680px) and (min-width: 1201px) {
  .header-inner {
    padding: 0 14px;
    gap: 8px;
  }
  .nav {
    margin-left: 6px;
    gap: 1px;
  }
}

@media (max-width: 1540px) and (min-width: 1201px) {
  .header-inner {
    padding: 0 12px;
    gap: 6px;
  }
  .nav { margin-left: 4px; }
  .nav-link {
    font-size: 11px;
    padding: 8px 7px;
  }
}

/* Hardening do header desktop: evita qualquer sobreposição no topo */
@media (max-width: 2000px) and (min-width: 1201px) {
  .header-inner {
    max-width: 1860px;
    width: 100%;
    padding: 0 12px;
    gap: 6px;
  }
  .nav {
    margin-left: 4px;
    min-width: 0;
    flex: 0 1 auto;
    width: fit-content;
    max-width: 100%;
    justify-content: flex-start;
    /* Dropdown precisa vazar nos dois eixos. */
    overflow: visible;
  }
  .nav-link {
    font-size: 11px;
    padding: 8px 8px;
    gap: 5px;
  }
  .header-actions {
    margin-left: auto;
    padding-left: 0;
    gap: 5px;
    border-left: none;
    position: relative;
    z-index: 3;
  }
  .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }
  .btn-whatsapp {
    padding: 8px 12px;
    gap: 6px;
    font-size: 12px;
    letter-spacing: .04em;
    min-width: auto;
  }
  .btn-whatsapp::after {
    display: none;
  }
}

/* Faixa com pouco espaço horizontal: compacta sem quebrar visual */
@media (max-width: 1700px) and (min-width: 1201px) {
  .header-inner {
    gap: 6px;
  }
  .nav-link {
    font-size: 11px;
    padding: 8px 7px;
    gap: 5px;
  }
  .header-actions {
    padding-left: 0;
  }
}

@media (max-width: 1560px) and (min-width: 1201px) {
  .nav-link {
    font-size: 11px;
    padding: 8px 6px;
    gap: 4px;
  }
}

/* Quando apertar, remove itens do fim da navegação antes de cortar/bugar */
@media (max-width: 1680px) and (min-width: 1201px) {
  .nav .nav-rastreio,
  .mobile-links .nav-rastreio { display: none !important; }
}

@media (max-width: 1700px) and (min-width: 1201px) {
  .nav .nav-retro,
  .mobile-links .nav-retro { display: none !important; }
}

@media (max-width: 1580px) and (min-width: 1201px) {
  .nav .nav-promo,
  .mobile-links .nav-promo { display: none !important; }
}

/* =============================================
   CORRECAO BADGES CARD (sem sobreposicao)
   ============================================= */
.prod-disc-badge {
  top: 12px !important;
  left: 12px !important;
  z-index: 6 !important;
}

.prod-badges {
  top: 50px !important;
  left: 12px !important;
  z-index: 5 !important;
  max-width: calc(100% - 24px);
}

.prod-topseller-badge {
  top: auto !important;
  bottom: 12px !important;
  left: 12px !important;
  z-index: 5 !important;
}

@media (max-width: 480px) {
  .prod-disc-badge {
    top: 10px !important;
    left: 10px !important;
  }

  .prod-badges {
    top: 42px !important;
    left: 10px !important;
    max-width: calc(100% - 20px);
  }

  .prod-topseller-badge {
    bottom: 10px !important;
    left: 10px !important;
  }
}

/* =============================================
   MOBILE HARDENING (100% responsivo)
   ============================================= */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  .header-inner,
  .filter-bar,
  .page-title-inner,
  .hero-content,
  .related-inner,
  .about-content,
  .contact-wrap,
  .legal-wrap,
  .rastreio-wrap,
  .checkout-wrap,
  .footer-top,
  .footer-bottom {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .section,
  .section-sm {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .page-title-inner h1 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .filter-row {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
  }

  .filter-row .filter-group,
  .filter-group-search {
    width: 100%;
    min-width: 100% !important;
  }

  .filter-group-label {
    min-width: 74px;
  }

  .big-slider-footer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .big-slider-dots {
    min-width: max-content;
  }

  .big-slider-dot {
    min-width: 92px;
  }

  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }

  .mobile-nav {
    width: min(88vw, 340px);
  }

  .cart-page-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cart-page-item {
    padding: 14px;
  }

  .cart-page-item-price {
    font-size: 20px;
  }

  .cart-summary-panel {
    position: static;
    top: auto;
    width: 100%;
  }

  .cart-summary-panel .summary-item {
    align-items: flex-start;
  }

  .cart-summary-panel .summary-item-name {
    min-width: 0;
  }

  .team-nav-btn {
    display: none;
  }

  .team-badges-row {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(42px, 16vw, 64px);
  }

  .hero-sub {
    font-size: 14px;
  }

  .page-title-inner h1 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .products-grid,
  .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cart-item {
    gap: 10px;
  }

  .cart-item-img {
    width: 72px;
    height: 72px;
  }

  .cart-item-name {
    font-size: 13px;
  }

  .cart-summary-panel {
    padding: 18px;
  }

  .footer-news-form {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 360px) {
  .products-grid,
  .cat-grid {
    grid-template-columns: 1fr !important;
  }

  .carousel-item {
    flex: 0 0 78vw !important;
    max-width: none !important;
  }
}

/* =============================================
   HOTFIX MOBILE: barra fixa não sobrepor menu/rodapé
   ============================================= */
@media (max-width: 768px) {
  .product-detail {
    padding-bottom: calc(170px + env(safe-area-inset-bottom)) !important;
  }

  body.mobile-nav-open .mobile-buy-bar,
  body.cart-open .mobile-buy-bar,
  body:has(.mobile-nav.open) .mobile-buy-bar,
  body:has(.mobile-overlay.open) .mobile-buy-bar,
  body.buybar-over-footer .mobile-buy-bar {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(130%) !important;
  }

  /* Mesmo se o observer falhar (Safari/latência), o footer não fica encoberto. */
body.has-mobile-buy-bar footer {
  padding-bottom: calc(128px + env(safe-area-inset-bottom)) !important;
}

:root {
  --rv-safe-top: env(safe-area-inset-top, 0px);
  --rv-safe-bottom: env(safe-area-inset-bottom, 0px);
}

@media (max-width: 768px) {
  .header {
    top: var(--rv-safe-top);
  }

  .mobile-nav {
    top: var(--rv-safe-top);
    height: calc(100dvh - var(--rv-safe-top));
    padding-bottom: calc(20px + var(--rv-safe-bottom));
  }

  .cart-drawer {
    padding-bottom: calc(10px + var(--rv-safe-bottom));
  }

  .mobile-buy-bar {
    bottom: calc(10px + var(--rv-safe-bottom));
  }
}

  /* Tamanhos no mobile: sem corte e sem overflow lateral */
  .sizes-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px !important;
    padding-right: 6px !important;
    margin-right: 0 !important;
  }
  .sizes-grid::-webkit-scrollbar { display: none; }
  .sizes-grid .size-btn {
    flex: 0 0 auto !important;
    min-width: 56px;
  }
}

@media (max-width: 480px) {
  .sizes-grid .size-btn {
    min-width: 54px;
  }
}

/* =============================================
   UI POLISH EXTENSIONS — responsividade e forms
   ============================================= */
.form-group input,
.form-group select,
.form-group textarea,
.rastreio-input,
.prod-cep-row input {
  border-color: #27354d;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.rastreio-input::placeholder,
.prod-cep-row input::placeholder {
  color: #6f809b;
}

@media (max-width: 1100px) {
  .prod-guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary,
  .btn-buy,
  .btn-frete-prazo,
  .btn-wpp-buy {
    min-height: 50px;
    font-size: 14px;
    letter-spacing: .06em;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.72;
  }

  .sizes-grid {
    gap: 10px !important;
  }

  .sizes-grid .size-btn {
    min-height: 50px;
  }

  .prod-guarantee-grid {
    grid-template-columns: 1fr;
  }

  .prod-guarantee-card {
    padding: 11px;
  }

  .contact-item {
    padding: 14px;
  }

  .contact-proof-pill {
    min-height: 26px;
    font-size: 10px;
    letter-spacing: .03em;
  }
}

/* =============================================
   HOME BALANCE FILL — evita “buracos” visuais
   ============================================= */
@media (max-width: 1024px) {
  .cat-card-promo {
    grid-column: span 1 !important;
    grid-template-columns: 1fr !important;
    min-height: 240px;
  }
  .cat-promo-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cat-promo-thumb {
    min-height: 132px;
  }
  .cat-promo-title {
    font-size: clamp(28px, 4vw, 38px);
  }
}

@media (max-width: 768px) {
  .cat-card-promo {
    min-height: 220px;
    padding: 12px;
  }
  .cat-promo-media {
    gap: 8px;
  }
  .cat-promo-thumb {
    min-height: 108px;
  }
  .cat-promo-title {
    font-size: clamp(25px, 7vw, 34px);
  }
  .cat-promo-desc {
    font-size: 13px;
  }
  .cat-promo-meta span {
    min-height: 24px;
    font-size: 10px;
    padding: 0 8px;
  }
}
