{"id":243,"date":"2025-09-30T19:05:20","date_gmt":"2025-09-30T19:05:20","guid":{"rendered":"https:\/\/cuentoskecuentan.com\/?p=243"},"modified":"2025-10-01T13:19:56","modified_gmt":"2025-10-01T13:19:56","slug":"romanos-12","status":"publish","type":"post","link":"https:\/\/cuentoskecuentan.com\/?p=243","title":{"rendered":"Romanos 12"},"content":{"rendered":"\n<p>Te dejamos este ejercicio para repasar el pasaje de Romanos 12, seg\u00fan la versi\u00f3n Reina Valera. <\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"es\">\n<head>\n  <meta charset=\"UTF-8\" \/>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\/>\n  <title>Repaso de Romanos 12 &#8211; RVR1960<\/title>\n  <style>\n    body {\n      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n      background-color: #f8f4f9;\n      color: #333;\n      margin: 0;\n      padding: 0;\n    }\n\n    header {\n      background-color: #793d7a;\n      color: white;\n      padding: 20px;\n      text-align: center;\n    }\n\n    .container {\n      max-width: 800px;\n      margin: 30px auto;\n      padding: 20px;\n      background-color: #fff;\n      border: 2px solid #793d7a;\n      border-radius: 10px;\n      box-shadow: 0 4px 8px rgba(121, 61, 122, 0.2);\n    }\n\n    .question {\n      font-size: 1.2em;\n      margin-bottom: 15px;\n    }\n\n    .options button {\n      display: block;\n      width: 100%;\n      margin: 10px 0;\n      padding: 10px;\n      font-size: 1em;\n      background-color: #e2d4e3;\n      border: 2px solid #793d7a;\n      border-radius: 5px;\n      cursor: pointer;\n      transition: background-color 0.3s;\n      color: black; \/* \u2190 Aqu\u00ed cambi\u00e9 el color de texto de blanco a negro *\/\n    }\n\n    .options button:hover {\n      background-color: #d0b3d1;\n    }\n\n    .score {\n      font-size: 1.5em;\n      font-weight: bold;\n      text-align: center;\n      color: #793d7a;\n    }\n\n    .btn-restart {\n      background-color: #793d7a;\n      color: white;\n      padding: 10px 20px;\n      border: none;\n      font-size: 1em;\n      border-radius: 5px;\n      cursor: pointer;\n      display: block;\n      margin: 20px auto 0;\n    }\n\n    .btn-restart:hover {\n      background-color: #5e2f5f;\n    }\n  <\/style>\n<\/head>\n<body>\n\n<header>\n  <h1>Repasa Romanos 12 &#8211; RVR1960<\/h1>\n  <p>\u00bfCu\u00e1nto recuerdas del cap\u00edtulo?<\/p>\n<\/header>\n\n<div class=\"container\" id=\"quiz-container\">\n  <div id=\"quiz\">\n    <div class=\"question\" id=\"question\"><\/div>\n    <div class=\"options\" id=\"options\"><\/div>\n  <\/div>\n  <div class=\"score\" id=\"score\" style=\"display: none;\"><\/div>\n  <button class=\"btn-restart\" id=\"restart\" style=\"display: none;\">Reiniciar<\/button>\n<\/div>\n\n<script>\n  const quizData = [\n    {\n      question: \"\u00bfC\u00f3mo debemos presentar nuestros cuerpos, seg\u00fan Romanos 12:1?\",\n      options: [\n        \"Como un sacrificio vivo, santo, agradable a Dios\",\n        \"Como un siervo obediente a la ley\",\n        \"Como un cuerpo lavado por agua\",\n        \"Como una ofrenda quemada\"\n      ],\n      answer: 0\n    },\n    {\n      question: \"\u00bfQu\u00e9 no debemos conformarnos a, seg\u00fan Romanos 12:2?\",\n      options: [\n        \"La voluntad de Dios\",\n        \"Las riquezas de este siglo\",\n        \"A este siglo\",\n        \"Las tentaciones del enemigo\"\n      ],\n      answer: 2\n    },\n    {\n      question: \"\u00bfQu\u00e9 se menciona como parte del amor en Romanos 12:9?\",\n      options: [\n        \"El amor todo lo espera\",\n        \"El amor sea sin fingimiento\",\n        \"El amor no tiene envidia\",\n        \"El amor es benigno\"\n      ],\n      answer: 1\n    },\n    {\n      question: \"\u00bfQu\u00e9 debemos hacer con nuestros enemigos, seg\u00fan Romanos 12:20?\",\n      options: [\n        \"Orar por ellos desde lejos\",\n        \"Reprenderlos con severidad\",\n        \"Darles de comer y beber\",\n        \"Evitar toda relaci\u00f3n con ellos\"\n      ],\n      answer: 2\n    },\n    {\n      question: \"\u00bfC\u00f3mo vencemos el mal, seg\u00fan Romanos 12:21?\",\n      options: [\n        \"Con la justicia\",\n        \"Con oraci\u00f3n y ayuno\",\n        \"Con palabras sabias\",\n        \"Con el bien\"\n      ],\n      answer: 3\n    }\n  ];\n\n  let currentQuestion = 0;\n  let score = 0;\n\n  const questionEl = document.getElementById('question');\n  const optionsEl = document.getElementById('options');\n  const scoreEl = document.getElementById('score');\n  const restartBtn = document.getElementById('restart');\n\n  function loadQuestion() {\n    const q = quizData[currentQuestion];\n    questionEl.textContent = q.question;\n    optionsEl.innerHTML = '';\n\n    q.options.forEach((option, index) => {\n      const btn = document.createElement('button');\n      btn.textContent = option;\n      btn.onclick = () => selectAnswer(index);\n      optionsEl.appendChild(btn);\n    });\n  }\n\n  function selectAnswer(index) {\n    const isCorrect = index === quizData[currentQuestion].answer;\n    if (isCorrect) score++;\n\n    currentQuestion++;\n    if (currentQuestion < quizData.length) {\n      loadQuestion();\n    } else {\n      showScore();\n    }\n  }\n\n  function showScore() {\n    questionEl.style.display = 'none';\n    optionsEl.style.display = 'none';\n    scoreEl.style.display = 'block';\n    restartBtn.style.display = 'block';\n    scoreEl.textContent = `Obtuviste ${score} de ${quizData.length} respuestas correctas.`;\n  }\n\n  restartBtn.addEventListener('click', () => {\n    currentQuestion = 0;\n    score = 0;\n    questionEl.style.display = 'block';\n    optionsEl.style.display = 'block';\n    scoreEl.style.display = 'none';\n    restartBtn.style.display = 'none';\n    loadQuestion();\n  });\n\n  loadQuestion();\n<\/script>\n\n<\/body>\n<\/html>\n\n","protected":false},"excerpt":{"rendered":"<p>Te dejamos este ejercicio para repasar el pasaje de Romanos 12, seg\u00fan la versi\u00f3n Reina Valera. Repaso de Romanos 12 &#8211; RVR1960 Repasa Romanos 12 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-243","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/cuentoskecuentan.com\/index.php?rest_route=\/wp\/v2\/posts\/243","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cuentoskecuentan.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cuentoskecuentan.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cuentoskecuentan.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cuentoskecuentan.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=243"}],"version-history":[{"count":9,"href":"https:\/\/cuentoskecuentan.com\/index.php?rest_route=\/wp\/v2\/posts\/243\/revisions"}],"predecessor-version":[{"id":273,"href":"https:\/\/cuentoskecuentan.com\/index.php?rest_route=\/wp\/v2\/posts\/243\/revisions\/273"}],"wp:attachment":[{"href":"https:\/\/cuentoskecuentan.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=243"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cuentoskecuentan.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=243"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cuentoskecuentan.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=243"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}