@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* formatações Gerais */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: lightcoral;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    min-height: 1000px;
    background: #fff;
    margin: 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: 0px 35px 55px rgba(0,0,0,0.6);
}

.container .nav_esquerda {
   position: relative; 
   background: #fc4545;
   padding: 26px;
   font-size: 0.98em;
}

.container .nav_direita {
    position: relative; 
    background: #fff;
    padding: 40px;
 }

.texto_do_perfil {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4); /* Linha embaixo do Desenvolvedor Web */
}

.texto_do_perfil .imgBox {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.texto_do_perfil .imgBox img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texto_do_perfil h2 {
    color: #fff;
    font-size: 1,5em;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    line-height: 1.4em;
}

.texto_do_perfil h2 span {
    font-size: 0.8em;
    font-weight: 300;
}



.titulo {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Informações da (INFORMAÇÕES DE CONTATO) */
.info_contato {
    padding-top: 40px;
}

.info_contato ul {
    position: relative;
}

.info_contato ul li {
    /*font-size: 0.6em;*/
    position: relative;
    list-style: none;
    margin: 10px 0px;
    cursor: pointer;
}

.info_contato ul li .icone {
    display: inline-block;
    width: 30px;
    font-size: 18px;
    color: #810202;
}

.info_contato ul li span {
   color: #fff;
   font-weight: 300;
}
 
/* Informações da (EDUCAÇÃO) */

.info_contato.educacao li {
    margin-bottom: 15px;
}

.info_contato.educacao h5 {
   color: #810202;
   font-weight: 500;
}

.info_contato.educacao h4 {
    color: #fff;
    font-weight: 200;
}

.info_contato.educacao h4:nth-child(2) { /*nome da universidade*/
    color: #fff;
    font-weight: 500;
}

/* Formatações da (IDIOMAS) */

.info_contato.idiomas .porcentagem {
   position: relative; /* Barra das linguagem */
   width: 100%;
   height: 6px;
   background: #960c0c;
   display: block;
   margin-top: 5px;
}

.info_contato.idiomas .porcentagem div {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    background: #fff;
}



/* Formatações do Sobre */
.sobre {
   margin-bottom: 50px; 
}

.sobre:last-child {
   margin-bottom: 0px; 
}

.titulo2 {
    color: #810202;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

p {
    color: #680606;
}

.sobre .box {
    display: flex;
    flex-direction: row;
    margin: 20px 0px;
}

.sobre .box .ano_empresa {
    min-width: 150px;
}

.sobre .box .ano_empresa h5 {
    text-transform: uppercase;
    color: #848c90;
}

.sobre .box .texto h4 {
    text-transform: uppercase;
    color: lightcoral;
    font-size: 16px;
}

/* Formatação das Qualificações */
.qualificações .box {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 250px 1fr; /* o 150px é pego da formatação (sobre .box .ano_empresa)  */
    justify-content: center;
    align-items: center;
}

.qualificações .box h4 {
    text-transform: uppercase;
    color: #848c99;
    font-weight: 500;
    margin: 10px 0px;
}

.qualificações .box .porcentagem {
    position: relative;
    width: 100%;
    height: 10px;
    background: #f0f0f0;
}

.qualificações .box .porcentagem div {
    top: 0px;
    left: 0px;
    height: 100%;
    background: #810202;
}

.qualificações.interesse {
    margin-top: 20px;
}

.interesse ul {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.interesse ul li {
    list-style: none;
    color: #333;
    font-weight: 500;
    margin: 10px 0;
}

.interesse ul li .icone {
    color: #810202;
    font-size: 18px;
    width: 20px;
}

/* Queries */

@media (max-width: 1000px) {
    .container {
        margin: 10px;
        grid-template-columns: repeat(1,1fr);
    }
    .interesse ul {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 600px) {
    
    .sobre .box {
        flex-direction: column;
    }

    .sobre .box .ano_empresa {
        margin-bottom: 5px;
    }

    .interesse ul {
        grid-template-columns: repeat(1,1fr);
    }

    .qualificações .box {
        grid-template-columns: repeat(1,1fr);
    }
}