/* ==========================================================================
   BACK-REDIRECT / ANTI-ALERTA RETENTION PAGE (Exact Blueprint)
   ========================================================================== */

.back-redirect-container {
  max-width: 580px;
  margin: 0 auto;
  padding: 32px 18px 100px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header & Anti-Alerta Pill */
.anti-alerta-badge {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid #8b5cf6;
  color: #c084fc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

/* Card 1: Alert Warning Box */
.anti-alerta-card {
  width: 100%;
  background: #12131f;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7);
  margin-bottom: 24px;
}

.anti-alerta-icon-wrap {
  width: 54px;
  height: 54px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #c084fc;
  font-size: 1.6rem;
}

.anti-alerta-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.anti-alerta-pill-tag {
  display: inline-block;
  background: rgba(219, 39, 119, 0.2);
  border: 1px solid rgba(219, 39, 119, 0.4);
  color: #f472b6;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.anti-alerta-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 14px;
}

.anti-alerta-highlight-pill {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.86rem;
  color: #e2e8f0;
  margin-top: 10px;
  line-height: 1.45;
}

/* Card 2: Camera Capture Box */
.anti-alerta-camera-box {
  width: 100%;
  background: #12131f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.camera-preview-wrapper {
  position: relative;
  width: 240px;
  height: 180px;
  margin: 16px auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #8b5cf6;
  background: #090a10;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
}

.camera-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.camera-preview-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.8rem;
  gap: 8px;
  z-index: 0;
  background: #0d0f18;
}

.camera-rec-dot {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.7);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #ef4444;
}

.camera-rec-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulseRec 1s infinite;
}

@keyframes pulseRec {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Card 3: Identification Alert Box */
.anti-alerta-identified-card {
  width: 100%;
  background: #12131f;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  padding: 24px 18px;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.identified-header {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #f472b6;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.identified-compare-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 20px;
}

.identified-user-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 140px;
}

.identified-avatar-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid #8b5cf6;
  background: #1e1b4b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 8px;
  color: #c084fc;
}

.identified-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identified-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.identified-col-sub {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
}

.identified-arrow {
  font-size: 1.4rem;
  color: #a855f7;
}

.identified-explanation {
  font-size: 0.86rem;
  color: #cbd5e1;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 14px;
}

.identified-action-banner {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.84rem;
  color: #e2e8f0;
  text-align: center;
  line-height: 1.4;
}

/* Card 4: Analysis Results Stats */
.analysis-results-box {
  width: 100%;
  margin-bottom: 24px;
}

.analysis-results-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.analysis-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.analysis-stat-card {
  background: #12131f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.analysis-stat-icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.analysis-stat-title {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 6px;
}

.analysis-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.analysis-stat-desc {
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.2;
}

/* Card 5: Discount Offer Box - R$ 37,00 no PIX */
.anti-alerta-offer-box {
  width: 100%;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.15) 0%, #12131f 100%);
  border: 2px solid #a855f7;
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.35);
  margin-bottom: 24px;
}

.offer-box-header {
  font-size: 0.85rem;
  font-weight: 800;
  color: #c084fc;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.offer-box-sub {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 14px;
}

.offer-old-price {
  font-size: 0.95rem;
  color: #64748b;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.offer-installments {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 2px;
}

.offer-installments strong {
  color: #ffffff;
}

.offer-badge-pill {
  display: inline-block;
  background: #ec4899;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 6px;
}

.offer-big-price {
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 14px 0 18px;
}

.offer-pix-tag {
  color: #34d399;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 0 0 25px rgba(52, 211, 153, 0.45);
  line-height: 1;
}

.offer-vista-sub {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.anti-alerta-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #ffffff;
  border: none;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(124, 58, 237, 0.6);
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.anti-alerta-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(124, 58, 237, 0.8);
}

.anti-alerta-cta-btn small {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 2px;
}

.offer-guarantee-text {
  font-size: 0.78rem;
  color: #94a3b8;
}

/* Card 6: Checklist */
.anti-alerta-checklist-card {
  width: 100%;
  background: #12131f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 20px;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.checklist-header {
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.35;
}

.anti-alerta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.anti-alerta-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.anti-alerta-list-item span:first-child {
  color: #8b5cf6;
  font-weight: 800;
  flex-shrink: 0;
}

/* Card 7: Decision Card */
.anti-alerta-decision-card {
  width: 100%;
  background: #12131f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 20px;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.decision-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #c084fc;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.decision-pills-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.decision-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.decision-pill strong {
  color: #f472b6;
}

/* Card 8: Final Opportunity CTA */
.anti-alerta-final-cta-card {
  width: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(219, 39, 119, 0.2) 100%);
  border: 2px solid #8b5cf6;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.final-cta-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: #c084fc;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.final-cta-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Card 9: Risk Notification Simulation */
.anti-alerta-risk-card {
  width: 100%;
  background: #12131f;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.risk-tag {
  font-size: 0.82rem;
  font-weight: 800;
  color: #f87171;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.risk-quote-box {
  background: rgba(0, 0, 0, 0.5);
  border: 1px dashed rgba(239, 68, 68, 0.5);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.92rem;
  font-style: italic;
  color: #fca5a5;
  margin: 14px 0;
}

/* Simulated Browser Camera Prompt Popup */
.browser-camera-prompt {
  position: fixed;
  top: 18px;
  left: 18px;
  width: 320px;
  background: #ffffff;
  color: #202124;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  padding: 18px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: none;
  animation: slidePrompt 0.3s ease-out;
}

@keyframes slidePrompt {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.prompt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.prompt-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #202124;
}

.prompt-close-btn {
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #5f6368;
}

.prompt-preview-container {
  width: 100%;
  height: 150px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}

.prompt-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prompt-btn {
  width: 100%;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-align: center;
}

.prompt-btn.primary {
  background: #1a73e8;
  color: #ffffff;
}

.prompt-btn.secondary {
  background: #e8f0fe;
  color: #1a73e8;
}

.prompt-btn.tertiary {
  background: #f1f3f4;
  color: #3c4043;
}
