/* ═══════════════════════════════════════
   APLICATIVOS PAGE — ACESSO NA TELA
   hero, apps-grid (versão completa),
   store buttons, contact links
═══════════════════════════════════════ */

/* ── HERO ── */
.apps-hero {
  background: var(--laranja);
  padding: 48px 28px 44px;
}
.apps-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.apps-hero h1 .hl { color: #FFE5B0; font-style: italic; font-family: 'Fraunces', serif; font-weight: 500; }
.apps-hero p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.65; max-width: 560px; }

/* ── MAIN ── */
.apps-main { padding: 32px 28px 64px; }

/* ── APP GRID (aplicativos page — card maior) ── */
.apps-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 16px;
}

/* ── APP CARD (aplicativos page variant) ── */
.app-card-full {
  background: var(--bg);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color .15s, box-shadow .15s;
}
.app-card-full:hover {
  border-color: var(--laranja-bdr);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.app-card-full .app-ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.app-card-full .app-name {
  font-size: 17px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.2px;
}

/* ── STORE BUTTONS ── */
.app-card__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-store-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1A1A1A;
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  text-decoration: none;
  transition: background .15s, transform .1s;
  min-width: 140px;
}
.app-store-btn:hover { background: #333; transform: translateY(-1px); }
.app-store-btn:focus-visible { outline: 3px solid var(--laranja); outline-offset: 2px; }
.app-store-btn svg { flex-shrink: 0; }
.app-store-btn span { display: flex; flex-direction: column; line-height: 1.2; }
.app-store-btn small { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.7); }
.app-store-btn strong { font-size: 13px; font-weight: 600; }

/* ── CONTACT LINKS ── */
.app-contact {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.app-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink3);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1.5px solid var(--bdr);
  background: var(--bg2);
  transition: all .12s;
  white-space: nowrap;
}
.app-contact-link:hover { border-color: var(--laranja); color: var(--laranja); background: var(--laranja-cl); }
.app-contact-link:focus-visible { outline: 3px solid var(--laranja); outline-offset: 2px; }
.app-contact-link svg { flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .apps-hero         { padding: 32px 16px 28px; }
  .apps-main         { padding: 20px 16px 48px; }
  .apps-grid-full    { grid-template-columns: 1fr; gap: 12px; }
  .app-store-btns    { flex-direction: column; }
  .app-store-btn     { min-width: unset; }
}
