/* ── TOKENS ─────────────────────────────────── */
    :root {
      --cream:    #F8F3EA;
      --beige:    #EDE4D3;
      --beige-md: #D9CCBA;
      --gold:     #B8963E;
      --gold-dk:  #8A6E28;
      --gold-lt:  #F0DFA8;
      --brown:    #4A3728;
      --brown-md: #6B4F3A;
      --text:     #2C1F13;
      --muted:    #7A6255;
      --white:    #FFFDF8;
      --quote-bg: #2C1F13;
      --serif: 'Playfair Display', Georgia, serif;
      --sans:  'Lato', system-ui, sans-serif;
    }

    /* ── RESET ──────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background: var(--cream);
      color: var(--text);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: var(--gold-dk); text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* ── LAYOUT ─────────────────────────────────── */
    .page { max-width: 680px; margin: 0 auto; }

    /* ── HERO / CAPA ─────────────────────────────── */
    .hero {
      background: var(--brown);
      color: var(--white);
      padding: 56px 32px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 20%, rgba(184,150,62,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-eyebrow {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .hero-title {
      font-family: var(--serif);
      font-size: clamp(32px, 7vw, 52px);
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }
    .hero-aula {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 300;
      letter-spacing: 2px;
      color: var(--beige-md);
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .hero-divider {
      width: 48px;
      height: 2px;
      background: var(--gold);
      margin: 0 auto 28px;
    }
    .hero-tema {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(15px, 3vw, 18px);
      color: var(--gold-lt);
      max-width: 400px;
      margin: 0 auto 6px;
      line-height: 1.5;
    }
    .hero-subtema {
      font-size: 13px;
      color: var(--beige-md);
      margin-bottom: 36px;
    }
    .hero-photo {
      width: 100%;
      max-width: 480px;
      height: 200px;
      border-radius: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px dashed rgba(184,150,62,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 32px;
      color: rgba(184,150,62,0.5);
      font-size: 13px;
      font-style: italic;
    }
    .hero-formadora {
      font-size: 13px;
      color: var(--beige-md);
    }
    .hero-formadora strong {
      color: var(--gold-lt);
      font-family: var(--serif);
      font-size: 15px;
    }

    /* ── SECTIONS ──────────────────────────────── */
    section {
      padding: 40px 28px;
      border-bottom: 1px solid var(--beige);
    }
    section:last-of-type { border-bottom: none; }

    .section-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    h2 {
      font-family: var(--serif);
      font-size: clamp(20px, 4vw, 26px);
      font-weight: 600;
      line-height: 1.3;
      color: var(--brown);
      margin-bottom: 16px;
    }
    p {
      color: var(--text);
      margin-bottom: 14px;
    }
    p:last-child { margin-bottom: 0; }
    .muted { color: var(--muted); font-style: italic; }

    /* ── OBJECTIVES LIST ──────────────────────── */
    .obj-list { list-style: none; margin: 20px 0; }
    .obj-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--beige);
      font-size: 15px;
      color: var(--text);
    }
    .obj-list li:last-child { border-bottom: none; }
    .obj-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      margin-top: 7px;
      flex-shrink: 0;
    }
    .obj-note {
      margin-top: 16px;
      font-style: italic;
      color: var(--muted);
      font-size: 14px;
      border-left: 3px solid var(--gold-lt);
      padding-left: 14px;
    }

    /* ── QUOTE BLOCK ──────────────────────────── */
    .quote-block {
      background: var(--quote-bg);
      color: var(--white);
      padding: 48px 32px;
      text-align: center;
    }
    .quote-block blockquote {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(20px, 4vw, 28px);
      line-height: 1.45;
      color: var(--gold-lt);
      max-width: 480px;
      margin: 0 auto;
    }
    .quote-block blockquote::before { content: '\201C'; }
    .quote-block blockquote::after  { content: '\201D'; }

    /* ── AMBIENTES ─────────────────────────────── */
    .bullet-list { list-style: none; margin: 18px 0; }
    .bullet-list li {
      padding: 10px 0 10px 22px;
      position: relative;
      border-bottom: 1px solid var(--beige);
      font-size: 15px;
    }
    .bullet-list li:last-child { border-bottom: none; }
    .bullet-list li::before {
      content: '·';
      position: absolute;
      left: 6px;
      color: var(--gold);
      font-size: 20px;
      line-height: 1.4;
    }

    /* ── PHOTO PLACEHOLDER ─────────────────────── */
    .photo-placeholder {
      width: 100%;
      height: 180px;
      border-radius: 8px;
      background: var(--beige);
      border: 1px dashed var(--beige-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 24px 0;
      color: var(--muted);
      font-size: 13px;
      font-style: italic;
    }

    /* ── REFLECTION QUESTIONS ──────────────────── */
    .questions-bg {
      background: var(--beige);
    }
    .question-item {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(15px, 3vw, 18px);
      color: var(--brown-md);
      padding: 16px 0;
      border-bottom: 1px solid var(--beige-md);
      line-height: 1.5;
    }
    .question-item:last-child { border-bottom: none; }

    /* ── CANDIDATOS ────────────────────────────── */
    .candidates-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      margin-top: 20px;
    }
    .candidate-card {
      background: var(--white);
      border: 1px solid var(--beige-md);
      border-radius: 8px;
      padding: 20px 18px;
    }
    .candidate-number {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }
    .candidate-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--brown);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }
    .candidate-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55;
      margin: 0;
    }

    /* ── CHALLENGE QUOTE ──────────────────────── */
    .challenge-block {
      background: var(--gold-lt);
      padding: 36px 28px;
      text-align: center;
    }
    .challenge-block p {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(16px, 3vw, 20px);
      color: var(--brown);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.55;
    }
    .video-placeholder {
      width: 100%;
      height: 180px;
      border-radius: 8px;
      background: var(--beige);
      border: 1px dashed var(--beige-md);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 24px 0 0;
      color: var(--muted);
      font-size: 13px;
      font-style: italic;
      gap: 8px;
    }
    .play-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid var(--beige-md);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .play-icon::after {
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 0 7px 14px;
      border-color: transparent transparent transparent var(--beige-md);
      margin-left: 3px;
    }

    /* ── TWO COLUMNS ──────────────────────────── */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 20px;
    }
    @media (max-width: 520px) {
      .two-col { grid-template-columns: 1fr; }
    }
    .col-card {
      background: var(--white);
      border: 1px solid var(--beige-md);
      border-radius: 8px;
      padding: 22px 18px;
    }
    .col-card-title {
      font-family: var(--serif);
      font-weight: 600;
      font-size: 17px;
      color: var(--brown);
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--gold);
    }
    .col-list { list-style: none; }
    .col-list li {
      font-size: 14px;
      color: var(--text);
      padding: 7px 0 7px 18px;
      position: relative;
      border-bottom: 1px solid var(--beige);
      line-height: 1.5;
    }
    .col-list li:last-child { border-bottom: none; }
    .col-list li::before {
      content: '·';
      position: absolute;
      left: 4px;
      color: var(--gold);
      font-size: 18px;
      line-height: 1.4;
    }

    /* ── FINAL QUESTIONS ──────────────────────── */
    .final-questions {
      background: var(--brown);
      color: var(--white);
      padding: 48px 28px;
      text-align: center;
    }
    .final-questions h2 {
      color: var(--gold-lt);
      margin-bottom: 32px;
    }
    .final-q {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(16px, 3vw, 20px);
      color: var(--white);
      padding: 18px 0;
      border-bottom: 1px solid rgba(184,150,62,0.3);
      line-height: 1.5;
    }
    .final-q:last-of-type { border-bottom: none; }

    /* ── FOOTER ──────────────────────────────── */
    footer {
      background: var(--beige);
      padding: 40px 28px;
      text-align: center;
    }
    .footer-next {
      font-family: var(--serif);
      font-size: 13px;
      font-style: italic;
      color: var(--muted);
      margin-bottom: 4px;
    }
    .footer-aula {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 600;
      color: var(--brown);
      margin-bottom: 4px;
    }
    .footer-tema {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 20px;
    }
    .footer-logistica {
      font-size: 13px;
      color: var(--brown-md);
      margin-bottom: 4px;
    }
    .footer-bible {
      font-size: 13px;
      color: var(--gold-dk);
      font-style: italic;
      margin-bottom: 32px;
    }
    .footer-divider {
      width: 40px;
      height: 1px;
      background: var(--beige-md);
      margin: 0 auto 20px;
    }
    .footer-decolores {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 600;
      color: var(--gold-dk);
      margin-bottom: 6px;
    }
    .footer-site {
      font-size: 13px;
      color: var(--muted);
    }
    .footer-site a { color: var(--gold-dk); }