/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img, svg, video, textarea {
  max-width: 100%;
}

:root {
  --pink: #e879f9;
  --pink-dark: #c026d3;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --black: #0a0612;
  --dark: #0f0a1a;
  --dark2: #1a0f2e;
  --card: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.1);
  --text: #f8f0ff;
  --text-muted: #a78bfa;
  --red: #ef4444;
  --green: #22c55e;
  --yellow: #f59e0b;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== BACKGROUND GLOW ===== */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-glow::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 8s ease-in-out infinite alternate;
}

.bg-glow::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 55%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(192,38,211,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes glowPulse {
  from { transform: scale(1) translate(0,0); opacity: 0.7; }
  to   { transform: scale(1.15) translate(3%,3%); opacity: 1; }
}

/* ===== CONTAINER ===== */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 20px !important;
  padding-right: 20px !important;
  overflow-wrap: break-word;
}

/* ===== NAVBAR ===== */
.navbar {
  position: relative;
  z-index: 10;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.logo-icon {
  color: var(--pink) !important;
  font-size: 22px;
  -webkit-text-fill-color: var(--pink);
  flex-shrink: 0;
  line-height: 1;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 32px 0 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,38,211,0.15);
  border: 1px solid rgba(192,38,211,0.35);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--pink), var(--purple-light), var(--pink));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 16px;
  color: rgba(240, 230, 255, 0.82);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.65;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -8px;
  background: linear-gradient(135deg, var(--pink-dark), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.avatar:first-child { margin-left: 0; }

/* ===== FORM CARD ===== */
.form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  backdrop-filter: blur(16px);
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.35s both;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.03);
}

.form-card:hover {
  border-color: rgba(167,139,250,0.3);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(220, 205, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 10px;
}

.form-label i {
  font-size: 16px;
  color: var(--purple-light);
  flex-shrink: 0;
  line-height: 1;
}

.form-group {
  margin-bottom: 20px;
}

/* Textarea com clip integrado */
.textarea-wrap {
  position: relative;
}

.clip-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: rgba(167,139,250,0.35);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  font-size: 17px;
  z-index: 2;
}

.clip-btn:hover {
  color: var(--purple-light);
  background: rgba(167,139,250,0.1);
}

.clip-btn.has-file {
  color: var(--pink);
  background: rgba(192,38,211,0.12);
}

.chat-textarea {
  width: 100%;
  background: rgba(0,0,0,0.45);
  border: 1.5px solid rgba(167,139,250,0.28);
  border-radius: var(--radius-sm);
  padding: 16px 46px 16px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  resize: none;
  min-height: 200px;
  max-height: 400px;
  overflow-y: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  line-height: 1.7;
  display: block;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}

.chat-textarea:focus {
  outline: none;
  border-color: var(--pink-dark);
  box-shadow: 0 0 0 3px rgba(192,38,211,0.18), inset 0 2px 8px rgba(0,0,0,0.3);
}

.chat-textarea::placeholder {
  color: rgba(200,180,255,0.38);
  line-height: 1.8;
}

.context-input {
  width: 100%;
  background: rgba(0,0,0,0.35);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.context-input:focus {
  outline: none;
  border-color: var(--pink-dark);
  box-shadow: 0 0 0 3px rgba(192,38,211,0.15);
}

.context-input::placeholder {
  color: rgba(167,139,250,0.4);
}


/* Upload Hint */
.upload-hint {
  font-size: 11px;
  color: rgba(167,139,250,0.45);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Upload Preview */
.upload-preview {
  display: none;
  margin-top: 10px;
  gap: 8px;
  flex-wrap: wrap;
}

.upload-preview-item img {
  max-width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(167,139,250,0.2);
}

/* Separator */
.or-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: rgba(167,139,250,0.4);
  font-size: 13px;
}

.or-separator::before,
.or-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--pink-dark), var(--purple));
  color: white;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1.3;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover:not(:disabled)::before { opacity: 1; }

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(192,38,211,0.5);
}

.btn-primary:active:not(:disabled) { transform: translateY(0); }

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 20px;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(167,139,250,0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
}

.btn-secondary:hover {
  border-color: var(--purple-light);
  color: var(--text);
  background: rgba(167,139,250,0.08);
}

.btn-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  padding: 18px 20px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
  font-size: 17px;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
}

.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(22,163,74,0.45);
}

/* ===== LOADING STATE ===== */
.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,6,18,0.92);
  z-index: 100;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(8px);
}

.loading-overlay.active { display: flex; }

.loading-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(192,38,211,0.2);
  border-top-color: var(--pink-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.loading-text {
  text-align: center;
}

.loading-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.loading-text p {
  font-size: 14px;
  color: var(--text-muted);
}

.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.loading-step {
  font-size: 13px;
  color: rgba(167,139,250,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.4s ease;
}

.loading-step.active { color: var(--pink); }
.loading-step.done { color: var(--green); }

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* ===== PREVIEW CARD ===== */
.preview-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  backdrop-filter: blur(16px);
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.03);
}

.preview-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Score Circle */
.score-display {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.score-circle {
  position: relative;
  width: 150px;
  height: 150px;
}

.score-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.score-track { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 8; }

.score-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 376;
  stroke-dashoffset: 376;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-num {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.score-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Flag Preview */
.flag-preview {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.flag-icon { font-size: 20px; flex-shrink: 0; }

.flag-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.flag-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

/* Blur/Lock Overlay */
.locked-section {
  position: relative;
  margin-top: 20px;
}

.locked-blur {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
}

.locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lock-icon { font-size: 32px; }

.lock-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.lock-sub {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ===== PRICE SECTION ===== */
.price-section {
  text-align: center;
  margin-bottom: 16px;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: #4ade80;
  font-weight: 600;
  margin-bottom: 12px;
}

.price-display {
  margin-bottom: 8px;
}

.price-de {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-por {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ===== FEATURES LIST ===== */
.features-list {
  list-style: none;
  margin-bottom: 24px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.features-list li:last-child { border-bottom: none; }

.features-list .check { color: var(--green); flex-shrink: 0; }

/* ===== PAYMENT PAGE ===== */
.payment-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  backdrop-filter: blur(16px);
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.03);
}

.payment-header {
  text-align: center;
  margin-bottom: 24px;
}

.payment-header h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.payment-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.pix-instruction {
  text-align: center;
  margin-bottom: 20px;
}

.pix-steps {
  list-style: none;
  counter-reset: steps;
  margin-bottom: 20px;
}

.pix-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pix-steps li:last-child { border-bottom: none; }

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-dark), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  content: counter(steps);
}

.pix-code-box {
  background: rgba(0,0,0,0.4);
  border: 1.5px solid rgba(167,139,250,0.25);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 12px;
  position: relative;
}

.pix-code-text {
  font-size: 12px;
  word-break: break-all;
  color: var(--text-muted);
  line-height: 1.5;
  font-family: monospace;
}

.copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  background: rgba(167,139,250,0.15);
  border: 1.5px solid rgba(167,139,250,0.3);
  border-radius: var(--radius-sm);
  color: var(--purple-light);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 16px;
}

.copy-btn:hover {
  background: rgba(167,139,250,0.25);
  border-color: var(--purple-light);
}

.copy-btn.copied {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.4);
  color: #4ade80;
}

.qr-code-container {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.qr-code-container img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  background: white;
  padding: 8px;
}

.payment-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.timer-num {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.status-checker {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ===== SUCCESS / REPORT PAGE ===== */
.report-header {
  text-align: center;
  padding: 32px 0 24px;
}

.report-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 6px;
}

.report-sub {
  font-size: 15px;
  color: var(--text-muted);
}

/* Score Card */
.score-card {
  background: linear-gradient(135deg, rgba(192,38,211,0.2), rgba(124,58,237,0.15));
  border: 2px solid rgba(192,38,211,0.4);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 16px;
}

.big-score {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.big-score-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.score-frase {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}

/* Report Sections */
.report-section {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition);
}

.report-section:hover {
  border-color: rgba(167,139,250,0.25);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-icon { font-size: 20px; }

.section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.section-body {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

.flags-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flags-list li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.flag-red {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
}

.flag-green {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
}

/* Respostas */
.respostas-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resposta-card {
  background: rgba(0,0,0,0.3);
  border-left: 3px solid var(--pink-dark);
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
  position: relative;
}

.resposta-tom {
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.resposta-msg {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.resposta-quando {
  font-size: 11px;
  color: rgba(167,139,250,0.55);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Música do Momento ───────────────────────────────────────────────────── */
.musica-card {
  background: linear-gradient(135deg, rgba(34,197,94,0.07), rgba(16,185,129,0.05));
  border: 1.5px solid rgba(34,197,94,0.3);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.musica-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #10b981, #22c55e);
}

.musica-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #22c55e;
  margin-bottom: 12px;
}

.musica-header i { font-size: 16px; }

.musica-nome {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.musica-razao {
  font-size: 13px;
  color: rgba(167,139,250,0.7);
  margin-bottom: 14px;
  line-height: 1.5;
  font-style: italic;
}

.musica-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ff0000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.musica-btn:hover { opacity: 0.85; }
.musica-btn i { font-size: 16px; }

/* ── Veredicto Sincero ────────────────────────────────────────────────────── */
.veredicto-card {
  background: linear-gradient(135deg, rgba(251,191,36,0.08), rgba(239,68,68,0.06));
  border: 1.5px solid rgba(251,191,36,0.35);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.veredicto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fbbf24, #ef4444, #fbbf24);
}

.veredicto-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fbbf24;
}

.veredicto-header i {
  font-size: 18px;
}

.veredicto-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.3);
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.veredicto-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(248,240,255,0.9);
  font-style: italic;
}

.copy-resposta {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.copy-resposta:hover {
  background: rgba(192,38,211,0.2);
  color: var(--pink);
}

/* ===== ACTION BUTTONS ===== */
.actions-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 40px;
}

.actions-row > * { flex: 1; }

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 48px 0;
  text-align: center;
}

.section-heading {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
  margin-bottom: 8px;
}

.section-heading-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink-dark), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}

.step-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== PROVAS SOCIAIS (prints reais) ===== */
.provas-section {
  padding: 48px 0;
}

.provas-pilha {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 16px 0 24px;
  position: relative;
}

.prova-card {
  width: 160px;
  flex-shrink: 0;
  margin: -8px -6px;
  transform: rotate(var(--ang, 0deg));
  transition: transform .2s ease, z-index 0s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.5));
}

.prova-card:hover {
  transform: rotate(0deg) scale(1.08);
  z-index: 10;
}

.prova-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
  border: 2px solid rgba(255,255,255,.08);
}

.provas-placeholder {
  text-align: center;
  padding: 40px;
  color: rgba(167,139,250,.4);
  font-size: 13px;
}

.provas-placeholder code {
  background: rgba(167,139,250,.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

.provas-rodape {
  text-align: center;
  font-size: 12px;
  color: rgba(167,139,250,.35);
  margin-top: 16px;
}

/* ===== TESTIMONIALS (mantido para compatibilidade) ===== */
.testimonials-section {
  padding: 48px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(8px);
}

.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-dark), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.author-detail {
  font-size: 12px;
  color: var(--text-muted);
}

.stars {
  color: #fbbf24;
  font-size: 13px;
  margin-left: auto;
}

/* ===== FAQ ===== */
.faq-section { padding: 40px 0; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--pink); }

.faq-arrow {
  flex-shrink: 0;
  font-size: 18px;
  transition: transform var(--transition);
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 16px;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: var(--text-muted);
  font-size: 13px;
}

.footer a {
  color: var(--purple-light);
  text-decoration: none;
}

.footer a:hover { color: var(--pink); }

.footer-logo {
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.footer-logo i {
  color: var(--pink) !important;
  -webkit-text-fill-color: var(--pink);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 20px;
  right: 16px;
  left: auto;
  transform: translateX(calc(100% + 20px));
  max-width: min(320px, calc(100vw - 32px));
  background: var(--dark2);
  border: 1px solid rgba(167,139,250,0.3);
  border-left: 3px solid #c026d3;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  white-space: normal;
  word-break: break-word;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.toast.show { transform: translateX(0); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.animate-in {
  animation: fadeInUp 0.5s ease both;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.2), transparent);
  margin: 8px 0;
}

/* ===== ZIP WHATSAPP ===== */
.zip-group { 
  margin-bottom: 24px; 
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.zip-instructions {
  margin-bottom: 16px;
}

.zip-instructions p {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.zip-instructions ol {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zip-instructions li {
  font-size: 13px;
  color: rgba(220, 205, 255, 0.82);
  line-height: 1.4;
}

.zip-instructions li strong {
  color: var(--pink);
  font-weight: 700;
}

.zip-drop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 12px;
  border: 1.5px dashed rgba(167,139,250,0.3);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  cursor: pointer;
  background: rgba(167,139,250,0.03);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.zip-drop:hover {
  border-color: var(--pink);
  background: rgba(192,38,211,0.08);
}

.zip-drop.active {
  border-color: var(--green);
  background: rgba(34,197,94,0.08);
  border-style: solid;
}

.zip-drop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.zip-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(18,140,126,0.15));
  border-radius: 50%;
  color: #25D366;
  font-size: 24px;
  margin-bottom: 4px;
}

.zip-icon-sub {
  position: absolute;
  bottom: -4px;
  right: -6px;
  font-size: 16px;
  color: var(--pink);
  background: var(--dark);
  border-radius: 50%;
  padding: 2px;
}

.zip-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.zip-text strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
}

.zip-text span {
  font-size: 12px;
  color: rgba(167, 139, 250, 0.6);
  line-height: 1.4;
}

.zip-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--green);
  font-weight: 700;
}

.zip-badge i { font-size: 32px; margin-bottom: 2px; }

.zip-drop.active .zip-drop-content { display: none; }
.zip-drop.active .zip-badge { display: flex; }

/* ===== TEXTAREA HINT ===== */
.textarea-hint {
  font-size: 12px;
  color: rgba(167,139,250,0.55);
  margin-bottom: 10px;
  margin-top: -4px;
  line-height: 1.4;
}

/* ===== CHAR COUNTER ===== */
.char-counter {
  font-size: 12px;
  color: rgba(167,139,250,0.5);
  text-align: right;
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-card { padding: 32px; }
  .preview-card { padding: 32px; }
  .payment-card { padding: 32px; }
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 40px; }
  .preview-card { padding: 40px; }
  .payment-card { padding: 40px; }
}

/* ===== PRINT (PDF) ===== */
@media print {
  .bg-glow, .navbar, .how-section, .testimonials-section,
  .faq-section, .footer, .actions-row, .btn-primary,
  .btn-secondary, .btn-pay { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
  .report-section { border-color: #e9d5ff !important; background: #faf5ff !important; }
}
