@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');

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

.container{
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: #fff;
    margin: 50px;
    box-shadow: 0 50px 75px rgba(0, 0, 0, 0.1);
    border-left: 50px solid #fff;
    border-right: 50px solid #fff;
}

.container .top{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 40px;
    padding-bottom: 0;
    
}

.container .imgBx{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    
}

.container .top .imgBx .box{
    position: relative;
    width: 70%;
    min-width: 200px;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
}

.container .top .imgBx .box img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .top .profileText{
    position: relative;
    padding: 40px;
    display: flex;
    align-items: center;
}

.container .top .profileText h3{
    font-size: 3em;
    letter-spacing: 0.1em;
    line-height: 1.2em;
    font-weight: 600;
    color: #333;
}

.container .top .profileText h3 span{
    position: relative;
    font-size: 0.5em;
    font-weight: 300;
    top: -10px;
}

.container .contentBox{
    position: relative;
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 0 40px 40px;
}
.container .contentBox h3{
    border-left: 4px solid #aa7858;
    padding-left: 10px;
    line-height: 1em;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    margin-top: 50px;
}

.container .contentBox ul{
    position: relative;
    margin: 10px 0;
}

.container .contentBox ul li{
    list-style: none;
    margin: 25px 0;
    line-height: 1em;
    color: #333;
    cursor: pointer;
    display: flex;
}

.container .contentBox ul li ion-icon{
    font-size: 1.5em;
    margin-right: 10px;
    color: #aa7858;
}

.container .contentBox ul.education li{
    flex-direction: column;
    margin: 25px 0;
}

h5{
    color: #aa7858;
}
h4{
    color: #333;
    font-weight: 500;
    margin-bottom: 5px 0;
}

h6{
    color: #666;
    font-weight: 300;
    font-size: 1em;
}

.language li{
    flex-direction: column;

}
.language li span{
    color: #333;
    font-weight: 500;
    font-size: 16px;
}
.language .percent{
    position: relative;
    width: 100%;
    height: 6px;
    background: #e3e3e3;
    margin-top: 15px;
    margin-bottom: 10px;  
    display: block;
    overflow: hidden; 
    border-radius: 2px;
}
.language .percent div{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #aa7858;
    animation: progress 2s infinite;
}

.container .contentBox .ul.interest{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.container .contentBox .ul.interest li{
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}

.container .contentBox .ul.interest li ion-icon{
position: relative;
width: 40px;
height: 40px;
background: #aa7858;
color: #fff;
border-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
}

.container .contentBox .ul.interest li .icon ion-icon{
    color: #fff;
    margin: 0;
}

p{
    font-weight: 300;
}

.rightSide{
    padding-left: 40px;
}

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

.about .box .year_company{
    min-width: 150px;
    margin-bottom: 10px;
}

.about .box .year_company h5{
    color: #333;
    font-weight: 600;
}

.about .box .year_company h5:nth-child(1){
    color: #aa7858;
}

.about .box .text h4{
    color: #aa7858;
    font-size: 16px;
    margin: 0;
}

.about.skills .box{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 150px 1fr;
    justify-content: center;
    align-items: center;
}

.about.skills .box h4{
    color: #333;
    font-weight: 500;
    margin-bottom: 5px;
}

.about.skills .box .percent{
    position: relative;
    width: 100%;
    height: 10px;
    background: #e3e3e3;
    border-radius: 2PX;
}

.about.skills .box .percent div{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #aa7858;
    animation: progress 2s infinite;
}

.buttons-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espaçamento entre os botões */
    z-index: 1000;
}

#downloadPDF, #printCV {
    background-color: #aa7858;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    width: 160px; /* Mantém ambos do mesmo tamanho */
    text-align: center;
}

#downloadPDF:hover, #printCV:hover {
    background-color: #8c6148;
}


