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

:root{
    --primary: black;
}

body{
    font-family: sans-serif;
}

main{
    min-height: 100vh;
}

.main-container{
    width: 90%;
}

main, .main-container{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h3{
    font-size: 1rem;  
}
strong{
    font-size: 0.9rem;
}
p, li{
    font-size: 0.8rem;
}

.title{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--primary);
    width: 100%;
    padding: 0.5rem;
}

.name-title{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.info-title{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.info{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}


.body{
    width: 100%;
    padding: 1rem;

    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.title-skills,.title-summary, .title-work, .title-educations, .title-languages{
    text-decoration: underline;
}

.desc-skills{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.desc-skills li{
    font-weight: bold;
}




.desc-work, .desc-educations{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.work, .education{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-local{
    text-align: center;
}

.company-info{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.company-title{
    font-weight: bold;
}

.company-subtitle{
    font-size: 1rem;
    font-weight: bold;
}

.company-desc{
    width: 70%;
}

.actions{
    position: fixed;
    display: flex;
    bottom: 1rem;
    right: 1rem;
    gap: 1rem;
}

.printButton, .languageButton{
    height: 3rem;
    width: 3rem;
    border-radius: 10rem;
    border: none;
    background-color: var(--primary);
    cursor: pointer;
    transition: 0.5s;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actions button:hover{
    opacity: 80%;
}


.language-popup{
    position: fixed;
    height: 100vh;
    width: 100vw;
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}


.box{
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--primary);   
    width: 70%; 
    position: relative;
}

.box ion-icon{
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 2rem;
    cursor: pointer;
}

.languages-popup{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#pt-br{
    opacity: 70%;
}

.languages-popup h2{
    cursor: pointer;
    transition: 0.5s;
}

.languages-popup h2:hover{
    opacity: 70%;
}