@charset "UTF-8";

/* Fonts e Resets */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* Base */
body {
    width: 100dvw;
    height: 100dvh;
}

/* header e nav */
header {
    color: white;
    background-color: black;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

header img {
    border-radius: 50%;
}

nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
    background-color: rgba(128, 128, 128, 0.418);
    border-radius: 18px;
    padding: 5px;
}

nav li {
    padding: 5px 10px;
    border-radius: 18px;
    transition: 0.3s;
}

nav a {
    color: white;
    text-decoration: none;
}

nav li:hover {
    background-color: grey;
}

/* Layout */
main {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

section {
    width: 100%;
}

/* Projetos */
.projetos {
    border: 2px solid black;
    border-top: none;
}

.projetos h2 {
    text-align: center;
    padding: 10px;
}

.projetos li {
    padding: 10px;
    text-align: center;
    list-style: none;
    background-color: rgba(128, 128, 128, 0.418);
    border-top: 2px solid black;
}

.projetos a {
    color: black;
    text-decoration: none;
}


/* Experiencia de trabalho */

.trabalho {
    border-bottom: 2px solid black;
}

.trabalho h2 {
    text-align: center;
    padding: 10px;
}

.trabalho article {
    background-color: rgba(128, 128, 128, 0.418);
    border-top: 2px solid black;
    padding: 10px;
}

/* Educação */
.educacao {
    border: 2px solid black;
    border-top: none;
    padding: 10px;
}

.educacao h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.educacao ul {
    list-style: none;
}

.educacao li::before {
    content: "- ";
}

/* Aside (reviews) */
aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 15px;
}

aside div {
    border: 2px solid black;
    border-radius: 30px;
    padding: 20px;
    width: 300px;
}

aside h5 {
    color: grey;
    margin: 10px 0 0;
}

/* Footer */
footer {
    margin-top: 30px;
    text-align: center;
    padding: 10px;
    font-size: 1.2em;
    font-weight: bold;
}