.conocenos{
    width: 100vw;
    /* height: 100vh; */
    min-height: 100vh;
    padding: 11vh 0 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.conocenos div:first-child{
    align-self: flex-start;
    width: 100vw;
    height: auto;
    padding: 0 10vw;
    word-wrap: break-word; /* Permite el salto de línea dentro del contenedor */ /* Alternativamente, para versiones más recientes de CSS */ 
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.conocenos div:nth-child(2) h2{
    
    text-align: center;
    

}

.conocenos div:nth-child(2) ul{
    
    padding: 0 10vw;
    word-wrap: break-word; /* Permite el salto de línea dentro del contenedor */ /* Alternativamente, para versiones más recientes de CSS */ 
    overflow-wrap: break-word;

}
.conocenos div{
    line-height: 35px;
}


