/* Console Theme Simplificado */
@font-face {
  font-family: 'Iosvmata';
  src: url('font/Iosvmata-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Iosvmata';
  src: url('font/Iosvmata-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Iosvmata';
  src: url('font/Iosvmata-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Iosvmata';
  src: url('font/Iosvmata-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Iosvmata', 'Courier New', monospace;
  background: #000;
  color: #fff;
  line-height: 1.6;
  padding: 1rem;
  max-width: 800px;
  margin: 0 auto;
  min-height: 100vh;
}

/* Header */
header {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.prompt {
  color: #75b8ff;
  font-weight: bold;
  flex-shrink: 0;
}

.prompt::after {
  content: "█";
  color: #75b8ff;
  animation: blink 1s infinite;
}

/* Prompts específicos para cada página */
.prompt-sobre-mim::before {
  content: "joao@portfolio:~/sobre-mim $ ";
}

.prompt-formacao::before {
  content: "joao@portfolio:~/formacao $ ";
}

.prompt-portfolio::before {
  content: "joao@portfolio:~/portfolio $ ";
}

.prompt-contato::before {
  content: "joao@portfolio:~/contato $ ";
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

nav a:hover {
  color: #ccc;
}

nav a.ativo {
  color: #75b8ff;
}

/* Typography */
h1 {
  color: #75b8ff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* h1::before {
  content: "# ";
} */

h1::after {
  content: "============";
  display: block;
  color: #b3b3b3;
  margin-top: 0.1rem;
}

.formacao-title::after {
  content: "===========";
  display: block;
  color: #b3b3b3;
  margin-top: 0.1rem;
}

.contato-title::after {
  content: "==========";
  display: block;
  color: #b3b3b3;
  margin-top: 0.1rem;
}

h2 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

p {
  margin-bottom: 1rem;
  color: #ccc;
  font-size: 0.9rem;
}

/* Links */
a {
  color: #0ff;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Lists */
ul {
  list-style: none;
  margin-left: 0;
}

li {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

li::before {
  content: "- ";
  color: #75b8ff;
}

/* Cards/Items */
.item {
  margin-bottom: 2.5rem;
}

.item:last-child {
  margin-bottom: 0;
}

.meta {
  color: #888;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.experiencia-item {
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  margin-top: 3rem;
  color: #888;
  text-align: center;
  font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 0.5rem;
  }
  
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .prompt {
    margin-bottom: 0.5rem;
  }
  
  nav {
    width: 100%;
    justify-content: flex-start;
  }
  
  nav a {
    display: inline-block;
    margin-left: 0;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
  }
  
  h1 {
    font-size: 1.1rem;
  }
  
  .item {
    margin-bottom: 2rem;
  }
}
