@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@1,400;1,700&display=swap');

:root {
  --primary: #4C3D8F;
  --secondary: #2EC4B6;
  --cta: #F4A261;
  --cta-hover: #e8903f;
  --bg: #FAFAFA;
  --bg-soft: #F5F3FF;
  --text: #1A1A2E;
  --text-light: #6B6B8A;
  --white: #FFFFFF;
  --perfil-1: #6B9DD3;
  --perfil-2: #F47C3C;
  --perfil-3: #9B8EC4;
  --perfil-4: #1A9E8F;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
nav {
  background: var(--white);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(76,61,143,0.08);
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--cta);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--cta);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  line-height: 1.3;
}

.btn:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,162,97,0.4);
}

.btn-full { display: block; width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { font-size: 20px; padding: 20px 48px; }

/* SECTION LABEL */
.section-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}

/* HERO */
.hero {
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 88px 24px 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  color: var(--primary);
  margin-bottom: 20px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-micro {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* SECTIONS */
section { padding: 72px 24px; }
section:nth-child(even) { background: var(--bg-soft); }

section h2 {
  font-size: clamp(24px, 4vw, 38px);
  color: var(--primary);
  margin-bottom: 20px;
}

section p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(76,61,143,0.08);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 16px;
}

.step h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.6; }

/* STACK */
.stack {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(76,61,143,0.10);
  max-width: 620px;
  margin: 0 auto;
}

.stack-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--bg-soft);
}

.stack-item:last-child { border-bottom: none; }
.stack-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }

.stack-text h4 {
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.stack-text p { font-size: 14px; color: var(--text-light); margin: 0 0 4px; line-height: 1.5; }
.stack-text .price-strike { font-size: 13px; color: #bbb; text-decoration: line-through; }

.stack-price {
  margin-top: 28px;
  text-align: center;
  padding-top: 20px;
  border-top: 2px dashed var(--bg-soft);
}

.price-old { font-size: 16px; color: var(--text-light); text-decoration: line-through; }
.price-new {
  font-size: 56px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin: 4px 0;
}

.price-label { font-size: 13px; color: var(--text-light); }

/* GUARANTEE */
.guarantee-box {
  background: linear-gradient(135deg, var(--primary) 0%, #6B5CC8 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.guarantee-box h2 { color: var(--white); margin-bottom: 16px; font-size: 26px; }
.guarantee-box p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 12px; }

/* FAQ */
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E8E5F5; padding: 24px 0; }
.faq-item h4 { font-size: 16px; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.faq-item p { font-size: 15px; color: var(--text-light); margin: 0; line-height: 1.7; }

/* FOOTER */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 40px 24px;
  font-size: 13px;
  line-height: 1.7;
}

footer .logo { color: var(--white); justify-content: center; margin-bottom: 12px; }

/* ==================== QUIZ ==================== */
.quiz-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.progress-bar {
  height: 6px;
  background: #E8E5F5;
  border-radius: 3px;
  margin-bottom: 52px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  transition: width 0.4s ease;
}

.q-counter {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.q-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 36px;
  line-height: 1.3;
}

.options { display: flex; flex-direction: column; gap: 14px; }

.option {
  padding: 20px 24px;
  border: 2px solid #E8E5F5;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.18s;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  text-align: left;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

.option:hover { border-color: var(--primary); background: var(--bg-soft); }
.option.selected {
  border-color: var(--primary);
  background: var(--bg-soft);
  color: var(--primary);
  font-weight: 600;
}

.next-btn { display: none; margin-top: 28px; width: 100%; }
.next-btn.visible { display: block; }

/* ==================== RESULTADO ==================== */
.resultado-hero {
  text-align: center;
  padding: 64px 24px 40px;
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.perfil-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.resultado-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  max-width: 680px;
  margin: 0 auto 48px;
  box-shadow: 0 8px 48px rgba(76,61,143,0.10);
  border-top: 6px solid var(--primary);
}

.resultado-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 24px);
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.55;
  border-left: 4px solid var(--cta);
  padding-left: 20px;
}

.resultado-card p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 14px;
}

/* MOBILE */
@media (max-width: 640px) {
  .hero { padding: 60px 16px; }
  section { padding: 56px 16px; }
  .stack { padding: 28px 20px; }
  .guarantee-box { padding: 36px 24px; }
  .resultado-card { padding: 28px 20px; }
  nav { padding: 14px 16px; }
  .btn-lg { font-size: 17px; padding: 18px 28px; }
}
