/* Estilo geral do corpo */
body {
    background-color: #f2f2f2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 10px;
    padding: 8px;
}

/* Título principal */
h1 {
    color: #2e86de;
    font-size: 36px;
    margin-bottom: 5px;
}

/* Subtítulo */
h2 {
    color: #117a65;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

/* Cargo abaixo do nome */
h2 + p {
    font-size: 18px;
    color: #555;
}

/* Seções de título (Experiências, Educação, etc) */
h3 {
    color: #d35400;
    margin-top: 20px;
}

/* Parágrafos comuns */
p {
    font-size: 16px;
    line-height: 1.6;
}

/* Informações de contato */
center p {
    color: #333;
    font-weight: bold;
}

/* Itens das listas (certificados, aptidões) */
ul {
    margin-left: 20px;
}

ul li {
    margin-bottom: 5px;
    color: #2c3e50;
}

/* Linhas horizontais */
hr {
    border: none;
    height: 2px;
    background-color: #ddd;
    margin: 30px 0;
}

/* Mensagem final */
center p:last-child {
    margin-top: 40px;
    font-style: italic;
    color: #6c3483;
}

/* Responsivo */
@media (max-width: 600px) {
    body {
        margin: 20px;
    }

    h1 {
        font-size: 28px;
    }
}

