/* Flash Recarga — Consentimento (banner + botão flutuante) — v5 */
.fr-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100000;
  background: #0b1220;
  color: #f1f5f9;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(110%);
  transition: transform .35s ease;
  font-family: 'Inter', system-ui, sans-serif;
}
.fr-consent.show { transform: translateY(0); }

.fr-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.fr-consent-text { flex: 1 1 420px; min-width: 260px; }
.fr-consent-text strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.fr-consent-text p { margin: 0; font-size: .9rem; line-height: 1.5; color: #cbd5e1; }
.fr-consent-text a { color: #93c5fd; text-decoration: underline; }

.fr-consent-actions { display: flex; gap: 12px; flex: 0 0 auto; }
.fr-btn {
  border: 0; cursor: pointer; border-radius: 10px;
  padding: 12px 20px; font-weight: 700; font-size: .92rem;
  font-family: inherit; transition: transform .15s ease, background .2s ease, opacity .2s ease;
}
.fr-btn:hover { transform: translateY(-1px); }
.fr-btn-primary { background: linear-gradient(135deg, #b71c1c 0%, #7f0000 100%); color: #fff; }
.fr-btn-ghost { background: transparent; color: #e2e8f0; border: 1px solid rgba(255, 255, 255, 0.25); }
.fr-btn-ghost:hover { background: rgba(255, 255, 255, 0.06); }

.fr-consent-reopen {
  position: fixed;
  left: 16px; bottom: 16px;
  z-index: 99990;
  background: rgba(11, 18, 32, 0.9);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  opacity: .55;
  transition: opacity .2s ease;
}
.fr-consent-reopen:hover { opacity: 1; }

@media (max-width: 560px) {
  .fr-consent-inner { padding: 16px; gap: 14px; }
  .fr-consent-actions { width: 100%; }
  .fr-consent-actions .fr-btn { flex: 1; }
  .fr-consent-reopen { left: 10px; bottom: 10px; }
}
