/* Reset geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo da página */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #c9c9c9;
    color: #333;
    padding-top: 10px;
}

/* Cabeçalho principal */
header {
    background-color: #000;
    color: #000;
    padding: 5px;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

header h3 {
    font-size: 1.2rem;
    font-weight: normal;
}

/* Estilos para menus */
.contatos ul,
.menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contatos li,
.menu li {
    margin: 10px 15px;
    list-style: none;
}

.contatos a,
.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
}

.contatos a:hover,
.menu a:hover {
    background-color: #f39c12;
    border-color: #f39c12;
    color: #fff;
}

/* Seções principais */
section {
    margin: 10px auto;
    width: 80%;
    max-width: 1100px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 5px;
}

section p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

/* Link para download do currículo */
.nav__link {
    color: #f39c12;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #f39c12;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.nav__link:hover {
    background-color: #f39c12;
    color: #fff;
}

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

/* Estilos responsivos */
@media (max-width: 768px) {

    .menu ul,
    .contatos ul {
        flex-direction: column;
        gap: 10px;
    }

    section {
        width: 95%;
    }
}