/* ============================================================
   LP — Corrimão de inox em São José · ângulo local / prático
   Vieses: prova social local, efeito manada, reciprocidade, disponibilidade
   ============================================================ */

/* ---------- Hero centralizado ---------- */
.sj-hero {
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(245, 166, 35, 0.08), transparent 60%),
    var(--paper-warm);
  padding: clamp(2.4rem, 5vw, 4rem) 0 clamp(2.6rem, 5vw, 4rem);
  text-align: center;
}
.sj-hero .container { max-width: 880px; }
.sj-hero h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); margin-top: 1.1rem; }
.sj-hero .lead { margin: 1.2rem auto 0; max-width: 620px; }
.sj-hero .lp-chips { justify-content: center; }
.sj-hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.sj-hero-note { margin-top: 1rem; font-size: 0.9rem; color: var(--text-mute); display: inline-flex; align-items: center; gap: 0.5rem; }
.sj-hero-note svg { width: 18px; height: 18px; color: #16a34a; }
.sj-hero-img { margin-top: clamp(2rem, 4vw, 3rem); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 16 / 7; }
.sj-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Banda de números (efeito manada) ---------- */
.count-band {
  background: var(--ink); color: #fff; border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.4rem) clamp(1.4rem, 4vw, 3rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center;
}
.count-item { position: relative; }
.count-item + .count-item::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: var(--line-dark); }
.count-item .n { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 5.5vw, 3.7rem); line-height: 1; }
.count-item .n .suffix { color: var(--accent); }
.count-item .l { margin-top: 0.6rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.62); }

/* ---------- Bairros atendidos (board) ---------- */
.area-board { display: grid; grid-template-columns: repeat(auto-fill, minmax(184px, 1fr)); gap: 0.9rem; margin-top: clamp(2rem, 4vw, 3rem); }
.area-cell { display: flex; align-items: center; gap: 0.7rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 0.9rem 1.1rem; font-weight: 500; color: var(--ink); transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.area-cell:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.area-cell .ck { width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-strong); display: grid; place-items: center; flex: none; }
.area-cell .ck svg { width: 14px; height: 14px; }

/* ---------- Aplicações ---------- */
.apps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: clamp(2rem, 4vw, 3rem); }
.app-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.app-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.app-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-strong); display: grid; place-items: center; margin-bottom: 1rem; }
.app-icon svg { width: 24px; height: 24px; }
.app-card h3 { font-size: 1.08rem; }
.app-card p { font-size: 0.9rem; color: var(--text-mute); margin-top: 0.4rem; }

/* ---------- Depoimento em destaque ---------- */
.spotlight {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: center;
  background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.8rem, 4vw, 3rem);
}
.spotlight .av { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg, var(--steel-1), var(--steel-2)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; flex: none; }
.spotlight .stars { display: inline-flex; gap: 2px; color: var(--accent); margin-bottom: 0.8rem; }
.spotlight .stars svg { width: 20px; height: 20px; }
.spotlight blockquote { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.15rem, 2.4vw, 1.6rem); line-height: 1.4; color: var(--ink); letter-spacing: -0.01em; }
.spotlight cite { display: block; margin-top: 0.9rem; font-style: normal; font-size: 0.9rem; color: var(--text-mute); }

@media (max-width: 980px) {
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .count-band { grid-template-columns: 1fr; gap: 1.6rem; }
  .count-item + .count-item::before { display: none; }
  .apps-grid { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
