@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Anton&display=swap');

:root {
  --primary: #c0185e;
  --primary-hover: #9d114b;
  --primary-light: #fdf2f8;
  --accent: #10b981;
  --accent-light: #ecfdf5;
  --warning: #f59e0b;
  --warning-light: #fffbeb;
  --danger: #ef4444;
  --danger-light: #fef2f2;
  
  --dark: #1f2937;
  --mid: #4b5563;
  --light: #f3f4f6;
  --border: #e5e7eb;
  --bg: #fafafa;
  --card: #ffffff;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-sans: 'Poppins', sans-serif;
  --font-title: 'Anton', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #f0f2f5;
  color: var(--dark);
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

/* Container limits app to mobile width centered on desktop */
.app-container {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background-color: var(--card);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Header bar */
header {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--mid);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

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

.logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background-color: var(--light);
  border-radius: 3px;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out;
}

.progress-bar {
  height: 100%;
  width: 3%;
  background-color: var(--primary);
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Main Content Area */
main {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

/* Screen Transitions */
.screen {
  display: none;
  animation: fadeIn 0.4s ease forwards;
  flex-direction: column;
  flex: 1;
}

.screen.active {
  display: flex;
}

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

/* Typography */
h1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.subtitle {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 24px;
}

h1 span.highlight {
  color: var(--primary);
}

/* Button & Card Choices */
.choices-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.choice-card {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
}

.choice-card:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.choice-card.selected {
  border-color: var(--primary);
  background-color: var(--primary-light);
  color: var(--primary);
}

.choice-arrow {
  color: #cbd5e1;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.2s;
}

.choice-card:hover .choice-arrow,
.choice-card.selected .choice-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

.choice-icon-badge {
  width: 38px;
  height: 38px;
  background-color: #fce7f3; /* light pink matching screenshots */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

.choice-emoji {
  font-size: 24px;
  margin-right: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choice-image {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-right: 12px;
  flex-shrink: 0;
  display: block;
}

.choice-image-circle {
  border-radius: 50%;
}

.choice-image-large {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

/* Choice Grid Layout (e.g. Step 9) */
.choice-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 24px;
  margin-top: 8px;
}

.choice-grid-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  min-height: 180px;
  text-align: center;
}

.choice-grid-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.choice-grid-card.selected {
  border-color: var(--primary);
  background-color: #fffdfd;
}

.choice-grid-image {
  width: 100%;
  height: 110px;
  object-fit: contain;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.choice-grid-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

@media (max-width: 600px) {
  .choice-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .choice-grid-image {
    height: 90px;
  }
  .choice-grid-label {
    font-size: 12px;
  }
}

/* Checkbox (Multiple choice) cards */
.choice-card-multi {
  composes: choice-card;
}

.choice-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.choice-card.selected .choice-checkbox {
  border-color: var(--primary);
  background-color: var(--primary);
}

.choice-card.selected .choice-checkbox::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Action Buttons */
.btn-container {
  margin-top: 24px;
  padding-top: 8px;
}

.btn-primary {
  width: 100%;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(192, 24, 94, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

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

.btn-primary:disabled {
  background-color: var(--border);
  color: var(--mid);
  cursor: not-allowed;
  box-shadow: none;
}

/* Image styling */
.img-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.img-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Input Fields */
.input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.input-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
}

.input-field {
  width: 100%;
  background-color: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  outline: none;
  transition: all 0.2s;
}

.input-field:focus {
  border-color: var(--primary);
  background-color: var(--card);
  box-shadow: 0 0 0 4px rgba(192, 24, 94, 0.1);
}

.unit-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  justify-content: center;
}

.unit-tab {
  padding: 6px 16px;
  background-color: var(--light);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
}

.unit-tab.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Loading Screens */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  padding: 40px 10px;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid var(--light);
  border-top: 5px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.loading-progress {
  font-size: 14px;
  color: var(--mid);
}

.loading-list {
  margin-top: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.loading-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
}

.loading-item-check {
  color: var(--accent);
  font-weight: 700;
}

/* Alert Boxes (like in IMC) */
.alert-box {
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.alert-danger {
  background-color: var(--danger-light);
  border: 1px solid #fecaca;
  color: #991b1b;
}

.alert-warning {
  background-color: var(--warning-light);
  border: 1px solid #fef3c7;
  color: #92400e;
}

.alert-success {
  background-color: var(--accent-light);
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.alert-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.alert-content {
  font-size: 13px;
  line-height: 1.5;
}

/* IMC Display */
.imc-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.imc-value-box {
  background-color: var(--light);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.imc-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.imc-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--mid);
  margin-top: 4px;
  text-align: center;
  max-width: 100px;
  line-height: 1.2;
}

/* Projections / Charts */
.projection-container {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}

.weight-comparison {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 16px 0;
}

.weight-node {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.weight-node .w-val {
  font-size: 24px;
  font-weight: 800;
}

.weight-node .w-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--mid);
}

.weight-arrow {
  font-size: 20px;
  color: var(--primary);
}

/* VSL Screen Style */
.vsl-screen {
  padding: 0 0 24px 0;
}

.vsl-header {
  padding: 24px 20px;
  text-align: center;
}

.vsl-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.video-container {
  width: 100%;
  background-color: #000;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 20px;
  text-align: center;
}

.offer-container {
  display: none;
  animation: fadeIn 0.5s ease forwards;
  padding: 0 20px;
}

.offer-container.visible {
  display: block;
}

/* Pricing Card */
.pricing-card {
  background-color: var(--card);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(192, 24, 94, 0.08);
}

.pricing-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-old {
  font-size: 16px;
  color: var(--mid);
  text-decoration: line-through;
  margin-top: 8px;
}

.price-new {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin: 4px 0;
}

.price-installments {
  font-size: 13px;
  color: var(--mid);
}

/* Pulse animation for CTA button */
.animate-pulse-shadow {
  animation: pulseShadow 2s infinite;
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 24, 94, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(192, 24, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(192, 24, 94, 0);
  }
}

/* Bonus List */
.bonus-section-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.bonus-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background-color: var(--light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.bonus-icon {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bonus-info p {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.4;
}

.bonus-badge {
  display: inline-block;
  background-color: var(--warning-light);
  color: var(--warning);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 6px;
}

/* Testimonials */
.testimonials-section {
  margin: 32px 0;
}

.testimonial {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}

.t-author {
  font-weight: 700;
  font-size: 14px;
}

.t-result {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.t-quote {
  font-size: 13px;
  color: var(--mid);
  font-style: italic;
  line-height: 1.4;
}

/* FAQ */
.faq-section {
  margin: 32px 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.faq-question {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  font-size: 13px;
  color: var(--mid);
  margin-top: 8px;
  display: none;
  line-height: 1.5;
}

.faq-question::after {
  content: '+';
  font-size: 16px;
  font-weight: bold;
  color: var(--mid);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: '-';
}

/* Urgency Timer bar */
.timer-bar {
  background-color: var(--primary-light);
  border: 1px solid #fbcfe8;
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Guarantee badge */
.guarantee-box {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.guarantee-img {
  font-size: 36px;
}

.guarantee-text h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.guarantee-text p {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.4;
}

/* Summary screen */
.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  color: var(--mid);
}

.summary-value {
  font-weight: 700;
}

.summary-box {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}

/* Ruler Slider Styles */
.ruler-container {
  position: relative;
  width: 100%;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ruler-value-display {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.ruler-value-display .unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--mid);
  margin-left: 4px;
}

.ruler-viewport {
  position: relative;
  width: 100%;
  height: 85px;
  background-color: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ruler-needle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background-color: var(--primary);
  z-index: 3;
}

.ruler-needle-triangle {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid var(--primary);
  z-index: 3;
}

.ruler-track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: flex-start;
  will-change: transform;
}

.ruler-tick {
  width: 1px;
  background-color: #cbd5e1;
  margin-right: 7px; /* 1 unit = 8px (1px width + 7px margin) */
  flex-shrink: 0;
}

.ruler-tick.minor {
  height: 20px;
}

.ruler-tick.medium {
  height: 30px;
  background-color: #94a3b8;
}

.ruler-tick.major {
  height: 45px;
  background-color: #64748b;
  position: relative;
}

.ruler-label {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
}

.ruler-slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
  -webkit-appearance: none;
}

.ruler-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 50px;
  height: 80px;
}

.ruler-drag-tip {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Header Logo Styling */
.header-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-sans);
}

.header-logo-title {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header-logo-badge {
  font-size: 11px;
  background-color: var(--light);
  border: 1px solid var(--border);
  color: var(--mid);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

/* Quiz Split Layout with Avatar */
.quiz-split-container {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  min-height: 290px;
}

.quiz-split-choices {
  width: 72%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.quiz-split-avatar {
  position: absolute;
  right: -20px;
  bottom: -24px;
  width: 180px;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.quiz-split-avatar img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

@media (max-width: 360px) {
  .quiz-split-choices {
    width: 68%;
  }
  .quiz-split-avatar {
    width: 140px;
    right: -10px;
  }
}

.welcome-headline {
  font-size: 25px;
  font-weight: 800;
  text-align: center;
  color: var(--dark);
  line-height: 1.25;
  margin-top: 8px;
  margin-bottom: 6px;
}

.welcome-subheadline {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: #94a3b8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Info Split Layout (Conditional Screen Step 4) */
.info-split-container {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}

.info-split-text {
  flex: 1.2;
  font-size: 13px;
  line-height: 1.6;
  color: var(--mid);
}

.info-split-text strong {
  color: var(--dark);
}

.info-split-img {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-split-img img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  display: block;
}

@media (max-width: 600px) {
  .info-split-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: left;
  }
  .info-split-text {
    width: 100%;
  }
  .info-split-img {
    width: 100%;
    max-width: 100%;
  }
  .info-split-img img {
    max-width: 100%;
    width: 100%;
  }
}

/* Loader Carousel (Social Proof transformations during calculation steps) */
.loader-carousel-container {
  width: 100%;
  max-width: 290px;
  aspect-ratio: 1;
  margin: 18px auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease-in-out;
  opacity: 1;
}

.loader-carousel-caption {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: -6px;
  margin-bottom: 24px;
}

/* IMC Result Screen Styles */
.imc-result-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.imc-card-title {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.imc-bar-container {
  position: relative;
  width: 100%;
  margin-top: 36px;
  margin-bottom: 12px;
}

.imc-pointer {
  position: absolute;
  top: -32px;
  background: #1e293b;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.imc-pointer::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0;
  border-style: solid;
  border-color: #1e293b transparent transparent;
}

.imc-gradient-bar {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #60a5fa 0%, #60a5fa 14%, #34d399 14%, #34d399 40%, #fbbf24 40%, #fbbf24 60%, #f97316 60%, #f97316 80%, #f87171 80%, #f87171 100%);
}

.imc-bar-dot {
  position: absolute;
  top: 0px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  border: 2px solid #000;
  transform: translateX(-50%);
}

.imc-labels-row {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
}

.imc-label-item.active {
  color: var(--dark);
  font-weight: 800;
}

/* Alerta de Bloqueio Box */
.imc-alert-box {
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.imc-alert-title {
  color: #991b1b;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.imc-alert-content {
  color: #991b1b;
  font-size: 12px;
  line-height: 1.5;
}

/* Traits list container */
.imc-traits-list {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4px 16px;
  margin-bottom: 24px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.imc-trait-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.imc-trait-item:last-child {
  border-bottom: none;
}

.imc-trait-icon {
  font-size: 18px;
  width: 32px;
  height: 32px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.imc-trait-content {
  display: flex;
  flex-direction: column;
}

.imc-trait-title {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}

.imc-trait-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2px;
}

/* SVG Projection Chart */
.projection-chart-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 20px auto 24px auto;
}

.projection-svg {
  width: 100%;
  height: auto;
  display: block;
}

.projection-badge {
  position: absolute;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.projection-badge-red {
  background: #ef4444;
  color: white;
}

.projection-badge-white {
  background: white;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 10px;
  font-weight: 600;
}

.projection-badge-green {
  background: #10b981;
  color: white;
}

.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.weight-pill-highlight {
  background: #dbeafe;
  color: #2563eb;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}

/* Checkout Page Elements */
.checkout-btn {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 16px auto;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
  transition: all 0.2s;
  cursor: pointer;
  box-sizing: border-box;
}

.checkout-btn:hover {
  transform: scale(1.02);
  background-color: #be185d;
}

.urgency-subtext {
  font-size: 13px;
  font-weight: 700;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  margin-top: -8px;
}

.checkout-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  text-align: left;
}

.checkout-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.receive-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.receive-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}

.receive-item-icon {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.receive-item strong {
  color: var(--dark);
  font-weight: 700;
}

.receive-mockup {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.checkout-pricing-card {
  border: 1.5px solid #fb7185;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(251, 113, 133, 0.04);
}

.price-old {
  font-size: 14px;
  text-decoration: line-through;
  color: #94a3b8;
  margin-bottom: 4px;
}

.price-new {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  margin: 6px 0;
}

.price-new span {
  font-size: 16px;
  font-weight: 600;
  color: #475569;
}

.price-highlight {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.price-terms {
  font-size: 11px;
  color: #64748b;
  margin-top: 6px;
}

.price-secure {
  font-size: 11px;
  color: #64748b;
  margin-top: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  text-align: left;
}

.testimonial-img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-body {
  padding: 20px;
}

.testimonial-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.bonus-item {
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}

.bonus-item strong {
  color: #b91c1c;
  font-weight: 700;
}

.guarantee-seal-img {
  width: 96px;
  height: 96px;
  display: block;
  margin: 0 auto 16px auto;
}

.faq-section {
  text-align: left;
  margin-bottom: 24px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.2s;
}

.faq-question {
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '▼';
  font-size: 8px;
  color: #94a3b8;
  transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 16px;
  color: #475569;
  font-size: 12px;
  line-height: 1.6;
  overflow: hidden;
  transition: all 0.25s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 16px 16px 16px;
}

/* Welcome Landing Page Styles */
.welcome-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px 10px;
}

.welcome-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--dark);
  margin-top: 10px;
  margin-bottom: 12px;
}

.welcome-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 28px;
  font-weight: 500;
}

.welcome-split-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 10px auto 28px auto;
  width: 100%;
  max-width: 440px;
  text-align: left;
}

.welcome-benefits-container {
  flex: 1.25;
}

.welcome-avatar-container {
  flex: 0.75;
  max-width: 130px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.welcome-avatar-img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.06));
}

.welcome-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.welcome-benefit-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  line-height: 1.4;
}

.welcome-benefit-check {
  color: #10b981;
  font-weight: 700;
  font-size: 16px;
}

.welcome-cta {
  margin-top: 10px;
  width: 100%;
}

.welcome-disclaimer {
  font-size: 10px;
  color: #94a3b8;
  line-height: 1.6;
  margin-top: 120px;
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
  text-align: justify;
  text-justify: inter-word;
}

.welcome-disclaimer p {
  margin-bottom: 12px;
}

.welcome-disclaimer p:last-child {
  margin-bottom: 0;
}

.welcome-disclaimer .disclaimer-links {
  margin-top: 16px;
  font-weight: 700;
  color: #64748b;
  text-align: center;
  font-size: 9px;
}

@media (max-width: 380px) {
  .welcome-avatar-container {
    max-width: 100px;
  }
  .welcome-benefit-item {
    font-size: 11px;
    gap: 8px;
  }
}



