:root {
  /* Dark palette — derivado da brand BE: vinho profundo, rosa hot, dourado, cream */
  --bg: #0F070A;
  --bg-elev: #1B0E14;
  --bg-elev-2: #28141C;
  --bg-card: #1F1017;

  --text: #F5EFE6;
  --text-mute: #BDA98A;
  --text-dim: #7A6857;
  --text-faint: #4A3D34;

  --rosa: #E91E63;
  --rosa-soft: #FF4081;
  --rosa-dark: #AD1457;
  --rosa-tint: rgba(233, 30, 99, 0.08);

  --dourado: #C4AA7F;
  --dourado-soft: #D9C4A0;
  --dourado-dim: #806B4D;

  --vinho: #5C0E1D;
  --vinho-soft: #7A1E2E;

  --line: rgba(196, 170, 127, 0.18);
  --line-strong: rgba(196, 170, 127, 0.32);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;

  --max-w: 640px;
}

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

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at top, rgba(233, 30, 99, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at bottom, rgba(196, 170, 127, 0.04) 0%, transparent 60%),
    var(--bg);
}

::selection {
  background: var(--rosa);
  color: var(--text);
}

.dev-banner {
  background: var(--rosa-dark);
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 12px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: background 200ms;
}

.dev-banner:hover {
  background: var(--rosa);
}

.dev-banner.review-active {
  background: var(--dourado);
  color: #1a0c10;
  letter-spacing: 0.12em;
}

.dev-banner.review-active:hover {
  background: var(--dourado-soft);
}

/* Setas de navegação fixas — modo revisão */
#nav-arrows {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elev);
  border: 1px solid var(--dourado);
  border-radius: 999px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--rosa);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 200ms;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  line-height: 1;
}

.nav-arrow:hover {
  background: var(--rosa-soft);
  transform: scale(1.05);
}

.nav-arrow:active { transform: scale(0.95); }

.nav-status {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--dourado);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-width: 80px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.app {
  flex: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Progress bar */
.progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.progress-bar {
  flex: 1;
  height: 2px;
  background: var(--text-faint);
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--dourado), var(--rosa));
  width: 0%;
  transition: width 400ms ease;
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.4);
}

.progress-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--dourado);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Capa */
.capa {
  text-align: center;
  padding-top: 32px;
}

.capa-marca {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 28px;
  font-weight: 700;
}

.capa h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6.4vw, 52px);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}

.capa h1 em {
  font-style: italic;
  color: var(--rosa);
  font-weight: 500;
}

.capa .ornament {
  width: 48px;
  height: 1px;
  background: var(--dourado);
  margin: 0 auto 28px;
  opacity: 0.6;
}

.capa p.lead {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
  color: var(--text-mute);
  margin-bottom: 48px;
  font-weight: 400;
  font-style: italic;
}

.capa .meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 40px;
}

.capa .meta span {
  margin: 0 12px;
}

.capa .meta b {
  color: var(--dourado);
  font-weight: 700;
}

/* Email field */
.field {
  margin-bottom: 16px;
  text-align: left;
}

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
  font-weight: 700;
  margin-bottom: 12px;
}

.field input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  outline: none;
  transition: border-color 200ms;
}

.field input::placeholder {
  color: var(--text-faint);
  font-style: italic;
}

.field input:focus {
  border-bottom-color: var(--rosa);
}

.field .hint {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 10px;
  font-style: italic;
}

.field-error {
  color: var(--rosa-soft);
  font-size: 13px;
  margin-top: 10px;
  min-height: 18px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--rosa);
  color: #fff;
  border: 0;
  padding: 18px 36px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms, transform 100ms, box-shadow 200ms;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(233, 30, 99, 0.25);
}

.btn:hover {
  background: var(--rosa-soft);
  box-shadow: 0 6px 32px rgba(233, 30, 99, 0.4);
}
.btn:active { transform: translateY(1px); }
.btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-block { display: block; width: 100%; margin-top: 32px; }

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  padding: 14px 24px;
  letter-spacing: 0.16em;
  font-size: 11px;
  box-shadow: none;
}
.btn-ghost:hover {
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--rosa);
  border: 1px solid var(--rosa);
  padding: 16px 32px;
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--rosa);
  color: #fff;
  box-shadow: 0 4px 24px rgba(233, 30, 99, 0.4);
}

/* Pergunta */
.pergunta-context {
  font-family: var(--sans);
  font-style: normal;
  font-size: 17px;
  font-weight: 500;
  color: var(--dourado);
  margin-bottom: 16px;
  line-height: 1.45;
  letter-spacing: 0.005em;
}

.pergunta-enunciado {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 4.8vw, 32px);
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.012em;
}

.opcoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opcao {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  transition: all 180ms;
  text-align: left;
  font-family: var(--sans);
  position: relative;
}

.opcao:hover {
  border-color: var(--dourado);
  background: var(--bg-elev-2);
}

.opcao.selected {
  border-color: var(--rosa);
  background: var(--rosa-tint);
  box-shadow: inset 4px 0 0 var(--rosa), 0 0 24px rgba(233, 30, 99, 0.1);
}

.opcao-frase {
  font-family: var(--sans);
  font-style: normal;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

/* Slider */
.slider-wrap {
  padding: 24px 0;
}

.slider-value {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--rosa);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 0 30px rgba(233, 30, 99, 0.3);
}

.slider-value small {
  font-size: 18px;
  color: var(--text-mute);
  font-style: italic;
  margin-left: 8px;
  text-shadow: none;
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 2px;
  background: var(--line-strong);
}
input[type=range]::-moz-range-track {
  height: 2px;
  background: var(--line-strong);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 22px;
  width: 22px;
  background: var(--rosa);
  margin-top: -10px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(233, 30, 99, 0.5);
}
input[type=range]::-moz-range-thumb {
  height: 22px;
  width: 22px;
  background: var(--rosa);
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(233, 30, 99, 0.5);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 14px;
  font-weight: 700;
}

.slider-skip {
  display: block;
  margin: 28px auto 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-mute);
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 200ms;
}

.slider-skip:hover {
  border-color: var(--rosa);
  color: var(--text);
  background: var(--rosa-tint);
}

.slider-skip.active {
  background: var(--rosa);
  border-color: var(--rosa);
  color: #fff;
  box-shadow: 0 4px 18px rgba(233, 30, 99, 0.3);
}

.slider-wrap.skipped .slider-value,
.slider-wrap.skipped input[type=range],
.slider-wrap.skipped .slider-labels {
  opacity: 0.25;
  pointer-events: none;
  filter: grayscale(0.6);
  transition: opacity 200ms, filter 200ms;
}

/* Ranking */
.ranking-info {
  font-size: 16px;
  color: var(--dourado);
  font-style: normal;
  font-weight: 500;
  margin-bottom: 18px;
  font-family: var(--sans);
  line-height: 1.45;
}

.opcao-rank {
  display: flex;
  align-items: center;
  gap: 16px;
}

.opcao-rank .rank-badge {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-dim);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 180ms;
  font-weight: 600;
}

.opcao-rank.ranked .rank-badge {
  background: var(--rosa);
  color: #fff;
  border-color: var(--rosa);
  box-shadow: 0 0 12px rgba(233, 30, 99, 0.5);
}

/* Footer nav */
.q-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Loading */
.loading {
  text-align: center;
  padding: 96px 0;
}

.loading h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--text);
  font-weight: 400;
  min-height: 80px;
  line-height: 1.3;
}

.loading-dots {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--rosa);
  border-radius: 50%;
  margin: 0 4px;
  animation: pulse 1.4s ease-in-out infinite both;
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}
.loading-dots:nth-child(1) { animation-delay: -0.32s; }
.loading-dots:nth-child(2) { animation-delay: -0.16s; }

@keyframes pulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

/* Resultado */
.resultado h1.titulo-resultado {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 5.4vw, 42px);
  color: var(--text);
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.15;
}

.resultado h1.titulo-resultado em {
  color: var(--rosa);
  font-style: italic;
}

.resultado .label-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dourado);
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
}

.bloco {
  margin: 48px 0;
}

.divider {
  text-align: center;
  color: var(--dourado);
  font-size: 14px;
  letter-spacing: 1.2em;
  margin: 0 auto;
  width: 60px;
  opacity: 0.5;
}

.diagnostico-card {
  background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line);
  border-left: 3px solid var(--rosa);
  padding: 32px 28px 32px 32px;
  margin-top: 28px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.diagnostico-card::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--rosa);
  opacity: 0.18;
  line-height: 1;
}

.diagnostico-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
  position: relative;
}

.diagnostico-card p em {
  font-style: normal;
  color: var(--rosa);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
}

.bloco h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 10px;
}

.bloco h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.bloco .por-que {
  font-family: var(--sans);
  font-style: normal;
  color: var(--text-mute);
  font-size: 17px;
  margin-bottom: 24px;
  line-height: 1.55;
  font-weight: 400;
}

.aula-list {
  list-style: none;
}

.aula-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.aula-list li:last-child { border-bottom: 0; }

.aula-num {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--dourado);
  width: 40px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  font-weight: 500;
}

.aula-content { flex: 1; }

.aula-titulo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}

.aula-desc {
  font-size: 14px;
  color: var(--text-mute);
  font-style: italic;
}

/* Tarefas */
.tarefa-list {
  list-style: none;
  margin-top: 16px;
}

.tarefa {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: opacity 200ms;
}

.tarefa:last-child { border-bottom: 0; }

.tarefa-check {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--rosa);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 200ms;
  position: relative;
  background: transparent;
}

.tarefa.done .tarefa-check {
  background: var(--rosa);
  box-shadow: 0 0 14px rgba(233, 30, 99, 0.5);
}

.tarefa.done .tarefa-check::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.tarefa-body { flex: 1; }

.tarefa-titulo {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.35;
}

.tarefa.done {
  opacity: 0.5;
}

.tarefa.done .tarefa-titulo {
  text-decoration: line-through;
}

.tarefa-desc {
  font-size: 14px;
  color: var(--text-mute);
  font-style: italic;
  line-height: 1.45;
}

.tarefa-tempo {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  font-weight: 700;
  margin-top: 8px;
  display: inline-block;
}

/* Avulsa list */
.avulsa-list {
  list-style: none;
}

.avulsa-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.avulsa-list li:last-child { border-bottom: 0; }

.avulsa-titulo {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.avulsa-titulo .modulo-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rosa);
  font-weight: 700;
  margin-left: 10px;
  padding: 3px 8px;
  border: 1px solid var(--rosa);
  border-radius: 2px;
  vertical-align: middle;
}

.avulsa-desc {
  font-size: 14px;
  color: var(--text-mute);
  font-style: italic;
  line-height: 1.5;
}

.actions-resultado {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Animação de entrada da tela */
.screen {
  animation: fadeIn 360ms ease;
}

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

/* Footer da pagina */
.app-footer {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  margin-top: 48px;
  font-weight: 700;
}

.app-footer span {
  color: var(--dourado);
}

@media (max-width: 480px) {
  .app { padding: 24px 18px 48px; }
  .capa { padding-top: 12px; }
  .opcao { padding: 16px 18px; font-size: 14px; }
  .opcao-frase { font-size: 14px; }
  .pergunta-enunciado { font-size: 24px; }
  .diagnostico-card p { font-size: 18px; }
  .diagnostico-card { padding: 28px 22px 28px 26px; }
  .bloco h2 { font-size: 26px; }
  .slider-value { font-size: 52px; }
}

@media print {
  body { background: #fff !important; color: #000 !important; }
  .dev-banner, .progress-wrap, .actions-resultado, .q-footer { display: none !important; }
}

/* =========================================
   PDF MODE — tema claro otimizado pra impressão
   ========================================= */
.pdf-export {
  background: #FAF7F0 !important;
  color: #2A1A1A !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  padding: 32px !important;
  width: 720px !important;
  max-width: 720px !important;
}

.pdf-export * {
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.pdf-export .label-tag {
  color: #C4AA7F !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 12px !important;
  display: block !important;
}

.pdf-export h1.titulo-resultado {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 32px !important;
  color: #5C0E1D !important;
  text-align: center !important;
  margin-bottom: 8px !important;
  line-height: 1.15 !important;
}

.pdf-export h1.titulo-resultado em {
  color: #E91E63 !important;
  font-style: italic !important;
}

.pdf-export .diagnostico-card {
  background: #F2EDE0 !important;
  border-left: 3px solid #E91E63 !important;
  border-top: 1px solid #E5DAC4 !important;
  border-right: 1px solid #E5DAC4 !important;
  border-bottom: 1px solid #E5DAC4 !important;
  padding: 24px !important;
  margin: 24px 0 !important;
}

.pdf-export .diagnostico-card::before {
  display: none !important;
}

.pdf-export .diagnostico-card p {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-style: italic !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
  color: #5C0E1D !important;
  font-weight: 400 !important;
}

.pdf-export .diagnostico-card p em {
  font-style: normal !important;
  color: #E91E63 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  background: rgba(233, 30, 99, 0.08) !important;
  padding: 1px 4px !important;
}

.pdf-export .bloco {
  margin: 24px 0 !important;
  page-break-inside: avoid !important;
}

.pdf-export .divider {
  text-align: center !important;
  color: #C4AA7F !important;
  font-size: 12px !important;
  letter-spacing: 1.2em !important;
  width: 60px !important;
  margin: 0 auto !important;
  opacity: 0.6 !important;
}

.pdf-export .bloco h3 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: #E91E63 !important;
  margin-bottom: 6px !important;
}

.pdf-export .bloco h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 22px !important;
  color: #2A1A1A !important;
  margin-bottom: 6px !important;
  line-height: 1.2 !important;
}

.pdf-export .bloco .por-que {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-style: normal !important;
  color: #6B5F5F !important;
  font-size: 13px !important;
  margin-bottom: 14px !important;
  line-height: 1.5 !important;
}

.pdf-export .aula-list,
.pdf-export .tarefa-list,
.pdf-export .avulsa-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pdf-export .aula-list li,
.pdf-export .tarefa-list li,
.pdf-export .avulsa-list li {
  display: flex !important;
  gap: 12px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid #E5DAC4 !important;
  page-break-inside: avoid !important;
}

.pdf-export .aula-list li:last-child,
.pdf-export .tarefa-list li:last-child,
.pdf-export .avulsa-list li:last-child {
  border-bottom: 0 !important;
}

.pdf-export .aula-num {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 18px !important;
  color: #C4AA7F !important;
  width: 28px !important;
  flex-shrink: 0 !important;
}

.pdf-export .aula-titulo,
.pdf-export .tarefa-titulo,
.pdf-export .avulsa-titulo {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #2A1A1A !important;
  line-height: 1.3 !important;
  margin-bottom: 2px !important;
}

.pdf-export .aula-desc,
.pdf-export .tarefa-desc,
.pdf-export .avulsa-desc {
  font-size: 12px !important;
  color: #6B5F5F !important;
  font-style: italic !important;
  line-height: 1.4 !important;
}

.pdf-export .tarefa-check {
  width: 16px !important;
  height: 16px !important;
  border: 1.5px solid #E91E63 !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  background: transparent !important;
}

.pdf-export .tarefa-tempo {
  font-size: 10px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #C4AA7F !important;
  font-weight: 700 !important;
  margin-top: 4px !important;
  display: inline-block !important;
}

.pdf-export .modulo-tag {
  display: inline-block !important;
  font-size: 9px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #E91E63 !important;
  font-weight: 700 !important;
  margin-left: 8px !important;
  padding: 2px 6px !important;
  border: 1px solid #E91E63 !important;
  vertical-align: middle !important;
}

.pdf-export .pdf-header {
  text-align: center !important;
  margin-bottom: 24px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #E5DAC4 !important;
}

.pdf-export .pdf-header .pdf-brand {
  font-size: 11px !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  color: #C4AA7F !important;
  font-weight: 700 !important;
}

.pdf-export .pdf-header .pdf-data {
  font-size: 11px !important;
  color: #6B5F5F !important;
  margin-top: 4px !important;
}

.pdf-export .pdf-footer {
  margin-top: 32px !important;
  padding-top: 16px !important;
  border-top: 1px solid #E5DAC4 !important;
  text-align: center !important;
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #6B5F5F !important;
  font-weight: 700 !important;
}

.pdf-export .pdf-footer b {
  color: #C4AA7F !important;
}
