/* Loading_spiner.css - VERSÃO MELHORADA */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.hidden {
    display: none !important;
}

.spinner-container {
    background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #6200ee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    min-width: 300px;
}

.terminal-header {
    background: #6200ee;
    color: white;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    margin: -40px -40px 20px -40px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.typing-text {
    color: #0cf;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    margin-bottom: 20px;
    min-height: 40px;
}

.typing-cursor {
    animation: blink 1s infinite;
}

.spinner-gif {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%2300ccff" stroke-width="8" fill="none" stroke-dasharray="60 40" stroke-dashoffset="0"><animate attributeName="stroke-dashoffset" values="0;100;0" dur="2s" repeatCount="indefinite"/></circle></svg>') center/contain no-repeat;
}

/* Efeito de terminal vintage */
.terminal-line {
    color: #00ff88;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    margin: 5px 0;
    text-align: left;
}

.terminal-command {
    color: #00ccff;
}

.terminal-response {
    color: #ffffff;
    margin-left: 20px;
}

/* Animações */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Efeito blur para tela principal */
.blurred {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

/* Garantir que o container principal tenha z-index menor */
.container {
    position: relative;
    z-index: 1;
}
