/* Beimax Remoto Acesso — estilos específicos da landing (base compartilhada em /assets/brand.css) */

.ra-secao-alt { background: var(--gray-50); }

.bx-nav { display: flex; align-items: center; gap: 28px; font-size: 14.5px; font-weight: 600; color: var(--gray-600); }
.bx-nav a:hover { color: var(--brand); }
@media (max-width: 880px) { .bx-nav { display: none; } }

/* ── Mockup do app no hero ── */
.ra-mock-wrap { position: relative; max-width: 420px; margin: 52px auto 0; text-align: left; }
.ra-mockup {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 16px;
  box-shadow: 0 24px 60px -18px rgba(15, 23, 42, .25); overflow: hidden;
}
.ra-mock-top {
  display: flex; align-items: center; gap: 7px; padding: 12px 16px;
  background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
}
.ra-mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.ra-mock-title { margin-left: 6px; font-size: 12.5px; font-weight: 700; color: var(--gray-600); }
.ra-mock-body { padding: 26px 22px; text-align: center; }
.ra-mock-id { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.ra-mock-id span { font-size: 12px; color: var(--gray-400); font-weight: 600; }
.ra-mock-id strong { font-size: 24px; letter-spacing: 1px; color: var(--gray-900); font-family: monospace; }
.ra-mock-status {
  display: inline-flex; align-items: center; gap: 8px; background: #dcfce7; color: #166534;
  border-radius: 30px; padding: 7px 16px; font-size: 13px; font-weight: 700; margin-bottom: 14px;
}
.ra-mock-dotpulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
.ra-mock-hint { font-size: 12.5px; color: var(--gray-400); line-height: 1.5; }

.ra-float {
  position: absolute; background: #fff; border: 1px solid var(--gray-200); border-radius: 12px;
  padding: 10px 16px; font-size: 12.5px; font-weight: 700; color: var(--gray-800);
  box-shadow: var(--shadow-lg); white-space: nowrap;
}
.ra-float-1 { top: -16px; right: -18px; }
.ra-float-2 { bottom: -16px; left: -18px; }
@media (max-width: 560px) {
  .ra-float-1 { right: 8px; top: -10px; }
  .ra-float-2 { left: 8px; bottom: -10px; }
}

/* ── Como funciona ── */
.ra-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; counter-reset: ra-step;
}
.ra-step { text-align: center; }
.ra-step-num {
  counter-increment: ra-step; width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.ra-step-num::before { content: counter(ra-step); }
.ra-step h3 { font-size: 15px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.ra-step p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ── Cards de segurança ── */
.ra-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.ra-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ra-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ra-card-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.ra-card h3 { font-size: 16px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.ra-card p { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; }

/* ── Contato ── */
.ra-contato { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; max-width: 620px; margin: 0 auto; }
.ra-contato-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 26px 24px; text-align: center; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-sm);
}
.ra-contato-icone { font-size: 26px; }
.ra-contato-card strong { font-size: 15px; color: var(--gray-900); }
.ra-contato-card a { color: var(--brand); font-weight: 800; font-size: 15px; }
