:root {
  --blue-primary: #0284c7;
  --blue-navy: #0b2545;
  --blue-night: #061120;
  --white: #ffffff;
  --text-title: #0b2545;
  --text-muted: #64748b;
  --emerald: #059669;
  --radius-lg: 20px;
  --shadow-lux: 0 25px 60px -15px rgba(6, 17, 32, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--blue-night);
  background-image: radial-gradient(circle at 50% -10%, #0d3b66 0%, #061120 85%);
  color: var(--text-title);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.layout-box {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* Header */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-crest {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0284c7, #0b2545);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.brand-name-text {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
}

.brand-tagline {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
}

.phase-chip {
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #bae6fd;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Linha de Progresso */
.line-holder {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 18px;
}

.line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #38bdf8, #0284c7);
  border-radius: 6px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Principal */
.content-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-lux);
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

/* Telas */
.card-screen {
  display: none;
  flex-direction: column;
  flex: 1;
  animation: fadeIn 0.3s ease-out;
}

.card-screen.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Badges */
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f9ff;
  color: #0369a1;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid #bae6fd;
  width: fit-content;
  margin-bottom: 14px;
}

.headline-title {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--blue-navy);
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.headline-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.key-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  background: #f8fafc;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.perk-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.perk-bullet {
  width: 22px;
  height: 22px;
  background: #dbeafe;
  color: #0284c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.perk-row strong {
  display: block;
  font-size: 13.5px;
  color: #0f172a;
  font-weight: 700;
}

.perk-row span {
  font-size: 12px;
  color: #64748b;
  display: block;
  margin-top: 2px;
}

.btn-cta-main {
  background: linear-gradient(135deg, #0284c7 0%, #0b2545 100%);
  color: var(--white);
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.35);
  transition: all 0.2s ease;
  width: 100%;
}

.btn-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.45);
}

.ssl-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
}

/* Perguntas */
.quest-stage {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-primary);
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.quest-header-text {
  font-size: 18.5px;
  font-weight: 750;
  color: var(--blue-navy);
  line-height: 1.35;
  margin-bottom: 18px;
}

.btn-options-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.btn-opt-tile {
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.16s ease;
  width: 100%;
}

.opt-index {
  width: 26px;
  height: 26px;
  background: #f1f5f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  flex-shrink: 0;
}

.btn-opt-tile:hover {
  border-color: #38bdf8;
  background: #f0f9ff;
  transform: translateX(3px);
}

.btn-opt-tile.selected {
  border-color: var(--blue-primary);
  background: #e0f2fe;
  color: #0369a1;
  box-shadow: 0 0 0 1px var(--blue-primary);
}

.btn-opt-tile.selected .opt-index {
  background: var(--blue-primary);
  color: var(--white);
}

.tile-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.btn-opt-back {
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
}

.btn-opt-back:hover {
  color: #0f172a;
}

/* Loader */
.luxury-loader {
  display: flex;
  justify-content: center;
  margin: 35px 0 20px;
}

.ring-spinner {
  width: 54px;
  height: 54px;
  border: 4px solid #e0f2fe;
  border-top-color: #0284c7;
  border-radius: 50%;
  animation: turnRing 0.8s linear infinite;
}

@keyframes turnRing {
  to { transform: rotate(360deg); }
}

.loader-caption {
  text-align: center;
  font-size: 18.5px;
  font-weight: 800;
  color: var(--blue-navy);
  margin-bottom: 6px;
}

.loader-sub {
  text-align: center;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
}

.benchmark-list {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bench-item {
  font-size: 12.5px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bench-item::before {
  content: "○";
  font-size: 13px;
}

.bench-item.active-step {
  color: #0f172a;
  font-weight: 600;
}

.bench-item.active-step::before {
  content: "✔";
  color: #0284c7;
  font-size: 12px;
}

/* Conclusão */
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid #a7f3d0;
  width: fit-content;
  margin-bottom: 12px;
}

.finish-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--blue-navy);
  margin-bottom: 14px;
}

.amount-spotlight {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1.5px solid #bae6fd;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.spot-title {
  font-size: 12px;
  font-weight: 700;
  color: #0369a1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spot-value {
  font-size: 28px;
  font-weight: 850;
  color: var(--blue-navy);
  letter-spacing: -0.5px;
  margin: 4px 0;
}

.spot-detail {
  font-size: 13px;
  color: #0284c7;
  font-weight: 700;
}

.summary-card-deck {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.deck-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #475569;
}

.deck-row strong {
  color: #0f172a;
}

.text-emerald {
  color: #059669 !important;
}

.btn-whatsapp-prime {
  background: #25d366;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
  width: 100%;
}

.btn-whatsapp-prime:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

.confidential-seal {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 10px;
}

.bottom-disclaimer {
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
}
