.terminal-container {
  background-color: #1e1e1e;
  color: #ccc;
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
      margin: 0 auto;
  font-family: 'Fira Code', monospace;
  box-shadow: 0px 0 5px #00f0ff33, 0px 0px 0px #00fff2;
    overflow-x: auto;
    box-sizing: border-box;
    padding: 0 1rem;
  display: flex;
  flex-direction: column;
  animation: neonGlow 2s infinite alternate;
}
.top-side {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #212b3f;
  margin-bottom: 20px;
  padding: 5px 20px;
}

.top-side .circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  background-color: #555;
}

.terminal-title {
  color: #aaa;
  font-size: 0.9em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.main-side {
  padding: 20px;
  overflow-x: auto;
  font-size: 80%;
}

.main-side pre {
  overflow-y: auto;
  border-radius: 10px;
  text-align: left;
}
pre, code{
  overflow-x: auto;
  max-width: 100%;
  display: block;
  word-break: break-word;
}
/* Colorização fake de código */
.keyword {
  color: #c792ea;
}

.function {
  color: #82aaff;
}

.string {
  color: #ecc48d;
}

.comment {
  color: #6a9955;
}

.terminal-container-main {
  background-color: #1e1e1e;
  color: #00f0ff;
  border-radius: 10px;
  font-family: 'Fira Code', monospace;
  box-shadow: 0 0 10px #00f0ff33;
  margin-top: 2rem;
  max-width: 500px;
  width: 80%;
  height: 100%;
  overflow: hidden;
  animation: height 2s ease-in-out;
}


.circle {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin-right: 5px;
}

.circle:nth-child(1) {
  background-color: #ff5f56;
}
.circle:nth-child(2) {
  background-color: #ffbd2e;
}
.circle:nth-child(3) {
  background-color: #27c93f;
}

.terminal-title {
  color: #aaa;
  font-size: 0.9rem;
  margin-left: auto;
}

.main-side {
  padding: 0px 0px;
    font-size: 0.9rem;
  white-space: normal;
  overflow-x: auto;
}

.keyword {
  color: hsl(298, 91%, 56%);
  font-weight: bolder;
}

.string {
  color: #f1fa8c;
}


@keyframes height {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

.blinking-cursor::after {
  content: '_';
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.card-projects {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 10px;
    background-color: #1e1e1e;
  border-radius: 10px; 
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  overflow: hidden;
}

.neon-wrapper {
  background: linear-gradient(45deg, #00fff2, #00f, #ff00cc);
  padding: 1px; /* borda aparente */
  border-radius: 12px;
  width: fit-content;
    margin: 1.5em;
}

.circle-fill {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: #69ffa8;
  animation: 1.5s pulse infinite ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #69ffa8;
  }

  100% {
    box-shadow: 0 0 0 14px #69ffa800;
  }
}


.headName{
  color: #00ccff;
  filter: drop-shadow(0px 0px 10px #00ccff8b);
  font-weight: 400;
}
.headStatus{
  color: #33ff00;
  filter: drop-shadow(0px 0px 10px #0f0f0f);
  font-weight: 400;
  display: flex;
    flex-direction: row;
  align-items: center;
  gap: 10px;
}
.headDescription{
  color: #00f0ff;
}

.terminalCard{
  display: flex;
  flex-direction: column;
  background-color: #0f0f0f;
  margin: 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 4%;
}

.comment{
  color:#aa00ff;
  font-weight: 500;
}


.bi-hdd-stack{
  color: #00ffea;
  font-weight: 500;
}

.headCard{
  color: #61d2ff;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px;
}

.descriptionCard{
  color: #00ffae;
  font-weight: 500;
}


.badge.abaTech {
  border: solid aliceblue 1px;
  border-radius: 20px;
  color: aqua;
  font-weight: normal;
  padding: 5px 20px;
  margin: 10px 2px;
}

.btn-search-code{
  background: linear-gradient(99deg, #00ccff 40%, #b651f0 100%);
  border: transparent;
  border-radius: 5px;
  padding: 5px 10px;
    width: 100%;

}



.headCard, .terminalCard, .descriptionCard, .groupBtn, .badge.abaTech{
    font-size: 12px;
    padding: 10px;
}

