/* ============================================
   RESULT PAGE STYLES
   ============================================ */

/* Result Header */
.result__header {
  text-align: center;
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-lg);
}

.result__badge-container {
  margin-bottom: var(--space-md);
}

.result__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-full);
}

.result__greeting {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
}

.result__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.result__profile-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  display: inline-block;
  /* Colors set dynamically by JS */
}

.result__email-notice {
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  color: var(--color-text-light);
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

/* ============================================
   RESULT SECTIONS
   ============================================ */

.result__section {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
}

.result__section-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

/* ============================================
   PROFILE EXPLANATION
   ============================================ */

.result__description {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.result__characteristics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.result__characteristics li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
}

.result__characteristics li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  /* Color set by JS */
}

.result__emotional-message {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-style: italic;
  border-left: 3px solid;
  /* Colors set by JS */
}

.result__warning {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: #FFF8E1;
  border: 1px solid #FFE082;
  border-radius: var(--radius-md);
}

.result__warning-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.result__warning p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ============================================
   PROTOCOL INTRO
   ============================================ */

.result__protocol-intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

/* ============================================
   PROTOCOL PHASES — LEGACY GRID (3 columns)
   ============================================ */

.result__phases--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.result__phases--grid .result__phase {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.result__phases--grid .result__phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.result__phases--grid .result__phase-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.result__phases--grid .result__phase-duration {
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.result__phases--grid .result__phase-description {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ============================================
   PROTOCOL PHASES — TIMELINE (5 phases)
   ============================================ */

.result__phases--timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-xl);
}

.result__phase-card {
  display: flex;
  gap: var(--space-md);
  position: relative;
}

.result__phase-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 36px;
}

.result__phase-card .result__phase-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}

.result__phase-line {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: var(--color-border) !important;
  opacity: 0.6;
}

.result__phase-content {
  flex: 1;
  padding-bottom: var(--space-lg);
}

.result__phase-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.result__phase-card .result__phase-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result__phase-card .result__phase-duration {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
}

.result__phase-objective {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.result__phase-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result__phase-steps li {
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.result__phase-steps li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================
   KIT / PRODUCTS
   ============================================ */

.result__kit {
  margin-bottom: var(--space-xl);
}

.result__kit-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.result__products {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.result__product {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition-base);
}

.result__product:hover {
  box-shadow: var(--shadow-sm);
}

.result__product-image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
}

.result__product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.result__product-emoji {
  font-size: 1.5rem;
}

.result__product-info {
  flex: 1;
}

.result__product-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.result__product-role {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 4px;
  /* Color set by JS */
}

.result__product-usage {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ============================================
   PRICING
   ============================================ */

.result__pricing {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.result__pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.result__pricing-row--highlight {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-sm);
}

.result__price-label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.result__price-original {
  font-size: 1rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.result__price-offer {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
}

.result__discount-badge {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  /* Colors set by JS */
}

.result__cta {
  margin-top: var(--space-md);
}

/* ============================================
   TRUST BADGES
   ============================================ */

.result__trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.trust-badge {
  text-align: center;
  padding: var(--space-md);
}

.trust-badge__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.trust-badge__text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* ============================================
   FAQ
   ============================================ */

.result__faq-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-item__question:hover {
  background: var(--color-bg);
}

.faq-item__toggle {
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform var(--transition-base);
  color: var(--color-text-light);
}

.faq-item.is-open .faq-item__toggle {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.is-open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-text {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* ============================================
   FOOTER ACTIONS
   ============================================ */

.result__footer-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 400px;
  margin: 0 auto;
}

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

@media (max-width: 600px) {
  .result__phases--grid {
    grid-template-columns: 1fr;
  }

  .result__trust-badges {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-align: left;
    padding: var(--space-sm);
  }

  .trust-badge__icon {
    margin-bottom: 0;
  }

  .result__profile-name {
    font-size: 1.5rem;
  }

  .result__product {
    padding: var(--space-md);
  }

  .result__product-image {
    width: 48px;
    height: 48px;
  }
}

/* ============================================
   WHITE PATCHES WARNING
   ============================================ */

.white-patches-warning {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: #FFF8E1;
  border: 1.5px solid #F59E0B;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.white-patches-warning--elevated {
  background: #FFF3E0;
  border-color: #E65100;
}

.white-patches-warning__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.white-patches-warning__content {
  flex: 1;
}

.white-patches-warning__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #92400E;
  margin-bottom: var(--space-sm);
}

.white-patches-warning--elevated .white-patches-warning__title {
  color: #7C2D12;
}

.white-patches-warning__text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-sm);
}

.white-patches-warning__text:last-child {
  margin-bottom: 0;
}

.white-patches-warning__text strong {
  color: var(--color-primary);
}

/* ============================================
   ADD-ON RECOMMENDED PRODUCT
   ============================================ */

.result__addon {
  margin-bottom: var(--space-lg);
  border: 2px dashed var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  background: linear-gradient(135deg, #FFFBF0 0%, #FFF8E8 100%);
  position: relative;
}

.result__addon-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.result__addon-badge {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87A 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}

.result__addon-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}

.result__addon-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.result__addon-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(201, 169, 110, 0.15);
}

.result__addon-card.is-checked {
  border-color: var(--color-accent);
  background: #FFFDF7;
  box-shadow: 0 2px 16px rgba(201, 169, 110, 0.2);
}

/* Custom Checkbox */
.result__addon-check {
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
}

.result__addon-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.result__addon-checkmark {
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid #ccc;
  border-radius: 6px;
  background: #fff;
  transition: all 0.2s ease;
  position: relative;
}

.result__addon-checkmark::after {
  content: '';
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.result__addon-input:checked + .result__addon-checkmark {
  background: var(--color-accent, #C9A96E);
  border-color: var(--color-accent, #C9A96E);
}

.result__addon-input:checked + .result__addon-checkmark::after {
  display: block;
}

/* Add-on Image */
.result__addon-image {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  flex-shrink: 0;
  overflow: hidden;
}

.result__addon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Add-on Info */
.result__addon-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.result__addon-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.result__addon-role {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.result__addon-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent, #C9A96E);
}

.result__addon-price-old {
  text-decoration: line-through;
  color: #999;
  font-weight: 500;
  font-size: 0.85rem;
  margin-right: 6px;
}

.result__addon-price-new {
  color: var(--color-accent, #C9A96E);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 600px) {
  .result__addon {
    padding: var(--space-md);
  }

  .result__addon-card {
    padding: var(--space-sm) var(--space-md);
  }

  .result__addon-image {
    width: 56px;
    height: 56px;
  }
}

/* Sub-título do bloco Protocolo (após produtos) */
.result__section-title--protocol {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

/* ==========================================================
   STORYTELLING (narrativa emocional do perfil)
   ========================================================== */
.result__storytelling {
  background: linear-gradient(135deg, #FFFCF5 0%, #FFF8E7 100%);
  border-left: 4px solid #C9A96E;
  padding: 24px 28px;
  margin: 0 0 24px 0;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2A2A2A;
  font-style: italic;
  position: relative;
}
.result__storytelling::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: #C9A96E;
  opacity: 0.4;
  line-height: 1;
}
.result__storytelling strong {
  color: #1A1A1A;
  font-style: normal;
  font-weight: 700;
}

/* ==========================================================
   SOCIAL PROOF — Mesoestetic Stats
   ========================================================== */
.result__social-proof {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D4A 100%);
  color: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  margin: 24px 0;
}
.result__social-proof-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #C9A96E;
}
.result__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 12px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform .2s, background .2s;
}
.stat-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}
.stat-card__number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #C9A96E;
  line-height: 1.1;
}
.stat-card__icon {
  font-size: 2rem;
  margin-bottom: 4px;
}
.stat-card__label {
  font-size: 0.8rem;
  color: #E0E0E0;
  line-height: 1.3;
  text-align: center;
}
.stat-card--highlight {
  background: linear-gradient(135deg, #C9A96E 0%, #B8985D 100%);
  border-color: #C9A96E;
}
.stat-card--highlight .stat-card__label {
  color: #1A1A1A;
  font-weight: 600;
}

/* ==========================================================
   ADDON — Reason e Benefits
   ========================================================== */
.result__addon-reason {
  background: #FFF8E7;
  border-left: 3px solid #C9A96E;
  padding: 12px 16px;
  margin: 12px 0 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4A4A4A;
  border-radius: 4px;
}
.result__addon-benefits {
  list-style: none;
  padding: 0;
  margin: 8px 0 6px 0;
  font-size: 0.85rem;
  color: #4CAF50;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.result__addon-benefits li {
  font-weight: 500;
}

/* ==========================================================
   VALUE STACK (construção de valor)
   ========================================================== */
.result__value-stack {
  background: #FAF7F2;
  border: 2px dashed #D4B98C;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.result__value-stack-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1A1A1A;
}
.result__value-stack-items {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.value-stack-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dotted #D4B98C;
  font-size: 0.95rem;
}
.value-stack-item:last-child { border-bottom: none; }
.value-stack-item--addon {
  background: #FFF8E7;
  margin: 4px -8px 0;
  padding: 8px 8px;
  border-radius: 6px;
  border-bottom: 1px dotted #D4B98C !important;
}
.value-stack-item__addon-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  background: #C9A96E;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.value-stack-item__name { color: #4A4A4A; }
.value-stack-item__price {
  font-weight: 600;
  color: #1A1A1A;
}
.result__value-stack-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 2px solid #C9A96E;
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
}
.result__value-stack-sum {
  color: #C9A96E;
  font-size: 1.15rem;
}

/* ==========================================================
   URGENCY — Countdown
   ========================================================== */
.result__urgency {
  background: linear-gradient(135deg, #FEF3F2 0%, #FFE5E0 100%);
  border: 2px solid #E74C3C;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.result__urgency-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}
.result__urgency-text {
  flex: 1;
  text-align: left;
}
.result__urgency-text strong {
  color: #C0392B;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
}
.result__countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0;
}
.countdown-block {
  background: #C0392B;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.3rem;
  min-width: 50px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.countdown-block small {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
}
.countdown-sep {
  color: #C0392B;
  font-weight: 800;
  font-size: 1.3rem;
}
.result__urgency-note {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #7A2D27;
  font-style: italic;
}

/* ==========================================================
   PRICING enriched
   ========================================================== */
.result__pricing-row--strikethrough .result__price-original {
  text-decoration: line-through;
  color: #999;
  font-weight: 500;
}
.result__price-savings {
  background: #D4F5E0;
  border: 1px solid #4CAF50;
  border-radius: 8px;
  padding: 10px 16px;
  margin: 10px 0;
  text-align: center;
}
.result__price-savings-text {
  color: #2E7D32;
  font-weight: 600;
  font-size: 0.95rem;
}
.result__price-savings-text strong {
  font-size: 1.1rem;
}
.result__price-installment {
  text-align: center;
  font-size: 0.92rem;
  color: #555;
  margin: 6px 0 14px 0;
}
.result__price-installment strong {
  color: #1A1A1A;
}
.result__price-comparison {
  background: #FAFAFA;
  border-left: 3px solid #999;
  padding: 12px 16px;
  margin-top: 16px;
  text-align: left;
  border-radius: 4px;
}
.result__price-comparison-label {
  display: block;
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 4px;
}
.result__price-comparison-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #555;
  text-decoration: line-through;
  text-decoration-color: #999;
}
.result__price-comparison small {
  display: block;
  font-size: 0.72rem;
  color: #999;
  margin-top: 2px;
}

/* ==========================================================
   GUARANTEES (risk reversal)
   ========================================================== */
.result__guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0 0 0;
  padding: 18px;
  background: #F5F0EB;
  border-radius: 12px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.guarantee-item__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.guarantee-item strong {
  display: block;
  font-size: 0.88rem;
  color: #1A1A1A;
  font-weight: 700;
}
.guarantee-item small {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-top: 1px;
}

/* ==========================================================
   SECOND CTA (after FAQ)
   ========================================================== */
.result__second-cta {
  background: linear-gradient(135deg, #FFFCF5 0%, #FFF8E7 100%);
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  margin: 24px 0;
  border: 2px solid #C9A96E;
}
.result__second-cta-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}
.result__second-cta-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 18px;
}

/* ==========================================================
   STICKY MOBILE CTA
   ========================================================== */
.result__sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #C9A96E;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 999999; /* acima do teaser do Klaviyo */
}
/* Esconde o teaser do Klaviyo na tela de resultados (sticky CTA é prioridade) */
.kl-teaser-T4n7i7,
[class*="kl-teaser"] {
  display: none !important;
}
@media (max-width: 768px) {
  .result__sticky-cta {
    display: flex;
  }
  /* Espaço no fim da página para não esconder conteúdo atrás do sticky */
  #screen-result { padding-bottom: 90px; }
}
.result__sticky-cta-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.result__sticky-cta-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1A1A1A;
}
.result__sticky-cta-label {
  font-size: 0.7rem;
  color: #4CAF50;
  font-weight: 600;
}
.result__sticky-cta-btn {
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 600px) {
  .result__storytelling {
    font-size: 0.97rem;
    padding: 18px 20px;
  }
  .stat-card__number {
    font-size: 1.3rem;
  }
  .countdown-block {
    font-size: 1.1rem;
    min-width: 42px;
    padding: 5px 8px;
  }
  .result__urgency {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .result__urgency-text {
    text-align: center;
  }
  .result__countdown {
    justify-content: center;
  }
  .result__guarantees {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .guarantee-item {
    justify-content: flex-start;
  }
}
