/* =============================================
   DRAGONCHI QUIZ CLONE - style.css
   ============================================= */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #e8eef5;
  color: #1a1a1a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   LAYOUT & CONTAINER
   ============================================= */

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e8eef5;
}

.quiz-wrapper {
  width: 100%;
  max-width: 500px;
  min-height: 100vh;
  background: #f2f5f9;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* =============================================
   PROGRESS BAR
   ============================================= */

.progress-bar-container {
  width: 100%;
  height: 5px;
  background: #d0d8e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #1a3a2e, #2d6a4f);
  border-radius: 0 3px 3px 0;
  transition: width 0.5s ease;
}

/* =============================================
   HEADER / LOGO
   ============================================= */

.quiz-header {
  text-align: center;
  padding: 18px 20px 10px;
  background: #f2f5f9;
}

.logo img {
  width: 30%;
}

/* =============================================
   STEP CONTAINER
   ============================================= */

.step {
  display: none;
  flex-direction: column;
  padding: 10px 20px 30px;
  flex: 1;
  animation: fadeInUp 0.35s ease;
}

.step.active {
  display: flex;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* =============================================
   TYPOGRAPHY
   ============================================= */

.step-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 8px;
  text-align: center;
}

.step-title .highlight-green {
  color: #2d8653;
}

.step-title .highlight-red {
  color: #e53e3e;
}

.step-title .highlight-blue {
  color: #2b6cb0;
}

.step-subtitle {
  font-size: 14px;
  color: #5a6a7a;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.step-subtitle a, .step-subtitle .link {
  color: #2b6cb0;
  text-decoration: underline;
}


/* =============================================
   CARD AMARELO
   ============================================= */

  .card-novo {
    max-width: 600px;
    margin: 0px auto 20px;
    background: #f3e6a2;
    border: 1px solid #c9a94d;
    border-radius: 12px;
    padding: 10px;
    color: #7a4e00;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

.card-title-novo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.texto-novo {
  font-size: 15px;
  color: #9a5c00;
  line-height: 1.5;
}

.icon-novo {
  font-size: 20px;
  flex-shrink: 0; /* impede o ícone de encolher */
}


/* =============================================
   OPTION BUTTONS
   ============================================= */

.options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}

.option-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #ffffff;
  border: 1.5px solid #d5dce5;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.option-btn:hover {
  background: #edf5f0;
  border-color: #2d8653;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(45, 134, 83, 0.15);
}

.option-btn:active {
  transform: scale(0.98);
}

.option-btn .option-icon {
  font-size: 22px;
  width: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-btn .option-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
}

.option-btn .option-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5ecf2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: #6b7c8d;
  transition: background 0.2s;
}

.option-btn:hover .option-arrow {
  background: #2d8653;
  color: white;
}

/* Checkbox style options */
.option-btn.checkbox-style {
  justify-content: space-between;
}

.option-btn.checkbox-style .option-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #b0bec5;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.option-btn.checkbox-style.selected .option-checkbox {
  background: #2d8653;
  border-color: #2d8653;
}

.option-btn.checkbox-style.selected .option-checkbox::after {
  content: '✓';
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.option-btn.checkbox-style.selected {
  background: #edf5f0;
  border-color: #2d8653;
}

/* Image card options */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.option-card {
  background: #ffffff;
  border: 2px solid #d5dce5;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.option-card:hover {
  border-color: #2d8653;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 134, 83, 0.2);
}

.option-card:active {
  transform: scale(0.97);
}

.option-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.option-card .card-label {
  padding: 8px 5px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  background: #f5f7fa;
}

/* YES/NO button style */
.yesno-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.yesno-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.yesno-btn.yes {
  background: #f0f2f5;
  color: #4a5568;
  border: 2px solid #4a5568;
}

.yesno-btn.no {
  background: #f0f2f5;
  color: #4a5568;
  border: 2px solid #4a5568;
}

.yesno-icon {
  font-size: 22px;
}

/* =============================================
   IMAGES IN STEPS
   ============================================= */

.step-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin: 12px 0;
  position: relative;
}

.step-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.step-image-half {
  width: 55%;
  margin: 0 auto 10px;
}

/* =============================================
   CTA / MAIN BUTTON
   ============================================= */

.cta-btn {
  width: 100%;
  padding: 18px 24px;
  background: #1a1a2e;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  margin-top: 16px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.cta-btn:hover {
  background: #0d0d1f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.4);
}

.cta-btn:active {
  transform: scale(0.98);
}

.cta-btn.green {
  background: #2d8653;
}

.cta-btn.green:hover {
  background: #236744;
  box-shadow: 0 6px 20px rgba(45, 134, 83, 0.4);
}

/* =============================================
   SPLASH / INFO SCREENS
   ============================================= */

.splash-badge {
  background: #2d8653;
  color: white;
  font-size: 22px;
  font-weight: 700;
  padding: 6px;
  border-radius: 4px;
  align-items: center;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 10px;
  border: 1px solid #1a1a2e;
}

.info-box {
  background: #fff8e6;
  border: 1px solid #f0d070;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 12px 0;
  font-size: 14px;
  color: #4a3a1a;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-box-green {
  background: #edfaf0;
  border: 1px solid #b2dfc2;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 12px 0;
  font-size: 14px;
  color: #1a4a2e;
}

.info-box-pink {
  background: #fff0f0;
  border: 1px solid #f5c6cb;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 12px 0;
  font-size: 14px;
  color: #7f1d1d;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: #edfaf0;
  border: 1px solid #b2dfc2;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a4a2e;
}

.checklist-item .check-icon {
  color: #2d8653;
  font-size: 18px;
  flex-shrink: 0;
}

.x-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f8f0f0;
  border: 1px solid #f0d0d0;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.x-list-item .x-icon {
  color: #e53e3e;
  font-size: 18px;
  flex-shrink: 0;
}

/* =============================================
   TESTOSTERONE CHART (splash)
   ============================================= */

.testo-chart {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testo-chart-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.testo-body-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 8px;
  padding: 0 10px;
}

.body-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.body-figure-icon {
  font-size: 22px;
  line-height: 1;
}

.body-figure-age {
  font-size: 10px;
  color: #6b7c8d;
  font-weight: 600;
}

.chart-label {
  font-size: 11px;
  font-weight: 600;
  color: #8a99a8;
  text-align: center;
  margin-top: 4px;
}

/* =============================================
   G1 ARTICLE MOCKUP
   ============================================= */

.g1-nav {
  display: flex;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  overflow-x: auto;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.g1-nav span {
  white-space: nowrap;
  color: #b0b0b0;
}

.g1-nav .globo { color: #0066cc; }
.g1-nav .g1 { color: #cc0000; }
.g1-nav .ge { color: #0099cc; }
.g1-nav .gshow { color: #cc6600; }
.g1-nav .globoplay { color: #cc0000; }

.g1-header {
  background: #cc0000;
  color: white;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px 6px 0 0;
  margin-bottom: 0;
}

.g1-header .g1-logo-text {
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 4px;
}

.g1-header .g1-section {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 1;
  text-align: center;
}

.g1-article-box {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 6px 6px;
  padding: 14px;
}

.g1-article-title {
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 10px;
}

.g1-article-body {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}

.g1-author {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.g1-author span {
  color: #cc0000;
  font-weight: 600;
}

.g1-date {
  font-size: 11px;
  color: #999;
  margin-bottom: 12px;
}

.g1-date .updated {
  color: #2d8653;
}

.g1-share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  border: none;
  cursor: pointer;
}

.share-btn.fb { background: #1877f2; }
.share-btn.wa { background: #25d366; }
.share-btn.share {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
}

/* =============================================
   WEEKS GRID (transformation timeline)
   ============================================= */

.weeks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0;
}

.week-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.week-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.week-card-body {
  padding: 10px 8px;
}

.week-label {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
  text-align: center;
}

.week-label.red { color: #e53e3e; }
.week-label.blue { color: #2b6cb0; }
.week-label.yellow { color: #d4a017; }
.week-label.green { color: #2d8653; }

.week-desc {
  font-size: 12px;
  color: #4a5568;
  text-align: center;
  line-height: 1.4;
}

/* =============================================
   EMAIL / FORM INPUTS
   ============================================= */

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d5dce5;
  border-radius: 10px;
  font-size: 15px;
  color: #1a1a1a;
  background: white;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: #2d8653;
  box-shadow: 0 0 0 3px rgba(45, 134, 83, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* =============================================
   LOADING SCREEN
   ============================================= */

.loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
  min-height: 60vh;
  text-align: center;
}



.multi-loading {
  margin-top: 20px;
  width: 100%;
}

.progress-item {
  margin-bottom: 16px;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

.bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.fill {
  width: 0%;
  height: 100%;
  background: #000;
  border-radius: 10px;
  transition: width 0.2s linear;
}

/* SOCIAL */
.social-proof {
  margin-top: 30px;
  text-align: center;
}

.social-proof h2 {
  font-size: 22px;
  margin-bottom: 5px;
}

.highlight {
  color: #16a34a;
  font-weight: bold;
}

.stars {
  color: #facc15;
  font-size: 18px;
  margin: 10px 0;
}

.rating {
  font-size: 13px;
  color: #555;
}

.carousel {
  margin-top: 15px;
}

.carousel img {
  width: 100%;
  border-radius: 10px;
}

.progress-block {
  display: none;
}

.progress-block.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

@keyframes pulseSpin {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(45, 134, 83, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(45, 134, 83, 0); }
}

.loading-title {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.loading-subtitle {
  font-size: 14px;
  color: #6b7c8d;
  margin-bottom: 30px;
}

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

.loading-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e0e8f0;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  opacity: 0;
  animation: slideInRight 0.4s ease forwards;
}

.loading-item:nth-child(1) { animation-delay: 0.3s; }
.loading-item:nth-child(2) { animation-delay: 0.8s; }
.loading-item:nth-child(3) { animation-delay: 1.3s; }
.loading-item:nth-child(4) { animation-delay: 1.8s; }

.loading-item .load-icon {
  font-size: 20px;
}

.loading-bar-container {
  width: 100%;
  height: 8px;
  background: #e0e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #1a3a2e, #2d8653);
  border-radius: 4px;
  width: 0%;
  animation: loadProgress 3s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes loadProgress {
  0% { width: 0%; }
  30% { width: 35%; }
  60% { width: 60%; }
  80% { width: 80%; }
  95% { width: 95%; }
  100% { width: 100%; }
}

/* =============================================
   RESULT / PROFILE PAGE
   ============================================= */

.profile-summary {
  background: white;
  border-radius: 14px;
  padding: 18px;
  margin: 12px 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.profile-stats {
  flex: 1;
}

.profile-stat-item {
  margin-bottom: 12px;
}

.profile-stat-label {
  font-size: 13px;
  color: #6b7c8d;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}

.profile-stat-value {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.profile-image {
  width: 120px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* BMI Bar */
.bmi-container {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.bmi-value-tag {
  background: #1a1a2e;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.bmi-bar {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #4fc3f7, #66bb6a, #ffca28, #ff7043, #f44336);
  position: relative;
  margin-bottom: 8px;
}

.bmi-indicator {
  width: 18px;
  height: 18px;
  background: #1a1a2e;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: left 0.5s ease;
}

.bmi-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: #6b7c8d;
  margin-top: 4px;
}

/* =============================================
   WEIGHT PREDICTION CHART
   ============================================= */

.weight-chart {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.weight-chart-canvas {
  width: 100%;
  height: 180px;
}

/* =============================================
   STATS CARDS
   ============================================= */

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.stat-card {
  background: white;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e0e8f0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.stat-card .stat-icon {
  font-size: 24px;
}

.stat-card .stat-text {
  font-size: 14px;
  color: #2d3748;
  line-height: 1.4;
}

.stat-card .stat-text strong {
  color: #1a1a1a;
}

.stat-card .stat-text .highlight {
  color: #2d8653;
  font-weight: 700;
}

.stat-card .stat-text .highlight-red {
  color: #e53e3e;
  font-weight: 700;
}

.stat-card .stat-text .highlight-orange {
  color: #d97706;
  font-weight: 700;
}

/* =============================================
   SALES / OFFER PAGE
   ============================================= */

.offer-page {
  padding-bottom: 40px;
}

.offer-headline {
  font-size: 22px;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.3;
  margin: 16px 0 8px;
}

.offer-headline .highlight-green {
  color: #2d8653;
}

.offer-subtitle {
  font-size: 14px;
  color: #6b7c8d;
  text-align: center;
  margin-bottom: 16px;
}

.offer-box {
  background: white;
  border: 2px solid #2d8653;
  border-radius: 14px;
  padding: 20px;
  margin: 16px 0;
  box-shadow: 0 4px 20px rgba(45, 134, 83, 0.15);
  text-align: center;
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.price-original {
  font-size: 16px;
  color: #9aa5b4;
  text-decoration: line-through;
  font-weight: 500;
}

.price-current {
  font-size: 42px;
  font-weight: 900;
  color: #1a1a1a;
}

.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  align-self: flex-start;
  margin-top: 10px;
}

.price-period {
  font-size: 14px;
  color: #6b7c8d;
  margin-bottom: 16px;
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  margin-bottom: 16px;
}

.offer-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #2d3748;
  line-height: 1.4;
}

.offer-feature .feat-icon {
  color: #2d8653;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.phones-mockup {
  width: 100%;
  margin: 16px 0;
  display: flex;
  justify-content: center;
}

.phones-mockup img {
  max-width: 300px;
  width: 100%;
}

/* =============================================
   ALERT / NOTICE BANNERS
   ============================================= */

.alert-green {
  background: #edfaf0;
  border: 1px solid #b2dfc2;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: #1a4a2e;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* =============================================
   SECTION SEPARATORS
   ============================================= */

.section-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2d8653, #1a3a2e);
  border-radius: 2px;
  margin: 16px auto;
}

/* =============================================
   FOOTER LEGAL TEXT
   ============================================= */

.legal-footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #9aa5b4;
  line-height: 1.6;
}

.legal-footer a {
  color: #2b6cb0;
  text-decoration: underline;
}

/* =============================================
   BODY AREA IMAGE SELECTOR
   ============================================= */

.body-visual {
  position: relative;
  margin: 12px 0;
  border-radius: 12px;
  overflow: hidden;
}

.body-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* =============================================
   PERFORMANCE CHART (Injury risk)
   ============================================= */

.perf-chart-container {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.perf-chart-canvas {
  width: 100%;
  height: 160px;
}

/* =============================================
   CONFETTI ANIMATION
   ============================================= */

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  display: none;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  top: -10px;
  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* =============================================
   TOOLTIP / LABEL OVERLAYS ON CHARTS
   ============================================= */

.chart-overlay-label {
  position: absolute;
  background: white;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.chart-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

/* =============================================
   TESTOSTERONE CURVE SVG
   ============================================= */

.testo-curve-container {
  margin: 10px auto;
  width: 100%;
  max-width: 340px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 400px) {
  .step-title { font-size: 19px; }
  .options-grid { grid-template-columns: repeat(3, 1fr); }
  .option-card img { height: 100px; }
  .weeks-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 501px) {
  .quiz-wrapper {
    box-shadow: 0 0 40px rgba(0,0,0,0.12);
    margin: 0 auto;
  }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

.text-center { text-align: center; }
.text-bold { font-weight: 700; }
.text-green { color: #2d8653; }
.text-red { color: #e53e3e; }
.text-blue { color: #2b6cb0; }
.text-yellow { color: #d97706; }
.text-gray { color: #6b7c8d; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.hidden { display: none !important; }

/* ===== LOADING CIRCULAR ===== */
.loading-circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 70vh;
  text-align: center;
  padding: 20px;
}

.loading-circle-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.loading-circle-subtitle {
  font-size: 14px;
  color: #6b7c8d;
  margin-bottom: 25px;
}

/* Círculo */
.circular-progress {
  position: relative;
  width: 140px;
  height: 140px;
}

.circular-progress-svg {
  transform: rotate(-90deg);
}

.circular-progress-bg {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 10;
}

.circular-progress-bar {
  fill: none;
  stroke: #1f5f3a;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 0.3s linear;
}

.circular-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: bold;
}
