:root {
  --bg-color: #09090b;
  --surface-color: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(255, 255, 255, 0.08);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-danger: #f87171;
  --accent-1: #c084fc; /* purple */
  --accent-2: #fb7185; /* rose */
  --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --success: #10b981;
  
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Glowing Orbs */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.35;
  animation: float 20s infinite alternate ease-in-out;
}

body::before {
  width: 400px;
  height: 400px;
  background: var(--accent-1);
  top: -100px;
  left: -100px;
}

body::after {
  width: 500px;
  height: 500px;
  background: var(--accent-2);
  bottom: -150px;
  right: -100px;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.app-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Top Bar & Progress */
.top-bar {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.progress-track {
  width: 100%;
  height: 4px;
  background: var(--surface-border);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s;
  align-self: flex-start;
}

.back-btn:hover {
  color: var(--text-primary);
}

.back-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Screens Wrapper */
.screens-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

/* Individual Screen */
.screen {
  position: absolute;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

.screen.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  display: block;
  position: relative;
}

.screen.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

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

.screen .content-box > * {
  opacity: 0;
}

.screen.active .content-box > * {
  animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.screen.active .content-box > *:nth-child(1) { animation-delay: 0.1s; }
.screen.active .content-box > *:nth-child(2) { animation-delay: 0.2s; }
.screen.active .content-box > *:nth-child(3) { animation-delay: 0.3s; }
.screen.active .content-box > *:nth-child(4) { animation-delay: 0.4s; }
.screen.active .content-box > *:nth-child(5) { animation-delay: 0.5s; }
.screen.active .content-box > *:nth-child(6) { animation-delay: 0.6s; }
.screen.active .content-box > *:nth-child(7) { animation-delay: 0.7s; }
.screen.active .content-box > *:nth-child(8) { animation-delay: 0.8s; }
.screen.active .content-box > *:nth-child(9) { animation-delay: 0.9s; }

/* Content Box */
.content-box {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Typography */
.badge {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.bonus-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--accent-gradient);
  color: white;
  margin-bottom: 1.5rem;
}

.headline {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.subheadline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-danger {
  color: var(--text-danger);
}

.fw-bold {
  font-weight: 700;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* Interactive Elements */
.question {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.options-grid.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.option-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  color: var(--text-primary);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.option-btn:hover {
  background: var(--surface-hover);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.option-btn.selected {
  background: rgba(192, 132, 252, 0.1);
  border-color: var(--accent-1);
  box-shadow: 0 0 15px rgba(192, 132, 252, 0.2);
}

/* Card Style Option */
.card-style strong {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.card-style span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Lists */
.styled-list, .check-list, .cross-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.styled-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-1);
}

.check-list li, .cross-list li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.highlight-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.5rem;
}

.block-quote {
  padding: 1rem;
  border-left: 4px solid var(--accent-1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 8px 8px 0;
}

/* Icon Cards */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.info-card .icon {
  font-size: 1.5rem;
}

.no-bs-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Testimonials */
.testimonials-grid, .story-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-card, .story-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--surface-border);
  text-align: left;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.author {
  font-weight: 600;
  color: var(--accent-2);
}

.story-card .story-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.story-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.story-card p {
  color: var(--text-secondary);
}

/* Mentor Profile */
.mentor-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mentor-img {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 15%;
  border: 2px solid var(--surface-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
}

.mentor-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Proof Images */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.proof-image-wrapper {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem;
  border-radius: 16px;
  border: 1px solid var(--surface-border);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.proof-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* PIX Styles */
.pix-qrcode-wrapper {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  display: inline-block;
}
.pix-qrcode {
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.pix-copy-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.pix-copy-area input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--surface-border);
  padding: 1rem;
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: monospace;
  font-size: 0.85rem;
  text-align: center;
}
.btn-copy-pix {
  background: transparent;
  border: 1px solid var(--accent-1);
  color: var(--accent-1);
  font-size: 0.9rem;
  padding: 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-copy-pix:hover {
  background: rgba(192, 132, 252, 0.1);
  transform: translateY(-2px);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--surface-border);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}
.form-input:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 2px rgba(192, 132, 252, 0.2);
}

/* Pricing Options */
.pricing-card {
  position: relative;
  overflow: hidden;
}

.highlight-pricing {
  border-color: var(--accent-1);
  background: rgba(192, 132, 252, 0.05);
}

.best-value-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-gradient);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 1rem;
  border-bottom-left-radius: 12px;
  text-transform: uppercase;
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.plan-header .icon {
  font-size: 1.5rem;
}

.plan-header strong {
  font-size: 1.4rem;
  font-family: var(--font-heading);
}

/* CTA Buttons */
.cta-btn {
  width: 100%;
  padding: 1.2rem;
  border-radius: 100px;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: var(--text-primary);
  color: var(--bg-color);
  margin-top: 2rem;
}

.primary-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.primary-btn:disabled, .primary-btn.disabled {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.checkout-btn {
  display: block;
  background: var(--accent-gradient);
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(236, 72, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
}

/* Specific sections */
.disclaimer-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

.bonus-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
}

.icon-large { font-size: 2.5rem; margin-bottom: 1rem; }
.icon-huge { font-size: 4rem; margin-bottom: 1rem; }

.bonus-card ul {
  list-style: none;
  margin-top: 1rem;
}
.bonus-card ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.bonus-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
}

.guarantee-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 1rem;
  border-radius: 12px;
  color: var(--success);
}

.dates-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--surface-border);
}

.date-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.date-item .label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.date-item strong {
  font-size: 1.2rem;
}

.date-item.danger strong {
  color: var(--text-danger);
}

.divider {
  height: 1px;
  background: var(--surface-border);
  margin: 1.5rem 0;
}

.final-checkout {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--surface-border);
}

.instruction {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.secure-text {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--success);
}

/* Responsive */
@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}
