/* ============================================================
   DONA DO VOLANTE™ — QUIZ V2 (CONVERSION & DIRECT RESPONSE)
   High-Converting Styles, Mobile-First Design & Micro-Interactions
   ============================================================ */

:root {
  --primary: #4F46E5;
  --primary-light: #818CF8;
  --primary-dark: #3730A3;
  --primary-glow: rgba(79, 70, 229, 0.35);
  --primary-bg: #EEF2FF;
  --accent: #F59E0B;
  --accent-light: #FEF3C7;
  --accent-dark: #D97706;
  --bg-page: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-alt: #F1F5F9;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --border-focus: #818CF8;
  --success: #16A34A;
  --success-bg: #F0FDF4;
  --danger: #EF4444;
  --danger-bg: #FEF2F2;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 8px 28px rgba(79, 70, 229, 0.35);
  --shadow-pulse: 0 0 0 0 rgba(79, 70, 229, 0.5);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ─── Top Trust Ribbon ─── */
.top-trust-bar {
  background: #1E1B4B;
  color: #E0E7FF;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.2px;
}
.top-trust-bar.visible {
  display: flex;
}
.top-trust-bar svg {
  width: 14px;
  height: 14px;
  fill: #FBBF24;
  flex-shrink: 0;
}

/* ─── Header ─── */
.app-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.app-header.visible {
  display: flex;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}
.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.2;
}
.logo em {
  font-style: normal;
  color: var(--primary);
}

.header-badge {
  font-size: 0.75rem;
  color: var(--success);
  background: var(--success-bg);
  border: 1px solid #BBF7D0;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--success);
  fill: none;
  stroke-width: 2.5;
}

/* ─── Main Container ─── */
.quiz-container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 18px 60px;
  flex: 1;
}

/* ─── Screens ─── */
.screen {
  display: none;
}
.screen.active {
  display: block;
  animation: fadeSlideUp 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#screen-quiz.screen.active {
  padding-bottom: 80px;
}

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

/* ══════════════════════════════════════════
   HERO SCREEN (High-Converting Hook)
   ══════════════════════════════════════════ */
.hero-screen {
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-pill svg {
  width: 14px;
  height: 14px;
  fill: #D97706;
}

.hero-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.22;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}
.hero-title .highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 24px;
}

.hero-card-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 26px;
  text-align: left;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-bullet-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.hero-bullet-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.hero-bullet-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── CTA Buttons ─── */
.btn-cta-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 50%, #7C3AED 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-cta-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(79, 70, 229, 0.45);
}
.btn-cta-hero svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}
.btn-cta-hero:hover svg {
  transform: translateX(4px);
}

.btn-pulse {
  animation: pulseButton 2.2s infinite;
}
@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(79, 70, 229, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

.hero-subnote {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-subnote svg {
  width: 13px;
  height: 13px;
  stroke: var(--success);
  fill: none;
  stroke-width: 2.2;
}

/* ══════════════════════════════════════════
   QUIZ QUESTIONS SCREEN
   ══════════════════════════════════════════ */
.quiz-progress-wrap {
  margin-bottom: 22px;
}
.quiz-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.quiz-progress-tag {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.72rem;
}
.quiz-progress-counter {
  color: var(--text-muted);
}
.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  width: 12%;
  background: linear-gradient(90deg, #4F46E5, #818CF8);
  border-radius: 100px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.question-pre {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
  display: block;
}

.question-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.question-subtext {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.multi-badge-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-bg);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
}

/* ─── Options List ─── */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  background: var(--bg-page);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.quiz-option-btn:hover {
  border-color: var(--primary-light);
  background: #F5F7FF;
  transform: translateY(-1px);
}
@media (hover: none) {
  .quiz-option-btn:hover {
    border-color: var(--border);
    background: var(--bg-page);
    transform: none;
  }
}
.quiz-option-btn.selected {
  border-color: var(--primary);
  background: var(--primary-bg);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.option-indicator {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #CBD5E1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: var(--transition);
  font-size: 0.75rem;
  font-weight: 800;
  color: transparent;
}
.quiz-option-btn.multi-type .option-indicator {
  border-radius: 6px;
}
.quiz-option-btn.selected .option-indicator {
  border-color: var(--primary);
  background: var(--primary);
  color: #FFFFFF;
}

.option-content-wrap {
  flex: 1;
}
.option-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  display: block;
}
.option-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
  display: block;
}

.btn-confirm-selection {
  display: none;
  width: auto;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 -4px 20px rgba(79, 70, 229, 0.25);
  transition: var(--transition);
  position: fixed;
  bottom: 16px;
  left: 18px;
  right: 18px;
  margin: 0 auto;
  z-index: 50;
}
.btn-confirm-selection.visible {
  display: block;
  animation: fadeSlideUp 0.25s ease both;
}
.btn-confirm-selection:hover {
  background: var(--primary-dark);
}

.quiz-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 6px;
  transition: color 0.2s;
}
.quiz-back-btn:hover {
  color: var(--text-dark);
}
.quiz-back-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

/* ══════════════════════════════════════════
   INTERSTITIAL VALIDATION CARD (Quebra de Culpa)
   ══════════════════════════════════════════ */
.validation-card {
  background: linear-gradient(135deg, #EEF2FF 0%, #FAF5FF 100%);
  border: 2px solid #C7D2FE;
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.validation-icon {
  width: 52px;
  height: 52px;
  background: #FFFFFF;
  border: 1px solid #C7D2FE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}
.validation-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.validation-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 22px;
  text-align: left;
}
.validation-stat {
  background: #FFFFFF;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: left;
  margin-bottom: 22px;
  box-shadow: var(--shadow-xs);
}

/* ══════════════════════════════════════════
   PROCESSING SCREEN (Dynamic Plan Builder)
   ══════════════════════════════════════════ */
.processing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.processing-radar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid var(--primary-bg);
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.processing-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.processing-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.proc-bar-wrap {
  width: 100%;
  height: 10px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 28px;
}
.proc-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4F46E5, #7C3AED);
  border-radius: 100px;
  transition: width 0.4s ease;
}

.proc-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 440px;
  margin: 0 auto;
}
.proc-step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.4;
  transition: all 0.3s ease;
}
.proc-step-item.active {
  opacity: 1;
  color: var(--primary);
  transform: translateX(4px);
}
.proc-step-item.done {
  opacity: 1;
  color: var(--success);
}
.proc-step-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.proc-step-item.done .proc-step-bullet {
  background: var(--success);
  color: #FFFFFF;
}

/* ══════════════════════════════════════════
   RESULT & CONVERSION SCREEN
   ══════════════════════════════════════════ */
.result-top-banner {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.plan-score-card {
  background: var(--bg-card);
  border: 2px solid #C7D2FE;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  text-align: center;
}

.score-badge {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.score-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.score-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1.5px;
}
.score-pct {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.score-status {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--success);
  margin-bottom: 8px;
}
.score-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Profile Diagnosis Box ─── */
.profile-diagnosis-card {
  background: #FAF5FF;
  border: 1px solid #E9D5FF;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}
.pd-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.pd-icon {
  font-size: 1.5rem;
}
.pd-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #6B21A8;
}
.pd-body {
  font-size: 0.92rem;
  color: #4C1D95;
  line-height: 1.6;
}

/* ─── 14-Day Roadmap Timeline ─── */
.roadmap-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.roadmap-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 18px;
}
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.timeline-list::before {
  content: '';
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 20px;
  width: 3px;
  background: #E2E8F0;
  z-index: 1;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.timeline-dot {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: var(--shadow-xs);
}
.timeline-content {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  flex: 1;
}
.timeline-phase {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.timeline-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.timeline-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ══════════════════════════════════════════
   HIGH-CONVERTING OFFER CARD
   ══════════════════════════════════════════ */
.offer-box-wrapper {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  box-shadow: 0 16px 48px rgba(79, 70, 229, 0.18);
  margin-bottom: 30px;
  position: relative;
}

/* Urgency Timer */
.urgency-timer-bar {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #991B1B;
}
.timer-countdown {
  font-family: monospace;
  font-size: 1.1rem;
  background: #EF4444;
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 800;
}

.offer-product-name {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 8px;
}
.offer-product-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 22px;
}

.offer-mockup-wrap {
  text-align: center;
  margin-bottom: 22px;
}
.offer-mockup-wrap img {
  max-width: 280px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.offer-included-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.offer-included-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.4;
}
.offer-check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  margin-top: 1px;
}

/* Price Box */
.price-display-block {
  background: #F1F5F9;
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  margin-bottom: 20px;
}
.price-old-anchor {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}
.price-highlight-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  color: var(--primary-dark);
}
.price-curr {
  font-size: 1.3rem;
  font-weight: 800;
}
.price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
}
.price-cents-val {
  font-size: 1.4rem;
  font-weight: 800;
}
.price-install-text {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 6px;
}
.price-daily-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 8px;
}

.btn-checkout-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 19px 24px;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
  transition: var(--transition);
  text-align: center;
  margin-bottom: 14px;
}
.btn-checkout-direct:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.5);
}
.btn-checkout-direct svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.checkout-security-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  flex-wrap: wrap;
}

/* ─── Guarantee Block ─── */
.guarantee-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}
.guarantee-seal-img {
  width: 68px;
  height: 68px;
  min-width: 68px;
  object-fit: contain;
}
.guarantee-card h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.guarantee-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ─── Real Testimonials Carousel ─── */
.testimonials-section {
  margin-bottom: 32px;
}
.testimonials-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 6px;
}
.testimonials-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}

.t-carousel-wrap {
  position: relative;
  width: 100%;
}
.t-carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 14px;
}
.t-carousel-track::-webkit-scrollbar {
  display: none;
}

.t-slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 540px) {
  .t-slide {
    flex: 0 0 65%;
  }
}
.t-slide img {
  width: 100%;
  border-radius: 8px;
}

/* ─── FAQ Accordion ─── */
.faq-wrap {
  margin-bottom: 36px;
}
.faq-main-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 18px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.faq-head {
  padding: 16px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}
.faq-chevron-icon {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2.2;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-box.open .faq-chevron-icon {
  transform: rotate(180deg);
}
.faq-content {
  display: none;
  padding: 0 18px 16px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}
.faq-box.open .faq-content {
  display: block;
}

/* ─── Sticky CTA Footer ─── */
.sticky-conversion-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 18px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}
.sticky-conversion-bar.visible {
  display: block;
  animation: slideUp 0.3s ease both;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.sticky-bar-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-bar-text {
  flex: 1;
}
.sticky-bar-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}
.sticky-bar-price {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
}
.sticky-bar-btn {
  background: var(--primary);
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow-primary);
}

/* ─── Footer ─── */
.app-footer {
  text-align: center;
  padding: 24px 16px 40px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.app-footer p {
  margin-bottom: 8px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* ─── Profile Badge Dinâmico ─── */
.pd-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6B21A8, #7C3AED);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.pd-mechanism {
  font-size: 0.88rem;
  color: #4C1D95;
  line-height: 1.5;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #E9D5FF;
}

/* ─── VSL Section ─── */
.vsl-section {
  background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
  border: 1.5px solid #C7D2FE;
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  margin: 28px 0;
  text-align: center;
}

.vsl-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.vsl-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 18px;
}

.vsl-video-wrap {
  position: relative !important;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1e1b4b;
  cursor: pointer;
  display: block;
  aspect-ratio: 9 / 16;
}

.vsl-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 5;
}

/* Thumbnail cobre o container 9:16 perfeitamente */
.vsl-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.3s ease;
}

.vsl-video-wrap:hover .vsl-thumbnail {
  transform: scale(1.03);
}

/* Play button absoluto e centralizado no meio da capa */
.vsl-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.vsl-play-btn svg {
  width: 72px;
  height: 72px;
  background: rgba(79, 70, 229, 0.92);
  border-radius: 50%;
  padding: 18px 16px 18px 22px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.vsl-video-wrap:hover .vsl-play-btn svg,
.vsl-video-wrap:active .vsl-play-btn svg {
  transform: scale(1.12);
  background: rgba(55, 48, 163, 0.98);
}

.vsl-caption {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-style: normal;
  margin-bottom: 20px;
}

.vsl-cta-btn {
  display: block;
  margin: 0 auto 10px;
}

.vsl-sub-cta {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

/* ─── Offer Authority Row ─── */
.offer-authority-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.authority-pill {
  font-size: 0.72rem;
  font-weight: 700;
  background: #EEF2FF;
  color: var(--primary-dark);
  border: 1px solid #C7D2FE;
  padding: 5px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ─── Price Badge OFF ─── */
.price-badge-off {
  display: inline-block;
  background: #FEF2F2;
  color: #DC2626;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  border: 1px solid #FECACA;
}

/* ─── Payment Options Split ─── */
.price-payment-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 10px;
}
.price-pix {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #15803D;
}
.price-pix-badge {
  background: #16A34A;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.price-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.price-card-badge {
  font-size: 1rem;
}

/* ─── Scarcity Spots ─── */
.scarcity-spots {
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #9A3412;
  text-align: center;
  margin-top: 10px;
  animation: pulseScarcity 2s infinite;
}
@keyframes pulseScarcity {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ─── Media Queries ─── */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.55rem;
  }
  .question-heading {
    font-size: 1.2rem;
  }
  .score-number {
    font-size: 2.7rem;
  }
  .price-amount {
    font-size: 2.7rem;
  }
}
