/* ================================================
   VARIÁVEIS
================================================ */
:root {
  --blue:       #1565c0;
  --blue-dark:  #0a1c3e;
  --yellow:     #f5c518;
  --red:        #c0392b;
  --green:      #1a7a3f;
  --wa:         #25d366;
  --wa-dark:    #128c7e;
  --bg:         #edf2f7;
  --card:       #ffffff;
  --border:     #d9e4f0;
  --text:       #1a1a1a;
  --mid:        #555;
  --light:      #999;
  --radius:     12px;
  --shadow:     0 2px 10px rgba(0,0,0,.07);
  --shadow-h:   0 8px 28px rgba(0,0,0,.14);
}

/* ================================================
   RESET
================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.4;
}

/* ================================================
   HEADER
================================================ */
.header {
  background: var(--blue-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 26px; }
.logo-nome {
  display: block;
  font-size: 13pt;
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 7.5pt;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-nav {
  display: flex;
  gap: 2px;
  flex: 1;
}
.header-nav a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 8.5pt;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .18s, color .18s;
}
.header-nav a:hover {
  background: rgba(255,255,255,.1);
  color: var(--yellow);
}

.header-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--wa);
  color: #fff;
  text-decoration: none;
  font-size: 8.5pt;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background .18s;
  white-space: nowrap;
}
.header-wa:hover { background: var(--wa-dark); }

/* ================================================
   HERO
================================================ */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, #1e90d4 100%);
  padding: 52px 20px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content:''; position:absolute;
  top:-80px; right:-60px;
  width:320px; height:320px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
}
.hero::after {
  content:''; position:absolute;
  bottom:-90px; left:-50px;
  width:260px; height:260px;
  border-radius:50%;
  background:rgba(255,255,255,.04);
}

.hero-inner { position:relative; z-index:1; max-width:700px; margin:0 auto; }

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 8.5pt;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 34pt;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.hero h1 span { color: var(--yellow); }

.hero p {
  font-size: 11pt;
  color: rgba(255,255,255,.9);
  margin-bottom: 26px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hbadge {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}
.hbadge-icon  { font-size: 20px; margin-bottom: 3px; }
.hbadge-valor { font-size: 14pt; font-weight: 900; color: var(--yellow); line-height: 1; }
.hbadge-label { font-size: 7pt; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .5px; }

/* ================================================
   FAIXA EXCLUSIVA GRUPO WHATSAPP
================================================ */
.faixa-grupo {
  background: linear-gradient(90deg, #075e54 0%, #128c7e 60%, #25d366 100%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  flex-wrap: wrap;
}

.faixa-icone {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faixa-texto {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faixa-texto strong {
  font-size: 10.5pt;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.faixa-texto span {
  font-size: 8.5pt;
  color: rgba(255,255,255,.85);
}

.faixa-btn {
  flex-shrink: 0;
  background: #fff;
  color: #075e54;
  text-decoration: none;
  font-size: 8.5pt;
  font-weight: 900;
  padding: 9px 18px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .18s, transform .1s;
  white-space: nowrap;
}
.faixa-btn:hover {
  background: #f0fff0;
  transform: scale(1.03);
}

/* ================================================
   NAVEGAÇÃO DE CATEGORIAS
================================================ */
.cat-nav {
  background: #fff;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 56px;
  z-index: 90;
  display: flex;
  overflow-x: auto;
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  text-decoration: none;
  font-size: 9pt;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.cat-btn:hover { color: var(--blue); border-bottom-color: var(--blue); }

/* ================================================
   SEÇÃO
================================================ */
.secao {
  max-width: 1200px;
  margin: 36px auto;
  padding: 0 16px;
}

.secao-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--blue);
}
.secao-sub {
  font-size: 8pt;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.secao-titulo {
  font-size: 20pt;
  font-weight: 900;
  color: var(--blue-dark);
  text-transform: uppercase;
  line-height: 1;
}
.secao-qtd {
  font-size: 8pt;
  font-weight: 700;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================================
   GRADE
================================================ */
.grade {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px)  { .grade { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .grade { grid-template-columns: 1fr; } }

/* ================================================
   CARD
================================================ */
.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: var(--shadow-h);
  transform: translateY(-3px);
}

.badge-off {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 7.5pt;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 6px;
  z-index: 2;
  letter-spacing: .5px;
}

.card-img {
  background: #f5f8fc;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  height: 200px;
}
.card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
}

.card-marca {
  font-size: 7pt;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-nome {
  font-size: 10.5pt;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.2;
}
.card-modelo {
  font-size: 7.5pt;
  color: var(--light);
  font-weight: 600;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 4px 0;
}
.card-features span {
  font-size: 7.5pt;
  color: var(--mid);
  font-weight: 600;
}

/* Preços */
.card-precos {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.preco-de {
  font-size: 8pt;
  color: var(--light);
  font-weight: 700;
}
.preco-de s {
  font-size: 9pt;
  color: var(--light);
  text-decoration-thickness: 1.5px;
}

/* PIX */
.preco-pix {
  background: var(--green);
  border-radius: 8px;
  padding: 8px 11px;
  display: flex;
  flex-direction: column;
}
.pix-label {
  font-size: 6.5pt;
  font-weight: 900;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1;
  margin-bottom: 2px;
}
.pix-valor {
  font-size: 18pt;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.pix-eco {
  font-size: 6pt;
  color: rgba(255,255,255,.75);
  margin-top: 2px;
}

/* Parcela */
.preco-parcela {
  background: var(--blue-dark);
  border-radius: 8px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.parc-label {
  font-size: 7pt;
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.parc-valor {
  font-size: 10.5pt;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}

/* Botão WhatsApp */
.btn-wa {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 10px;
  font-size: 9.5pt;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  width: 100%;
  transition: background .18s, transform .1s;
}
.btn-wa:hover  { background: var(--wa-dark); }
.btn-wa:active { transform: scale(.98); }

.card-ean {
  font-size: 6.5pt;
  color: #ccc;
  text-align: center;
  font-weight: 600;
  margin-top: 4px;
}

/* ================================================
   FOOTER
================================================ */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.65);
  text-align: center;
  padding: 28px 20px;
  margin-top: 52px;
  font-size: 8.5pt;
  line-height: 1.8;
}
.footer strong { color: var(--yellow); }

/* ================================================
   RESPONSIVO — HEADER
================================================ */
@media (max-width: 700px) {
  .header-nav { display: none; }
  .hero h1 { font-size: 24pt; }
  .secao-titulo { font-size: 16pt; }
}
