body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #d698d1;
    color: #222;
}

/* CONTENEDOR */
.cv {
    display: grid;
    grid-template-columns: 250px 1fr;
    max-width: 900px;
    margin: 60px auto;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* LADO IZQUIERDO */
aside {
    background: #111;
    color: white;
    padding: 30px;
}

aside h3 {
    margin-top: 30px;
    font-size: 13px;
    letter-spacing: 2px;
    color: #bbb;
}

aside p, aside li {
    font-size: 14px;
    margin: 5px 0;
}

/* FOTO */
.foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

/* LISTA */
ul {
    padding-left: 15px;
}

/* LADO DERECHO */
main {
    padding: 40px;
}

/* NOMBRE */
h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

/* EDAD */
.edad {
    color: #777;
    margin-bottom: 30px;
}

/* SECCIONES */
section {
    margin-bottom: 30px;
}

/* TITULOS */
h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* TEXTO */
p {
    line-height: 1.6;
}