/* ARQUIVO UNIFICADO: style.css 
   Foco exclusivo na Página Inicial / Loading 
*/

:root {
    --bg-topo: #020b1a;          /* Azul Profundo */
    --bg-base: #040d1f;          /* Azul Noite */
    --bg-card: rgba(8, 20, 45, 0.7); /* Azul translúcido */
    --accent-color: #00f2ff;     /* Ciano Neon */
    --secondary-color: #00ffaa;  /* Verde Esmeralda */
    --text-primary: #ffffff;
    --text-secondary: #7a8ba3;
    --border-color: rgba(0, 242, 255, 0.15);
    --shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
}

body {
    background: linear-gradient(to bottom, var(--bg-topo) 0%, var(--bg-base) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container de Estrutura */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Centralização do Card */
.card-central {
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

/* Trilho da Barra de Loading */
.loading-track {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin: 10px 0;
}

/* Barra com Degradê Animado */
.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--bg-base), var(--accent-color), var(--bg-base));
    background-size: 200% 100%;
    border-radius: 20px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: shine-loading 2s linear infinite;
}

@keyframes shine-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Dock de Apps no Footer */
.home-footer {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.app-dock {
    display: inline-flex;
    background: var(--bg-card);
    padding: 12px 30px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(15px);
    gap: 25px;
    box-shadow: var(--shadow);
    justify-content: center;
    align-items: center;
}

.app-icon {
    font-size: 32px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    color: var(--accent-color);
    align-items: center;
    text-decoration: none;
}

.app-icon:hover {
    transform: translateY(-12px) scale(1.1);
    color: var(--text-primary);
}

/* Responsividade Mobile */
@media (max-width: 600px) {
    .card-central {
        margin: 20px;
        padding: 40px 20px;
    }
}