/* Configurações Globais e Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    background-color: #f7f7f7;
    color: #333;
    padding: 20px;
}

/* Container Principal */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Cabeçalho */
header {
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    color: #111;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
}

/* Seções de Conteúdo */
section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
}

p {
    margin-bottom: 15px;
    color: #555;
}

/* Estilização da Lista de Permissões */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    background-color: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

ul li strong {
    font-size: 1.1rem;
    color: #111;
    display: block;
    margin-bottom: 10px;
}

/* Lista numerada dentro da lista de permissões */
ol {
    padding-left: 20px;
    margin-top: 10px;
}

ol li {
    padding: 0;
    margin-bottom: 5px;
    border: none;
    background-color: transparent;
}

/* Responsividade */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        margin: 20px auto;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}