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

:root {
  /* Ultra-Minimalist & Premium Palette */
  --bg-gradient: linear-gradient(180deg, #FAF9F8 0%, #F5F2F0 100%);
  --card-bg: #ffffff;
  --card-border: #f2ebe8;
  --card-border-active: #7b2cbf;
  
  --primary: #f15a24; /* Flat Cosmetic Orange */
  --primary-dark: #d94a1a;
  --primary-glow: rgba(241, 90, 36, 0.05);
  
  --accent-purple: #7b2cbf; /* Elegant Deep Purple */
  --accent-purple-glow: rgba(123, 44, 191, 0.05);
  
  --accent-gold: #bca058; /* Premium Champagne Gold */
  
  --text-main: #241a18; /* Solid charcoal-brown */
  --text-muted: #5c4e4c;
  --text-dim: #94817f;
  
  /* Status */
  --color-danger: #d9534f;
  --color-warning: #f0ad4e;
  --color-success: #5cb85c;
  
  /* Fonts */
  --font-title: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', sans-serif;
  
  /* Modern soft shadows */
  --shadow-premium: 0 10px 40px rgba(36, 26, 24, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
}

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

body {
  font-family: var(--font-body);
  background: #FAF9F8;
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  padding: 20px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container Principal */
.quiz-container {
  width: 100%;
  max-width: 540px;
  margin: 40px auto;
  position: relative;
  z-index: 10;
}

/* Header & Progress Bar */
.quiz-header {
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-title);
  letter-spacing: 0.02em;
  font-weight: 600;
}

.progress-track {
  width: 100%;
  height: 4px;
  background: rgba(123, 44, 191, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-purple) 100%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Cards (Slides) */
.quiz-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 48px 36px;
  box-shadow: var(--shadow-premium);
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: 
    display 0.4s, 
    opacity 0.4s ease-out, 
    transform 0.4s ease-out;
  transition-behavior: allow-discrete;
}

/* Entry Animation (Starting State) */
@starting-style {
  .quiz-card {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Exit State */
.quiz-card.hidden, .quiz-card[hidden] {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.card-title {
  font-size: 1.7rem;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text-main);
  line-height: 1.35;
}

.card-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.5;
}

/* Options / Seleções Premium (Left Border highlight) */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}

.option-button {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--card-border);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  user-select: none;
}

.option-button:hover {
  background: #faf9f8;
  border-color: #e5dbd7;
  border-left-color: var(--accent-purple);
}

.option-button.selected {
  background: #FAF6FD;
  border-color: var(--card-border);
  border-left: 4px solid var(--accent-purple);
  font-weight: 500;
}

/* Ocultar círculos de checkbox para visualização mais limpa */
.option-checkbox-indicator {
  display: none;
}

/* Inputs de Texto */
.text-input-wrapper {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.text-input-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.custom-text-input {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.custom-text-input:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 8px rgba(123, 44, 191, 0.08);
}

/* Welcome Slide Custom Elements */
.welcome-image-container {
  width: 100%;
  max-width: 380px;
  margin: 0 auto 25px auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  position: relative;
  aspect-ratio: 1;
}

.welcome-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--accent-purple);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(28, 21, 20, 0.02);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-stars-row {
  display: flex;
  gap: 2px;
  color: var(--accent-gold);
}

/* Buttons */
.btn-primary {
  width: 100%;
  background: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

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

.btn-primary:disabled, .btn-primary[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none !important;
}

.btn-navigation-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-secondary {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 16px;
  color: var(--text-muted);
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #faf9f8;
  color: var(--text-main);
}

.btn-next {
  flex: 2;
}

/* Absorção Comparativo */
.absorption-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 25px;
}

.compare-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.compare-card.highlight {
  border-left: 3px solid var(--accent-purple);
  background: #FAF6FD;
}

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

.compare-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-title);
}

.compare-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.compare-value {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-title);
  margin-top: auto;
}

.compare-card.highlight .compare-value {
  color: var(--accent-purple);
}

/* Bullet Points */
.bullets-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
  background: #fbfaf9;
  border-radius: 8px;
  padding: 18px;
  border: 1px solid var(--card-border);
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.bullet-icon {
  flex-shrink: 0;
  font-size: 0.95rem;
}

.bullet-icon.red { color: var(--color-danger); }
.bullet-icon.yellow { color: var(--color-warning); }
.bullet-icon.green { color: var(--color-success); }

.bullet-text {
  color: var(--text-muted);
}

.bullet-text strong {
  color: var(--text-main);
}

/* Testimonials Carousel */
.testimonial-container {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 25px;
  text-align: center;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 12px;
  transition: opacity 0.3s ease;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-purple);
  font-family: var(--font-title);
  transition: opacity 0.3s ease;
}

/* Loading Diagnosis */
.loading-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 0;
  gap: 20px;
}

.spinner-ring {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(123, 44, 191, 0.05);
  border-top-color: var(--primary);
  border-bottom-color: var(--accent-purple);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite;
}

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

.loading-steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loading-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: all 0.3s ease;
}

.loading-step-item.active {
  color: var(--text-main);
  font-weight: 500;
}

.loading-step-item.active .step-indicator-dot {
  background: var(--accent-purple);
}

.loading-step-item.done {
  color: var(--color-success);
}

.loading-step-item.done .step-indicator-dot {
  background: var(--color-success);
}

.step-indicator-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Autoridade Slide Custom */
.authority-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  background: #fdfcfb;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid var(--card-border);
}

.authority-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.authority-info {
  display: flex;
  flex-direction: column;
}

.authority-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-title);
}

.authority-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.authority-quote {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-style: italic;
  position: relative;
  padding-left: 12px;
  border-left: 2px solid var(--accent-purple);
}

/* Captura de Leads Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.input-field-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.input-field-container label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon input {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 12px 12px 38px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.input-with-icon input:focus {
  border-color: var(--accent-purple);
  outline: none;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-dim);
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.2s ease;
}

.input-with-icon input:focus + .input-icon {
  color: var(--accent-purple);
}

/* Valid/Invalid styling */
.input-with-icon input:focus:invalid {
  border-color: var(--color-danger);
}
.input-with-icon input:focus:invalid + .input-icon {
  color: var(--color-danger);
}
.input-with-icon input:user-valid {
  border-color: var(--color-success);
}
.input-with-icon input:user-valid + .input-icon {
  color: var(--color-success);
}

/* -----------------------------------------------------------------------------
   RESULT DASHBOARD (SLIDES 20-23 UNIFICADOS)
----------------------------------------------------------------------------- */
.dashboard-card {
  padding: 0;
  overflow: hidden;
  max-width: 580px;
  margin: 20px auto;
}

.dashboard-header {
  background: #fdfcfb;
  padding: 35px 32px 20px 32px;
  border-bottom: 1px solid var(--card-border);
  text-align: center;
}

.dashboard-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Score Section */
.score-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.score-display-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-svg-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-circle-bg {
  fill: var(--accent-purple);
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 8px;
}

.score-circle-fill {
  fill: none;
  stroke-width: 8px;
  stroke-linecap: round;
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.score-value-text {
  position: absolute;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.7rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.score-max-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-top: 2px;
}

.score-status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 2px;
}

.badge-danger {
  background: #fdf2f2;
  color: var(--color-danger);
  border: 1px solid rgba(217, 83, 79, 0.15);
}
.badge-warning {
  background: #fcf8e3;
  color: var(--color-warning);
  border: 1px solid rgba(240, 173, 78, 0.15);
}
.badge-success {
  background: #dff0d8;
  color: var(--color-success);
  border: 1px solid rgba(92, 184, 92, 0.15);
}

.score-danger-color { stroke: var(--color-danger); }
.score-warning-color { stroke: var(--color-warning); }
.score-success-color { stroke: var(--color-success); }

.score-message {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 400px;
}

/* Recovery Metric */
.recovery-metric {
  width: 100%;
  background: #faf9f8;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.recovery-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.recovery-track {
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  overflow: hidden;
}

.recovery-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-danger) 0%, var(--accent-purple) 100%);
  border-radius: 5px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.recovery-desc-text {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Diagnóstico Inteligente & Tags */
.diagnostic-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--card-border);
}

.diagnostic-title {
  font-size: 1rem;
  font-family: var(--font-title);
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.diagnostic-tag {
  background: #faf9f8;
  border: 1px solid var(--card-border);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.diagnostic-tag.active {
  border-color: var(--accent-purple);
  background: #faf6fd;
  color: var(--accent-purple);
}

.diagnostic-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.diagnostic-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.diagnostic-bullet-item svg {
  flex-shrink: 0;
  color: var(--color-success);
  margin-top: 3px;
}

.diagnostic-personal-quote {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed var(--card-border);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.diagnostic-personal-quote strong {
  color: var(--text-main);
}

.diagnostic-connection-phrase {
  margin-top: 15px;
  padding: 10px 14px;
  background: #fdfcfb;
  border-left: 2px solid var(--accent-purple);
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.4;
}

/* Necessidades Nutricionais */
.nutrition-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nutrition-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nutrition-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.nutrition-name {
  font-weight: 600;
  color: var(--text-main);
}

.nutrition-dose {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.nutrition-percentage {
  font-weight: 700;
  color: var(--accent-purple);
}

.nutrition-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 2px;
  overflow: hidden;
}

.nutrition-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-purple) 100%);
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Conexão e Oferta Final */
.offer-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--card-border);
}

.offer-intro-box {
  background: #faf9f8;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.offer-intro-box h4 {
  font-size: 1rem;
  color: var(--accent-purple);
  margin-bottom: 6px;
}

.offer-intro-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--card-border);
}

.product-image-box {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.product-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-purple);
  font-weight: 700;
}

.product-title {
  font-size: 1.15rem;
  font-family: var(--font-title);
  color: var(--text-main);
}

.product-bullets {
  list-style: none;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-bullets li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-bullets li svg {
  color: var(--accent-purple);
  flex-shrink: 0;
}

/* Empilhamento de Benefícios */
.benefits-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media(max-width: 480px) {
  .benefits-stack {
    grid-template-columns: 1fr;
  }
}

.benefit-pill {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.benefit-pill svg {
  color: var(--color-success);
}

/* Oferta Final Card */
.pricing-card {
  background: #ffffff;
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-purple);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pricing-title {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.pricing-features-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.7rem;
  color: var(--text-main);
  margin-bottom: 12px;
  font-weight: 600;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.price-old {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-new-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-new {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.price-installments {
  font-size: 0.8rem;
  color: var(--text-main);
  font-weight: 600;
}

.pricing-social-proof {
  background: #faf9f8;
  border-radius: 8px;
  padding: 10px;
  margin-top: 15px;
  border: 1px solid var(--card-border);
}

.pricing-stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pricing-stars {
  color: var(--accent-gold);
  font-size: 0.75rem;
}

.pricing-stars-label {
  font-size: 0.7rem;
  font-weight: 700;
}

.pricing-proof-quote {
  font-style: italic;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Final Action Buttons */
.dashboard-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.btn-checkout {
  background: #10b981;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}

.btn-checkout:hover {
  background: #059669;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-maybe-later {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-dim);
  padding: 10px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-maybe-later:hover {
  background: #faf9f8;
  color: var(--text-muted);
}

.final-quote-phrase {
  text-align: center;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 580px) {
  body {
    padding: 15px 10px;
  }
  
  .quiz-card {
    padding: 36px 20px;
  }
  
  .card-title {
    font-size: 1.45rem;
  }
  
  .dashboard-body {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .quiz-card {
    padding: 24px 16px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .card-subtitle {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  
  .option-button {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .dashboard-header {
    padding: 24px 16px 16px 16px;
  }
  
  .dashboard-body {
    padding: 16px 12px;
  }
  
  .absorption-compare {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Brand Header Logo */
.brand-header {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

/* Offer Countdown Timer */
.offer-timer-box {
  background: #fef2f2;
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  animation: soft-pulse 2s infinite ease-in-out;
}

@keyframes soft-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.015); }
  100% { transform: scale(1); }
}

/* Offer Footer Info */
.offer-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed var(--card-border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contacts {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

@media(max-width: 480px) {
  .footer-contacts {
    flex-direction: column;
    gap: 4px;
  }
}

.footer-address {
  line-height: 1.4;
}

.footer-corporate {
  font-size: 0.7rem;
  margin-top: 4px;
}

/* Authority Screen Redesign */
.authority-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.authority-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-premium);
}

.authority-image {
  width: 100%;
  height: auto;
  display: block;
}

.authority-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffffff;
  color: var(--accent-purple);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(123, 44, 191, 0.15);
  border: 1px solid rgba(123, 44, 191, 0.1);
  letter-spacing: 0.02em;
  z-index: 5;
}

.authority-testimonial-card {
  width: calc(100% - 32px);
  margin-top: -40px; /* Efeito flutuante/sobreposto */
  background: rgba(123, 44, 191, 0.94); /* Fundo roxo com leve transparência */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(123, 44, 191, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  z-index: 10;
  position: relative;
}

.authority-testimonial-text {
  font-size: 0.85rem;
  line-height: 1.6;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 12px;
  color: #ffffff;
}

.authority-signature {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* Bloco ANVISA */
.anvisa-block {
  width: 100%;
  background: linear-gradient(135deg, #7b2cbf 0%, #5a189a 100%);
  border-radius: 12px;
  padding: 24px 20px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(90, 24, 154, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.anvisa-seal-wrapper {
  padding: 0;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anvisa-seal {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: screen; /* Remove fundo preto e deixa apenas o selo branco flutuando no roxo */
}

.anvisa-headline {
  font-size: 1.05rem;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.anvisa-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}
