/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo principal */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Cabeçalho */
header {
    background-color: #0a0a23;
    color: #fff;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin-left: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    margin-right: 20px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #28284d;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

/* Conteúdo */
.content {
    padding: 40px 20px;
    background: #fff;
    margin: 20px 0;
}

.content ul {
    list-style-type: disc;
    margin-top: 10px;
    padding-left: 20px;
}

.content a {
    color: #0a0a23;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

/* Rodapé */
footer {
    background-color: #0a0a23;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Container padrão */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}
