:root{
    --verde_aside: #055749; 
    --celeste: #0BE6C0;
}

/*Globales*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background-color: lightcyan;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container{
    position: relative;
    width: 100%;
    max-width: 1000px;
    min-height: 1000px;
    background-color: #fff;
    margin: 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: 15px 25px 15px rgba(0, 0, 0, 0.2);
}

a{
    text-decoration: none;
}

.container .lado_izquierdo{
    border-radius: 10px;
    position: relative;
    background-color: var(--verde_aside);
    padding: 40px;
}

.textoPerfil{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: white solid 2px;
}

.textoPerfil .img{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: #0BE6C0 solid 3px;
}

.textoPerfil .img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.textoPerfil h2{
    color: white;
    font-size: 1.5em;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    line-height: 1.4em;
}

.textoPerfil h2 span{
    font-size: 0.8em;
    font-weight: 300;
}

.contactoInfo{
    padding-top: 30px;   
}
.Titulo{
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.contactoInfo ul{
    position: relative;
}
.contactoInfo ul li{
    position: relative;
    list-style: none;
    margin: 10px 0;
    cursor: pointer;
}
.contactoInfo ul li .icono{
    display: inline-block;
    width: 30px;
    font-size: 18px;
    color: var(--celeste);
}

.contactoInfo ul li span{
    color: white;
    font-weight: 300;
}

.contactoInfo ul li:last-child{
    cursor: default;
}

.contactoInfo.educacion li{
    margin-bottom: 15px;
    cursor:default;
}
.contactoInfo.educacion h5{
    color: var(--celeste);
    font-weight: 500;
}
.contactoInfo.educacion h4:nth-child(2){
    color: white;
    font-weight: 700;
}
.contactoInfo.educacion h4{
    color: white;
    font-weight: 300;
}

.contactoInfo.lenguajes li{
    cursor: default;
}

.contactoInfo.lenguajes .porcentaje{
    position: relative;
    width: 100%;
    height: 6px;
    background-color: #1b7165;
    display: flex;
    margin-top: 4px;
    cursor: default;
}

.contactoInfo.lenguajes .porcentaje div{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #88dc65;
    cursor: default;
}

.container .lado_derecho{
    border-radius: 10px;
    position: relative;
    background-color: #fff;
    padding: 40px;
}

.sobreMi{
    margin-bottom: 40px;
}
.sobreMi:last-child{
    margin-bottom: 0;
}
.titulo2{
    color: var(--verde_aside);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

p{
    color: #333;
}

.sobreMi .caja{
    display: flex;
    flex-direction: row;
    margin: 20px 0;
    border: #1b7165 5px solid;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 8px;
    margin-bottom: 40px
}

.sobreMi .caja .año-empresa{
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobreMi .caja .año-empresa h5{
    text-transform: uppercase;
    color: #848c90;
    font-weight: 600;
    text-align: center;
}

.sobreMi .caja .texto h4{
    text-transform: uppercase;
    color: var(--celeste);
    font-size: 16px;
}

.habilidades .caja{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 150px 1fr;
    justify-content: center;
    align-items: center;
}
.habilidades .caja h4{
    text-transform: uppercase;
    color: #848c99;
    font-weight: 600;
}

.habilidades .caja .porcentaje{
    position: relative;
    width: 100%;
    height: 10px;
    background-color: #486865;
}

.habilidades .caja .porcentaje div{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #88dc65;
}

@media (max-width: 900px) {
    .container{
        margin: 10px;
        grid-template-columns: repeat(1,1fr);
    }
}

@media (max-width: 600px){
    .sobreMi .caja{
        flex-direction: column;
    }
    .sobreMi .caja .año-empresa{
        margin-bottom: 5px;
    }
}

.sobreMi .caja .año-empresa h5 span{
    color: #373a3d;
}