/* ══════════════════════════════════════════════════════════════
   DESIGN SYSTEM - DIAGNÓSTICO EMOCIONAL & AI
   Palette: Roxo Real (Deep Royal Violet) & Nude Sofisticado (Warm Nude/Champagne)
   With Conversion & Authority Differentials
══════════════════════════════════════════════════════════════ */
:root {
  /* Color Theme: Roxo & Nude */
  --bg: #11091C;                     /* Roxo Aveludado Profundo */
  --bg-secondary: #180D28;
  --surface: rgba(30, 18, 46, 0.75); /* Card Roxo Glass */
  --surface-solid: #1D122C;
  --surface-2: rgba(45, 27, 68, 0.8);
  
  /* Borders */
  --border: rgba(234, 213, 195, 0.18);
  --border-hover: #EAD5C3;
  
  /* Text */
  --text: #F9F5F0;                    /* Nude Marfim Iluminado */
  --text-2: #D5C4B5;                  /* Nude Suave */
  --text-muted: #9B899C;
  
  /* Accents */
  --nude: #EAD5C3;                    /* Nude Principal */
  --nude-dark: #C4A48D;
  --nude-light: rgba(234, 213, 195, 0.12);
  --nude-hover: rgba(234, 213, 195, 0.08);
  
  --purple: #9333EA;                  /* Roxo Nobre */
  --purple-vivid: #A855F7;
  --purple-light: rgba(147, 51, 234, 0.2);
  
  --brand: #EAD5C3;                   /* Nude Acento Principal */
  --accent: #A855F7;                  /* Roxo Acento Secundário */
  
  /* Gradients */
  --btn-gradient: linear-gradient(135deg, #7C3AED 0%, #D8B097 100%);
  --text-gradient: linear-gradient(135deg, #F3E5D8 0%, #C084FC 50%, #EAD5C3 100%);
  --badge-gradient: linear-gradient(90deg, #7C3AED, #D8B097);
  
  --glow-shadow: 0 0 25px rgba(234, 213, 195, 0.25);
  
  --font-tech: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Purple & Nude Glows */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.bg-glow-1 {
  width: 380px;
  height: 380px;
  top: -100px;
  left: -80px;
  background: #6D28D9;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

.bg-glow-2 {
  width: 420px;
  height: 420px;
  bottom: -120px;
  right: -100px;
  background: #C4A48D;
  animation: pulseGlow 10s infinite alternate ease-in-out 2s;
  opacity: 0.35;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.4; }
  100% { transform: scale(1.28) translate(30px, 30px); opacity: 0.65; }
}

/* Differential 1: Social Toast Notification */
.social-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99;
  background: rgba(17, 9, 28, 0.92);
  border: 1px solid var(--nude);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  font-size: 12.5px;
  color: var(--text);
  transition: all 0.4s ease;
  max-width: 340px;
}

.social-toast.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 10px #22C55E;
  flex-shrink: 0;
}

/* Glassmorphism Panel Roxo e Nude */
.glass-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(234, 213, 195, 0.12);
}

/* Typography Helpers */
.title-tech {
  font-family: var(--font-tech);
  letter-spacing: -0.02em;
}

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

.text-accent {
  color: var(--nude);
}

.text-center {
  text-align: center;
}

/* Screens Layout */
.screen {
  display: none;
  min-height: 100vh;
  width: 100%;
  padding: 24px 16px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  position: relative;
  z-index: 1;
}

.screen.active {
  display: flex;
}

.container-narrow {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.flex-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.align-center {
  align-items: center;
}

/* Animations */
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(147, 51, 234, 0.45); }
  50% { box-shadow: 0 0 35px rgba(234, 213, 195, 0.5); }
}

.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

.fade-in {
  animation: fadeSlideIn 0.38s ease forwards;
}

.slide-in {
  animation: slideInRight 0.32s cubic-bezier(.22, .68, 0, 1.1) forwards;
}

/* AI Badge Pill Roxo/Nude */
.ai-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(234, 213, 195, 0.1);
  border: 1px solid rgba(234, 213, 195, 0.3);
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--nude);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(234, 213, 195, 0.15);
}

.ai-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nude);
  box-shadow: 0 0 10px var(--nude);
  animation: blink 1.2s ease-in-out infinite alternate;
}

@keyframes blink {
  from { opacity: 0.4; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1.2); }
}

/* Buttons Gradient Roxo -> Nude */
.btn-primary {
  width: 100%;
  padding: 16px 24px;
  background: var(--btn-gradient);
  color: #11091C;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-tech);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(234, 213, 195, 0.5);
  filter: brightness(1.08);
}

.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-landing {
  font-size: 17px;
  padding: 18px 28px;
  border-radius: 50px;
  margin-top: 8px;
  margin-bottom: 24px;
}

/* Landing Header & Cover */
.landing-header {
  padding: 24px 12px;
  text-align: center;
}

#lnd-headline {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.24;
  color: var(--text);
  margin-bottom: 18px;
}

@media (min-width: 480px) {
  #lnd-headline {
    font-size: 34px;
  }
}

.subtitle-text {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.badge-item {
  font-size: 13px;
  color: var(--text-2);
}

.star-icon {
  color: var(--nude);
}

.badge-divider {
  color: var(--border);
}

/* Expert Card */
.expert-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  text-align: left;
}

.expert-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid var(--nude);
  box-shadow: 0 0 15px rgba(234, 213, 195, 0.3);
}

.expert-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.expert-title {
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 2px;
  line-height: 1.35;
}

/* Top Bar & Navigation */
.top-bar {
  width: 100%;
  padding: 12px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-back {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

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

.counter-text {
  font-size: 13px;
  color: var(--nude);
  font-weight: 700;
  font-family: var(--font-tech);
}

/* Progress Bar Roxo/Nude */
.progress-wrap {
  width: 100%;
  padding: 8px 0 16px;
}

.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #7C3AED, #EAD5C3);
  border-radius: 3px;
  transition: width 0.35s ease;
  box-shadow: 0 0 12px rgba(234, 213, 195, 0.5);
}

/* Question Area */
.question-content {
  width: 100%;
  padding: 16px 0 40px;
}

.q-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--nude);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.q-title {
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1.38;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Option Cards (Standard Radio) */
.option-card {
  width: 100%;
  padding: 16px 18px;
  background: rgba(30, 18, 46, 0.7);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  backdrop-filter: blur(10px);
}

.option-card:hover {
  border-color: var(--nude);
  background: rgba(234, 213, 195, 0.08);
  transform: translateX(4px);
}

.option-card.selected {
  border-color: var(--nude);
  background: rgba(147, 51, 234, 0.25);
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(234, 213, 195, 0.2);
}

.radio-ring {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(234, 213, 195, 0.3);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s;
}

.radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nude);
  box-shadow: 0 0 8px var(--nude);
  display: none;
}

.option-card.selected .radio-ring {
  border-color: var(--nude);
}

.option-card.selected .radio-dot {
  display: block;
}

/* Gender Image Cards Layout */
.gender-cards {
  display: flex;
  gap: 14px;
  width: 100%;
}

.img-card {
  flex: 1;
  background: rgba(30, 18, 46, 0.7);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.img-card:hover {
  border-color: var(--nude);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(234, 213, 195, 0.2);
}

.img-card.selected {
  border-color: var(--nude);
  background: rgba(147, 51, 234, 0.3);
  box-shadow: 0 0 25px rgba(234, 213, 195, 0.3);
}

.img-card-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-solid);
}

.img-card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-card-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 4px;
  font-family: var(--font-tech);
}

.img-card.selected .img-card-label {
  color: var(--nude);
}

.continue-wrap {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Interlude Box */
.interlude-box {
  padding: 36px 24px;
  text-align: center;
  margin-top: 40px;
}

.interlude-icon {
  font-size: 42px;
  margin-bottom: 14px;
}

.interlude-title {
  font-size: 25px;
  color: var(--text);
  margin-bottom: 14px;
}

.interlude-text {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.interlude-subtext {
  font-size: 14px;
  color: var(--nude);
  margin-bottom: 28px;
}

/* Differential 2: Audio Note Component */
.audio-note-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  margin-top: 16px;
  border-radius: 16px;
}

.audio-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nude);
  flex-shrink: 0;
}

.audio-info {
  flex: 1;
}

.audio-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.audio-subtitle {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 8px;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--nude);
  color: #11091C;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s;
}

.audio-play-btn:hover {
  transform: scale(1.08);
}

.audio-wave {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 16px;
}

.wave-bar {
  width: 3px;
  height: 100%;
  background: rgba(234, 213, 195, 0.4);
  border-radius: 2px;
}

.audio-playing .wave-bar {
  background: var(--nude);
  animation: waveAnim 0.8s ease-in-out infinite alternate;
}

.audio-playing .wave-bar:nth-child(2n) { animation-delay: 0.2s; }
.audio-playing .wave-bar:nth-child(3n) { animation-delay: 0.4s; }

@keyframes waveAnim {
  0% { height: 20%; }
  100% { height: 100%; }
}

/* Differential 3: 4 Pillars Breakdown Chart */
.pillars-card {
  padding: 20px;
  margin-top: 16px;
  border-radius: 16px;
}

.pillars-heading {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 16px;
}

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

.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pillar-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-2);
}

.pillar-header strong {
  color: var(--nude);
}

.pillar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.pillar-fill {
  height: 100%;
  background: linear-gradient(90deg, #7C3AED, #EAD5C3);
  border-radius: 4px;
  transition: width 1s ease;
}

.pillar-fill.fill-warning {
  background: linear-gradient(90deg, #E11D48, #F43F5E);
}

/* Differential 4: WhatsApp Direct CTA Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4);
}

.btn-whatsapp:hover {
  box-shadow: 0 10px 32px rgba(34, 197, 94, 0.6);
}

/* Capture Form */
.capture-form {
  padding: 32px 20px;
}

.capture-header {
  text-align: center;
  margin-bottom: 28px;
}

.check-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(234, 213, 195, 0.12);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nude);
  box-shadow: 0 0 20px rgba(234, 213, 195, 0.25);
}

.capture-title {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 8px;
}

.capture-sub {
  font-size: 15px;
  color: var(--text-2);
}

.fields-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.field-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text);
  background: rgba(17, 9, 28, 0.85);
  outline: none;
  transition: all 0.2s;
}

.field-input::placeholder {
  color: #79667E;
}

.field-input:focus {
  border-color: var(--nude);
  box-shadow: 0 0 15px rgba(234, 213, 195, 0.25);
}

.privacy-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 14px;
}

/* AI Orbit Processing Screen */
.processing-wrap {
  padding: 64px 20px;
}

.ai-orbit-loader {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-orbit-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: var(--nude);
  border-right-color: var(--purple-vivid);
  border-radius: 50%;
  animation: spinOrbit 1.2s linear infinite;
}

.ai-core-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--nude);
  box-shadow: 0 0 20px var(--nude);
  animation: pulseCore 1s ease-in-out infinite alternate;
}

@keyframes spinOrbit {
  to { transform: rotate(360deg); }
}

@keyframes pulseCore {
  from { transform: scale(0.7); opacity: 0.6; }
  to { transform: scale(1.2); opacity: 1; }
}

.processing-title {
  font-size: 23px;
  color: var(--text);
  margin-bottom: 12px;
}

.processing-status {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 28px;
}

.dots-loader {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.processing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nude);
  box-shadow: 0 0 8px var(--nude);
  animation: pulse 1.4s ease-in-out infinite;
}

.processing-dot:nth-child(2) { animation-delay: 0.2s; }
.processing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Result Dashboard Roxo & Nude */
.result-topbar {
  width: 100%;
  padding: 14px 20px;
  background: var(--badge-gradient);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px 16px 0 0;
  font-size: 12px;
  font-weight: 800;
  color: #11091C;
  letter-spacing: 0.06em;
  margin-top: 16px;
  box-shadow: 0 0 20px rgba(234, 213, 195, 0.25);
}

.result-hero {
  padding: 32px 20px 24px;
  text-align: center;
  border-radius: 0;
  border-top: none;
}

.result-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(234, 213, 195, 0.12);
  color: var(--nude);
  border: 1px solid rgba(234, 213, 195, 0.3);
}

.result-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 10px;
}

.result-quote {
  font-style: italic;
  font-size: 15.5px;
  color: var(--nude);
  margin-bottom: 24px;
}

/* Gauge Meter */
.gauge-card {
  background: rgba(17, 9, 28, 0.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 16px;
}

.gauge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.gauge-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.06em;
}

.gauge-score {
  font-size: 19px;
  font-weight: 800;
  color: var(--nude);
  font-family: var(--font-tech);
}

.gauge-bar-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}

.gauge-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #7C3AED, #EAD5C3);
  border-radius: 5px;
  transition: width 1s ease;
  box-shadow: 0 0 12px rgba(234, 213, 195, 0.5);
}

.gauge-footer {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-2);
}

/* Result Content Box */
.result-content-box {
  border-radius: 0 0 16px 16px;
  border-top: none;
  padding: 28px 20px 40px;
  margin-bottom: 40px;
}

.section-h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 14px;
}

.result-text-paragraph {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.68;
  margin-bottom: 24px;
}

.symptoms-box {
  background: rgba(17, 9, 28, 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 16px 8px;
  margin-bottom: 32px;
}

.symptoms-title {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--nude);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.symptom-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(234, 213, 195, 0.08);
}

.symptom-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.symptom-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(234, 213, 195, 0.14);
  color: var(--nude);
  font-weight: 800;
  font-size: 12px;
  font-family: var(--font-tech);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(234, 213, 195, 0.3);
}

.symptom-item strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.symptom-item p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
}

.cta-box {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.18) 0%, rgba(234, 213, 195, 0.08) 100%);
  border: 1px solid var(--nude);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 0 30px rgba(234, 213, 195, 0.15);
}

.cta-h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}

.cta-desc {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 22px;
}

.btn-cta-main {
  border-radius: 50px;
  font-size: 16.5px;
  padding: 18px 24px;
}
