/* ============================================================
   Cupoland — Página do Grupo de Ofertas
   Componentes específicos (usa o design system de lando-assets/styles.css)
   ============================================================ */

/* ---------- Botões dos apps ---------- */
.btn--tg { background: var(--azul); color: #fff; }
.btn--tg:hover { background: #2159c4; color: #fff; }
.btn--wpp { background: #15803d; color: #fff; }
.btn--wpp:hover { background: #116a32; color: #fff; }
.btn svg { flex-shrink: 0; }

/* ---------- Chips de confiança ---------- */
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--roxo);
  background: var(--white); border: 2px solid var(--roxo-ink); border-radius: 999px;
  padding: 6px 14px; box-shadow: var(--pop-sm);
}
.trust-chip svg { color: #1d9e75; }

/* ---------- Arte do hero ---------- */
.hero__art--grupo { position: relative; display: flex; justify-content: center; }
.hero__art--grupo .badge-float { position: absolute; }
.badge-float--tg { top: 6%; right: 2%; background: var(--azul); color: #fff; }
.badge-float--wpp { bottom: 10%; left: 0; background: #15803d; color: #fff; animation-delay: 1.2s; }
.badge-float--tg svg, .badge-float--wpp svg { color: #fff; }

/* ---------- Canais (como ativar notificações) ---------- */
.canais-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.canal {
  background: var(--white); border: 2px solid var(--roxo-ink); border-radius: var(--radius);
  box-shadow: var(--pop); padding: 28px 26px; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 14px;
}
.canal img { max-height: 300px; width: auto; }
.canal h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--roxo-ink); margin: 0; }
.canal p { color: var(--body); margin: 0; max-width: 42ch; }
.canal .btn { margin-top: 6px; }
@media (max-width: 780px) { .canais-grid { grid-template-columns: 1fr; } }

/* ---------- Grade de lojas ---------- */
.stores-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.store-logo {
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 2px solid var(--roxo-ink); border-radius: var(--radius-sm);
  box-shadow: var(--pop-sm); padding: 10px 14px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.store-logo:hover { transform: translate(-2px, -2px); box-shadow: var(--pop); }
.store-logo img { width: 100%; max-width: 128px; height: 56px; object-fit: contain; border-radius: 8px; }
@media (max-width: 980px) { .stores-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .stores-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white); border: 2px solid var(--roxo-ink); border-radius: 16px;
  box-shadow: var(--pop-sm); overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 16px 20px; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--roxo-ink);
}
.faq-q .chev { flex-shrink: 0; transition: transform .25s var(--ease); color: var(--roxo); }
.faq-item.is-open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { margin: 0; padding: 0 20px 18px; color: var(--body); font-size: .98rem; line-height: 1.6; }
