/* ==========================================================================
   Hero: .terminal-window
   HTML: index.html:97
   ========================================================================== */

.hero-visual-col {
  display: flex;
  justify-content: flex-end; /* Alinha para a direita, mas com margem */
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  position: relative;
  overflow: visible; 
  margin-right: 12px; /* Espaçamento fixo e elegante */
}



.terminal-window {
  width: 100%;
  max-width: 800px;
  background-color: #0f0f0f;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

.terminal-window.expanded {
  border-color: #00ff41;
  box-shadow: 0 0 30px rgba(0, 255, 65, 0.15);
}

.terminal-header {
  background-color: #1a1a1a;
  padding: 10px 16px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #333;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.close { background-color: #ff5f56; }
.dot.min { background-color: #ffbd2e; }
.dot.max { background-color: #27c93f; }

.terminal-body {
  padding: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  line-height: 1.1;
  color: #00ff41;
  min-height: 200px;
  text-align: left;
}

.terminal-line {
  display: block;
  margin: 0 0 12px 0; /* Respiro de 8px para melhor leitura */
  padding: 0;
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background-color: #27c93f;
  vertical-align: middle;
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
}

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