/* ============================================================
   MOVIE FITNESS — Design system
   Layout do template clean (cards, gradientes, stepper, checkout)
   com a paleta roxa da marca (#5f02a6 / #6c3d94).
   ============================================================ */

:root {
  --bg:        #ffffff;
  --surface:   #f5f5f5;
  --surface2:  #ececec;
  --roxo:      #5f02a6;   /* cor principal da marca (favicon) */
  --roxo2:     #6c3d94;   /* roxo mais suave */
  --roxo3:     #7b2bc0;   /* para o gradiente */
  --roxo-soft: #f5edfb;   /* fundo roxo muito claro (seleções) */
  --border:    rgba(0,0,0,0.12);
  --text:      #1a1a1a;
  --muted:     #666666;
  --red:       #e05252;
  --green:     #52c97a;
  --radius:    12px;
  --radius-sm: 8px;

  /* aliases de compatibilidade */
  --cor-primaria: var(--roxo2);
  --cor-primaria-escura: var(--roxo);
  --cor-texto: var(--text);
  --cor-texto-suave: var(--muted);
  --cor-borda: var(--surface2);
  --cor-fundo-suave: var(--surface);
  --cor-branco: #fff;

  --fonte: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  --header-h: 60px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--fonte);
  font-size: 15px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.is-hidden { display: none !important; }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--roxo);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 12px;
}

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
  max-width: 1200px;
  margin: 0 auto;
}
.menu-toggle {
  background: none;
  border: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 2px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 19px;
  white-space: nowrap;
  color: var(--text);
}
.logo img { height: 30px; width: 30px; }
.logo .fit { color: var(--roxo); font-weight: 500; margin-left: 2px; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.cart-link { position: relative; display: flex; align-items: center; color: var(--text); }
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--roxo);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.search-bar { border-top: 1px solid var(--border); padding: 12px 20px; }
.search-bar form {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--muted);
}
.search-bar input {
  border: none;
  outline: none;
  background: none;
  flex: 1;
  font-size: 14px;
  color: var(--text);
}

/* ---------- Nav drawer ---------- */
.nav-drawer { position: fixed; inset: 0; z-index: 100; display: none; }
.nav-drawer.open { display: block; }
.nav-drawer .backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.nav-drawer .panel {
  position: relative;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  padding: 22px;
  overflow-y: auto;
}
.nav-drawer .panel a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.nav-drawer .close-btn { background: none; border: none; font-size: 26px; margin-bottom: 8px; color: var(--muted); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--roxo);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  transition: opacity .2s, transform .1s, box-shadow .2s;
}
.btn:hover { opacity: .92; }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--roxo2), var(--roxo));
  color: #fff;
  border: none;
}
.btn-block { display: flex; width: 100%; text-align: center; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.btn-outline:hover { border-color: var(--roxo); color: var(--roxo); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--roxo2), var(--roxo));
  color: #fff;
  padding: 64px 20px;
  text-align: center;
}
.hero h1 { font-size: 32px; margin: 0 0 12px; letter-spacing: 1px; font-weight: 800; }
.hero p { margin: 0 0 22px; opacity: .92; font-size: 16px; }
.hero .btn { background: #fff; color: var(--roxo); }

/* ---------- Vitrine ---------- */
.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 48px 0 8px;
  color: var(--text);
}
.section-sub { text-align:center; color: var(--muted); font-size: 14px; margin: 0 0 26px; }
.vitrine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) { .vitrine-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 960px) { .vitrine-grid { grid-template-columns: repeat(4, 1fr); } }

.produto-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.produto-card:hover {
  box-shadow: 0 10px 28px rgba(95,2,166,0.12);
  transform: translateY(-3px);
  border-color: transparent;
}
.produto-card .imgw { aspect-ratio: 3/4; overflow: hidden; background: var(--surface); }
.produto-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.produto-card:hover img { transform: scale(1.04); }
.produto-card .info { padding: 12px 14px 16px; }
.produto-card .nome { font-size: 13px; margin: 0 0 6px; font-weight: 600; line-height: 1.35; }
.produto-card .preco { font-size: 16px; font-weight: 800; color: var(--roxo); margin: 0; }

/* ---------- Página de produto ---------- */
.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  padding: 18px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb a:hover { color: var(--roxo); }
.produto-detail {
  display: grid;
  gap: 30px;
  padding: 22px 20px 10px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 820px) { .produto-detail { grid-template-columns: 1.05fr 1fr; } }
.produto-galeria {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produto-galeria img { width: 100%; max-height: 560px; object-fit: contain; border-radius: var(--radius-sm); }
.produto-info h1 { font-size: 26px; margin: 0 0 8px; font-weight: 800; line-height: 1.2; }
.produto-info .preco { font-size: 30px; font-weight: 800; color: var(--roxo); margin: 0 0 4px; }
.produto-info .parcelamento { font-size: 13px; color: var(--muted); margin: 0 0 22px; }

.cores-row, .tamanhos-row { margin-bottom: 22px; }
.cores-row .label, .tamanhos-row .label, .qtd-row .label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--roxo2);
  margin-bottom: 10px;
}
.cores-list { display: flex; gap: 10px; flex-wrap: wrap; }
.cor-swatch {
  width: 46px; height: 46px; border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color .2s, transform .15s;
}
.cor-swatch:hover { transform: scale(1.05); }
.cor-swatch img { width: 100%; height: 100%; object-fit: cover; }
.cor-swatch.ativo { border-color: var(--roxo); box-shadow: 0 0 0 2px rgba(95,2,166,0.18); }

.tamanhos-list { display: flex; gap: 8px; flex-wrap: wrap; }
.tamanho-btn {
  min-width: 46px;
  padding: 11px 8px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: all .15s;
}
.tamanho-btn:hover { border-color: var(--roxo); color: var(--roxo); }
.tamanho-btn.ativo { background: var(--roxo); border-color: var(--roxo); color: #fff; }

.qtd-row { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.qtd-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qtd-control button { background: var(--surface); border: none; width: 38px; height: 40px; font-size: 18px; color: var(--text); }
.qtd-control button:hover { background: var(--surface2); }
.qtd-control span { width: 38px; text-align: center; font-size: 15px; font-weight: 600; }

.selo-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.descricao-produto {
  padding: 10px 20px 48px;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}
.descricao-produto h2 { font-size: 16px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--roxo2); margin-bottom: 12px; }

/* ---------- Carrinho ---------- */
.page-title { max-width: 1200px; margin: 0 auto; padding: 26px 20px 0; font-size: 24px; font-weight: 800; }
.cart-layout, .checkout-layout {
  display: grid;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
@media (min-width: 860px) { .cart-layout, .checkout-layout { grid-template-columns: 2fr 1fr; align-items: start; } }

.cart-item {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item img { width: 78px; height: 104px; object-fit: cover; border-radius: var(--radius-sm); background: var(--surface); }
.cart-item .nome { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.cart-item .variante { font-size: 12px; color: var(--muted); margin: 0 0 10px; }
.cart-item .remover { font-size: 12px; color: var(--red); background: none; border: none; padding: 0; margin-top: 8px; }
.cart-item .remover:hover { text-decoration: underline; }
.cart-item .preco-item { font-weight: 800; color: var(--roxo); text-align: right; }

.resumo-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.resumo-box h2 { font-size: 0.8rem; font-weight: 800; color: var(--roxo2); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 18px; }
.resumo-linha { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: var(--muted); }
.resumo-linha.total { color: var(--text); font-weight: 800; font-size: 17px; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 14px; }
.resumo-linha.total span:last-child { color: var(--roxo); }

.carrinho-vazio { text-align: center; padding: 70px 20px; color: var(--muted); }
.carrinho-vazio .btn { margin-top: 18px; }

/* ---------- Checkout multi-step (estilo template) ---------- */
.checkout-wrap { max-width: 560px; margin: 0 auto; padding: 8px 16px 48px; }

.ck-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 22px 16px 0;
  max-width: 560px;
  margin: 0 auto;
}
.ck-step { display: flex; align-items: center; gap: 8px; flex: 1; position: relative; }
.ck-step:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
}
.step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
  transition: all .3s;
}
.step-label { font-size: 0.72rem; color: var(--muted); white-space: nowrap; transition: color .3s; }
.ck-step.active .step-dot { background: var(--roxo); border-color: var(--roxo); color: #fff; }
.ck-step.active .step-label { color: var(--roxo); font-weight: 700; }
.ck-step.done .step-dot { background: var(--green); border-color: var(--green); color: #fff; }
.ck-step.done::after { background: var(--green); }

.ck-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.ck-card + .ck-card { margin-top: 14px; }
.ck-card-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--roxo2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.f-group { margin-bottom: 14px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f-label { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 5px; font-weight: 600; }
.f-input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.92rem;
  padding: 11px 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.f-input:focus { border-color: var(--roxo); box-shadow: 0 0 0 3px rgba(95,2,166,0.12); }
.f-input::placeholder { color: #999; }
.f-input.error { border-color: var(--red); }
select.f-input option { background: #fff; }

.phone-row { display: flex; }
.phone-prefix {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 11px 12px;
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}
.phone-row .f-input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.ck-error {
  background: rgba(224,82,82,0.12);
  border: 1px solid rgba(224,82,82,0.3);
  border-radius: var(--radius-sm);
  color: #c0392b;
  font-size: 0.82rem;
  padding: 10px 14px;
  margin-top: 12px;
}

.prod-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 8px; }
.prod-info { flex: 1; }
.prod-name { font-size: 0.92rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.prod-prices { margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.prod-price { font-size: 1.1rem; font-weight: 800; color: var(--roxo); }
.prod-original { font-size: 0.8rem; color: #888; text-decoration: line-through; }

.ck-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }

.price-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; }
.price-row.discount { color: var(--green); }
.price-row.total { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-top: 4px; }
.price-row.total span:last-child { color: var(--roxo); }

.pay-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.pay-badge-icon { display: flex; align-items: center; justify-content: center; }
.pay-badge-info { flex: 1; }
.pay-badge-info strong { font-size: 0.9rem; color: var(--text); display: block; }
.pay-badge-info small { font-size: 0.75rem; color: var(--muted); }
.pay-note { font-size: 0.78rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }

.wait-screen { text-align: center; padding: 24px 0; }
.wait-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.wait-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.wait-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 4px; }
.wait-phone { font-size: 1.1rem; font-weight: 700; color: var(--roxo); margin: 10px 0 16px; }
.wait-hint { font-size: 0.75rem; color: #777; margin-bottom: 8px; }
.spinner {
  width: 38px; height: 38px;
  border: 3px solid var(--border);
  border-top-color: var(--roxo);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.success-icon { font-size: 3.5rem; margin-bottom: 12px; }
.success-title { font-size: 1.4rem; font-weight: 800; color: var(--green); margin-bottom: 6px; }
.success-sub { font-size: 0.85rem; color: var(--muted); }
.fail-icon { font-size: 3rem; margin-bottom: 12px; }
.fail-title { font-size: 1.3rem; font-weight: 800; color: var(--red); margin-bottom: 6px; }
.fail-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }

.trust-row { display: flex; justify-content: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: #666; }
.ck-secure { text-align: center; font-size: 0.72rem; color: #777; margin-top: 20px; }

@media (max-width: 380px) { .f-row { grid-template-columns: 1fr; } .ck-card { padding: 18px; } }

/* ---------- Página de atendimento (/help) ---------- */
.help-hero {
  background: linear-gradient(135deg, var(--roxo2), var(--roxo));
  color: #fff;
  padding: 44px 20px;
  text-align: center;
}
.help-hero h1 { font-size: 28px; margin: 0 0 10px; font-weight: 800; letter-spacing: 0.5px; }
.help-hero p { margin: 0; opacity: .92; font-size: 15px; }

.help-wrap { max-width: 860px; margin: 0 auto; padding: 0 20px 48px; }

.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin: -26px 0 36px;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(95,2,166,0.07);
}
.contact-card .ico { color: var(--roxo); display: flex; justify-content: center; margin-bottom: 10px; }
.contact-card h2 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--roxo2); margin: 0 0 8px; font-weight: 800; }
.contact-card .valor { font-size: 15px; font-weight: 700; color: var(--text); word-break: break-word; }
.contact-card .valor a:hover { color: var(--roxo); }
.contact-card .nota { font-size: 11.5px; color: var(--muted); margin-top: 6px; line-height: 1.45; }

.help-section { margin-bottom: 34px; scroll-margin-top: calc(var(--header-h) + 16px); }
.help-section h2 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--text);
}
.help-section .sub { font-size: 13.5px; color: var(--muted); margin: 0 0 16px; }
.help-section p { font-size: 14.5px; line-height: 1.65; color: #444; }
.help-section ul { font-size: 14.5px; line-height: 1.7; color: #444; padding-left: 20px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 46px 15px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  position: relative;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: var(--roxo);
  line-height: 1;
}
.faq-item[open] > summary::after { content: '−'; }
.faq-item[open] > summary { color: var(--roxo); }
.faq-item .resposta { padding: 0 16px 16px; font-size: 14px; line-height: 1.7; color: #555; }
.faq-item .resposta p:first-child { margin-top: 0; }
.faq-item .resposta a { color: var(--roxo); text-decoration: underline; }

.help-steps { display: grid; gap: 12px; grid-template-columns: 1fr; margin-top: 14px; }
@media (min-width: 640px) { .help-steps { grid-template-columns: repeat(3, 1fr); } }
.help-step {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  background: var(--surface);
}
.help-step .n {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--roxo);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 9px;
}
.help-step strong { display: block; font-size: 14px; margin-bottom: 4px; }
.help-step span { font-size: 13px; color: var(--muted); line-height: 1.55; }

.help-nota {
  border-left: 3px solid var(--roxo);
  background: var(--roxo-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #444;
}
.help-nota strong { color: var(--roxo); }

.tabela-envio { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 12px; }
.tabela-envio th, .tabela-envio td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--border); }
.tabela-envio th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--roxo2); font-weight: 800; }
.tabela-envio td:last-child, .tabela-envio th:last-child { text-align: right; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); padding: 48px 20px 24px; margin-top: 40px; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-grid h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; color: var(--roxo2); font-weight: 800; }
.footer-grid a, .footer-grid p { display: block; font-size: 14px; margin-bottom: 10px; color: #555; }
.footer-grid a:hover { color: var(--roxo); }
.footer-logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 18px; margin-bottom: 12px; color: var(--text); }
.footer-logo img { height: 26px; }

.selos-row { display: flex; flex-direction: column; gap: 12px; }
.selo-badge {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  font-size: 11px;
  background: #fff;
  width: fit-content;
}
.selo-badge svg { flex-shrink: 0; }
.selo-badge .titulo { font-weight: 700; display: block; color: var(--text); }
.selo-badge .sub { color: var(--muted); display: block; }

.pagamento-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.pagamento-icons .chip {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  background: #fff;
}
.pagamento-icons img { height: 20px; }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
