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

body{
    background:#e4e4e4;
    padding:30px;
}

.contenedor{
    max-width:1100px;
    margin:auto;
    display:flex;
    background:white;
    box-shadow:0 0 15px rgba(0,0,0,0.2);
}

.sidebar{
    width:35%;
    background:#365b8c;
    color:white;
    padding:30px;
}

.perfil{
    text-align:center;
    margin-bottom:30px;
}

.perfil img{
    width:170px;
    height:170px;
    border-radius:50%;
    border:6px solid #d9d9d9;
    object-fit:cover;
    margin-bottom:15px;
}

.perfil h1{
    font-size:32px;
    line-height:40px;
}

.bloque{
    margin-top:35px;
}

.bloque h2{
    font-size:34px;
    margin-bottom:20px;
    border-bottom:2px solid rgba(255,255,255,0.4);
    padding-bottom:10px;
}

.bloque p{
    margin:15px 0;
    line-height:28px;
    font-size:18px;
}

.bloque i{
    margin-right:10px;
}

.skill{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:18px 0;
    font-size:18px;
}

.puntos{
    display:flex;
    gap:7px;
}

.puntos span{
    width:13px;
    height:13px;
    border-radius:50%;
    background:#d0d0d0;
}

.puntos .activo{
    background:#1f3d66;
}

.contenido{
    width:65%;
    padding:40px;
}

.seccion{
    margin-bottom:45px;
}

.seccion h2{
    font-size:38px;
    color:#365b8c;
    margin-bottom:20px;
    border-bottom:2px solid #d7d7d7;
    padding-bottom:10px;
}

.seccion p{
    text-align:justify;
    line-height:30px;
    font-size:18px;
    color:#333;
    margin-bottom:15px;
}

.item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:35px;
}

.item h3{
    font-size:24px;
    color:#333;
}

.item p{
    margin-top:5px;
    color:#365b8c;
    font-size:18px;
}

.item span{
    font-weight:bold;
    color:#444;
    white-space:nowrap;
}

.item ul{
    margin-top:10px;
    margin-left:20px;
}

.item li{
    margin-bottom:8px;
    line-height:28px;
    font-size:17px;
}

/* Responsive */

@media(max-width:900px){

    .contenedor{
        flex-direction:column;
    }

    .sidebar,
    .contenido{
        width:100%;
    }

}