/* --- 1. VISUAL GERAL (Azul 15% mais claro) --- */
body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #f1f5f9;
    min-height: 100vh;
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

h1.text-primary {
    color: #22d3ee !important;
}

/* Legibilidade total para subtítulos e requisitos */
.text-secondary, .lead, .text-muted {
    color: #cbd5e1 !important;
}

/* --- 2. O CARD DO NOTEBOOK (Escuro e Compacto) --- */
.content-card {
    background-color: #1e293b !important; /* Longe do branco */
    color: #f1f5f9 !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem !important;
    transition: transform 0.3s ease;
}

    .content-card:hover {
        transform: translateY(-10px);
    }

    .content-card i.text-primary {
        color: #0d6efd !important;
    }

/* --- 3. LOGOTIPO E LINK DO TOPO --- */
.top-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.6rem; /* 25% maior */
    color: #22d3ee;
    display: flex;
    align-items: center;
}

.brand-logo {
    /* O !important aqui impede que o logo fique gigantesco */
    height: 70px !important;
    width: auto !important;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* --- 4. BOTÕES DE IDIOMA E ANTI-CONTORNO --- */
.btn-language {
    padding: 6px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    outline: none !important; /* Remove o contorno branco */
    box-shadow: none !important;
}

    .btn-language img {
        width: 34px;
        height: 34px;
        border-radius: 50%;
    }

    .btn-language.active {
        border-color: #22d3ee;
        background-color: rgba(34, 211, 238, 0.1);
        box-shadow: 0 0 15px rgba(34, 211, 238, 0.4) !important;
    }

/* LIMPEZA DE FOCO GLOBAL (Mata o quadrado branco no título e botões) */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* --- 5. REGRAS PADRÃO DO BLAZOR --- */
.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}




.btn-atrik-neon {
    background-color: #00f2ff !important; /* Força o ciano */
    color: #000000 !important; /* Força o texto preto para ficar visível */
    border: none;
    font-weight: bold;
    /*text-transform: uppercase;*/ /* Opcional: deixa o texto mais imponente */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-atrik-neon:hover {
    background-color: #00c8d4 !important;
    color: #000000 !important;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.8); /* Brilho neon mais intenso */
}   
