/* 🔹 Estilo Global */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* 🔹 Conteúdo Principal */
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
}

h1 {
    font-size: 1.8rem;
    color: #1E90FF;
    text-align: center;
    margin-bottom: 15px;
}

h2 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 20px;
    border-left: 4px solid #1E90FF;
    padding-left: 10px;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
}

ul {
    list-style: none;
    padding-left: 15px;
}


/* 🔹 Rodapé */
footer {
    background-color: #1C1C1C;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}