/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; background-color: #121212; color: #fff; }

/* Header */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 30px; background-color: #1f1f1f; position: fixed;
    width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
header .logo { font-size: 1.7em; font-weight: bold; color: #f39c12; text-decoration: none; }
nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 25px; }
nav ul li a { text-decoration: none; color: #fff; font-weight: 500; transition: color 0.3s; }
nav ul li a:hover { color: #f39c12; }
.menu-toggle { display: none; cursor: pointer; font-size: 1.5em; color: #fff; }

/* Hero section */
.hero {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f39c12, #8e44ad);
    text-align: center;
    padding: 0 20px;
}
.hero h1 { font-size: 3em; margin-bottom: 15px; }
.hero p { font-size: 1.2em; max-width: 600px; }

/* Sections */
section { padding: 100px 30px 50px 30px; }
section h2 { font-size: 2em; margin-bottom: 20px; color: #f39c12; text-align: center; }

/* Quem Somos */
#quem-somos p { max-width: 700px; margin: 0 auto; line-height: 1.6; text-align: center; }

/* Carreiras */
.careers { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.career-card {
    background-color: #1f1f1f; padding: 20px; border-radius: 12px; width: 250px;
    text-align: center; box-shadow: 0 4px 8px rgba(0,0,0,0.3); transition: transform 0.3s;
}
.career-card:hover { transform: translateY(-5px); }
.career-card button {
    margin-top: 15px; padding: 10px 20px; border: none; border-radius: 6px;
    background-color: #f39c12; color: #fff; cursor: pointer; transition: background 0.3s;
}
.career-card button:hover { background-color: #d35400; }

/* Jogos */
.games { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.game-card {
    background-color: #1f1f1f; border-radius: 12px; overflow: hidden; width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); transition: transform 0.3s;
}
.game-card img { width: 100%; display: block; }
.game-card .game-info { padding: 15px; }
.game-card .game-info h3 { margin-bottom: 10px; color: #f39c12; }
.game-card:hover { transform: translateY(-5px); }

/* Footer */
footer { background-color: #1f1f1f; padding: 20px 30px; text-align: center; color: #aaa; }

/* Responsividade */
@media(max-width:768px){
    nav ul { flex-direction: column; position: absolute; top: 60px; right: 0; width: 200px; display: none; }
    nav ul.active { display: flex; }
    nav ul li { margin: 15px 0; }
    .menu-toggle { display: block; }
    .careers, .games { flex-direction: column; align-items: center; }
}
