/* ============================================================
   APPS — página de aplicativos (showcase Sherman Acess)
   ============================================================ */
.apps { background: var(--bg); }

.appcard {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-card);
}

/* ---- Prévia do app ---- */
.appcard__preview { position: relative; }
.app-preview__svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55));
}
.appcard__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: rgba(20, 18, 26, 0.88);
  border: 1px solid var(--line);
  padding: 0.42rem 0.72rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.theme-light .appcard__chip { color: #f5f3f8; }
.appcard__chip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 0 4px rgba(157, 78, 221, 0.18);
}
.appcard__chip--face { top: -16px; left: 7%; animation: float 6s ease-in-out infinite; }
.appcard__chip--lpr { bottom: 12%; right: -14px; animation: float 6s ease-in-out infinite 1.5s; }

/* ---- Info ---- */
.appcard__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(157, 78, 221, 0.12);
  border: 1px solid rgba(157, 78, 221, 0.28);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.appcard__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
.appcard__name .accent { color: var(--purple-light); }
.appcard__lead {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0.9rem 0 1.5rem;
}
.appcard__lead strong { color: var(--ink); font-weight: 600; }

.appcard__features { display: grid; gap: 1rem; margin-bottom: 1.7rem; }
.appfeat { display: flex; gap: 0.9rem; align-items: flex-start; }
.appfeat__icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(157, 78, 221, 0.14);
  color: var(--purple-light);
}
.appfeat__icon svg { width: 21px; height: 21px; display: block; }
.appfeat__txt { display: flex; flex-direction: column; gap: 0.2rem; }
.appfeat__txt strong { color: var(--ink); font-size: 0.98rem; font-weight: 600; }
.appfeat__txt span { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

.appcard__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.apps__soon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.apps__soon-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@media (max-width: 920px) {
  .appcard { grid-template-columns: 1fr; gap: 1.8rem; }
  .appcard__preview { order: -1; }
  .appcard__chip--face { left: 4px; }
  .appcard__chip--lpr { right: 4px; }
}
@media (max-width: 520px) {
  .appcard__actions .btn { width: 100%; }
  .appcard__chip { font-size: 0.62rem; padding: 0.35rem 0.6rem; }
}
