/* ========================= */
/* style__aboutme__index */
/* ========================= */
.container_aboutme {
  width: 70%; /* Tamaño ajustado */
  max-width: 800px; /* Limitar el tamaño máximo */
  height: auto;
  min-height: 250px; /* Ajustar la altura mínima */
  background: var(--trasparente); /* Fondo sólido */
  font-family: Menlo, Consolas, monospace;
  font-size: 16px;
  color: #e6e6e6;
  margin: 40px auto; /* Centrar y separar */
  padding: 20px; /* Espacio interno */
  overflow: hidden; /* Ocultar contenido que desborde */
}
.terminal_toolbar {
  display: flex;
  height: 30px;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #212121;
  justify-content: space-between;
}
.butt {
  display: flex;
  align-items: center;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-right: 5px;
  font-size: 8px;
  height: 12px;
  width: 12px;
  box-sizing: border-box;
  border: none;
  border-radius: 100%;
  background: linear-gradient(#7d7871 0%, #595953 100%);
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 1px 0px #41403a, 0px 1px 1px 0px #474642;
}
.btn-color {
  background: #ee411a;
}
.btn:hover {
  cursor: pointer;
}
.btn:focus {
  outline: none;
}
.add_tab {
  border: 1px solid #fff;
  color: #fff;
  padding: 0 6px;
  border-radius: 4px 4px 0 0;
  border-bottom: none;
  cursor: pointer;
}
.user {
  color: #d5d0ce;
  margin-left: 6px;
  font-size: 14px;
  line-height: 15px;
}
.terminal_body {
  background: rgba(0, 0, 0, 0.6);
  height: calc(100% - 30px);
  padding-top: 2px;
  margin-top: -1px;
  font-size: 12px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  display: flex;
  flex-direction: column;
}
.terminal_prompt {
  display: flex;
  align-items: center;
  padding: 4px;
}
.terminal_prompt span {
  margin-left: 4px;
}
.terminal_user {
  color: var(--rojoPrincipal);
}
.terminal_location {
  color: var(--rojoActivo);
}
.terminal_bling {
  color: #dddddd;
}
.terminal_cursor {
  display: block;
  height: 14px;
  width: 5px;
  margin-left: 10px;
  animation: curbl 1200ms linear infinite;
}
.terminal_output {
  padding: 4px;
  flex-grow: 1;
  overflow-y: auto;
}
.output_text {
  margin: 0;
  white-space: normal;
}
.terminal_input {
  padding: 4px;
}
.input_text {
  width: 100%;
  padding: 6px;
  background: transparent;
  border: none;
  color: #e6e6e6;
  caret-color: #1eff8e;
}
.highlight {
  color: #bb423b;
}
@keyframes curbl {
  0% {
      background: #ffffff;
  }
  49% {
      background: #ffffff;
  }
  60% {
      background: transparent;
  }
  99% {
      background: transparent;
  }
  100% {
      background: #ffffff;
  }
}
/* Media Queries */
/* Pantallas medianas (tablets) */
@media (max-width: 768px) {
  .container_aboutme {
    width: 75%;
    max-width: 400px;
    margin: 30px auto;
    padding: 15px;
  }
}
/* Pantallas pequeñas (móviles) */
@media (max-width: 480px) {
  .container_aboutme {
    width: 90%;
    max-width: 350px;
    min-height: 200px;
    margin: 20px auto;
    padding: 10px;
  }
}
/* Aplicando un efecto de transición para los elementos */
.terminal_output {
  position: relative;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards; /* Animación más rápida */
}
@keyframes fadeInUp {
  0% {
      transform: translateY(20px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}
/* Añadir una ligera animación en los elementos con la clase .highlight */
.highlight {
  opacity: 0;
  animation: highlightText 0.8s ease-in forwards; /* Animación más rápida */
  animation-delay: 0.3s; /* Retraso más corto */
}
/* Animación de texto resaltado */
@keyframes highlightText {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}
/* Animar el input de texto (con el cursor parpadeante) */
.terminal_input {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards; /* Animación más rápida */
  animation-delay: 1.5s; /* Retraso ajustado */
}
.terminal_cursor {
  display: inline-block;
  width: 10px;
  height: 20px;
  background-color: white;
  animation: blink 0.8s step-start infinite; /* Blink más rápido */
}
/* Parpadeo del cursor */
@keyframes blink {
  50% {
      opacity: 0;
  }
}
/* Si deseas más control sobre la animación, puedes aplicarlo a la entrada del texto */
.input_text {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards; /* Animación más rápida */
  animation-delay: 2s; /* Cuando el texto de la terminal ya haya terminado */
}
/* ========================= */
/* END style__aboutme__index */
/* ========================= */