@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
body {
  counter-reset: section;
}

h1 {
  counter-increment: section;
  counter-reset: subsection;
  font-size: 1.8em;
  font-weight: bold;
  margin: 20px 0 10px;
  padding-bottom: 5px;
}
h1::before {
  content: counter(section) " ";
}

h2 {
  counter-increment: subsection;
  counter-reset: subsubsection;
  font-size: 1.5em;
  font-weight: bold;
  margin: 15px 0 8px;
  padding-bottom: 4px;
}
h2::before {
  content: counter(section) "." counter(subsection) " ";
}

h3 {
  counter-increment: subsubsection;
  font-size: 1.3em;
  font-weight: bold;
  margin: 12px 0 6px;
  padding-bottom: 3px;
}
h3::before {
  content: counter(section) "." counter(subsection) "." counter(subsubsection) " ";
}

h4 {
  counter-increment: subsubsubsection;
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0 5px;
}
h4::before {
  content: counter(section) "." counter(subsection) "." counter(subsubsection) "." counter(subsubsubsection) " ";
}

.question-list {
  counter-reset: list-counter;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.question-list p {
  margin: 15px 0 5px;
}
.question-list p strong {
  font-weight: bold;
}
.question-list ol {
  padding-left: 0;
  margin: 10px 0;
}
.question-list ol li {
  counter-increment: list-counter;
  list-style: none;
  padding: 4px 0;
}
.question-list ol li::before {
  content: counter(list-counter) ". ";
  font-weight: bold;
  margin-right: 5px;
}

body {
  font-family: "Open Sans", sans-serif;
  padding: 20px;
  line-height: 1.6;
  color: #333;
}
body ul, body ol {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 25px;
}
body ul li, body ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
body h1, body h2, body h3 {
  color: #333;
  margin-top: 25px;
  margin-bottom: 15px;
}
body h1 {
  font-size: 24px;
  font-weight: 700;
}
body h2 {
  font-size: 20px;
  font-weight: 600;
}
body h3 {
  font-size: 18px;
  font-weight: 600;
}
body p {
  margin-top: 12px;
  margin-bottom: 12px;
}
body .persona {
  margin-bottom: 30px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}
body table th, body table td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}
body table th {
  background-color: #f4f4f4;
  font-weight: 600;
}
body .post-it-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
body .post-it-container .stage-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
}
body .post-it-container .stage-column .post-it {
  padding: 10px;
  border-radius: 5px;
  color: #333;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
}
body .post-it-container .stage-column .post-it.objective {
  background-color: #FFFF99;
  /* yellow */
}
body .post-it-container .stage-column .post-it.behaviour {
  background-color: #FFA500;
  /* orange */
}
body .post-it-container .stage-column .post-it.positive-feeling {
  background-color: #98FB98;
  /* light green */
}
body .post-it-container .stage-column .post-it.negative-feeling {
  background-color: #FF6B6B;
  /* red */
  color: #fff;
}

@media print {
  /* Força a impressão de cores de fundo */
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/*# sourceMappingURL=style.css.map */
