/* Estilo Profissional Motor Core IA */
body {
    background-color: #000; /* Fundo Preto */
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

#triagem-overlay {
    width: 100%;
    display: flex;
    justify-content: center;
}

.triagem-box {
    background: rgba(20, 0, 0, 0.9);
    border: 2px solid #ff0000;
    box-shadow: 0 0 20px #ff0000;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 400px;
    position: relative;
}

.logo-triagem {
    width: 80px; /* Tamanho correto da logo */
    filter: drop-shadow(0 0 10px #ff0000);
    margin-bottom: 15px;
}

h2 {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    font-size: 1.2rem;
}

p {
    font-size: 0.8rem;
    color: #ccc;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

input {
    width: 100%;
    padding: 10px;
    background: #111;
    border: 1px solid #ff0000;
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
}

.btn-acesso {
    width: 100%;
    padding: 15px;
    background: #ff0000;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-acesso:hover {
    background: #b30000;
    box-shadow: 0 0 15px #ff0000;
}

/* Linha de Scan que você gosta */
.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(255, 0, 0, 0.5);
    top: 0;
    left: 0;
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.terminal-container {
    font-family: 'Courier New', monospace;
    color: #ff0000; /* Vermelho neon padrão Core */
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 40px; 
    text-shadow: 0 0 5px #ff0000;
}

.cursor {
    display: inline-block;
    background-color: #ff0000;
    margin-left: 5px;
    width: 10px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.terminal-container {
    /* ... seu código anterior ... */
    transition: all 0.5s ease; /* Faz o brilho e a cor mudarem suavemente */
}

.status-online {
    background-color: #00ff00; /* Fundo verde */
    color: #000; /* Texto preto para contraste */
    padding: 2px 5px;
    font-weight: bold;
    border-radius: 3px;
    box-shadow: 0 0 10px #00ff00; /* Brilho neon verde */
    text-shadow: none;
}

.status-online {
    background-color: #00ff00; /* Fundo verde */
    color: #000; /* Texto preto para contraste */
    padding: 2px 5px;
    font-weight: bold;
    border-radius: 3px;
    box-shadow: 0 0 10px #00ff00; /* Brilho neon verde */
    text-shadow: none;
}

