/* Importando fontes modernas do Google Fonts */
        @import url('[https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Fira+Code:wght@500;700&display=swap](https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Fira+Code:wght@500;700&display=swap)');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0f172a 0%, #000000 100%);
            color: #e2e8f0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        /* Efeito de grade (grid) ao fundo */
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
        }

        /* Brilho de fundo (Glow effect) */
        .glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            animation: pulse 8s infinite alternate;
        }

        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
            100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
        }

        /* Cartão estilo Glassmorphism */
        .glass-card {
            position: relative;
            z-index: 2;
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem 4rem;
            max-width: 650px;
            width: 90%;
            text-align: center;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Logo com fonte de código e cores de Syntax Highlighting */
        .logo {
            font-family: 'Fira Code', monospace;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .logo span.tag { color: #64748b; }
        .logo span.text { color: #f8fafc; }
        
        /* Cursor piscando na frente do logo */
        .cursor {
            display: inline-block;
            width: 12px;
            height: 3rem;
            background-color: #38bdf8;
            margin-left: 8px;
            animation: blink 1s step-end infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        /*<!--<h1>Novo site em breve.</h1>-->
        h1 {
            font-size: 2.2rem;
            font-weight: 600;
            margin-top: 1rem;
            margin-bottom: 1rem;
            color: #ffffff;
            letter-spacing: -0.5px;
        }
        */
        p.subtitle {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #94a3b8;
            margin-bottom: 2.5rem;
        }

        /* Bloco de Status */
        .status-box {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .status-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: #cbd5e1;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .status-header .indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #38bdf8;
            font-size: 0.8rem;
            text-transform: none;
            letter-spacing: normal;
        }

        .indicator-dot {
            width: 8px;
            height: 8px;
            background-color: #38bdf8;
            border-radius: 50%;
            box-shadow: 0 0 10px #38bdf8;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(56, 189, 248, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
        }

        .progress-bar-container {
            width: 100%;
            height: 6px;
            background-color: #334155;
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            width: 65%; /* Representa o progresso */
            background: linear-gradient(90deg, #0284c7, #38bdf8);
            border-radius: 3px;
            position: relative;
        }
        
        /* Efeito de brilho percorrendo a barra de progresso */
        .progress-bar::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        footer {
            font-size: 0.85rem;
            color: #64748b;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
        }

        /* Responsividade para mobile */
        @media (max-width: 600px) {
            .glass-card { padding: 2rem; }
            .logo { font-size: 2.5rem; }
            .cursor { height: 2.2rem; }
            h1 { font-size: 1.8rem; }
            p.subtitle { font-size: 1rem; }
        }