/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: hsl(0, 0%, 4%);
  --bg-card: hsl(0, 0%, 7%);
  --bg-darker: hsl(0, 0%, 10%);
  --text-primary: hsl(0, 0%, 98%);
  --text-secondary: hsl(0, 0%, 88%);
  --text-muted: hsl(0, 0%, 55%);
  --primary-red: hsl(0, 62%, 52%);
  --primary-red-hover: hsl(0, 65%, 56%);
  --accent-gold: hsl(38, 85%, 58%);
  --accent-gold-soft: hsl(38, 75%, 62%);
  --danger-red: hsl(0, 70%, 50%);
  --border-color: hsl(0, 0%, 15%);
  --border-card: hsl(0, 0%, 18%);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 20% 50%, hsl(0, 70%, 15%, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, hsl(0, 70%, 18%, 0.06) 0%, transparent 50%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1rem;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}


.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.pulse-text {
  animation: pulse 2s ease-in-out infinite;
}

/* Barra de Progresso */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
  transition: width 0.3s ease;
  box-shadow: 0 0 15px hsl(0, 85%, 48%, 0.4);
}

.progress-text {
  display: none;
}

.progress-icon {
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-icon svg {
  filter: drop-shadow(0 0 6px hsl(0, 85%, 45%, 0.5)) drop-shadow(0 0 12px hsl(45, 100%, 55%, 0.4));
}

.progress-icon svg text {
  letter-spacing: 0.05em;
}

/* Screens */
.screen {
  display: none;
  min-height: 100vh;
  padding: 2rem 0;
}

.screen.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Esconder vídeo offscreen quando a tela de resultados não está ativa */
#results-screen:not(.active) .video-container {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
}

/* Welcome Screen */
.welcome-content {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.title-main {
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, hsl(0, 65%, 60%), hsl(38, 80%, 60%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.shine-text {
  position: relative;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.subtitle strong {
  color: var(--text-primary);
  font-weight: 700;
}

.benefits {
  text-align: left;
  margin: 2rem auto;
  max-width: 640px;
}

.benefits-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.benefit-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: start;
}

.check {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.benefit-item strong {
  color: var(--text-primary);
}

.benefit-item .muted {
  color: var(--text-muted);
  font-weight: 400;
}

/* Botões */
.btn-primary {
  display: inline-block;
  background: var(--primary-red);
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin: 2rem auto;
  max-width: 512px;
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  background: var(--primary-red-hover);
}

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

.footer-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Question Screen */
.question-content {
  max-width: 768px;
  margin: 0 auto;
  padding-top: 2rem;
}

.question-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.question-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.option-btn {
  min-height: 4rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  border: 1px solid var(--border-card);
  border-radius: 1rem;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 0 0 hsl(0, 85%, 45%, 0.08), 0 10px 40px -10px hsl(0, 85%, 45%, 0.25);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.option-btn:hover {
  border-color: hsl(0, 85%, 48%, 0.4);
  transform: scale(1.02);
}

.option-btn.selected {
  border: 2px solid var(--primary-red);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
}

.option-btn.selected::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.02), rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02));
  border-radius: inherit;
  animation: pulse 2s ease-in-out infinite;
}

.checkbox-mark {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--border-card);
  border-radius: 0.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.option-btn.selected .checkbox-mark {
  background: var(--primary-red);
  border-color: var(--primary-red);
}

.checkbox-mark::after {
  content: '✓';
  color: white;
  font-weight: 700;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.option-btn.selected .checkbox-mark::after {
  opacity: 1;
  transform: scale(1);
}

/* Alert Screen */
.alert-content {
  max-width: 768px;
  margin: 0 auto;
}

.alert-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  border: 2px solid var(--primary-red);
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.alert-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.alert-subtitle {
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.alert-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.alert-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

.alert-cta {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 900;
  margin: 2rem 0;
  line-height: 1.5;
}

.highlight {
  color: var(--accent-gold);
  font-weight: 900;
}

/* Loading Screen */
.loading-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.loading-title {
  font-size: clamp(1.25rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.progress-container {
  max-width: 100%;
  margin: 0 auto 2rem;
}

.progress-line {
  height: 1rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(200, 60, 60, 0.15);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-gold), var(--primary-red));
  background-size: 200% 100%;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 12px hsl(0, 85%, 45%, 0.4), 0 0 24px hsl(45, 100%, 55%, 0.3);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
}

.progress-percent {
  color: var(--primary-red);
  font-weight: 900;
  font-size: 1rem;
  text-shadow: 0 0 8px hsl(0, 85%, 45%, 0.3);
}

.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 100%;
  margin: 0 auto 2rem;
}

.loading-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  transition: all 0.4s ease;
  opacity: 0.4;
  transform: translateX(-20px);
}

.loading-step.active {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  border: 2px solid var(--primary-red);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: translateX(0);
}

.loading-step.completed {
  opacity: 0.6;
  transform: translateX(0);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  border-color: rgba(255, 215, 0, 0.3);
}

.step-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

.loading-step.active .step-icon {
  background: var(--primary-red);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: pulse-icon 1.5s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.loading-step.completed .step-icon {
  background: var(--accent-gold);
  border-color: transparent;
}

.step-text {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  text-align: left;
  flex: 1;
  color: var(--text-secondary);
  line-height: 1.4;
}

.loading-step.active .step-text {
  color: var(--text-primary);
  font-weight: 700;
}

.loading-step.completed .step-text {
  color: var(--text-muted);
}

.loading-step.completed .step-text::before {
  content: '✓ ';
  color: var(--accent-gold);
  font-weight: 900;
  margin-right: 0.5rem;
}

.loading-footer {
  font-size: clamp(0.8125rem, 1.5vw, 1rem);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

/* Loading Screen - Responsividade Mobile */
@media (max-width: 640px) {
  .loading-content {
    padding: 0 0.75rem;
  }
  
  .loading-title {
    margin-bottom: 1.5rem;
  }
  
  .progress-container {
    margin-bottom: 1.5rem;
  }
  
  .loading-steps {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .loading-step {
    padding: 0.875rem 1rem;
    gap: 0.875rem;
  }
  
  .step-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.375rem;
  }
  
  .step-text {
    font-size: 0.875rem;
  }
  
  .loading-footer {
    margin-top: 1rem;
    font-size: 0.75rem;
  }
}

/* Bonus Screen */
.bonus-content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.bonus-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, hsl(0, 65%, 60%), hsl(38, 80%, 60%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonus-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.5;
  font-weight: 600;
}

.bonus-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.bonus-option {
  background: var(--bg-card);
  border: 2px solid var(--border-card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.bonus-option:hover {
  border-color: var(--primary-red);
  background: var(--bg-darker);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bonus-option.selected {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  box-shadow: 0 0 20px rgba(212, 156, 70, 0.3);
}

.bonus-checkbox {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-darker);
  position: relative;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.bonus-option.selected .bonus-checkbox {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.bonus-option.selected .bonus-checkbox::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg-dark);
  font-weight: 900;
  font-size: 16px;
}

.bonus-details {
  flex: 1;
}

.bonus-name {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.bonus-description {
  font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  color: var(--text-muted);
  line-height: 1.4;
}

.btn-primary.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Bonus Screen - Responsividade Mobile */
@media (max-width: 640px) {
  .bonus-content {
    padding: 0 0.75rem;
  }

  .bonus-title {
    margin-bottom: 0.75rem;
  }

  .bonus-subtitle {
    margin-bottom: 2rem;
  }

  .bonus-option {
    padding: 1rem;
    gap: 0.875rem;
  }

  .bonus-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .bonus-name {
    margin-bottom: 0.25rem;
  }
}

/* Results Screen */
.results-content {
  max-width: 1024px;
  margin: 0 auto;
}

.results-intro {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.results-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  border: 2px solid var(--primary-red);
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  margin-bottom: 3rem;
  position: relative;
}

.probability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  background: rgba(212, 156, 70, 0.15);
  border: 2px solid var(--accent-gold);
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
}

.probability-number {
  font-size: clamp(4.5rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 1;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.probability-text {
  font-size: clamp(1.125rem, 2.5vw, 1.875rem);
  font-weight: 700;
  margin: 2rem 0;
  line-height: 1.4;
}

.traditional-probability {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  border: 1px solid hsl(0, 85%, 48%, 0.25);
  border-radius: 1rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--text-muted);
  margin-top: 1rem;
}

.traditional-probability .danger {
  color: var(--danger-red);
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.results-message {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 3rem;
}

.results-message p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.results-message strong {
  font-weight: 900;
}

.plan-section {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.plan-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.plan-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2rem;
}

.video-intro {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--text-primary);
  font-weight: 800;
  text-align: center;
  margin: 2rem 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-container {
  margin-top: 2rem;
  width: 100%;
}

/* Sales Section */
.sales-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.sales-section.visible {
  display: block;
  opacity: 1;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
}

/* Testimonials Section */
.testimonials-section {
  margin-bottom: 4rem;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem;
}

.testimonial-track {
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.5s ease;
}

.testimonial-content {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
}

.stars {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 700;
}

.author-meta {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-darker);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-red);
  transform: scale(1.3);
}

.dot:hover {
  background: var(--accent-gold);
}

/* Offer Section - High Conversion Design */
.offer-section {
  margin: 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, var(--primary-red), hsl(0, 85%, 58%));
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 12px hsl(0, 85%, 45%, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.urgency-icon {
  font-size: 1.125rem;
  animation: flash 1.5s ease-in-out infinite;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.urgency-text {
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.urgency-divider {
  color: var(--text-primary);
  opacity: 0.7;
}

.urgency-slots {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent-gold);
}

/* Offer Card */
.offer-card {
  background: var(--bg-card);
  border: 2px solid var(--primary-red);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Offer Header */
.offer-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-card);
}

.offer-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.offer-title-highlight {
  display: block;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.25rem;
}

.offer-subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Price Section */
.price-section {
  text-align: center;
  padding: 1.5rem 1.5rem;
  margin-bottom: 1.25rem;
  background: transparent;
  position: relative;
}

.price-intro {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-strikethrough {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-strikethrough span {
  text-decoration: line-through;
  font-weight: 700;
  font-size: 1.75rem;
  opacity: 0.6;
}

.price-label-today {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.price-dollar {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-top: 1rem;
}

.price-value {
  font-size: 10rem;
  font-weight: 900;
  line-height: 0.9;
  color: var(--accent-gold);
}

.price-cents {
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-top: 1rem;
}

.price-badge-discount {
  position: absolute;
  top: -1.5rem;
  right: -2rem;
  background: var(--primary-red);
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 900;
  padding: 0.875rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transform: rotate(12deg);
}

.price-details {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  width: 100%;
  background: var(--primary-red);
  color: var(--text-primary);
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  text-decoration: none;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  background: var(--primary-red-hover);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Secure Payment */
.secure-payment {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin: 0;
  padding-top: 0.5rem;
}

/* Trust Row */
.trust-row {
  display: flex;
  justify-content: space-around;
  gap: 0.75rem;
  padding: 1rem 0;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-card);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.trust-badge-icon {
  font-size: 1rem;
}

.trust-badge-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Included Section */
.included-section {
  background: var(--bg-darker);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.included-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
}

.included-check {
  color: var(--accent-gold);
  font-weight: 900;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.included-name {
  color: var(--text-primary);
  font-weight: 600;
  flex: 1;
}


/* Bonus Section */
.bonus-section {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-card);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-card);
}

.bonus-badge {
  background: linear-gradient(135deg, var(--accent-gold), hsl(43, 100%, 60%));
  color: var(--bg-dark);
  padding: 0.375rem 0.875rem;
  border-radius: 1rem;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.bonus-total {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bonus-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.bonus-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bonus-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bonus-content strong {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.bonus-content span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* Guarantee Section */
.guarantee-section {
  margin-bottom: 4rem;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-badge {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.guarantee-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.guarantee-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
  margin-bottom: 4rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-red);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: clamp(0.9375rem, 2vw, 1rem);
}

/* Utility */
.hidden {
  display: none !important;
}

/* Results Screen - Otimização Mobile */
@media (max-width: 768px) {
  #results-screen .container {
    padding: 0.75rem 0.5rem;
  }

  .results-content {
    padding: 0 0.25rem;
  }

  .results-intro {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .results-card {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    border-width: 1.5px;
  }

  .probability-badge {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .badge-icon {
    font-size: 1.125rem;
  }

  .badge-text {
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
  }

  .probability-number {
    font-size: 3.5rem;
    margin: 0.5rem 0;
  }

  .probability-text {
    font-size: 0.9375rem;
    margin: 1rem 0 0.75rem;
    line-height: 1.35;
  }

  .traditional-probability {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }

  .traditional-probability .danger {
    font-size: 0.9375rem;
  }

  .results-message {
    margin: 0 auto 1.5rem;
    padding: 0 0.5rem;
  }

  .results-message p {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .plan-section {
    padding: 0 0.5rem;
  }

  .plan-title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
    line-height: 1.25;
  }

  .plan-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .video-intro {
    font-size: 1rem;
    margin: 1.25rem 0 1rem;
    letter-spacing: 0.3px;
  }

  .video-container {
    margin-top: 1rem;
  }

  /* Compactar ainda mais em telas muito pequenas */
  @media (max-width: 400px) {
    .results-card {
      padding: 1rem;
    }

    .probability-number {
      font-size: 3rem;
    }

    .results-message p {
      font-size: 0.875rem;
    }

    .plan-title {
      font-size: 1.25rem;
    }
  }

  /* Sales Section Mobile */
  .sales-section {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .section-title {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }

  .testimonials-carousel {
    padding: 0 2.5rem;
  }

  .testimonial-content {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .carousel-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }

  /* Offer Section Mobile */
  .offer-section {
    margin: 2rem 0;
  }

  .urgency-banner {
    padding: 0.625rem 0.875rem;
    gap: 0.375rem;
    margin-bottom: 1rem;
  }

  .urgency-icon {
    font-size: 1rem;
  }

  .urgency-text {
    font-size: 0.8125rem;
  }

  .urgency-slots {
    font-size: 0.8125rem;
  }

  .offer-card {
    padding: 1.25rem;
  }

  .offer-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }

  .offer-title {
    font-size: 1.25rem;
  }

  .offer-title-highlight {
    font-size: 1.75rem;
  }

  .offer-subtitle {
    font-size: 0.875rem;
  }

  .price-section {
    padding: 0.75rem 0.75rem;
    margin-bottom: 0.75rem;
  }

  .price-intro {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .price-strikethrough {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }

  .price-strikethrough span {
    font-size: 1.25rem;
  }

  .price-label-today {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
  }

  .price-dollar {
    font-size: 2.25rem;
    margin-top: 0.5rem;
  }

  .price-value {
    font-size: 5rem;
  }

  .price-cents {
    font-size: 2.5rem;
    margin-top: 0.5rem;
  }

  .price-badge-discount {
    top: -0.75rem;
    right: 0.25rem;
    font-size: 1rem;
    padding: 0.5rem 0.875rem;
  }

  .price-details {
    font-size: 0.75rem;
    max-width: 100%;
    line-height: 1.3;
  }

  .cta-button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }

  .secure-payment {
    font-size: 0.875rem;
    padding-top: 0.25rem;
  }

  .trust-row {
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    gap: 0.5rem;
  }

  .trust-badge-text {
    font-size: 0.75rem;
  }

  .offer-card {
    padding: 1rem;
  }

  .included-section {
    padding: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .included-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .included-list {
    gap: 0.375rem;
  }

  .included-item {
    font-size: 0.8125rem;
    gap: 0.5rem;
  }

  .included-check {
    font-size: 0.9375rem;
  }


  .bonus-section {
    padding: 1rem;
  }

  .bonus-header {
    margin-bottom: 0.875rem;
    padding-bottom: 0.625rem;
  }

  .bonus-badge {
    font-size: 0.75rem;
    padding: 0.3125rem 0.75rem;
  }

  .bonus-total {
    font-size: 1.125rem;
  }

  .bonus-list {
    gap: 0.625rem;
  }

  .bonus-emoji {
    font-size: 1.25rem;
  }

  .bonus-content strong {
    font-size: 0.875rem;
  }

  .bonus-content span {
    font-size: 0.75rem;
  }

  .guarantee-card {
    padding: 1.5rem;
  }

  .guarantee-title {
    font-size: 1.25rem;
  }

  .guarantee-text {
    font-size: 0.9375rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9375rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.875rem;
  }
}

/* Responsive */
@media (min-width: 768px) {
  .container {
    padding: 2rem;
  }

  .screen {
    padding: 3rem 0;
  }

  .question-content {
    padding-top: 3rem;
  }

}