body {
    font-family:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    color:#3e434b;
}

a {
    text-decoration: none;
}


.columna {
    width: 100%;
    max-width: 1100px;
}


li {
    list-style-type: none;

}


nav {
    width: 100vw;
    box-shadow: 0 0 29px 0 rgba(134, 134, 134, 0.25);
    padding: 8px 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.barra {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    align-items: center;
    width: 1500px;
    max-width: 1500px;
}


.item-nav {
    margin-left: 20px;
}

.link-nav {
    color:#3e434b;
}

.link-nav:hover {
    color: #CDB5DE;
}

.boton {
    background-color: #CDB5DE;
    padding: 10px 20px;
    border-radius: 100px;
    color:white;
}

.boton:hover {
    background-color: #D9C7E6;
}


.link-boton {
    color:white;
}



header {
    height: 700px;
    box-sizing: border-box;
}

.section {
    padding: 110px 40px 130px;
    display: flex;
    justify-content: center;
}

.contenedor1 {
    display:flex;
    align-items: center;
    justify-content: space-around;
    width: 1400px;
    
}

.infopersonal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
}

h2 {
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 0.375em;
}

.saludo {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 800;
}

h1 {
    font-size: 60px;
    font-weight: 900;
}

h3 {
    font-size: 20px;
    font-weight: 300;
}


.nombre {
    margin-top: 0;
    margin-bottom: 5px;
    color: #CDB5DE;
}

.descripcion {
    color: #8E9AAF;
    font-weight: 200;
    margin-bottom: 20px;
}

.contenedor-imagen {
    width: 30%;
   
}

.fotoperfil {
    width: 100%;
}

.contenido {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.analisis-title {
    background-color: #CBC0D3;
}

.analisis-section {
    background-color: #CBC0D3;
}
.analisis-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    justify-content: center;
}

.analisis-title {
    color: white;
}

.analisis {
    font-size: 1.2rem;
    max-width: 800px;
    color: #CDB5DE;
    cursor: pointer;
    background-color: white;
    padding: 10px 20px;
    border-radius: 100px;
}



.contenedor-tp {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    justify-content: center;
}



.tp {
    background-color: #CDB5DE;
    border: 2px solid #dddfe5;
    border-radius: 8px;
    width: 280px;
    height: 250px;
    margin: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tp:hover {
    background-color: #ab6fd5;
    box-shadow: 0 0 10px 2px rgba(205, 181, 222, 0.8);
    
}

.tp-nombre {
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 0;
}




footer {
    padding: 80px 20px 60px;
    background-color: #CBC0D3;
    text-align: center;
}


ul {
    padding: 0px;
}


@media (max-width:1000px) {

    .section {
        padding: 50px;
    }

    .item-nav {
        padding: 10px;
    }


    .contenedor1 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .infopersonal{
        text-align: center;
        align-items: center;
        width: auto;
    }

    .tp {
        width: 200px;
        height: 170px;
    }
}


@media (max-width:600px) {

    header {
        height: 500px;
    }

    .barra {
        justify-content: center;
    }

    .saludo {
        font-size: 20px;
    }

    h1 {
        font-size: 40px;
    }

    .descripcion, h3, .analisis {
        font-size: 15px;
    }

    h2 {
        font-size: 30px;
    }

    .tp {
        width: 260px;
        height: 230px;
    }

    .cierre-footer {
        font-size: 10px;
    }

}

