@import url('https://fonts.googleapis.com/css2?family=Anton&family=Black+Han+Sans&family=Open+Sans:wght@400;700&family=Roboto+Condensed:ital,wght@0,700;1,700&family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16pt;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.curriculo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: 794px;
    background-color: rgb(255, 255, 255);
    color: #000;
    margin: 0;
    padding: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
}

.card {
    display: flex;
    justify-content: center;
    align-items: space-between;
    margin: 0 20px;
}

.contato {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: #333;
}

.contato p {
    margin: 5px;
}

.contato img {
    width: 20px;
    padding: 0 10px;
}

.titulo {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
    max-width: 100%;
}

.titulo h1 {
    font-size: 28pt;
}

h3 {
    font-weight: 700;
}

.destaque {
    color: #21398a;
}

.situacao {
    margin: 10px 150px;
    list-style: circle;
}

.linguas {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.foto-curriculo img {
    width: 150px;
    height: auto;
    border-radius: 50%;
    background-color: #21398a;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bloco {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
}

.bloco p {
    color: #333;
    line-height: 1.4;
    text-align: justify;
    text-indent: 20px;
}

h2 {
    font-size: 24pt;
    font-weight: 500;
    margin: 0;
    color: #21398a;
}

hr {
    border: none;
    border-top: 3px solid #21398a;
    margin: 20px 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
    color: #333;
}

li {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    color: white;
    padding: 10px;
    width: 100%;
}

@media (max-width: 768px) {
    .curriculo {
        width: 100%;
    }

    .card {
        flex-direction: column;
        align-items: center;
    }

    .contato {
        align-items: center;
        margin-top: 10px;
    }

    .titulo {
        justify-content: center;
    }

    .foto-curriculo img {
        width: 120px;
    }

    .bloco {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .foto-curriculo img {
        width: 80px;
    }

    .situacao {
        margin: 10px;
    }

    .bloco p {
        font-size: 14pt;
    }
}