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

:root {
  --background: #0A1628;
  --foreground: #FFFFFF;
  --card: #0D1E36;
  --card-foreground: #FFFFFF;
  --primary: #00A3FF;
  --primary-foreground: #FFFFFF;
  --secondary: #1A3A5C;
  --secondary-foreground: #FFFFFF;
  --muted-foreground: #8BA3C0;
  --accent: #FFD000;
  --accent-foreground: #0A1628;
  --border: #1A3A5C;
  --destructive: #ef4444;
  --radius: 0.75rem;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button { cursor: pointer; border: none; font-family: inherit; }
input { font-family: inherit; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--secondary); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 208, 0, 0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(255, 208, 0, 0.2); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes pulse {
  50% { opacity: 0.5; }
}
@keyframes pulseGlowFinal {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 208, 0, 0.5); }
  50% { box-shadow: 0 0 15px 3px rgba(255, 208, 0, 0.5); }
}

.animate-fade-in-up { animation: fadeInUp 0.5s ease-out forwards; }
.animate-fade-in { animation: fadeIn 0.3s ease-out forwards; }
.animate-scale-in { animation: scaleIn 0.3s ease-out forwards; }
.animate-pulse-glow { animation: pulseGlow 2s infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }

/* ===== LAYOUT ===== */
.app-wrapper { min-height: 100vh; position: relative; overflow: hidden; }
.bg-parallax {
  position: absolute; inset: -30px;
  background: url('../images/sky-background.jpg') center/cover no-repeat;
  transition: transform 0.7s ease-out;
  will-change: transform;
}
.bg-overlay { position: absolute; inset: -30px; background: rgba(10,22,40,0.85); }
.bg-glow {
  position: absolute; inset: -30px;
  transition: background 0.7s ease-out;
  pointer-events: none;
}
.bg-topline {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  transition: background 0.7s ease-out;
  pointer-events: none;
}
.content { position: relative; z-index: 10; min-height: 100vh; display: flex; flex-direction: column; }

header { padding: 1rem; }
.header-inner { max-width: 56rem; margin: 0 auto; }
.logo-area { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; margin-bottom: 1.5rem; }
.logo-row { display: flex; align-items: center; gap: 8px; }
.logo-img { width: 40px; height: 40px; object-fit: contain; }
.logo-text-small { font-size: 0.75rem; color: var(--muted-foreground); font-weight: 500; letter-spacing: 0.05em; }
.logo-text-big { font-size: 1.125rem; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
.copy-top { font-size: 0.8rem; color: var(--primary); font-weight: 500; text-align: center; }

.progress-wrapper { display: flex; justify-content: center; align-items: center; width: 100%; padding: 2rem 1rem 0.5rem;}
.progress-bar { display: flex; align-items: center; width: 100%; max-width: 42rem; }
.progress-step { flex: 1; display: flex; align-items: center; }
.step-marker-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.step-airplane {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%) rotate(-45deg);
  color: var(--primary); z-index: 20;
}
.step-airplane svg { width: 18px; height: 18px; fill: currentColor; }
.step-circle {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.5s; z-index: 10; font-size: 0.7rem; font-weight: 600;
}
.step-done { background: var(--primary); color: var(--primary-foreground); }
.step-active { background: rgba(0,163,255,0.3); border: 2px solid var(--primary); color: var(--muted-foreground); }
.step-pending { background: var(--secondary); border: 2px solid var(--border); color: var(--muted-foreground); }
.step-final {
  outline: 2px solid var(--accent); outline-offset: 2px;
  box-shadow: 0 0 15px 3px rgba(255,208,0,0.5);
  animation: pulse 2s infinite;
}
.step-final-text { color: var(--accent); font-weight: 700; text-shadow: 0 0 8px rgba(255,208,0,0.8); }
.step-line { flex: 1; height: 4px; margin: 0 2px; border-radius: 2px; transition: background 0.5s; }
.step-line-done { background: var(--primary); }
.step-line-pending { background: var(--secondary); }

.check-icon { width: 14px; height: 14px; }

main { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 1.5rem 1rem; }
.step-container {
  margin: 0 auto; width: 100%; max-width: 28rem;
  transition: all 0.3s;
}
.step-container.wide { max-width: 72rem; }
.step-container.hidden-step { opacity: 0; transform: translateY(16px); }

footer { padding: 1rem; text-align: center; font-size: 0.75rem; color: var(--muted-foreground); }

/* ===== COMPONENTS ===== */

/* Lead Capture */
.lead-box { border-radius: 1rem; border: 1px solid var(--border); background: rgba(13,30,54,0.8); backdrop-filter: blur(8px); padding: 2rem 2.5rem; text-align: center; }
.lead-h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; text-wrap: balance; }
.lead-sub { font-size: 1rem; color: var(--primary); font-weight: 500; margin-bottom: 0.5rem; }
.lead-desc { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 2rem; max-width: 22rem; margin-left: auto; margin-right: auto; line-height: 1.6; }
.lead-form { max-width: 22rem; margin: 0 auto; }
.lead-input-wrap { position: relative; margin-bottom: 1rem; }
.lead-input {
  width: 100%; padding: 1rem; border-radius: var(--radius); background: var(--secondary);
  border: 2px solid var(--border); color: var(--foreground); text-align: center; font-size: 1rem;
  transition: all 0.3s; outline: none;
}
.lead-input::placeholder { color: var(--muted-foreground); }
.lead-input:focus { border-color: var(--primary); box-shadow: 0 0 15px rgba(0,163,255,0.2); }
.lead-input.valid { border-color: #22c55e; }
.lead-input.invalid { border-color: #f87171; }
.lead-check { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: #22c55e; }
.lead-marker { margin-top: 1.5rem; opacity: 0.4; font-size: 10px; color: var(--muted-foreground); letter-spacing: 0.15em; text-transform: uppercase; }
.lead-safe { margin-top: 1rem; font-size: 11px; color: rgba(139,163,192,0.6); }

/* CTA Buttons */
.btn-cta {
  width: 100%; padding: 1rem 1.5rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1.125rem;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-cta-active { background: var(--accent); color: var(--accent-foreground); animation: pulseGlow 2s infinite; }
.btn-cta-active:hover { transform: scale(1.02); }
.btn-cta-active:active { transform: scale(0.98); }
.btn-cta-disabled { background: rgba(255,208,0,0.3); color: rgba(10,22,40,0.5); cursor: not-allowed; }

/* Video Player */
.video-wrap { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: var(--radius); overflow: hidden; background: var(--card); border: 1px solid var(--border); }
.video-inner { position: absolute; inset: 0; }
.video-thumb { position: absolute; inset: 0; background: url('../images/sky-background.jpg') center/cover; }
.video-thumb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: none; border: none;
}
.play-circle {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: rgba(13,30,54,0.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); transition: transform 0.2s;
}
.play-btn:hover .play-circle { transform: scale(1.1); }
.play-icon { width: 2.5rem; height: 2.5rem; color: var(--foreground); margin-left: 4px; }
.video-title { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.video-playing { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--card); padding: 2rem; text-align: center; }
.video-playing p { color: var(--muted-foreground); margin-top: 1rem; }

/* Quiz */
.quiz-question { font-size: 1.25rem; font-weight: 700; text-align: center; margin-bottom: 1.5rem; text-wrap: balance; }
.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-option {
  width: 100%; padding: 1rem; border-radius: var(--radius); border: 2px solid var(--border);
  text-align: left; display: flex; align-items: center; gap: 1rem;
  transition: border-color 0.3s, background 0.3s; color: var(--foreground); font-size: 1rem; font-weight: 500;
  position: relative; overflow: hidden; box-sizing: border-box;
  min-height: 3.5rem; height: auto;
}

/* Cores gamificadas para cada opção */
.quiz-option[data-color="emerald"] { 
  background: linear-gradient(to right, rgba(16,185,129,0.75), rgba(16,185,129,0.55));
}
.quiz-option[data-color="emerald"]:hover { 
  background: linear-gradient(to right, rgba(16,185,129,0.85), rgba(16,185,129,0.65));
}
.quiz-option[data-color="blue"] { 
  background: linear-gradient(to right, rgba(59,130,246,0.75), rgba(59,130,246,0.55));
}
.quiz-option[data-color="blue"]:hover { 
  background: linear-gradient(to right, rgba(59,130,246,0.85), rgba(59,130,246,0.65));
}
.quiz-option[data-color="amber"] { 
  background: linear-gradient(to right, rgba(245,158,11,0.75), rgba(245,158,11,0.55));
}
.quiz-option[data-color="amber"]:hover { 
  background: linear-gradient(to right, rgba(245,158,11,0.85), rgba(245,158,11,0.65));
}
.quiz-option[data-color="purple"] { 
  background: linear-gradient(to right, rgba(139,92,246,0.75), rgba(139,92,246,0.55));
}
.quiz-option[data-color="purple"]:hover { 
  background: linear-gradient(to right, rgba(139,92,246,0.85), rgba(139,92,246,0.65));
}

.quiz-option.selected { 
  border-color: var(--primary); 
  background: linear-gradient(to right, rgba(0,163,255,0.2), rgba(0,163,255,0.1)) !important;
}
.quiz-option.selected .quiz-icon { background: var(--primary); color: var(--primary-foreground); }

/* Glow overlay no hover */
.quiz-option::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.quiz-option:hover::before { opacity: 1; }

/* Ícone gamificado */
.quiz-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: rgba(139,163,192,0.3); transition: all 0.3s; position: relative;
}
.quiz-icon[data-color="emerald"] { color: #ffffff; }
.quiz-icon[data-color="blue"] { color: #ffffff; }
.quiz-icon[data-color="amber"] { color: #ffffff; }
.quiz-icon[data-color="purple"] { color: #ffffff; }
.quiz-icon svg { width: 1.25rem; height: 1.25rem; }
.quiz-option:hover .quiz-icon { transform: none; }

/* Pulse ring no hover */
.quiz-icon::after {
  content: none;
}

.quiz-option-content { flex: 1; display: flex; flex-direction: column; }
.quiz-option-text { font-size: 1rem; font-weight: 500; }
.quiz-option-selected { display: none !important; }
.quiz-option.selected .quiz-option-selected { display: flex; animation: fadeIn 0.3s; }

.quiz-letter {
  width: 1.5rem; height: 1.5rem; border-radius: 4px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: rgba(139,163,192,0.2); color: var(--muted-foreground); font-size: 0.75rem; font-weight: 700;
  transition: all 0.3s;
}
.quiz-option.selected .quiz-letter { background: var(--primary); color: var(--primary-foreground); }

/* Fake Loading */
.loading-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.loading-airplane { position: relative; width: 6rem; height: 6rem; }
.loading-ring1 { position: absolute; inset: 0; border-radius: 50%; background: rgba(0,163,255,0.1); animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }
.loading-ring2 { position: absolute; inset: 0.5rem; border-radius: 50%; background: rgba(0,163,255,0.2); animation: pulse 2s infinite; }
.loading-plane-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--primary); transition: transform 1s; }
.loading-plane-icon svg { width: 3rem; height: 3rem; transform: rotate(-45deg); }
.loading-plane-icon.done svg { transform: rotate(0deg) scale(1.25); }
.loading-text { text-align: center; min-height: 60px; }
.loading-msg { font-size: 1.125rem; font-weight: 600; }
.loading-found { font-size: 0.875rem; color: var(--accent); font-weight: 700; }
.loading-bar-wrap { width: 100%; max-width: 16rem; }
.loading-bar-bg { height: 0.5rem; border-radius: 9999px; background: var(--secondary); overflow: hidden; }
.loading-bar-fill { height: 100%; border-radius: 9999px; background: var(--primary); transition: width 0.2s ease-out; }
.loading-pct { font-size: 0.75rem; color: var(--muted-foreground); text-align: center; margin-top: 0.5rem; }
.loading-dots { display: flex; align-items: center; gap: 0.5rem; }
.loading-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: rgba(0,163,255,0.6); animation: pulse 2s infinite; }

/* Profile Result */
.profile-header { text-align: center; margin-bottom: 2rem; }
.profile-icon { display: inline-flex; align-items: center; justify-content: center; width: 4rem; height: 4rem; border-radius: 50%; background: rgba(0,163,255,0.2); color: var(--primary); margin-bottom: 1rem; animation: float 3s ease-in-out infinite; }
.profile-icon svg { width: 2rem; height: 2rem; }
.profile-label { font-size: 0.875rem; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; }
.profile-headline { font-size: 1.5rem; font-weight: 700; text-wrap: balance; }
.profile-cards { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.profile-card { padding: 1rem; border-radius: var(--radius); }
.profile-card h3 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; }
.profile-card p { line-height: 1.6; }
.profile-diag { background: var(--card); border: 1px solid var(--border); }
.profile-diag h3 { color: var(--primary); }
.profile-real { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); }
.profile-real h3 { color: var(--destructive); }
.profile-cons { background: rgba(255,208,0,0.1); border: 1px solid rgba(255,208,0,0.3); }
.profile-cons h3 { color: var(--accent); }
.profile-saida { background: rgba(0,163,255,0.1); border: 1px solid rgba(0,163,255,0.3); }
.profile-saida h3 { color: var(--primary); }
.profile-final { text-align: center; margin-bottom: 1.5rem; font-size: 0.875rem; color: var(--muted-foreground); font-style: italic; }

/* Benefits */
.benefits-title { font-size: 1.25rem; font-weight: 700; text-align: center; margin-bottom: 2rem; text-wrap: balance; }
.benefit-card {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border); transition: all 0.3s;
}
.benefit-card:hover { border-color: rgba(0,163,255,0.5); transform: scale(1.02); }
.benefit-icon {
  width: 3rem; height: 3rem; border-radius: 0.5rem; background: rgba(0,163,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary);
}
.benefit-icon svg { width: 1.5rem; height: 1.5rem; }
.benefit-title { font-weight: 600; margin-bottom: 0.25rem; }
.benefit-desc { font-size: 0.875rem; color: var(--muted-foreground); }
.benefit-check { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; margin-left: auto; margin-top: 0.25rem; }

/* Offer Section */
.offer-header { text-align: center; margin-bottom: 2rem; }
.offer-header .sub { font-size: 0.875rem; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; }
.offer-header h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; text-wrap: balance; }
.offer-header p { color: var(--muted-foreground); }
.offer-grid { display: flex; flex-direction: column; gap: 1rem; }
.offer-card {
  flex: 1; position: relative; border-radius: 1rem; overflow: hidden;
  border: 2px solid var(--border); background: var(--card); transition: all 0.3s;
}
.offer-card:hover { border-color: rgba(0,163,255,0.5); }
.offer-card.selected { border-color: var(--primary); transform: scale(1.02); }
.offer-card-header { background: var(--secondary); padding: 1rem; position: relative; }
.offer-card-header h3 { font-size: 1.125rem; font-weight: 700; padding-right: 6rem; }
.offer-card-header p { font-size: 0.875rem; color: var(--muted-foreground); }
.offer-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  padding: 0.25rem 0.5rem; font-size: 10px; font-weight: 700;
  color: var(--accent-foreground); background: var(--accent); border-radius: 4px;
}
.offer-card-body { padding: 1rem 1.25rem; }
.offer-price-old { color: var(--muted-foreground); text-decoration: line-through; font-size: 0.875rem; }
.offer-price-rs { color: var(--muted-foreground); font-size: 0.875rem; }
.offer-price-val { font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.offer-price-cents { color: var(--primary); font-size: 0.875rem; vertical-align: top; }
.offer-deadline { font-size: 0.75rem; color: var(--accent); font-weight: 600; margin-top: 0.25rem; }
.offer-features { margin: 1rem 0 1.5rem; min-height: 180px; display: flex; flex-direction: column; gap: 0.5rem; }
.offer-feature { display: flex; align-items: flex-start; gap: 0.5rem; }
.offer-feature svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.offer-feature a {
  font-size: 0.875rem; color: var(--primary); text-decoration: underline;
  text-underline-offset: 2px; text-decoration-color: rgba(0,163,255,0.5);
  transition: all 0.2s; cursor: pointer;
}
.offer-feature a:hover { text-decoration-color: var(--primary); color: rgba(0,163,255,0.8); }
.offer-cta { width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius); background: var(--accent); color: var(--accent-foreground); font-weight: 700; font-size: 1rem; transition: all 0.2s; animation: pulseGlow 2s infinite; }
.offer-cta:hover { transform: scale(1.02); }
.offer-cta:active { transform: scale(0.98); }
.offer-cta-desc { font-size: 0.75rem; color: var(--muted-foreground); text-align: center; margin-top: 0.75rem; line-height: 1.5; }
.offer-final { text-align: center; margin-top: 2rem; margin-bottom: 1rem; font-weight: 500; }
.offer-trust { text-align: center; font-size: 0.75rem; color: var(--muted-foreground); }

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .lead-h2 { font-size: 1.875rem; }
  .quiz-question { font-size: 1.5rem; }
  .profile-headline { font-size: 1.875rem; }
  .offer-header h2 { font-size: 1.875rem; }
  .offer-card-header h3 { font-size: 1.25rem; }
  .offer-price-val { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .offer-grid { flex-direction: row; gap: 1.5rem; }
}

/* Mobile Progress - bolinhas pequenas */
.progress-bar-mobile { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.progress-mobile-label { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.progress-mobile-label span { font-size: 0.875rem; }
.progress-mobile-label .current { font-weight: 700; color: var(--primary); }
.progress-mobile-label .total { font-weight: 700; color: var(--muted-foreground); }
.progress-mobile-label .separator { color: var(--muted-foreground); }
.progress-mobile-dots { position: relative; display: flex; align-items: center; justify-content: space-between; width: calc(100vw - 2rem); padding-top: 28px; }
.progress-mobile-airplane {
  position: absolute; top: 0; z-index: 20;
  transition: left 0.5s ease-out;
  transform: translateX(-50%);
  pointer-events: none;
}
.progress-mobile-airplane svg { width: 16px; height: 16px; fill: var(--primary); transform: rotate(-45deg); }
.progress-dot {
  width: 12px; height: 12px; border-radius: 50%; 
  transition: all 0.3s; flex-shrink: 0;
}
.progress-dot.done { background: var(--primary); }
.progress-dot.active { 
  background: var(--primary); 
  box-shadow: 0 0 0 3px rgba(0,163,255,0.3);
  transform: scale(1.25);
}
.progress-dot.pending { background: rgba(139,163,192,0.4); }
.progress-dot.final { background: rgba(255,208,0,0.4); }
.progress-dot.final.active { 
  background: var(--accent); 
  box-shadow: 0 0 8px 2px rgba(255,208,0,0.6);
}

.progress-bar-desktop {
    display: none;
    align-items: center;
    overflow: visible;
}

@media (min-width: 768px) {
  .progress-bar-desktop { display: flex; }
  .progress-bar-mobile { display: none; }
  .logo-img { width: 80px; height: 80px; }
  .logo-text-small { font-size: 1rem; }
  .logo-text-big { font-size: 1.5rem; }
}
@media (min-width: 1024px) {
  .step-line { width: 40px; }
  .step-circle { width: 36px; height: 36px; }
}

/* ===== STEP VISIBILITY ===== */
.step-hidden { display: none; }


/* Step Two */
/* Card wrapper com borda brilhante */
.card-wrapper {
  width: 100%;
  max-width: 28rem;
  position: relative;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(to bottom, rgba(34, 211, 238, 0.5), rgba(34, 211, 238, 0.2), transparent);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.15);
}

.card {
  border-radius: 1rem;
  background-color: #112133;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

/* Badge de sucesso */
.badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.3);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}

.badge-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #34d399;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #34d399;
}

/* Headline */
.headline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.rocket-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #facc15;
  filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.6));
}

.headline {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.25;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

@media (min-width: 768px) {
  .headline {
    font-size: 1.5rem;
  }
}

/* Linha divisória */
.divider {
  width: 5rem;
  height: 1px;
  margin: 0 auto 1rem;
  background: linear-gradient(to right, transparent, #22d3ee, transparent);
}

/* Subheadline */
.subheadline {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #22d3ee;
  line-height: 1.4;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.5));
}

/* Blocos de texto */
.text-block {
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
}

.text-block-content {
  text-align: center;
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Bloco destaque */
.highlight-block {
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  background: linear-gradient(to right, rgba(6, 182, 212, 0.1), rgba(34, 211, 238, 0.15), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 0.75rem 1rem;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

.highlight-text {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  font-style: italic;
  line-height: 1.6;
}

/* Texto final */
.final-text {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Botão CTA com neon */
.cta-button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #d4c84a;
  color: #0a192f;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 30px rgba(212, 200, 74, 0.6),
    0 0 60px rgba(212, 200, 74, 0.4),
    0 0 90px rgba(212, 200, 74, 0.2);
  animation: pulse-glow 2s ease-in-out infinite;
}

.cta-button:hover {
  background-color: #e0d454;
  transform: scale(1.02);
  box-shadow: 
    0 0 40px rgba(212, 200, 74, 0.8),
    0 0 80px rgba(212, 200, 74, 0.5),
    0 0 120px rgba(212, 200, 74, 0.3);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.arrow-icon {
  width: 1rem;
  height: 1rem;
}

/* Animação de glow pulsante */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(212, 200, 74, 0.6),
      0 0 40px rgba(212, 200, 74, 0.4),
      0 0 60px rgba(212, 200, 74, 0.2);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(212, 200, 74, 0.8),
      0 0 60px rgba(212, 200, 74, 0.5),
      0 0 90px rgba(212, 200, 74, 0.3);
  }
}

/* Linha divisória inferior */
.divider-bottom {
  width: 7rem;
  height: 1px;
  margin: 1.25rem auto 0.75rem;
  background: linear-gradient(to right, transparent, rgba(100, 116, 139, 0.5), transparent);
}

/* Footer de confiança */
.trust-footer {
  text-align: center;
}

.trust-title {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #94a3b8;
  font-weight: 500;
}

.trust-text {
  margin-top: 0.25rem;
  font-size: 0.625rem;
  color: rgba(148, 163, 184, 0.9);
}

@media(max-width: 560px){
  .progress-bar{
    flex-wrap: wrap;
    gap: 5px;
  }
  .progress-step{
    flex: 0;
  }
}