:root {
    /* Background mais azulado (Deep Navy) */
    --bg-color: #020617;
    --card-bg: rgba(255, 255, 255, 0.05);
    /* O "V" e destaques agora em Laranja */
    --primary: #f97316; 
    --secondary: #06b6d4;
    --text: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.gradient-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradiente ajustado para tons de azul */
    background: radial-gradient(circle at 50% 50%, #1e3a8a 0%, #020617 100%);
    z-index: -1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.status-badge {
    /* Ajustado para transparência laranja */
    background: rgba(249, 115, 22, 0.2); 
    border: 1px solid var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--primary);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.roadmap {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.roadmap h2 { margin-bottom: 30px; font-size: 1.5rem; }

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    color: #64748b;
    position: relative;
}

.dot {
    width: 12px;
    height: 12px;
    background: #334155;
    border-radius: 50%;
    margin-bottom: 10px;
    z-index: 2;
}

.step.done .dot { background: var(--secondary); box-shadow: 0 0 10px var(--secondary); }
.step.done span { color: var(--text); }

.step.active .dot { background: var(--primary); box-shadow: 0 0 10px var(--primary); }
.step.active span { color: var(--text); font-weight: bold; }

.socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.insta { background: #fff; color: #000; }
.vaizard { border: 1px solid rgba(255,255,255,0.2); color: #fff; }

.btn:hover { transform: translateY(-3px); opacity: 0.9; }

footer { margin-top: 60px; font-size: 0.8rem; color: #475569; }

@media (max-width: 600px) {
    .timeline { flex-direction: column; gap: 20px; align-items: flex-start; }
    .step { flex-direction: row; gap: 15px; }
}