/* ============================================
   CLUBE DO ENXOVAL — QUIZ
   Design System & Estilos
   ============================================ */

:root {
  --color-primary:       #B8294A;
  --color-primary-dark:  #8E1F39;
  --color-primary-soft:  #F9E8EC;

  --color-text:           #2A2A2A;
  --color-text-secondary: #6B6B6B;
  --color-bg:             #FAFAFA;
  --color-bg-card:        #FFFFFF;
  --color-border:         #E5E5E5;

  --color-success: #7C9885;
  --color-error:   #D64545;

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { color: inherit; text-decoration: none; }
input { font-family: inherit; }

/* ============================================
   TELAS — Sistema de navegação
   ============================================ */
.screen {
  display: none;
  min-height: 100vh;
  flex-direction: column;
  animation: fadeIn 300ms ease forwards;
}
.screen.active { display: flex; }

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

/* ============================================
   CONTAINERS
   ============================================ */
.landing-container,
.quiz-container,
.result-container {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ============================================
   TELA 1 — LANDING
   ============================================ */
.landing-container { padding-bottom: 32px; }

.landing-header {
  padding: 32px 0 24px;
  display: flex;
  justify-content: center;
}

.logo-landing {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.landing-headline {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 14px;
}

.landing-headline strong {
  color: var(--color-primary);
}

.headline-destaque {
  display: inline-block;
  background: var(--color-primary);
  color: white !important;
  padding: 0 6px;
  border-radius: 4px;
}

.landing-subheadline {
  font-size: 16px;
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 28px;
}

.landing-subheadline strong {
  color: var(--color-text);
  font-weight: 700;
}

.hero-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.hero-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.landing-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.selos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* ============================================
   QUIZ HEADER
   ============================================ */
.quiz-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0 8px;
}

.btn-back {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background 200ms ease;
  flex-shrink: 0;
}
.btn-back:hover { background: var(--color-border); }
.btn-back:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  flex: 1;
}
.logo-icon { font-size: 18px; }

/* ============================================
   BARRA DE PROGRESSO
   ============================================ */
.progress-bar-wrapper { margin-bottom: 28px; }

.progress-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.progress-track {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 400ms ease;
}

/* ============================================
   CORPO DA PERGUNTA
   ============================================ */
.question-body { flex: 1; }

.question-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--color-text);
}

.question-subtitle {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ============================================
   CARDS DE OPÇÃO
   ============================================ */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: left;
  transition: all 200ms ease;
  min-height: 60px;
  width: 100%;
  position: relative;
}

.option-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  border-color: #d4a0ac;
}

.option-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.option-card.selected {
  border: 2px solid var(--color-primary);
  background: var(--color-primary-soft);
  box-shadow: var(--shadow-md);
}

.option-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.option-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.option-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.option-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* Indicador de seleção (single) — círculo estilo radio */
.option-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 200ms ease;
}

.option-card.selected .option-check {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.option-card.selected .option-check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -62%) rotate(45deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

/* Checkbox custom (multi-select) */
.option-checkbox .checkbox-icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 200ms ease;
}

.option-checkbox.selected .checkbox-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.option-checkbox.selected .checkbox-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -62%) rotate(45deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

/* ============================================
   DATE PICKER (Q1)
   ============================================ */
.date-card {
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.date-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.date-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px; /* 16px evita zoom automático no iOS */
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border 200ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.date-input:focus {
  outline: none;
  border: 2px solid var(--color-primary);
}

.date-input.valid { border-color: var(--color-success); }

/* ============================================
   FORMULÁRIO (Q8 — Captura de contato)
   ============================================ */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 16px;
  font-size: 16px; /* evita zoom iOS */
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  background: var(--color-bg-card);
  transition: border 200ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border: 2px solid var(--color-primary);
}

.form-input.valid   { border-color: var(--color-success); }
.form-input.invalid { border-color: var(--color-error); }

.form-error {
  display: block;
  font-size: 13px;
  color: var(--color-error);
  margin-top: 4px;
  min-height: 18px;
}

.form-disclaimer {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: 4px;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn-primary {
  background: var(--color-primary);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: var(--radius-md);
  transition: all 200ms ease;
  min-height: 56px;
  letter-spacing: 0.02em;
  text-align: center;
}

.btn-primary:hover:not(:disabled) { background: var(--color-primary-dark); }
.btn-primary:active:not(:disabled) { transform: scale(0.98); }
.btn-primary:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }
.btn-primary:disabled { background: #D4A0AC; cursor: not-allowed; }

.btn-full { width: 100%; display: block; }

.btn-cta {
  font-size: 17px;
  padding: 20px 32px;
  min-height: 64px;
  letter-spacing: 0.03em;
}

/* ============================================
   RODAPÉ DO QUIZ (área do botão Próxima)
   ============================================ */
.quiz-footer {
  padding: 20px 0 32px;
  margin-top: auto;
}

/* ============================================
   TELA LOADING
   ============================================ */
#screen-loading {
  justify-content: center;
  align-items: center;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 32px;
  padding: 24px;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-msg {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  max-width: 300px;
  line-height: 1.5;
  transition: opacity 250ms ease;
}

/* ============================================
   TELA RESULTADO — Estilo App
   ============================================ */
.result-container { padding-bottom: 40px; }
.result-header { padding: 20px 0 8px; }

/* Saudação personalizada */
.result-greeting {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.25;
}

/* Card Contagem Regressiva */
.countdown-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  margin-bottom: 12px;
}

.countdown-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.countdown-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.countdown-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  margin: 4px 0 6px;
}

.countdown-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.countdown-emoji {
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
}

/* Resumo: Investimento + Economia */
.resumo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.resumo-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.resumo-card--destaque { background: var(--color-primary-soft); }

.resumo-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.resumo-value {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
}

.resumo-card--destaque .resumo-value { color: var(--color-primary); }

/* Card "Explicação do seu Enxoval" */
.explicacao-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 28px;
  cursor: pointer;
  text-align: left;
  transition: box-shadow 200ms ease;
  border: none;
}

.explicacao-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.explicacao-card:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

.explicacao-icon-wrap {
  width: 48px;
  height: 48px;
  background: #FFF3D0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.explicacao-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.explicacao-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.explicacao-sub {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.explicacao-arrow {
  font-size: 26px;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  line-height: 1;
}

/* Título Categorias */
.app-categorias-titulo {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 14px;
}

/* Grid categorias estilo app (3 colunas) */
.app-categorias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.app-cat-card {
  background: var(--color-bg-card);
  border-radius: 16px;
  padding: 14px 6px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.app-cat-circle {
  width: 54px;
  height: 54px;
  background: var(--color-primary-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.app-cat-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.app-cat-count {
  font-size: 11px;
  color: var(--color-text-secondary);
  font-weight: 600;
  background: var(--color-border);
  border-radius: 20px;
  padding: 2px 8px;
}

/* Destaque Roupas */
.app-cat-card--roupas .app-cat-circle {
  background: var(--color-primary-soft);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.app-cat-card--roupas .app-cat-count {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

/* CTA pré-vídeo */
.pre-video-cta {
  background: linear-gradient(135deg, #FFF0F3 0%, #FFE4EC 100%);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 20px 18px 14px;
  margin-bottom: 20px;
  text-align: center;
}

.pre-video-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.65;
}

.pre-video-text strong {
  color: var(--color-primary);
  font-weight: 800;
}

.pre-video-arrow {
  display: block;
  font-size: 26px;
  margin-top: 10px;
  animation: bounceDown 1.2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* Botão CTA bloqueado */
.btn-cta--locked {
  background: #C2C2C2 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  transform: none !important;
  font-size: 14px;
  letter-spacing: 0.01em;
}

/* Texto acima do vídeo */
.pre-video-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-secondary);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 14px;
}

.pre-video-label strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* Video */
.video-wrapper {
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-placeholder {
  background: #1a1a1a;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: white;
  opacity: 0.85;
}

.play-icon { font-size: 52px; }

.video-placeholder-inner p {
  font-size: 14px;
  font-weight: 500;
}

/* CTA com gradiente */
.btn-cta-gradient {
  width: 100%;
  display: block;
  background: linear-gradient(135deg, #B8294A 0%, #E05578 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-align: center;
  min-height: 64px;
  transition: all 220ms ease;
  box-shadow: 0 4px 20px rgba(184, 41, 74, 0.35);
  margin-bottom: 16px;
}

.btn-cta-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 41, 74, 0.48);
}

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

.selos--result { margin-bottom: 8px; font-size: 13px; }

/* ============================================
   VÍDEO VERTICAL (9:16)
   ============================================ */
.video-wrapper--vertical .video-placeholder {
  aspect-ratio: 9 / 16;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}


/* ============================================
   MODAL — LÓGICA DO ENXOVAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 300ms ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.modal-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text-secondary);
  border-radius: 50%;
  transition: background 200ms ease;
  cursor: pointer;
}
.modal-close:hover { background: var(--color-border); }

.modal-body {
  padding: 20px 24px 32px;
  overflow-y: auto;
  flex: 1;
  line-height: 1.7;
  font-size: 14px;
  color: var(--color-text);
}

.modal-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 20px 0 6px;
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 8px; color: var(--color-text-secondary); }

.modal-config-box {
  background: var(--color-primary-soft);
  border: 1px solid #f0c4cd;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.modal-config-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.modal-config-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}
.modal-config-item:last-child { margin-bottom: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 12px;
  color: var(--color-text-secondary);
  transition: color 200ms ease;
}

.footer-links a:hover { color: var(--color-primary); }
.footer-links a:focus-visible { outline: 2px solid var(--color-primary); border-radius: 2px; }

.footer-copy {
  font-size: 12px;
  color: var(--color-text-secondary);
}

/* ============================================
   RESPONSIVO — Desktop
   ============================================ */
@media (min-width: 768px) {
  .landing-headline     { font-size: 36px; }
  .landing-subheadline  { font-size: 18px; }
  .question-title       { font-size: 26px; }
  .result-headline      { font-size: 26px; }
  .result-card-value    { font-size: 28px; }

  .landing-container,
  .quiz-container,
  .result-container { padding: 0 32px; }
}

/* ============================================
   RESULTADO — MIRROR BLOCK
   ============================================ */
.result-mirror {
  background: var(--color-primary-soft);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin-bottom: 20px;
}

.result-mirror-intro {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 10px;
  font-weight: 500;
}

.result-mirror-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.result-mirror-tags span {
  background: white;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.result-mirror-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

/* ============================================
   RESULTADO — TOTAL DE ITENS
   ============================================ */
.result-total-bloco {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.result-total-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 600;
  margin-bottom: 4px;
}

.result-total-num {
  font-size: 64px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin: 4px 0 6px;
}

.result-total-sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.result-total-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   RESULTADO — CATEGORIAS COM AMOSTRAS
   ============================================ */
.result-cat-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.result-cat-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}

.result-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.result-cat-icon { font-size: 22px; flex-shrink: 0; }

.result-cat-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  flex: 1;
}

.result-cat-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.result-cat-samples {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin: 0;
  padding-left: 32px;
}

.result-cat-samples em { font-style: italic; }

/* ============================================
   RESULTADO — PIVOT COPY
   ============================================ */
.result-pivot {
  background: #FFF8F0;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 20px 18px;
  margin-bottom: 24px;
}

.result-pivot p { font-size: 15px; color: var(--color-text); line-height: 1.6; margin-bottom: 10px; }
.result-pivot p:last-child { margin-bottom: 0; }

.result-pivot-destaque {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--color-primary) !important;
}

.result-pivot-bold {
  font-weight: 700 !important;
}

.result-pivot-lista {
  padding-left: 20px;
  margin: 8px 0;
}

.result-pivot-lista li {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ============================================
   RESULTADO — APP FEATURES
   ============================================ */
.result-features {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.result-features-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 8px;
}

.result-features-sub {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.result-features-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-features-lista li {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.4;
}

.result-features-fechamento {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   RESULTADO — OFERTA (dois planos)
   ============================================ */
.result-oferta {
  margin-bottom: 24px;
}

.result-oferta-titulo {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 4px;
}

.result-oferta-sub {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 16px;
}

.planos-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}

.plano-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
}

.plano-card--destaque {
  border-color: var(--color-primary);
  background: #FFF5F7;
}

.plano-badge {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.plano-titulo {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 4px;
}

.plano-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.plano-preco-de {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.plano-preco-por {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.plano-preco-periodo {
  font-size: 16px;
  font-weight: 600;
}

.plano-preco-detalhe {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}

.plano-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plano-lista li {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.4;
}

.plano-btn-secundario {
  background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%) !important;
  box-shadow: 0 4px 16px rgba(107, 114, 128, 0.3) !important;
}

.plano-btn-secundario:hover {
  box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4) !important;
}

.plano-acesso {
  font-size: 12px;
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0;
}

.result-oferta-seguranca {
  font-size: 12px;
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0;
}

/* ============================================
   RESULTADO — GARANTIA
   ============================================ */
.result-garantia {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  margin-bottom: 24px;
}

.result-garantia-titulo {
  font-size: 16px;
  font-weight: 800;
  color: #166534;
  margin-bottom: 10px;
}

.result-garantia p {
  font-size: 14px;
  color: #15803D;
  line-height: 1.6;
  margin-bottom: 8px;
}

.result-garantia p:last-child { margin-bottom: 0; }

.result-garantia-assinatura {
  font-weight: 700 !important;
  color: #166534 !important;
}

.result-garantia-assinatura span {
  font-weight: 400;
  font-size: 12px;
  display: block;
}

/* ============================================
   RESULTADO — FECHAMENTO EMOCIONAL
   ============================================ */
.result-fechamento {
  background: var(--color-primary-soft);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  margin-bottom: 32px;
  text-align: center;
}

.result-fechamento p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 8px;
}

.result-fechamento p:last-child { margin-bottom: 0; }

.result-fechamento-titulo {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.result-fechamento-assina {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--color-primary) !important;
}

/* ============================================
   PLANOS CDE (design da landing page)
   ============================================ */
.cde-plans-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.cde-plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid #f0f0f0;
  position: relative;
}

.cde-plan-card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
}

.cde-plan-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.cde-plan-badge-off {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FF4D6D;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
}

.cde-plan-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.cde-plan-icon--pink { background: #fff0f2; }
.cde-plan-icon--gold { background: #fff8e1; }

.cde-plan-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 4px;
}

.cde-plan-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cde-plan-anchor {
  font-size: 13px;
  color: #aaa;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.cde-plan-price {
  font-size: 44px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 2px;
}

.cde-plan-price sup {
  font-size: 18px;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}

.cde-plan-period {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.cde-plan-economy {
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 4px;
}

.cde-plan-spacer { height: 8px; }

.cde-plan-fee {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 12px;
}

.cde-plan-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 12px 0;
}

.cde-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cde-plan-features li {
  font-size: 13px;
  color: var(--color-text);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.cde-plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 800;
}

.cde-plan-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #B8294A 0%, #E05578 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 20px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(184,41,74,0.35);
  transition: all 220ms ease;
  margin-bottom: 8px;
}

.cde-plan-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(184,41,74,0.45); }

.cde-plan-btn--urgency {
  background: linear-gradient(135deg, #7C3AED 0%, #B8294A 100%);
  box-shadow: 0 4px 16px rgba(124,58,237,0.35);
}

.cde-plan-btn--urgency:hover { box-shadow: 0 6px 22px rgba(124,58,237,0.45); }

.cde-plan-btn-sub {
  font-size: 11px;
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0;
}

/* Urgência entre os cards */
.cde-urgency-between {
  padding: 0 4px;
}

.cde-urgency-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cde-urgency-banner__pulse {
  width: 10px;
  height: 10px;
  background: #FF4D6D;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-red 1.2s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,109,0.7); }
  50%       { box-shadow: 0 0 0 8px rgba(255,77,109,0); }
}

.cde-urgency-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cde-urgency-banner__label {
  font-size: 11px;
  font-weight: 800;
  color: #FF4D6D;
  letter-spacing: 0.05em;
}

.cde-urgency-banner__date {
  font-size: 12px;
  color: #e2e8f0;
}

/* Countdown */
.cde-countdown {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 12px 16px;
}

.cde-countdown__label {
  font-size: 11px;
  color: var(--color-text-secondary);
  margin-bottom: 10px;
  text-align: center;
}

.cde-countdown__blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cde-countdown__block {
  background: var(--color-primary);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  min-width: 60px;
}

.cde-countdown__value {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cde-countdown__unit {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.cde-countdown__separator {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
}

/* CTA acima das categorias */
.cat-cta-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 500;
}

/* Modal de categoria */
.cat-modal-box {
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow: hidden;
}

.cat-modal-header {
  flex-shrink: 0;
  padding: 12px 16px 0;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 12px;
}

.cat-modal-watermark {
  font-size: 9px;
  color: #ccc;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.cat-modal-titulo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-modal-icon-wrap {
  width: 36px;
  height: 36px;
  background: #fff0f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

/* Lista de itens */
.cat-item-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-item {
  background: #fafafa;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #f0f0f0;
}

.cat-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.cat-item-nome {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.cat-item-qty {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cat-item-spec {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* Popup especial de roupas */
.cat-modal-especial {
  text-align: center;
  padding: 8px 4px;
}

.cat-modal-especial-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.cat-modal-especial-count {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.cat-modal-especial-titulo {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 12px;
}

.cat-modal-especial-texto {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Cadeado nas categorias bloqueadas */
.cat-lock-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 10px;
  line-height: 1;
}

.cat-card-locked {
  opacity: 0.75;
  background: #f7f7f7 !important;
}

/* Botão de scroll para o plano anual */
.cde-plan-btn--scroll {
  background: transparent !important;
  border: 2px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
  box-shadow: none !important;
  font-size: 13px;
  margin-top: -8px;
}

.cde-plan-btn--scroll:hover {
  background: var(--color-primary-soft) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Glass card para as categorias do resultado */
.category-card.glass-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100px;
  transition: transform 200ms ease;
}
