* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Consolas', 'Courier New', monospace; 
}

body { 
    background-color: #0d1117; 
    color: #a5b4fc; 
    line-height: 1.6; 
}

.container { 
    width: 80%; 
    margin: auto; 
    overflow: hidden; 
    padding: 20px; 
}

header { 
    background: linear-gradient(90deg, #0d1117, #161b22); 
    color: #fff; 
    padding-top: 30px; 
    min-height: 70px; 
    border-bottom: 2px solid #00f3ff; 
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.15); 
}

header h1 { 
    text-align: center; 
    text-transform: uppercase; 
    font-size: 2.5em; 
    color: #00f3ff; 
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.4); 
    letter-spacing: 2px; 
}

header p { 
    text-align: center; 
    margin-bottom: 10px; 
    font-size: 1.2em; 
    color: #8b949e; 
}

header nav { 
    text-align: center; 
    background: rgba(0, 243, 255, 0.03); 
    padding: 15px 0; 
    border-top: 1px solid rgba(0, 243, 255, 0.1); 
}

header nav ul { 
    list-style: none; 
}

header nav ul li { 
    display: inline; 
    margin: 0 20px; 
}

header nav ul li a { 
    color: #c9d1d9; 
    text-decoration: none; 
    font-weight: bold; 
    letter-spacing: 1px; 
    transition: all 0.3s ease; 
}

header nav ul li a:hover { 
    color: #00f3ff; 
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.6); 
}

main { 
    padding: 40px 0; 
}

section { 
    margin-bottom: 40px; 
}

h2 { 
    color: #00f3ff; 
    border-bottom: 1px solid rgba(0, 243, 255, 0.2); 
    padding-bottom: 10px; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
}

.projeto-card { 
    background: #161b22; 
    padding: 25px; 
    margin-bottom: 20px; 
    border-radius: 6px; 
    border: 1px solid rgba(0, 243, 255, 0.1); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
    transition: all 0.3s ease; 
}

.projeto-card:hover { 
    border-color: #00f3ff; 
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2); 
    transform: translateY(-3px); 
}

.projeto-card h3 { 
    color: #e6edf3; 
    margin-bottom: 15px; 
    font-size: 1.3em; 
}

ul { 
    margin-left: 20px; 
    color: #a5b4fc; 
}

ul li strong {
    color: #e6edf3;
}

footer { 
    background: #010409; 
    color: #8b949e; 
    text-align: center; 
    padding: 20px 0; 
    margin-top: 20px; 
    border-top: 1px solid rgba(0, 243, 255, 0.15); 
}
