	:root {
  --column-bg: #1e1e1e;
  --card-bg: #252525;
  --text: #f1f1f1;
  --green: #28a745;
  --yellow: #ffc107;
  --blue: #007bff;
  --red-dark: #8b0000;
  --shadow: rgba(0, 0, 0, 0.6);
}
.modal-image {
  display: block;          /* torna a imagem um bloco para poder usar margin auto */
  margin: 0 auto 1rem;     /* centraliza horizontalmente e adiciona margem inferior */
  max-height: 250px;
  max-width: 100%;         /* garante que não ultrapasse a largura do container */
  object-fit: contain;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
  border-radius: 6px;
}

.roadmap {
  padding: 1rem;
  background: var(--bg-dark);
  font-family: 'Segoe UI', sans-serif;
  color: var(--text);
}

.roadmap-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: var(--text);
  border-bottom: 2px solid var(--red-dark);
  display: inline-block;
}

.roadmap-board {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.roadmap-column {
  flex: 1;
  min-width: 300px;
  font-family: 'rdr';
  max-width: 400px;
  background: var(--column-bg);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--red-dark);
  transition: transform 0.3s;
}

/* .roadmap-column:hover {
  transform: translateY(-5px);
} */

.roadmap-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-align: center;
    color: var(--text);
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.card-container {
display: flex
;
    font-family: 'rocks';
    letter-spacing: 1.1px;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 5px;
}

.card {
  background: var(--card-bg);
  border-left: 5px solid #555;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
  color: var(--text);
}

/* Estiliza a barra de rolagem no estilo escuro */
.card-container::-webkit-scrollbar {
  width: 6px;
}

.card-container::-webkit-scrollbar-track {
  background: #1e1e1e;
}

.card-container::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 4px;
}

.card:hover {
  transform: translateY(-3px);
}

#col-concluido .card {
  border-left-color: var(--green);
}

#col-andamento .card {
  border-left-color: var(--yellow);
}

#col-futuro .card {
  border-left-color: var(--blue);
}

.modal-content {
 /* font-size: 1rem; */
    line-height: 1.5;
    color: #eee;
    background-color: #12121200;
    max-height: 300px;
    overflow-y: auto;
    margin-top: -4.5rem;
    white-space: pre-wrap;
    padding-right: 5px;
}

/* Scrollbar do modal-content, para ficar elegante no dark */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: #2a2a2a;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 4px;
}

#roadmap-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#roadmap-modal > div {
  background: #222;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  color: #fff;
  position: relative;
  box-shadow: 0 0 15px #000;
}

#modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.typewriter {
max-width: 100%;
    margin: 2rem auto;
    padding: 1rem;
    margin-top: -20px;
    font-family: monospace;
    color: #fff;
}

.typewriter-line {

  white-space: pre-wrap;
  overflow: hidden;
  width: 0;
  animation: typing 3.5s steps(60, end) forwards, blink-caret 0.75s step-end infinite;
  animation-delay: var(--delay);
}

blockquote {
  margin-left: 1rem;
  font-style: italic;
}

.highlight {
  color: orange;
  font-weight: bold;
}
.highlight2 {
  color: rgb(206, 36, 36);
  font-weight: bold;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
