/* ============================================
   START: CSS VARIABLES
   ============================================ */
:root {
  --background: hsl(30, 25%, 95%);
  --foreground: hsl(25, 35%, 20%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(25, 45%, 35%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(30, 25%, 92%);
  --muted: hsl(30, 15%, 85%);
  --muted-foreground: hsl(25, 25%, 45%);
  --keto-gold: hsl(35, 75%, 55%);
  --border: hsl(30, 15%, 85%);
  --radius: 1rem;
  --disclaimer-bg: hsl(30, 30%, 90%);
  --green-footer: #704b32;
}
/* ============================================
   END: CSS VARIABLES
   ============================================ */

/* ============================================
   START: GLOBAL RESET
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* ============================================
   END: GLOBAL RESET
   ============================================ */

/* ============================================
   START: ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ============================================
   END: ANIMATIONS
   ============================================ */

/* ============================================
   START: LAYOUT STRUCTURE
   ============================================ */
.quiz-step {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.quiz-step.hidden {
  display: none;
}

.quiz-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quiz-with-bg {
  background: linear-gradient(135deg, hsl(25 45% 30% / 0.95), hsl(25 40% 25% / 0.98));
  min-height: 100vh;
}
/* ============================================
   END: LAYOUT STRUCTURE
   ============================================ */

/* ============================================
   START: HEADER COMPONENT
   ============================================ */
.quiz-header {
  background: var(--card);
  box-shadow: 0 1px 3px hsl(0 0% 0% / 0.1);
  position: relative;
  z-index: 20;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.logo-accent {
  color: var(--primary);
}

.user-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.user-btn:hover {
  background: var(--muted);
}

.user-btn svg {
  color: var(--muted-foreground);
}
/* ============================================
   END: HEADER COMPONENT
   ============================================ */

/* ============================================
   START: HEADER COM NAVEGAÇÃO (Screen 1+)
   ============================================ */
.quiz-header-with-nav {
  padding: 0;
}

.header-logo-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
/* ============================================
   END: HEADER COM NAVEGAÇÃO
   ============================================ */

/* ============================================
   START: BACK BUTTON
   ============================================ */
.back-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.back-btn:hover {
  background: var(--muted);
}

.back-btn svg {
  color: var(--foreground);
}

.back-btn svg path {
  fill: var(--foreground);
}
/* ============================================
   END: BACK BUTTON
   ============================================ */

/* ============================================
   START: PROGRESS COUNTER
   ============================================ */
.progress-counter {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
}
/* ============================================
   END: PROGRESS COUNTER
   ============================================ */

/* ============================================
   START: PROGRESS BAR
   ============================================ */
.progress-bar {
  height: 4px;
  background: var(--muted);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  transition: width 0.5s ease-out;
  width: 0%;
}
/* ============================================
   END: PROGRESS BAR
   ============================================ */

/* ============================================
   START: MAIN CONTENT AREA
   ============================================ */
.quiz-main {
  flex: 1;
  padding: 2rem 1rem;
}

.quiz-content {
  max-width: 672px;
  margin: 0 auto;
  text-align: center;
}

.quiz-question {
  animation: fadeInUp 0.5s ease-out;
}

.quiz-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--primary-foreground);
}

.quiz-highlight {
  color: var(--keto-gold);
}

.quiz-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(0 0% 100% / 0.9);
  margin-bottom: 2rem;
}

.quiz-options {
  margin-top: 2rem;
}
/* ============================================
   END: MAIN CONTENT AREA
   ============================================ */

/* ============================================
   START: OPTIONS GRID
   ============================================ */
.options-grid {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 448px;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
/* ============================================
   END: OPTIONS GRID
   ============================================ */

/* ============================================
   START: OPTION CARDS (BASE)
   ============================================ */
.option-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid transparent;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 24px -4px hsl(25 45% 25% / 0.1);
  text-align: left;
  width: 100%;
}

.option-card:hover {
  border-color: hsl(25 45% 35% / 0.3);
  box-shadow: 0 8px 32px -4px hsl(25 45% 25% / 0.2);
}

.option-card.selected {
  border-color: var(--primary);
  box-shadow: 0 8px 32px -4px hsl(25 45% 25% / 0.2);
}

.option-card-check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.3s ease-out;
}

.option-card.selected .option-card-check {
  display: flex;
}

.option-card-check svg {
  color: var(--primary-foreground);
}
/* ============================================
   END: OPTION CARDS (BASE)
   ============================================ */

/* ============================================
   START: IMAGE OPTION CARDS
   ============================================ */
.option-card-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.option-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.5s;
}

.option-card-image:hover .option-card-img {
  transform: scale(1.05);
}

.option-card-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}
/* ============================================
   END: IMAGE OPTION CARDS
   ============================================ */

/* ============================================
   START: DISCLAIMER FOOTER
   ============================================ */
.disclaimer-footer {
  background: var(--disclaimer-bg);
  padding: 2rem 1rem 0;
  margin-top: auto;
}

.disclaimer-content {
  max-width: 600px;
  margin: 0 auto;
}

.disclaimer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.disclaimer-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.disclaimer-text.small {
  font-size: 0.75rem;
}

/* Brand Section */
.brand-section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 1.5rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.brand-icon {
  font-size: 1.5rem;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.brand-accent {
  color: var(--primary);
}

.brand-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Support Links */
.support-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.support-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.support-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.support-info {
  flex: 1;
}

.support-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.support-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Legal Links */
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.legal-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--foreground);
  text-decoration: underline;
  padding: 0.5rem 0;
}

.legal-link svg {
  color: var(--muted-foreground);
}

/* Copyright */
.copyright {
  background: var(--green-footer);
  color: white;
  text-align: center;
  padding: 1.5rem;
  margin: 0 -1rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}
/* ============================================
   END: DISCLAIMER FOOTER
   ============================================ */

/* ============================================
   START: UTILITY CLASSES
   ============================================ */
.hidden {
  display: none;
}

.text-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: hsl(0 0% 100% / 0.7);
}
/* ============================================
   END: UTILITY CLASSES
   ============================================ */

/* ============================================
   START: RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
  .quiz-title {
    font-size: 2.25rem;
  }
  
  .quiz-main {
    padding: 3rem 1rem;
  }
  
  .options-grid {
    gap: 1.5rem;
  }
  
  .disclaimer-footer {
    padding: 3rem 1rem 0;
  }
}
/* ============================================
   END: RESPONSIVE
   ============================================ */
/* ============================================
   ADICIONAR AO FINAL DO styles.css
   (CSS para Screen 2 - Cards Horizontais)
   ============================================ */

/* ============================================
   START: OPTIONS LIST (vertical)
   ============================================ */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  max-width: 600px;
}
/* ============================================
   END: OPTIONS LIST
   ============================================ */

/* ============================================
   START: HORIZONTAL OPTION CARDS
   ============================================ */
.option-card-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  gap: 1rem;
}

.option-content-horizontal {
  flex: 1;
  text-align: left;
}

.option-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.4;
}

.option-img-horizontal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
/* ============================================
   END: HORIZONTAL OPTION CARDS
   ============================================ */
/* ============================================
   ADICIONAR AO FINAL DO styles.css
   (CSS para Screen 3 - Cards Somente Texto)
   ============================================ */

/* ============================================
   START: TEXT-ONLY OPTION CARDS
   ============================================ */
.option-card-text-only {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  min-height: 70px;
}

.option-text-centered {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.4;
  text-align: center;
  flex: 1;
}
/* ============================================
   END: TEXT-ONLY OPTION CARDS
   ============================================ */
/* ============================================
   ADICIONAR AO FINAL DO styles.css
   (CSS para Screen 4 - Tela Informativa)
   ============================================ */

/* ============================================
   START: INFO SCREEN COMPONENTS
   ============================================ */
.info-description {
  font-size: 1rem;
  font-weight: 400;
  color: hsl(0 0% 100% / 0.85);
  line-height: 1.6;
  margin: 1.5rem auto 2rem;
  max-width: 500px;
}

.info-chart {
  position: relative;
  margin: 2rem auto;
  max-width: 400px;
}

.chart-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Chart Labels */
.chart-label {
  position: absolute;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  background: hsl(25.5deg 44.94% 34.9%);
  padding: 0.4rem 0.6rem;
  border-radius: 0.4rem;
  box-shadow: 0 2px 8px hsl(0 0% 0% / 0.1);
}

.chart-label-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 0.1rem;
}

.chart-label-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Posicionamento das labels - acima dos riscos */
.chart-label-fats {
  top: 5%;
  left: 1%;
}

.chart-label-carbs {
  top: 0%;
  right: 1%;
}

.chart-label-protein {
  bottom: 10%;
  right: 0%;
}

/* Responsive - ajusta posição em telas menores */
@media (max-width: 400px) {
  .chart-label-value {
    font-size: 0.75rem;
  }
  
  .chart-label-title {
    font-size: 0.625rem;
  }
  
  .chart-label-fats {
    left: 2%;
  }
  
  .chart-label-carbs {
    right: 5%;
  }
  
  .chart-label-protein {
    right: 2%;
  }
}
/* ============================================
   END: INFO SCREEN COMPONENTS
   ============================================ */

/* ============================================
   START: CONTINUE BUTTON (já existe, mas garantir)
   ============================================ */
.btn-continue {
  width: 100%;
  max-width: 400px;
  height: 3.5rem;
  border: 2px solid #ffffff;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px -4px hsl(25 45% 25% / 0.3);
  margin: 2rem auto 0;
}

.btn-continue:hover:not(:disabled) {
  background: hsl(25, 45%, 30%);
  box-shadow: 0 8px 24px -4px hsl(25 45% 25% / 0.4);
  transform: translateY(-2px);
}

.btn-continue:active:not(:disabled) {
  transform: translateY(0);
}

.btn-continue:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* ============================================
   END: CONTINUE BUTTON
   ============================================ */
/* ============================================
   START: CHECKBOX OPTION CARDS (Screen 5)
   ============================================ */
.option-card-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
}

.checkbox-wrapper {
  flex-shrink: 0;
}

.checkbox-box {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.checkbox-box svg {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s;
  color: var(--primary-foreground);
}

.option-card-checkbox.selected .checkbox-box {
  background: var(--primary);
  border-color: var(--primary);
}

.option-card-checkbox.selected .checkbox-box svg {
  opacity: 1;
  transform: scale(1);
}

.option-text-checkbox {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.4;
}
/* ============================================
   END: CHECKBOX OPTION CARDS
   ============================================ */
/* ============================================
   START: BROWN BACKGROUND SCREEN (Screen 8)
   ============================================ */
.quiz-with-green-bg {
  background: linear-gradient(135deg, hsl(25, 45%, 30%), hsl(25, 40%, 25%));
  min-height: 100vh;
}

/* Header marrom */
.quiz-header-green {
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid hsl(0 0% 100% / 0.1);
}

/* Logo branca */
.logo-white .logo-text {
  color: white;
}

.logo-white .logo-accent {
  color: white;
}

/* Botão voltar branco */
.back-btn-white:hover {
  background: hsl(0 0% 100% / 0.1);
}

.back-btn-white svg path {
  fill: white;
}

/* Progress counter branco */
.progress-counter-white {
  color: hsl(0 0% 100% / 0.8);
}

/* Main content marrom */
.quiz-main-green {
  padding: 2rem 1rem;
}

/* Título branco */
.quiz-title-white {
  color: white;
}

/* Descrição branca */
.info-description-white {
  color: hsl(0 0% 100% / 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 1.5rem auto 2rem;
  max-width: 500px;
}

/* Ícone grande ilustrativo */
.info-icon-large {
  margin: 0 auto 2rem;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: fadeInUp 0.6s ease-out;
}

/* Botão continuar branco */
.btn-continue-white {
  background: white;
  color: hsl(25, 45%, 30%);
  border: 2px solid white;
}

.btn-continue-white:hover:not(:disabled) {
  background: hsl(0 0% 100% / 0.9);
  transform: translateY(-2px);
}

/* Responsive */
@media (min-width: 768px) {
  .quiz-main-green {
    padding: 3rem 1rem;
  }
  
  .info-icon-large {
    width: 140px;
    height: 140px;
  }
}
/* ============================================
   END: BROWN BACKGROUND SCREEN
   ============================================ */
/* ============================================
   START: INPUT FIELDS (Screen 9)
   ============================================ */

/* Toggle de Unidade */
.unit-toggle {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.unit-btn {
  padding: 0.625rem 1.5rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.unit-btn:hover {
  border-color: var(--primary);
}

.unit-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Input Wrapper */
.input-wrapper {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

.input-field {
  width: 100%;
  height: 3.5rem;
  padding: 1rem 3rem 1rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s;
  text-align: left;
}

.input-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(25 45% 35% / 0.1);
}

.input-field::placeholder {
  color: var(--muted-foreground);
  opacity: 0.5;
}

/* Remove setas do input number */
.input-field::-webkit-outer-spin-button,
.input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-field[type="number"] {
  appearance: textfield;        /* fallback */
  -moz-appearance: textfield;   /* Firefox */
  -webkit-appearance: none;     /* Chrome, Safari, Edge */
}

/* Unidade do Input */
.input-unit {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-foreground);
  pointer-events: none;
}

/* Responsive */
@media (min-width: 768px) {
  .input-wrapper {
    max-width: 320px;
  }
}
/* ============================================
   END: INPUT FIELDS
   ============================================ */
/* ============================================
   START: IMC BOX (Screen 10)
   ============================================ */
.imc-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 2px solid var(--border);
  text-align: left;
  animation: fadeInUp 0.4s ease-out;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.imc-box.hidden {
  display: none;
}

/* Badge do IMC */
.imc-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
}

/* Categorias de IMC */
.imc-box[data-category="underweight"] {
  border-color: hsl(0, 0%, 50%);
  background: hsl(0, 0%, 97%);
}

.imc-box[data-category="underweight"] .imc-badge {
  background: hsl(0, 0%, 50%);
  color: white;
}

.imc-box[data-category="normal"] {
  border-color: hsl(142, 76%, 36%);
  background: hsl(142, 76%, 97%);
}

.imc-box[data-category="normal"] .imc-badge {
  background: hsl(142, 76%, 36%);
  color: white;
}

.imc-box[data-category="overweight"] {
  border-color: hsl(45, 93%, 47%);
  background: hsl(45, 93%, 97%);
}

.imc-box[data-category="overweight"] .imc-badge {
  background: hsl(45, 93%, 47%);
  color: hsl(25, 35%, 20%);
}

.imc-box[data-category="obese"] {
  border-color: hsl(0, 72%, 51%);
  background: hsl(0, 72%, 97%);
}

.imc-box[data-category="obese"] .imc-badge {
  background: hsl(0, 72%, 51%);
  color: white;
}

/* Textos do IMC */
.imc-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.imc-title strong {
  font-weight: 700;
}

.imc-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
/* ============================================
   END: IMC BOX
   ============================================ */
/* ============================================
   START: IDEAL WEIGHT SUGGESTION (Screen 11)
   ============================================ */
.ideal-weight-suggestion {
  margin: 1.5rem auto 1.5rem;
  text-align: center;
  max-width: 400px;
}

.suggestion-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(0 0% 100% / 0.95);
  margin-bottom: 0.5rem;
}

.suggestion-value {
  color: var(--keto-gold);
  font-weight: 700;
}

.suggestion-subtitle {
  font-size: 0.875rem;
  color: hsl(0 0% 100% / 0.75);
  line-height: 1.5;
}
/* ============================================
   END: IDEAL WEIGHT SUGGESTION
   ============================================ */
/* ============================================
   START: FULLSCREEN BROWN (Screen 12)
   ============================================ */
.quiz-fullscreen-green {
  background: linear-gradient(135deg, hsl(25, 45%, 30%), hsl(25, 40%, 25%));
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-main-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

/* Ícone de Meta/Alvo */
.goal-icon {
  margin: 0 auto 1.5rem;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out;
  position: relative;
}

.goal-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: fadeInUp 0.6s ease-out;
}

/* Título da Meta */
.goal-title {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease-out;
}

.percentage-highlight {
  color: #FFD700;
  font-weight: 800;
  font-size: 2rem;
  display: inline-block;
}

/* Descrição da Meta */
.goal-description {
  max-width: 480px;
  font-size: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

/* Botão com outline branco */
.btn-continue-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
  max-width: 280px;
  margin-top: 2.5rem;
  animation: fadeInUp 0.9s ease-out;
}

.btn-continue-outline-white:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive */
@media (min-width: 768px) {
  .goal-icon {
    width: 320px;
    height: 320px;
    margin-bottom: 2rem;
  }
  
  .goal-title {
    font-size: 2rem;
  }
  
  .percentage-highlight {
    font-size: 2.25rem;
  }
  
  .goal-description {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .goal-icon {
    width: 240px;
    height: 240px;
    margin-bottom: 1rem;
  }
  
  .goal-title {
    font-size: 1.5rem;
  }
  
  .percentage-highlight {
    font-size: 1.75rem;
  }
}
/* ============================================
   END: FULLSCREEN BROWN
   ============================================ */
/* ============================================
   START: TEXT INPUT & NAME SCREEN (Screen 13)
   ============================================ */

/* Título grande para tela de nome */
.quiz-title-large {
  font-size: 1.625rem;
  line-height: 1.25;
  margin-bottom: 2rem;
  color: hsl(0 0% 100% / 0.95);
}

/* Subtítulo escuro (pergunta) */
.quiz-subtitle-dark {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(0 0% 100% / 0.9);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Input de texto wrapper */
.input-wrapper-text {
  max-width: 360px;
  margin: 0 auto;
}

/* Input de texto (campo de nome) */
.input-field-text {
  width: 100%;
  height: 3.5rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
  text-align: left;
}

.input-field-text:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(25 45% 35% / 0.1);
}

.input-field-text::placeholder {
  color: var(--muted-foreground);
  opacity: 0.5;
}

/* Botão marrom igual às outras telas */
.btn-continue-green {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 2px solid #ffffff;;
}

.btn-continue-green:hover:not(:disabled) {
  background: hsl(25, 45%, 30%);
  box-shadow: 0 8px 24px -4px hsl(25 45% 25% / 0.4);
}

.btn-continue-green:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (min-width: 768px) {
  .quiz-title-large {
    font-size: 2rem;
  }
  
  .quiz-subtitle-dark {
    font-size: 1.5rem;
  }
  
  .input-wrapper-text {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .quiz-title-large {
    font-size: 1.375rem;
  }
  
  .quiz-subtitle-dark {
    font-size: 1.125rem;
  }
}
/* ============================================
   END: TEXT INPUT & NAME SCREEN (Screen 13)
   ============================================ */
/* ============================================
   START: SCREEN 14 - RESULT SCREEN WITH IMPROVED CHART
   ============================================ */

/* Fundo branco para tela de resultado */
.quiz-with-white-bg {
  background: var(--background);
  min-height: 100vh;
}

/* Texto de introdução - SCREEN 14 */
.result-intro {
  font-size: 0.9375rem;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Título do resultado com previsão - SCREEN 14 */
.result-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 2rem;
}

.result-title strong {
  font-weight: 800;
}

/* ========== NOVO GRÁFICO MELHORADO ========== */

/* Container do gráfico */
.chart-container-improved {
  position: relative;
  max-width: 482px;
  margin: 2rem auto;
  background: #fdf6e9;
  padding: 20px;
  border-radius: 15px;
  animation: fadeInUp 0.6s ease-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Badge do peso atual (hoje) - posicionado sobre o gráfico */
.label-today {
  position: absolute;
  top: 10px;
  left: 30px;
  background: hsl(25, 45%, 35%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.875rem;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(112, 75, 50, 0.3);
}

/* Badge da meta (futuro) - posicionado sobre o gráfico */
.label-goal {
  position: absolute;
  top: 85px;
  right: 20px;
  background: hsl(35, 75%, 55%);
  color: white;
  padding: 8px 15px;
  border-radius: 15px;
  text-align: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(219, 169, 96, 0.4);
}

.text-goal-label {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 600;
  margin-bottom: 2px;
}

.text-goal-weight {
  font-size: 0.9375rem;
  font-weight: bold;
}

/* Labels de data embaixo do gráfico */
.chart-dates-improved {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding: 0 0.5rem;
}

.chart-dates-improved .date-label {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Padding relativo para o SVG */
.relative {
  position: relative;
}

.pt-8 {
  padding-top: 2rem;
}

/* ========== FIM NOVO GRÁFICO ========== */

/* ============================================
   ANIMAÇÕES DO GRÁFICO
   ============================================ */

/* Animação da linha de progresso */
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

#progress-line-animated {
  animation: drawLine 2s ease-out forwards;
}

/* Animação dos círculos - aparecem após a linha */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.circle-start,
.circle-start-inner {
  transform-origin: 45px 56px;
  animation: scaleIn 0.4s ease-out 1.8s both;
}

.circle-end,
.circle-end-inner {
  transform-origin: 435px 175px;
  animation: scaleIn 0.4s ease-out 2s both;
}

/* Animação dos badges - aparecem após os círculos */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.badge-animated {
  animation: fadeInScale 0.5s ease-out 1.2s both;
}

.badge-animated-delay {
  animation: fadeInScale 0.5s ease-out 1.4s both;
}

/* ============================================
   FIM ANIMAÇÕES DO GRÁFICO
   ============================================ */

/* Título dos depoimentos - SCREEN 14 */
.testimonials-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin: 2.5rem 0 1.5rem;
}

/* Carrossel de depoimentos - SCREEN 14 */
.testimonials-carousel {
  max-width: 360px;
  margin: 0 auto 2rem;
}

.testimonial-card {
  background: hsl(35, 60%, 90%);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
}

.testimonial-stars span {
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--foreground);
}

/* Indicadores do carrossel - SCREEN 14 */
.carousel-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.carousel-prev,
.carousel-next {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  background: transparent;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--primary);
  color: white;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: hsl(25, 25%, 75%);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dots .dot.active {
  background: var(--primary);
  width: 12px;
  height: 12px;
}

/* Responsive - SCREEN 14 */
@media (min-width: 768px) {
  .result-title {
    font-size: 1.875rem;
  }
  
  .testimonials-title {
    font-size: 1.625rem;
  }
  
  .testimonials-carousel {
    max-width: 480px;
  }
  
  .chart-container-improved {
    max-width: 520px;
  }
}

@media (max-width: 480px) {
  .chart-container-improved {
    padding: 15px;
    max-width: 100%;
  }
  
  .label-today {
    left: 15px;
    font-size: 0.8125rem;
    padding: 5px 12px;
  }
  
  .label-goal {
    right: 10px;
    padding: 6px 12px;
  }
  
  .text-goal-label {
    font-size: 0.6875rem;
  }
  
  .text-goal-weight {
    font-size: 0.875rem;
  }
  
  .result-title {
    font-size: 1.25rem;
  }
  
  .testimonials-title {
    font-size: 1.25rem;
  }
}

/* ============================================
   END: SCREEN 14 - RESULT SCREEN
   ============================================ */
/* ============================================
   START: ACTIVITY LEVEL CARDS (Screen 15) - REFATORADO COM IMAGENS
   ============================================ */
.option-card-activity {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  min-height: 80px;
}

/* Imagem do ícone de atividade */
.activity-icon-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Texto da opção */
.option-text-activity {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.4;
}

/* Animação ao selecionar */
.option-card-activity.selected .activity-icon-img {
  transform: scale(1.15);
}

/* Hover state */
.option-card-activity:hover .activity-icon-img {
  transform: scale(1.05);
}

/* Responsive - ajusta tamanho do ícone em telas menores */
@media (max-width: 480px) {
  .activity-icon-img {
    width: 40px;
    height: 40px;
  }
  
  .option-card-activity {
    gap: 0.875rem;
    padding: 1rem;
  }
  
  .option-text-activity {
    font-size: 0.9375rem;
  }
}
/* ============================================
   END: ACTIVITY LEVEL CARDS
   ============================================ */
/* ============================================
   START: SCREEN 16 - TEMPO SEM PESO IDEAL
   (Usa os mesmos estilos de .option-card-text-only já existentes)
   Nenhum CSS adicional necessário
   ============================================ */
/* Screen 16 utiliza classes já definidas:
   - .option-card-text-only
   - .option-text-centered
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 16
   ============================================ */
/* ============================================
   START: SCREEN 17 - TAMANHO DE ROUPA
   (Usa os mesmos estilos de .option-card-text-only já existentes)
   Nenhum CSS adicional necessário
   ============================================ */
/* Screen 17 utiliza classes já definidas:
   - .option-card-text-only
   - .option-text-centered
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 17
   ============================================ */
/* ============================================
   START: SCREEN 19 - BEFORE/AFTER TESTIMONIAL
   ============================================ */

/* Título do depoimento */
.testimonial-title-screen {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

/* Card de antes e depois */
.before-after-card {
  position: relative;
  max-width: 340px;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.before-after-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Badge de perda de peso */
.weight-loss-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(35, 75%, 55%);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.weight-loss-text {
  font-size: 0.9375rem;
  font-weight: 700;
}

/* Autor do depoimento */
.testimonial-author {
  text-align: center;
  margin-bottom: 1rem;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.375rem;
}

.author-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  font-size: 1rem;
}

/* Texto do depoimento */
.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: hsl(0 0% 100% / 0.9);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (min-width: 768px) {
  .testimonial-title-screen {
    font-size: 1.75rem;
  }
  
  .before-after-card {
    max-width: 400px;
  }
  
  .before-after-img {
    height: 320px;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .before-after-img {
    height: 240px;
  }
  
  .testimonial-title-screen {
    font-size: 1.25rem;
  }
}
/* ============================================
   END: SCREEN 19
   ============================================ */
/* ============================================
   START: SCREEN 20 - HÁBITOS ALIMENTARES
   ============================================ */

/* Título escuro para telas com fundo claro */
.quiz-title-dark {
  color: white;
}

/* Screen 20 utiliza classes já definidas:
   - .option-card-text-only
   - .option-text-centered
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 20
   ============================================ */
/* ============================================
   START: SCREEN 21 - DIETA CETOGÊNICA SABOROSA
   ============================================ */

/* Ícone de comida */
.info-icon-food {
  margin: 0 auto 2rem;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out;
}

.info-food-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Título grande para telas informativas */
.info-title-large {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease-out;
}

/* Texto grande para descrição */
.info-text-large {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (min-width: 768px) {
  .info-icon-food {
    width: 180px;
    height: 180px;
    margin-bottom: 2.5rem;
  }
  
  .info-title-large {
    font-size: 2.25rem;
  }
  
  .info-text-large {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .info-icon-food {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
  }
  
  .info-title-large {
    font-size: 1.625rem;
  }
  
  .info-text-large {
    font-size: 0.9375rem;
  }
}
/* ============================================
   END: SCREEN 21
   ============================================ */
/* ============================================
   START: SCREEN 22 - INGREDIENTES FAVORITOS
   (Usa os mesmos estilos de .option-card-checkbox já existentes)
   Nenhum CSS adicional necessário
   ============================================ */
/* Screen 22 utiliza classes já definidas:
   - .option-card-checkbox
   - .checkbox-wrapper
   - .checkbox-box
   - .option-text-checkbox
   - .btn-continue-green
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 22
   ============================================ */
/* ============================================
   START: SCREEN 23 - PROTEÍNA PREFERIDA
   ============================================ */

/* Subtítulo claro para telas com fundo escuro */
.quiz-subtitle-light {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(0 0% 100% / 0.8);
  margin-bottom: 2rem;
  text-align: center;
}

/* Screen 23 utiliza classes já definidas:
   - .option-card-checkbox
   - .checkbox-wrapper
   - .checkbox-box
   - .option-text-checkbox
   - .btn-continue-green
*/
/* ============================================
   END: SCREEN 23
   ============================================ */
/* ============================================
   START: SCREEN 24 - ALERGIAS ALIMENTARES
   (Usa os mesmos estilos já existentes)
   Nenhum CSS adicional necessário
   ============================================ */
/* Screen 24 utiliza classes já definidas:
   - .quiz-title-dark
   - .quiz-subtitle-light
   - .option-card-checkbox
   - .checkbox-wrapper
   - .checkbox-box
   - .option-text-checkbox
   - .btn-continue-green
*/
/* ============================================
   END: SCREEN 24
   ============================================ */
/* ============================================
   START: SCREEN 25 - PLANO ALIMENTAR PERSONALIZADO
   ============================================ */

/* Fundo marrom escuro fullscreen */
.quiz-fullscreen-dark-green {
  background: linear-gradient(135deg, hsl(25, 45%, 30%), hsl(25, 28%, 48%));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Título do plano */
.plan-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: white;
  text-align: center;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease-out;
}

/* Subtítulo do plano */
.plan-subtitle {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: hsl(0 0% 100% / 0.85);
  text-align: center;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease-out;
}

/* Grid de categorias de comida - AJUSTADO PARA 7 ITENS */
.food-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 400px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease-out;
}

/* Último item (7º) centralizado */
.food-category-card:nth-child(7) {
  grid-column: 1 / -1;
  max-width: 180px;
  margin: 0 auto;
}

/* Card de categoria */
.food-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Wrapper da imagem */
.food-img-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.food-category-card:hover .food-img-wrapper {
  transform: scale(1.05);
}

/* Imagem da categoria */
.food-category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Label da categoria */
.food-category-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  text-align: center;
}

/* Botão com borda branca mais grossa */
.btn-continue-outline-white-thick {
  background: transparent;
  color: white;
  border: 3px solid white;
  max-width: 360px;
  margin: 0 auto;
  font-size: 1.125rem;
  animation: fadeInUp 0.9s ease-out;
}

.btn-continue-outline-white-thick:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Footer bege */
.disclaimer-footer-beige {
  background: hsl(40, 30%, 92%);
  padding: 2rem 1rem 0;
  margin-top: auto;
}

/* Título escuro */
.disclaimer-title-dark {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(25, 35%, 20%);
  margin-bottom: 1rem;
}

/* Texto escuro */
.disclaimer-text-dark {
  font-size: 0.875rem;
  color: hsl(25, 25%, 35%);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.disclaimer-text-dark.small {
  font-size: 0.75rem;
}

/* Brand section escura */
.brand-section-dark {
  padding: 1.5rem 0;
  border-top: 1px solid hsl(30, 15%, 80%);
  border-bottom: 1px solid hsl(30, 15%, 80%);
  margin: 1.5rem 0;
}

.brand-logo-dark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.brand-name-dark {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(25, 35%, 20%);
}

.brand-accent-dark {
  color: hsl(25, 45%, 35%);
}

.brand-subtitle-dark {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(25, 35%, 20%);
}

/* Support links escuros */
.support-links-dark {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.support-item-dark {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.support-icon-dark {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.support-info-dark {
  flex: 1;
}

.support-title-dark {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(25, 35%, 20%);
  margin-bottom: 0.25rem;
}

.support-desc-dark {
  font-size: 0.875rem;
  color: hsl(25, 25%, 35%);
  line-height: 1.5;
}

/* Legal links simplificados */
.legal-links-simple {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.legal-link-dark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgb(69, 48, 33);
  text-decoration: underline;
  padding: 0.5rem 0;
}

.legal-link-dark svg {
  color: hsl(25, 25%, 45%);
}

/* Copyright escuro */
.copyright-dark {
  background: rgb(69, 48, 33);
  color: white;
  text-align: center;
  padding: 1.5rem;
  margin: 0 -1rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Responsive */
@media (min-width: 768px) {
  .plan-title {
    font-size: 2rem;
  }
  
  .plan-subtitle {
    font-size: 1rem;
  }
  
  .food-categories-grid {
    max-width: 480px;
    gap: 1.5rem;
  }
  
  .food-category-label {
    font-size: 1rem;
  }
  
  /* Ajusta tamanho do item centralizado em telas maiores */
  .food-category-card:nth-child(7) {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .plan-title {
    font-size: 1.5rem;
  }
  
  .plan-subtitle {
    font-size: 0.875rem;
  }
  
  .food-categories-grid {
    gap: 1rem;
  }
  
  .food-category-label {
    font-size: 0.875rem;
  }
  
  /* Ajusta tamanho do item centralizado em telas menores */
  .food-category-card:nth-child(7) {
    max-width: 160px;
  }
}
/* ============================================
   END: SCREEN 25
   ============================================ */
/* ============================================
   START: SCREEN 26 - HORAS DE SONO
   (Utiliza classes já existentes)
   ============================================ */
/* Screen 26 utiliza classes já definidas:
   - .quiz-with-bg (fundo marrom gradiente)
   - .quiz-title-dark (título escuro)
   - .option-card-text-only (cards de texto)
   - .option-text-centered (texto centralizado)
   - .disclaimer-footer-beige (footer bege)
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 26
   ============================================ */
/* ============================================
   START: SCREEN 27 - COPOS DE ÁGUA
   (Utiliza classes já existentes da Screen 15)
   ============================================ */
/* Screen 27 utiliza classes já definidas:
   - .option-card-activity
   - .activity-icon-img
   - .option-text-activity
   - .quiz-title-dark
   - .disclaimer-footer-beige
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 27
   ============================================ */
/* ============================================
   START: SCREEN 28 - HORÁRIO DE TRABALHO
   (Utiliza classes já existentes)
   ============================================ */
/* Screen 28 utiliza classes já definidas:
   - .quiz-with-bg
   - .quiz-title-dark
   - .option-card-text-only
   - .option-text-centered
   - .disclaimer-footer-beige
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 28
   ============================================ */
/* ============================================
   START: SCREEN 29 - DIA TÍPICO
   (Utiliza classes já existentes)
   ============================================ */
/* Screen 29 utiliza classes já definidas:
   - .quiz-with-bg
   - .quiz-title-dark
   - .option-card-text-only
   - .option-text-centered
   - .disclaimer-footer-beige
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 29
   ============================================ */
/* ============================================
   START: SCREEN 30 - MEDICAMENTOS
   (Utiliza classes já existentes)
   ============================================ */
/* Screen 30 utiliza classes já definidas:
   - .quiz-with-bg
   - .quiz-title-dark
   - .option-card-checkbox
   - .checkbox-wrapper
   - .checkbox-box
   - .option-text-checkbox
   - .btn-continue-green
   - .disclaimer-footer-beige
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 30
   ============================================ */
/* ============================================
   START: SCREEN 31 - PROBLEMAS DE SAÚDE
   (Utiliza classes já existentes)
   ============================================ */
/* Screen 31 utiliza classes já definidas:
   - .quiz-with-bg
   - .quiz-title-dark
   - .option-card-checkbox
   - .checkbox-wrapper
   - .checkbox-box
   - .option-text-checkbox
   - .btn-continue-green
   - .disclaimer-footer-beige
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 31
   ============================================ */
/* ============================================
   START: SCREEN 32 - OBJETIVOS ALÉM DA PERDA DE PESO
   (Utiliza classes já existentes)
   ============================================ */
/* Screen 32 utiliza classes já definidas:
   - .quiz-with-bg
   - .quiz-title-dark
   - .option-card-checkbox
   - .checkbox-wrapper
   - .checkbox-box
   - .option-text-checkbox
   - .btn-continue-green
   - .disclaimer-footer-beige
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 32
   ============================================ */
/* ============================================
   START: SCREEN 33 - TRANSFORMAÇÃO FACIAL
   ============================================ */

/* Título da transformação facial */
.face-transformation-title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.25;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out;
}

/* Container da imagem única */
.face-transformation-single-image {
  max-width: 600px;
  margin: 0 auto 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.7s ease-out;
}

/* Imagem de transformação */
.face-transformation-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Descrição da transformação */
.face-transformation-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: hsl(0 0% 100% / 0.9);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (min-width: 768px) {
  .face-transformation-title {
    font-size: 2rem;
  }
  
  .face-transformation-single-image {
    max-width: 700px;
  }
  
  .face-transformation-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .face-transformation-title {
    font-size: 1.375rem;
  }
  
  .face-transformation-single-image {
    max-width: 100%;
    border-radius: 0.75rem;
  }
  
  .face-transformation-description {
    font-size: 0.875rem;
  }
}
/* ============================================
   END: SCREEN 33
   ============================================ */
/* ============================================
   START: SCREEN 34 - RESULTADO E MOTIVAÇÃO
   (Utiliza classes já existentes da Screen 14)
   ============================================ */
/* Screen 34 utiliza classes já definidas:
   - .quiz-with-white-bg
   - .result-intro
   - .result-title
   - .weight-chart
   - .chart-line, .chart-svg, .chart-point, etc.
   - .testimonials-title
   - .testimonials-carousel
   - .carousel-indicators
   - .disclaimer-footer-beige
   Não requer CSS adicional
*/
/* ============================================
   END: SCREEN 34
   ============================================ */
/* ============================================
   START: SCREEN 35 - PREPARANDO SEU PLANO (LOADING)
   ============================================ */

/* Título do loading */
.loading-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out;
}

/* Container do círculo de progresso */
.progress-circle-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 3rem;
  animation: fadeInUp 0.7s ease-out;
}

/* SVG do círculo */
.progress-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

/* Círculo de fundo */
.progress-circle-bg {
  opacity: 0.3;
}

/* Círculo de progresso animado */
.progress-circle-fill {
  transition: stroke-dashoffset 0.3s ease;
}

/* Porcentagem no centro */
.progress-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

/* Card de benefícios */
.benefits-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
}

/* Título dos benefícios */
.benefits-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(25, 35%, 20%);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

/* Lista de benefícios */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Item de benefício */
.benefit-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

/* Ícone de check */
.benefit-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1.4;
}

/* Texto do benefício */
.benefit-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: hsl(25, 25%, 35%);
}

/* Responsive */
@media (min-width: 768px) {
  .loading-title {
    font-size: 2rem;
  }
  
  .progress-circle-container {
    width: 240px;
    height: 240px;
  }
  
  .progress-percentage {
    font-size: 3rem;
  }
  
  .benefits-card {
    padding: 2rem;
  }
  
  .benefits-title {
    font-size: 1.25rem;
  }
  
  .benefit-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .loading-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .progress-circle-container {
    width: 160px;
    height: 160px;
    margin-bottom: 2rem;
  }
  
  .progress-percentage {
    font-size: 2rem;
  }
  
  .benefits-card {
    padding: 1.25rem;
  }
  
  .benefits-title {
    font-size: 1rem;
  }
  
  .benefit-text {
    font-size: 0.875rem;
  }
}
/* ============================================
   END: SCREEN 35
   ============================================ */
/* ============================================
   START: SCREEN 36 - CAPTURA DE E-MAIL
   ============================================ */

/* Wrapper do ícone de e-mail */
.email-icon-wrapper {
  display: flex;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

/* Ícone de e-mail SVG */
.email-icon {
  width: 120px;
  height: auto;
}

/* Título da captura de e-mail */
.email-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.7s ease-out;
}

.email-title span {
  font-weight: 800;
}

/* Formulário de e-mail */
.email-form {
  max-width: 400px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

/* Wrapper do input de e-mail */
.input-wrapper-email {
  margin-bottom: 1.5rem;
}

/* Input de e-mail */
.input-field-email {
  width: 100%;
  height: 3.5rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
}

.input-field-email:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(25 45% 35% / 0.1);
}

.input-field-email::placeholder {
  color: var(--muted-foreground);
  opacity: 0.5;
}

/* Aviso de privacidade */
.privacy-notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: hsl(35, 60%, 95%);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.privacy-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.privacy-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--foreground);
  margin: 0;
}

/* Texto dos termos */
.terms-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 1.5rem;
}

/* Links dos termos */
.terms-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.terms-link:hover {
  color: hsl(25, 45%, 30%);
}

/* Responsive */
@media (min-width: 768px) {
  .email-icon {
    width: 140px;
  }
  
  .email-title {
    font-size: 1.75rem;
  }
  
  .email-form {
    max-width: 440px;
  }
}

@media (max-width: 480px) {
  .email-icon {
    width: 100px;
  }
  
  .email-title {
    font-size: 1.25rem;
  }
  
  .input-field-email {
    font-size: 0.9375rem;
  }
  
  .privacy-text {
    font-size: 0.8125rem;
  }
  
  .terms-text {
    font-size: 0.75rem;
  }
}
/* ============================================
   END: SCREEN 36
   ============================================ */